Documentation ¶
Overview ¶
Code generated by "make api"; DO NOT EDIT.
Code generated by "make api"; DO NOT EDIT.
Code generated by "make api"; DO NOT EDIT.
Code generated by "make api"; DO NOT EDIT.
Index ¶
- type Account
- type AccountCreateResult
- type AccountDeleteResult
- type AccountListResult
- type AccountReadResult
- type AccountUpdateResult
- type Client
- func (c *Client) ApiClient() *api.Client
- func (c *Client) ChangePassword(ctx context.Context, accountId, currentPassword, newPassword string, ...) (*AccountUpdateResult, error)
- func (c *Client) Create(ctx context.Context, authMethodId string, opt ...Option) (*AccountCreateResult, error)
- func (c *Client) Delete(ctx context.Context, id string, opt ...Option) (*AccountDeleteResult, error)
- func (c *Client) List(ctx context.Context, authMethodId string, opt ...Option) (*AccountListResult, error)
- func (c *Client) Read(ctx context.Context, id string, opt ...Option) (*AccountReadResult, error)
- func (c *Client) SetPassword(ctx context.Context, accountId, password string, version uint32, opt ...Option) (*AccountUpdateResult, error)
- func (c *Client) Update(ctx context.Context, id string, version uint32, opt ...Option) (*AccountUpdateResult, error)
- type LdapAccountAttributes
- type OidcAccountAttributes
- type Option
- func DefaultAttributes() Option
- func DefaultDescription() Option
- func DefaultLdapAccountLoginName() Option
- func DefaultName() Option
- func DefaultOidcAccountIssuer() Option
- func DefaultOidcAccountSubject() Option
- func DefaultPasswordAccountLoginName() Option
- func DefaultPasswordAccountPassword() Option
- func WithAttributes(inAttributes map[string]interface{}) Option
- func WithAutomaticVersioning(enable bool) Option
- func WithDescription(inDescription string) Option
- func WithFilter(filter string) Option
- func WithLdapAccountLoginName(inLoginName string) Option
- func WithName(inName string) Option
- func WithOidcAccountIssuer(inIssuer string) Option
- func WithOidcAccountSubject(inSubject string) Option
- func WithPasswordAccountLoginName(inLoginName string) Option
- func WithPasswordAccountPassword(inPassword string) Option
- func WithSkipCurlOutput(skip bool) Option
- type PasswordAccountAttributes
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct { Id string `json:"id,omitempty"` Scope *scopes.ScopeInfo `json:"scope,omitempty"` Name string `json:"name,omitempty"` Description string `json:"description,omitempty"` CreatedTime time.Time `json:"created_time,omitempty"` UpdatedTime time.Time `json:"updated_time,omitempty"` Version uint32 `json:"version,omitempty"` Type string `json:"type,omitempty"` AuthMethodId string `json:"auth_method_id,omitempty"` Attributes map[string]interface{} `json:"attributes,omitempty"` ManagedGroupIds []string `json:"managed_group_ids,omitempty"` AuthorizedActions []string `json:"authorized_actions,omitempty"` // contains filtered or unexported fields }
func (*Account) GetLdapAccountAttributes ¶ added in v0.0.35
func (pt *Account) GetLdapAccountAttributes() (*LdapAccountAttributes, error)
func (*Account) GetOidcAccountAttributes ¶ added in v0.0.26
func (pt *Account) GetOidcAccountAttributes() (*OidcAccountAttributes, error)
func (*Account) GetPasswordAccountAttributes ¶ added in v0.0.26
func (pt *Account) GetPasswordAccountAttributes() (*PasswordAccountAttributes, error)
type AccountCreateResult ¶
type AccountCreateResult = AccountReadResult
type AccountDeleteResult ¶
type AccountDeleteResult struct {
// contains filtered or unexported fields
}
func (AccountDeleteResult) GetItem ¶ added in v0.0.10
func (n AccountDeleteResult) GetItem() interface{}
GetItem will always be nil for AccountDeleteResult
func (AccountDeleteResult) GetResponse ¶ added in v0.0.7
func (n AccountDeleteResult) GetResponse() *api.Response
type AccountListResult ¶
type AccountListResult struct { Items []*Account // contains filtered or unexported fields }
func (AccountListResult) GetItems ¶
func (n AccountListResult) GetItems() []*Account
func (AccountListResult) GetResponse ¶ added in v0.0.7
func (n AccountListResult) GetResponse() *api.Response
type AccountReadResult ¶
type AccountReadResult struct { Item *Account // contains filtered or unexported fields }
func (AccountReadResult) GetItem ¶
func (n AccountReadResult) GetItem() *Account
func (AccountReadResult) GetResponse ¶ added in v0.0.7
func (n AccountReadResult) GetResponse() *api.Response
type AccountUpdateResult ¶
type AccountUpdateResult = AccountReadResult
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a client for this collection
func NewClient ¶
Creates a new client for this collection. The submitted API client is cloned; modifications to it after generating this client will not have effect. If you need to make changes to the underlying API client, use ApiClient() to access it.
func (*Client) ChangePassword ¶
func (*Client) SetPassword ¶
type LdapAccountAttributes ¶ added in v0.0.35
type LdapAccountAttributes struct { LoginName string `json:"login_name,omitempty"` FullName string `json:"full_name,omitempty"` Email string `json:"email,omitempty"` Dn string `json:"dn,omitempty"` MemberOfGroups []string `json:"member_of_groups,omitempty"` }
func AttributesMapToLdapAccountAttributes ¶ added in v0.0.35
func AttributesMapToLdapAccountAttributes(in map[string]interface{}) (*LdapAccountAttributes, error)
type OidcAccountAttributes ¶ added in v0.0.9
type OidcAccountAttributes struct { Issuer string `json:"issuer,omitempty"` Subject string `json:"subject,omitempty"` FullName string `json:"full_name,omitempty"` Email string `json:"email,omitempty"` TokenClaims map[string]interface{} `json:"token_claims,omitempty"` UserinfoClaims map[string]interface{} `json:"userinfo_claims,omitempty"` }
func AttributesMapToOidcAccountAttributes ¶ added in v0.0.26
func AttributesMapToOidcAccountAttributes(in map[string]interface{}) (*OidcAccountAttributes, error)
type Option ¶
type Option func(*options)
Option is a func that sets optional attributes for a call. This does not need to be used directly, but instead option arguments are built from the functions in this package. WithX options set a value to that given in the argument; DefaultX options indicate that the value should be set to its default. When an API call is made options are processed in ther order they appear in the function call, so for a given argument X, a succession of WithX or DefaultX calls will result in the last call taking effect.
func DefaultAttributes ¶
func DefaultAttributes() Option
func DefaultDescription ¶
func DefaultDescription() Option
func DefaultLdapAccountLoginName ¶ added in v0.0.35
func DefaultLdapAccountLoginName() Option
func DefaultName ¶
func DefaultName() Option
func DefaultOidcAccountIssuer ¶ added in v0.0.9
func DefaultOidcAccountIssuer() Option
func DefaultOidcAccountSubject ¶ added in v0.0.9
func DefaultOidcAccountSubject() Option
func DefaultPasswordAccountLoginName ¶
func DefaultPasswordAccountLoginName() Option
func DefaultPasswordAccountPassword ¶
func DefaultPasswordAccountPassword() Option
func WithAttributes ¶
func WithAutomaticVersioning ¶
If set, and if the version is zero during an update, the API will perform a fetch to get the current version of the resource and populate it during the update call. This is convenient but opens up the possibility for subtle order-of-modification issues, so use carefully.
func WithDescription ¶
func WithFilter ¶ added in v0.0.6
WithFilter tells the API to filter the items returned using the provided filter term. The filter should be in a format supported by hashicorp/go-bexpr.
func WithLdapAccountLoginName ¶ added in v0.0.35
func WithOidcAccountIssuer ¶ added in v0.0.9
func WithOidcAccountSubject ¶ added in v0.0.9
func WithSkipCurlOutput ¶ added in v0.0.4
WithSkipCurlOutput tells the API to not use the current call for cURL output. Useful for when we need to look up versions.
type PasswordAccountAttributes ¶
type PasswordAccountAttributes struct { LoginName string `json:"login_name,omitempty"` Password string `json:"password,omitempty"` }
func AttributesMapToPasswordAccountAttributes ¶ added in v0.0.26
func AttributesMapToPasswordAccountAttributes(in map[string]interface{}) (*PasswordAccountAttributes, error)