Documentation
¶
Index ¶
- type AWSIAMCredential
- type AccessTokenCredential
- type AzureCredential
- type DynamicSecret
- type DynamicSecretLease
- type DynamicSecretLeaseWithDynamicSecret
- type Folder
- type GCPIAMCredential
- type GCPIDTokenCredential
- type KubernetesCredential
- type OIDCCredential
- type Secret
- type SecretImport
- type TokenType
- type UniversalAuthCredential
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AWSIAMCredential ¶ added in v0.3.4
type AWSIAMCredential struct {
IdentityID string
}
type AccessTokenCredential ¶ added in v0.3.4
type AccessTokenCredential struct {
AccessToken string
}
type AzureCredential ¶ added in v0.3.4
type DynamicSecret ¶ added in v0.3.9
type DynamicSecret struct {
Id string `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
Version int `json:"number"`
DefaultTTL string `json:"defaultTTL"`
MaxTTL string `json:"maxTTL"`
FolderID string `json:"folderId"`
Status string `json:"status"`
StatusDetails string `json:"statusDetails"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type DynamicSecretLease ¶ added in v0.3.9
type DynamicSecretLease struct {
Id string `json:"id"`
Type string `json:"type"`
Version int `json:"number"`
ExternalEntityId string `json:"externalEntityId"`
ExpireAt time.Time `json:"expireAt"`
Status string `json:"status"`
DynamicSecretId string `json:"dynamicSecretId"`
StatusDetails string `json:"statusDetails"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type DynamicSecretLeaseWithDynamicSecret ¶ added in v0.3.9
type DynamicSecretLeaseWithDynamicSecret struct {
Id string `json:"id"`
Type string `json:"type"`
Version int `json:"number"`
ExternalEntityId string `json:"externalEntityId"`
ExpireAt time.Time `json:"expireAt"`
Status string `json:"status"`
DynamicSecretId string `json:"dynamicSecretId"`
StatusDetails string `json:"statusDetails"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DynamicSecret DynamicSecret `json:"dynamicSecret"`
}
type GCPIAMCredential ¶ added in v0.3.4
type GCPIDTokenCredential ¶ added in v0.3.4
type GCPIDTokenCredential struct {
IdentityID string
}
type KubernetesCredential ¶ added in v0.3.4
type OIDCCredential ¶ added in v0.3.4
type Secret ¶
type Secret struct {
ID string `json:"id"`
Workspace string `json:"workspace"`
Environment string `json:"environment"`
Version int `json:"version"`
Type string `json:"type"`
SecretKey string `json:"secretKey"`
SecretValue string `json:"secretValue"`
SecretComment string `json:"secretComment"`
SecretPath string `json:"secretPath,omitempty"`
}
type SecretImport ¶
type TokenType ¶ added in v0.2.0
type TokenType string
const (
BEARER_TOKEN_TYPE TokenType = "Bearer"
)
type UniversalAuthCredential ¶ added in v0.3.4
Click to show internal directories.
Click to hide internal directories.