Versions in this module Expand all Collapse all v1 v1.0.0 Dec 28, 2021 Changes in this version + func List(client *gophercloud.ServiceClient, userID string, opts ListOptsBuilder) pagination.Pager + func ListAccessRules(client *gophercloud.ServiceClient, userID string) pagination.Pager + type AccessRule struct + ID string + Method string + Path string + Service string + func ExtractAccessRules(r pagination.Page) ([]AccessRule, error) + type AccessRulePage struct + func (r AccessRulePage) IsEmpty() (bool, error) + func (r AccessRulePage) NextPageURL() (string, error) + type ApplicationCredential struct + AccessRules []AccessRule + Description string + ExpiresAt time.Time + ID string + Links map[string]interface{} + Name string + ProjectID string + Roles []Role + Secret string + Unrestricted bool + func ExtractApplicationCredentials(r pagination.Page) ([]ApplicationCredential, error) + func (r *ApplicationCredential) UnmarshalJSON(b []byte) error + type ApplicationCredentialPage struct + func (r ApplicationCredentialPage) IsEmpty() (bool, error) + func (r ApplicationCredentialPage) NextPageURL() (string, error) + type CreateOpts struct + AccessRules []AccessRule + Description string + ExpiresAt *time.Time + Name string + Roles []Role + Secret string + Unrestricted bool + func (opts CreateOpts) ToApplicationCredentialCreateMap() (map[string]interface{}, error) + type CreateOptsBuilder interface + ToApplicationCredentialCreateMap func() (map[string]interface{}, error) + type CreateResult struct + func Create(client *gophercloud.ServiceClient, userID string, opts CreateOptsBuilder) (r CreateResult) + func (r CreateResult) Extract() (*ApplicationCredential, error) + type DeleteResult struct + func Delete(client *gophercloud.ServiceClient, userID string, id string) (r DeleteResult) + func DeleteAccessRule(client *gophercloud.ServiceClient, userID string, id string) (r DeleteResult) + type GetAccessRuleResult struct + func GetAccessRule(client *gophercloud.ServiceClient, userID string, id string) (r GetAccessRuleResult) + func (r GetAccessRuleResult) Extract() (*AccessRule, error) + type GetResult struct + func Get(client *gophercloud.ServiceClient, userID string, id string) (r GetResult) + func (r GetResult) Extract() (*ApplicationCredential, error) + type ListOpts struct + Name string + func (opts ListOpts) ToApplicationCredentialListQuery() (string, error) + type ListOptsBuilder interface + ToApplicationCredentialListQuery func() (string, error) + type Role struct + DomainID string + ID string + Name string Other modules containing this package github.com/pierreprinetti/gophercloud/v2 github.com/pierreprinetti/gophercloud/v3