credentials

package
v0.0.51 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 30, 2024 License: MPL-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client is a client for this collection

func NewClient

func NewClient(c *api.Client) *Client

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) ApiClient

func (c *Client) ApiClient() *api.Client

ApiClient returns the underlying API client

func (*Client) Create

func (c *Client) Create(ctx context.Context, resourceType string, credentialStoreId string, opt ...Option) (*CredentialCreateResult, error)

func (*Client) Delete

func (c *Client) Delete(ctx context.Context, id string, opt ...Option) (*CredentialDeleteResult, error)

func (*Client) List

func (c *Client) List(ctx context.Context, credentialStoreId string, opt ...Option) (*CredentialListResult, error)

func (*Client) Read

func (c *Client) Read(ctx context.Context, id string, opt ...Option) (*CredentialReadResult, error)

func (*Client) Update

func (c *Client) Update(ctx context.Context, id string, version uint32, opt ...Option) (*CredentialUpdateResult, error)

type Credential

type Credential struct {
	Id                string                 `json:"id,omitempty"`
	CredentialStoreId string                 `json:"credential_store_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"`
	Attributes        map[string]interface{} `json:"attributes,omitempty"`
	AuthorizedActions []string               `json:"authorized_actions,omitempty"`
}

func (*Credential) GetJsonAttributes added in v0.0.30

func (pt *Credential) GetJsonAttributes() (*JsonAttributes, error)

func (*Credential) GetSshPrivateKeyAttributes added in v0.0.26

func (pt *Credential) GetSshPrivateKeyAttributes() (*SshPrivateKeyAttributes, error)

func (*Credential) GetUsernamePasswordAttributes added in v0.0.26

func (pt *Credential) GetUsernamePasswordAttributes() (*UsernamePasswordAttributes, error)

type CredentialCreateResult

type CredentialCreateResult = CredentialReadResult

type CredentialDeleteResult

type CredentialDeleteResult struct {
	Response *api.Response
}

func (CredentialDeleteResult) GetItem

func (n CredentialDeleteResult) GetItem() interface{}

GetItem will always be nil for CredentialDeleteResult

func (CredentialDeleteResult) GetResponse

func (n CredentialDeleteResult) GetResponse() *api.Response

type CredentialListResult

type CredentialListResult struct {
	Items        []*Credential `json:"items,omitempty"`
	EstItemCount uint          `json:"est_item_count,omitempty"`
	RemovedIds   []string      `json:"removed_ids,omitempty"`
	ListToken    string        `json:"list_token,omitempty"`
	ResponseType string        `json:"response_type,omitempty"`
	Response     *api.Response
}

func (CredentialListResult) GetEstItemCount added in v0.0.44

func (n CredentialListResult) GetEstItemCount() uint

func (CredentialListResult) GetItems

func (n CredentialListResult) GetItems() []*Credential

func (CredentialListResult) GetListToken added in v0.0.44

func (n CredentialListResult) GetListToken() string

func (CredentialListResult) GetRemovedIds added in v0.0.44

func (n CredentialListResult) GetRemovedIds() []string

func (CredentialListResult) GetResponse

func (n CredentialListResult) GetResponse() *api.Response

func (CredentialListResult) GetResponseType added in v0.0.44

func (n CredentialListResult) GetResponseType() string

type CredentialReadResult

type CredentialReadResult struct {
	Item     *Credential
	Response *api.Response
}

func (CredentialReadResult) GetItem

func (n CredentialReadResult) GetItem() *Credential

func (CredentialReadResult) GetResponse

func (n CredentialReadResult) GetResponse() *api.Response

type CredentialUpdateResult

type CredentialUpdateResult = CredentialReadResult

type JsonAttributes added in v0.0.30

type JsonAttributes struct {
	Object     map[string]interface{} `json:"object,omitempty"`
	ObjectHmac string                 `json:"object_hmac,omitempty"`
}

func AttributesMapToJsonAttributes added in v0.0.30

func AttributesMapToJsonAttributes(in map[string]interface{}) (*JsonAttributes, 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 the 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 DefaultName

func DefaultName() Option

func DefaultSshPrivateKeyCredentialPrivateKeyPassphrase added in v0.0.28

func DefaultSshPrivateKeyCredentialPrivateKeyPassphrase() Option

func WithAttributes

func WithAttributes(inAttributes map[string]interface{}) Option

func WithAutomaticVersioning

func WithAutomaticVersioning(enable bool) Option

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 WithDescription(inDescription string) Option

func WithFilter

func WithFilter(filter string) Option

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 WithJsonCredentialObject added in v0.0.30

func WithJsonCredentialObject(inObject map[string]interface{}) Option

func WithListToken added in v0.0.44

func WithListToken(listToken string) Option

WithListToken tells the API to use the provided list token for listing operations on this resource.

func WithName

func WithName(inName string) Option

func WithSkipCurlOutput

func WithSkipCurlOutput(skip bool) Option

WithSkipCurlOutput tells the API to not use the current call for cURL output. Useful for when we need to look up versions.

func WithSshPrivateKeyCredentialPrivateKey added in v0.0.26

func WithSshPrivateKeyCredentialPrivateKey(inPrivateKey string) Option

func WithSshPrivateKeyCredentialPrivateKeyPassphrase added in v0.0.28

func WithSshPrivateKeyCredentialPrivateKeyPassphrase(inPrivateKeyPassphrase string) Option

func WithSshPrivateKeyCredentialUsername added in v0.0.26

func WithSshPrivateKeyCredentialUsername(inUsername string) Option

func WithUsernamePasswordCredentialPassword

func WithUsernamePasswordCredentialPassword(inPassword string) Option

func WithUsernamePasswordCredentialUsername

func WithUsernamePasswordCredentialUsername(inUsername string) Option

type SshPrivateKeyAttributes added in v0.0.26

type SshPrivateKeyAttributes struct {
	Username                 string `json:"username,omitempty"`
	PrivateKey               string `json:"private_key,omitempty"`
	PrivateKeyHmac           string `json:"private_key_hmac,omitempty"`
	PrivateKeyPassphrase     string `json:"private_key_passphrase,omitempty"`
	PrivateKeyPassphraseHmac string `json:"private_key_passphrase_hmac,omitempty"`
}

func AttributesMapToSshPrivateKeyAttributes added in v0.0.26

func AttributesMapToSshPrivateKeyAttributes(in map[string]interface{}) (*SshPrivateKeyAttributes, error)

type UsernamePasswordAttributes

type UsernamePasswordAttributes struct {
	Username     string `json:"username,omitempty"`
	Password     string `json:"password,omitempty"`
	PasswordHmac string `json:"password_hmac,omitempty"`
}

func AttributesMapToUsernamePasswordAttributes added in v0.0.26

func AttributesMapToUsernamePasswordAttributes(in map[string]interface{}) (*UsernamePasswordAttributes, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL