modulepackage
2.20.3
Repository: https://github.com/akeylesslabs/akeyless-go.git
Documentation: pkg.go.dev
# README
Go API client for akeyless
The purpose of this application is to provide access to Akeyless API.
Overview
This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.
- API version: 2.0
- Package version: 2.20.3
- Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit http://akeyless.io
To install this package, use:
go get github.com/akeylesslabs/akeyless-go/v2
Getting Started
Please follow the installation procedure and then run the following:
package main
import (
"context"
"errors"
"fmt"
"log"
"github.com/akeylesslabs/akeyless-go/v2"
)
func main() {
ctx := context.Background()
client := akeyless.NewAPIClient(&akeyless.Configuration{
Servers: []akeyless.ServerConfiguration{
{
// default: public API Gateway
URL: "https://api.akeyless.io",
// use port 8081 exposed by the deployment:
// URL: "https://gateway.company.com:8081",
// use port 8080 exposed by the deployment with /v2 prefix:
// URL: "https://gateway.company.com:8080/v2",
},
},
}).V2Api
authBody := akeyless.NewAuthWithDefaults()
authBody.AdminEmail = akeyless.PtrString("[email protected]")
authBody.AdminPassword = akeyless.PtrString("strong-password")
var apiErr akeyless.GenericOpenAPIError
authOut, _, err := client.Auth(ctx).Body(*authBody).Execute()
if err != nil {
if errors.As(err, &apiErr) {
log.Fatalln("authentication failed:", string(apiErr.Body()))
}
log.Fatalln("authentication failed:", err)
}
token := authOut.GetToken()
csBody := akeyless.CreateSecret{
Name: "my-secret",
Value: "some-value",
Token: &token,
}
_, _, err = client.CreateSecret(ctx).Body(csBody).Execute()
if err != nil {
if errors.As(err, &apiErr) {
log.Fatalln("can't create secret:", string(apiErr.Body()))
}
log.Fatalln("can't create secret:", err)
}
gsvBody := akeyless.GetSecretValue{
Names: []string{"my-secret"},
Token: &token,
}
gsvOut, _, err := client.GetSecretValue(ctx).Body(gsvBody).Execute()
if err != nil {
if errors.As(err, &apiErr) {
log.Fatalln("can't get secret value:", string(apiErr.Body()))
}
log.Fatalln("can't get secret value:", err)
}
fmt.Println(gsvOut["my-secret"])
}
Documentation for API Endpoints
All URIs are relative to https://api.akeyless.io
Class | Method | HTTP request | Description |
---|---|---|---|
V2Api | AssocRoleAuthMethod | Post /assoc-role-am | |
V2Api | AssocTargetItem | Post /assoc-target-item | |
V2Api | Auth | Post /auth | |
V2Api | Configure | Post /configure | |
V2Api | Connect | Post /connect | |
V2Api | CreateAWSTarget | Post /create-aws-target | |
V2Api | CreateArtifactoryTarget | Post /create-artifactory-target | |
V2Api | CreateAuthMethod | Post /create-auth-method | |
V2Api | CreateAuthMethodAWSIAM | Post /create-auth-method-aws-iam | |
V2Api | CreateAuthMethodAzureAD | Post /create-auth-method-azure-ad | |
V2Api | CreateAuthMethodCert | Post /create-auth-method-cert | |
V2Api | CreateAuthMethodGCP | Post /create-auth-method-gcp | |
V2Api | CreateAuthMethodHuawei | Post /create-auth-method-huawei | |
V2Api | CreateAuthMethodK8S | Post /create-auth-method-k8s | |
V2Api | CreateAuthMethodLDAP | Post /create-auth-method-ldap | |
V2Api | CreateAuthMethodOAuth2 | Post /create-auth-method-oauth2 | |
V2Api | CreateAuthMethodOIDC | Post /create-auth-method-oidc | |
V2Api | CreateAuthMethodSAML | Post /create-auth-method-saml | |
V2Api | CreateAuthMethodUniversalIdentity | Post /create-auth-method-universal-identity | |
V2Api | CreateAzureTarget | Post /create-azure-target | |
V2Api | CreateClassicKey | Post /create-classic-key | |
V2Api | CreateDBTarget | Post /create-db-target | |
V2Api | CreateDFCKey | Post /create-dfc-key | |
V2Api | CreateDockerhubTarget | Post /create-dockerhub-target | |
V2Api | CreateDynamicSecret | Post /create-dynamic-secret | |
V2Api | CreateEKSTarget | Post /create-eks-target | |
V2Api | CreateGKETarget | Post /create-gke-target | |
V2Api | CreateGcpTarget | Post /create-gcp-target | |
V2Api | CreateGithubTarget | Post /create-github-target | |
V2Api | CreateKey | Post /create-key | |
V2Api | CreateNativeK8STarget | Post /create-k8s-target | |
V2Api | CreatePKICertIssuer | Post /create-pki-cert-issuer | |
V2Api | CreateRabbitMQTarget | Post /create-rabbitmq-target | |
V2Api | CreateRole | Post /create-role | |
V2Api | CreateRotatedSecret | Post /create-rotated-secret | |
V2Api | CreateSSHCertIssuer | Post /create-ssh-cert-issuer | |
V2Api | CreateSSHTarget | Post /create-ssh-target | |
V2Api | CreateSalesforceTarget | Post /create-salesforce-target | |
V2Api | CreateSecret | Post /create-secret | |
V2Api | CreateTokenizer | Post /create-tokenizer | |
V2Api | CreateWebTarget | Post /create-web-target | |
V2Api | CreateldapTarget | Post /create-ldap-target | |
V2Api | Decrypt | Post /decrypt | |
V2Api | DecryptPKCS1 | Post /decrypt-pkcs1 | |
V2Api | DecryptWithClassicKey | Post /decrypt-with-classic-key | |
V2Api | DeleteAuthMethod | Post /delete-auth-method | |
V2Api | DeleteAuthMethods | Post /delete-auth-methods | |
V2Api | DeleteItem | Post /delete-item | |
V2Api | DeleteItems | Post /delete-items | |
V2Api | DeleteRole | Post /delete-role | |
V2Api | DeleteRoleAssociation | Post /delete-assoc | |
V2Api | DeleteRoleRule | Post /delete-role-rule | |
V2Api | DeleteRoles | Post /delete-roles | |
V2Api | DeleteTarget | Post /delete-target | |
V2Api | DeleteTargetAssociation | Post /delete-assoc-target-item | |
V2Api | DeleteTargets | Post /delete-targets | |
V2Api | DescribeItem | Post /describe-item | |
V2Api | DescribePermissions | Post /describe-permissions | |
V2Api | DescribeSubClaims | Post /describe-sub-claims | |
V2Api | Detokenize | Post /detokenize | |
V2Api | Encrypt | Post /encrypt | |
V2Api | EncryptWithClassicKey | Post /encrypt-with-classic-key | |
V2Api | ExportClassicKey | Get /export-classic-key | |
V2Api | GatewayAddAllowedManagementAccess | Post /gateway-add-allow-management-access | |
V2Api | GatewayCreateK8SAuthConfig | Post /gateway-create-k8s-auth-config | |
V2Api | GatewayCreateMigration | Post /gateway-create-migration | |
V2Api | GatewayCreateProducerArtifactory | Post /gateway-create-producer-artifactory | |
V2Api | GatewayCreateProducerAws | Post /gateway-create-producer-aws | |
V2Api | GatewayCreateProducerAzure | Post /gateway-create-producer-azure | |
V2Api | GatewayCreateProducerCassandra | Post /gateway-create-producer-cassandra | |
V2Api | GatewayCreateProducerCertificateAutomation | Post /gateway-create-producer-certificate-automation | |
V2Api | GatewayCreateProducerCustom | Post /gateway-create-producer-custom | |
V2Api | GatewayCreateProducerDockerhub | Post /gateway-create-producer-dockerhub | |
V2Api | GatewayCreateProducerEks | Post /gateway-create-producer-eks | |
V2Api | GatewayCreateProducerGcp | Post /gateway-create-producer-gcp | |
V2Api | GatewayCreateProducerGithub | Post /gateway-create-producer-github | |
V2Api | GatewayCreateProducerGke | Post /gateway-create-producer-gke | |
V2Api | GatewayCreateProducerHanaDb | Post /gateway-create-producer-hanadb | |
V2Api | GatewayCreateProducerLdap | Post /gateway-create-producer-ldap | |
V2Api | GatewayCreateProducerMSSQL | Post /gateway-create-producer-mssql | |
V2Api | GatewayCreateProducerMongo | Post /gateway-create-producer-mongo | |
V2Api | GatewayCreateProducerMySQL | Post /gateway-create-producer-mysql | |
V2Api | GatewayCreateProducerNativeK8S | Post /gateway-create-producer-k8s | |
V2Api | GatewayCreateProducerOracleDb | Post /gateway-create-producer-oracle | |
V2Api | GatewayCreateProducerPostgreSQL | Post /gateway-create-producer-postgresql | |
V2Api | GatewayCreateProducerRabbitMQ | Post /gateway-create-producer-rabbitmq | |
V2Api | GatewayCreateProducerRdp | Post /gateway-create-producer-rdp | |
V2Api | GatewayCreateProducerRedshift | Post /gateway-create-producer-redshift | |
V2Api | GatewayCreateProducerSnowflake | Post /gateway-create-producer-snowflake | |
V2Api | GatewayDeleteAllowedManagementAccess | Post /gateway-delete-allowed-management-access | |
V2Api | GatewayDeleteK8SAuthConfig | Post /gateway-delete-k8s-auth-config | |
V2Api | GatewayDeleteMigration | Post /gateway-delete-migration | |
V2Api | GatewayDeleteProducer | Post /gateway-delete-producer | |
V2Api | GatewayGetConfig | Post /gateway-get-config | |
V2Api | GatewayGetK8SAuthConfig | Post /gateway-get-k8s-auth-config | |
V2Api | GatewayGetLdapAuthConfig | Post /gateway-get-ldap-auth-config | |
V2Api | GatewayGetMigration | Post /gateway-get-migration | |
V2Api | GatewayGetProducer | Post /gateway-get-producer | |
V2Api | GatewayGetTmpUsers | Post /gateway-get-producer-tmp-creds | |
V2Api | GatewayListAllowedManagementAccess | Post /gateway-list-allowed-management-access | |
V2Api | GatewayListMigration | Post /gateway-list-migration | |
V2Api | GatewayListProducers | Post /gateway-list-producers | |
V2Api | GatewayMigratePersonalItems | Post /gateway-migrate-personal-items | |
V2Api | GatewayRevokeTmpUsers | Post /gateway-revoke-producer-tmp-creds | |
V2Api | GatewayStartProducer | Post /gateway-start-producer | |
V2Api | GatewayStatusMigration | Post /gateway-migration-status | |
V2Api | GatewayStopProducer | Post /gateway-stop-producer | |
V2Api | GatewaySyncMigration | Post /gateway-sync-migration | |
V2Api | GatewayUpdateItem | Post /gateway-update-item | |
V2Api | GatewayUpdateK8SAuthConfig | Post /gateway-update-k8s-auth-config | |
V2Api | GatewayUpdateLdapAuthConfig | Post /gateway-update-ldap-auth-config | |
V2Api | GatewayUpdateMigration | Post /gateway-update-migration | |
V2Api | GatewayUpdateProducerArtifactory | Post /gateway-update-producer-artifactory | |
V2Api | GatewayUpdateProducerAws | Post /gateway-update-producer-aws | |
V2Api | GatewayUpdateProducerAzure | Post /gateway-update-producer-azure | |
V2Api | GatewayUpdateProducerCassandra | Post /gateway-update-producer-cassandra | |
V2Api | GatewayUpdateProducerCertificateAutomation | Post /gateway-update-producer-certificate-automation | |
V2Api | GatewayUpdateProducerCustom | Post /gateway-update-producer-custom | |
V2Api | GatewayUpdateProducerDockerhub | Post /gateway-update-producer-dockerhub | |
V2Api | GatewayUpdateProducerEks | Post /gateway-update-producer-eks | |
V2Api | GatewayUpdateProducerGcp | Post /gateway-update-producer-gcp | |
V2Api | GatewayUpdateProducerGithub | Post /gateway-update-producer-github | |
V2Api | GatewayUpdateProducerGke | Post /gateway-update-producer-gke | |
V2Api | GatewayUpdateProducerHanaDb | Post /gateway-update-producer-hana | |
V2Api | GatewayUpdateProducerLdap | Post /gateway-update-producer-ldap | |
V2Api | GatewayUpdateProducerMSSQL | Post /gateway-update-producer-mssql | |
V2Api | GatewayUpdateProducerMongo | Post /gateway-update-producer-mongo | |
V2Api | GatewayUpdateProducerMySQL | Post /gateway-update-producer-mysql | |
V2Api | GatewayUpdateProducerNativeK8S | Post /gateway-update-producer-k8s | |
V2Api | GatewayUpdateProducerOracleDb | Post /gateway-update-producer-oracle | |
V2Api | GatewayUpdateProducerPostgreSQL | Post /gateway-update-producer-postgresql | |
V2Api | GatewayUpdateProducerRabbitMQ | Post /gateway-update-producer-rabbitmq | |
V2Api | GatewayUpdateProducerRdp | Post /gateway-update-producer-rdp | |
V2Api | GatewayUpdateProducerRedshift | Post /gateway-update-producer-redshift | |
V2Api | GatewayUpdateProducerSnowflake | Post /gateway-update-producer-snowflake | |
V2Api | GatewayUpdateTmpUsers | Post /gateway-update-producer-tmp-creds | |
V2Api | GetAccountLogo | Post /get-account-logo | |
V2Api | GetAccountSettings | Post /get-account-settings | |
V2Api | GetAuthMethod | Post /get-auth-method | |
V2Api | GetDynamicSecretValue | Post /get-dynamic-secret-value | |
V2Api | GetKubeExecCreds | Post /get-kube-exec-creds | |
V2Api | GetPKICertificate | Post /get-pki-certificate | |
V2Api | GetRSAPublic | Post /get-rsa-public | |
V2Api | GetRole | Post /get-role | |
V2Api | GetRotatedSecretValue | Post /get-rotated-secret-value | |
V2Api | GetSSHCertificate | Post /get-ssh-certificate | |
V2Api | GetSecretValue | Post /get-secret-value | |
V2Api | GetTags | Post /get-tags | |
V2Api | GetTarget | Post /get-target | |
V2Api | GetTargetDetails | Post /get-target-details | |
V2Api | KmipClientDeleteRule | Post /kmip-client-delete-rule | |
V2Api | KmipClientSetRule | Post /kmip-client-set-rule | |
V2Api | KmipCreateClient | Post /kmip-create-client | |
V2Api | KmipDeleteClient | Post /kmip-delete-client | |
V2Api | KmipDeleteServer | Delete /kmip-delete-environment | |
V2Api | KmipDescribeClient | Post /kmip-get-client | |
V2Api | KmipDescribeServer | Post /kmip-get-environment | |
V2Api | KmipListClients | Post /kmip-list-clients | |
V2Api | KmipMoveServer | Post /kmip-move-environment | |
V2Api | KmipRenewClientCertificate | Post /kmip-renew-client | |
V2Api | KmipRenewServerCertificate | Post /kmip-renew-environment | |
V2Api | KmipServerSetup | Post /kmip-create-environment | |
V2Api | KmipSetServerState | Post /kmip-set-environment-state | |
V2Api | ListAuthMethods | Post /list-auth-methods | |
V2Api | ListGateways | Post /list-gateways | |
V2Api | ListItems | Post /list-items | |
V2Api | ListRoles | Post /list-roles | |
V2Api | ListSRABastions | Post /list-sra-bastions | |
V2Api | ListTargets | Post /list-targets | |
V2Api | MoveObjects | Post /move-objects | |
V2Api | RawCreds | Post /raw-creds | |
V2Api | RefreshKey | Post /refresh-key | |
V2Api | ReverseRBAC | Post /reverse-rbac | |
V2Api | RevokeCreds | Post /revoke-creds | |
V2Api | RollbackSecret | Post /rollback-secret | |
V2Api | RotateKey | Post /rotate-key | |
V2Api | RotateSecret | Post /gateway-rotate-secret | |
V2Api | SetItemState | Post /set-item-state | |
V2Api | SetRoleRule | Post /set-role-rule | |
V2Api | ShareItem | Post /share-item | |
V2Api | SignJWTWithClassicKey | Post /sign-jwt-with-classic-key | |
V2Api | SignPKCS1 | Post /sign-pkcs1 | |
V2Api | SignPKICertWithClassicKey | Post /sign-pki-cert-with-classic-key | |
V2Api | StaticCredsAuth | Post /static-creds-auth | |
V2Api | Tokenize | Post /tokenize | |
V2Api | UidCreateChildToken | Post /uid-create-child-token | |
V2Api | UidGenerateToken | Post /uid-generate-token | |
V2Api | UidListChildren | Post /uid-list-children | |
V2Api | UidRevokeToken | Post /uid-revoke-token | |
V2Api | UidRotateToken | Post /uid-rotate-token | |
V2Api | UpdateAWSTarget | Post /update-aws-target | |
V2Api | UpdateAWSTargetDetails | Post /update-aws-target-details | |
V2Api | UpdateAccountSettings | Post /update-account-settings | |
V2Api | UpdateArtifactoryTarget | Post /update-artifactory-target | |
V2Api | UpdateAssoc | Post /update-assoc | |
V2Api | UpdateAuthMethod | Post /update-auth-method | |
V2Api | UpdateAuthMethodAWSIAM | Post /update-auth-method-aws-iam | |
V2Api | UpdateAuthMethodAzureAD | Post /update-auth-method-azure-ad | |
V2Api | UpdateAuthMethodCert | Post /update-auth-method-cert | |
V2Api | UpdateAuthMethodGCP | Post /update-auth-method-gcp | |
V2Api | UpdateAuthMethodK8S | Post /update-auth-method-k8s | |
V2Api | UpdateAuthMethodLDAP | Post /update-auth-method-ldap | |
V2Api | UpdateAuthMethodOAuth2 | Post /update-auth-method-oauth2 | |
V2Api | UpdateAuthMethodOIDC | Post /update-auth-method-oidc | |
V2Api | UpdateAuthMethodSAML | Post /update-auth-method-saml | |
V2Api | UpdateAuthMethodUniversalIdentity | Post /update-auth-method-universal-identity | |
V2Api | UpdateAzureTarget | Post /update-azure-target | |
V2Api | UpdateDBTarget | Post /update-db-target | |
V2Api | UpdateDBTargetDetails | Post /update-db-target-details | |
V2Api | UpdateDockerhubTarget | Post /update-dockerhub-target | |
V2Api | UpdateEKSTarget | Post /update-eks-target | |
V2Api | UpdateGKETarget | Post /update-gke-target | |
V2Api | UpdateGcpTarget | Post /update-gcp-target | |
V2Api | UpdateGithubTarget | Post /update-github-target | |
V2Api | UpdateItem | Post /update-item | |
V2Api | UpdateLdapTarget | Post /update-ldap-target | |
V2Api | UpdateLdapTargetDetails | Post /update-ldap-target-details | |
V2Api | UpdateNativeK8STarget | Post /update-k8s-target | |
V2Api | UpdatePKICertIssuer | Post /update-pki-cert-issuer | |
V2Api | UpdateRDPTargetDetails | Post /update-rdp-target-details | |
V2Api | UpdateRabbitMQTarget | Post /update-rabbitmq-target | |
V2Api | UpdateRabbitMQTargetDetails | Post /update-rabbitmq-target-details | |
V2Api | UpdateRole | Post /update-role | |
V2Api | UpdateRotatedSecret | Post /update-rotated-secret | |
V2Api | UpdateRotationSettings | Post /update-rotation-settingsrotate-key | |
V2Api | UpdateSSHCertIssuer | Post /update-ssh-cert-issuer | |
V2Api | UpdateSSHTarget | Post /update-ssh-target | |
V2Api | UpdateSSHTargetDetails | Post /update-ssh-target-details | |
V2Api | UpdateSalesforceTarget | Post /update-salesforce-target | |
V2Api | UpdateSecretVal | Post /update-secret-val | |
V2Api | UpdateTarget | Post /update-target | |
V2Api | UpdateTargetDetails | Post /update-target-details | |
V2Api | UpdateWebTarget | Post /update-web-target | |
V2Api | UpdateWebTargetDetails | Post /update-web-target-details | |
V2Api | UploadRSA | Post /upload-rsa | |
V2Api | ValidateToken | Post /validate-token | |
V2Api | VerifyJWTWithClassicKey | Post /verify-jwt-with-classic-key | |
V2Api | VerifyPKCS1 | Post /verify-pkcs1 | |
V2Api | VerifyPKICertWithClassicKey | Post /verify-pki-cert-with-classic-key |
Documentation For Models
- APIKeyAccessRules
- AWSIAMAccessRules
- AWSPayload
- AWSSecretsMigration
- AccountGeneralSettings
- AccountObjectVersionSettingsOutput
- ActiveDirectoryMigration
- ActiveDirectoryPayload
- AdminsConfigPart
- AkeylessGatewayConfig
- AllowedAccess
- AssocRoleAuthMethod
- AssocTargetItem
- Auth
- AuthMethod
- AuthMethodAccessInfo
- AuthMethodRoleAssociation
- AuthOutput
- AwsS3LogForwardingConfig
- AzureADAccessRules
- AzureKeyVaultMigration
- AzureLogAnalyticsForwardingConfig
- AzurePayload
- BastionListEntry
- BastionsList
- CFConfigPart
- CacheConfigPart
- CertAccessRules
- CertificateIssueInfo
- ClassicKeyDetailsInfo
- ClassicKeyStatusInfo
- ClassicKeyTargetInfo
- ClientData
- ConfigChange
- ConfigHash
- Configure
- ConfigureOutput
- Connect
- CreateAWSTarget
- CreateAWSTargetOutput
- CreateArtifactoryTarget
- CreateArtifactoryTargetOutput
- CreateAuthMethod
- CreateAuthMethodAWSIAM
- CreateAuthMethodAWSIAMOutput
- CreateAuthMethodAzureAD
- CreateAuthMethodAzureADOutput
- CreateAuthMethodCert
- CreateAuthMethodCertOutput
- CreateAuthMethodGCP
- CreateAuthMethodGCPOutput
- CreateAuthMethodHuawei
- CreateAuthMethodHuaweiOutput
- CreateAuthMethodK8S
- CreateAuthMethodK8SOutput
- CreateAuthMethodLDAP
- CreateAuthMethodLDAPOutput
- CreateAuthMethodOAuth2
- CreateAuthMethodOAuth2Output
- CreateAuthMethodOIDC
- CreateAuthMethodOIDCOutput
- CreateAuthMethodOutput
- CreateAuthMethodSAML
- CreateAuthMethodSAMLOutput
- CreateAuthMethodUniversalIdentity
- CreateAuthMethodUniversalIdentityOutput
- CreateAzureTarget
- CreateAzureTargetOutput
- CreateClassicKey
- CreateClassicKeyOutput
- CreateDBTarget
- CreateDBTargetOutput
- CreateDFCKey
- CreateDFCKeyOutput
- CreateDockerhubTarget
- CreateDockerhubTargetOutput
- CreateDynamicSecret
- CreateEKSTarget
- CreateEKSTargetOutput
- CreateGKETarget
- CreateGKETargetOutput
- CreateGcpTarget
- CreateGcpTargetOutput
- CreateGithubTarget
- CreateGithubTargetOutput
- CreateKey
- CreateKeyOutput
- CreateLdapTarget
- CreateLdapTargetOutput
- CreateNativeK8STarget
- CreateNativeK8STargetOutput
- CreatePKICertIssuer
- CreatePKICertIssuerOutput
- CreateRabbitMQTarget
- CreateRabbitMQTargetOutput
- CreateRole
- CreateRoleAuthMethodAssocOutput
- CreateRotatedSecret
- CreateRotatedSecretOutput
- CreateSSHCertIssuer
- CreateSSHCertIssuerOutput
- CreateSSHTarget
- CreateSSHTargetOutput
- CreateSalesforceTarget
- CreateSalesforceTargetOutput
- CreateSecret
- CreateSecretOutput
- CreateTargetItemAssocOutput
- CreateTokenizer
- CreateTokenizerOutput
- CreateWebTarget
- CreateWebTargetOutput
- CustomerFragment
- CustomerFragmentsJson
- CustomerFullAddress
- DSProducerDetails
- DataProtectionSection
- DatadogForwardingConfig
- Decrypt
- DecryptFile
- DecryptFileOutput
- DecryptOutput
- DecryptPKCS1
- DecryptPKCS1Output
- DecryptWithClassicKey
- DecryptWithClassicKeyOutput
- DefaultConfigPart
- DeleteAuthMethod
- DeleteAuthMethodOutput
- DeleteAuthMethods
- DeleteAuthMethodsOutput
- DeleteItem
- DeleteItemOutput
- DeleteItems
- DeleteItemsOutput
- DeleteRole
- DeleteRoleAssociation
- DeleteRoleRule
- DeleteRoleRuleOutput
- DeleteRoles
- DeleteTarget
- DeleteTargetAssociation
- DeleteTargets
- DescribeItem
- DescribePermissions
- DescribePermissionsOutput
- DescribeSubClaims
- DescribeSubClaimsOutput
- Detokenize
- DetokenizeOutput
- DynamicSecretProducerInfo
- ElasticsearchLogForwardingConfig
- EmailPassAccessRules
- EmailTokenizerInfo
- Encrypt
- EncryptFile
- EncryptFileOutput
- EncryptOutput
- EncryptWithClassicKey
- EncryptWithClassicKeyOutput
- ExportClassicKey
- ExportClassicKeyOutput
- ExternalKMSKeyId
- GCPAccessRules
- GCPPayload
- GCPSecretsMigration
- GatewayAddAllowedManagementAccess
- GatewayCreateK8SAuthConfig
- GatewayCreateK8SAuthConfigOutput
- GatewayCreateMigration
- GatewayCreateProducerArtifactory
- GatewayCreateProducerArtifactoryOutput
- GatewayCreateProducerAws
- GatewayCreateProducerAwsOutput
- GatewayCreateProducerAzure
- GatewayCreateProducerAzureOutput
- GatewayCreateProducerCassandra
- GatewayCreateProducerCassandraOutput
- GatewayCreateProducerCertificateAutomation
- GatewayCreateProducerCertificateAutomationOutput
- GatewayCreateProducerChef
- GatewayCreateProducerChefOutput
- GatewayCreateProducerCustom
- GatewayCreateProducerCustomOutput
- GatewayCreateProducerDockerhub
- GatewayCreateProducerDockerhubOutput
- GatewayCreateProducerEks
- GatewayCreateProducerEksOutput
- GatewayCreateProducerGcp
- GatewayCreateProducerGcpOutput
- GatewayCreateProducerGithub
- GatewayCreateProducerGithubOutput
- GatewayCreateProducerGke
- GatewayCreateProducerGkeOutput
- GatewayCreateProducerHanaDb
- GatewayCreateProducerHanaDbOutput
- GatewayCreateProducerLdap
- GatewayCreateProducerLdapOutput
- GatewayCreateProducerMSSQL
- GatewayCreateProducerMSSQLOutput
- GatewayCreateProducerMongo
- GatewayCreateProducerMongoOutput
- GatewayCreateProducerMySQL
- GatewayCreateProducerMySQLOutput
- GatewayCreateProducerNativeK8S
- GatewayCreateProducerNativeK8SOutput
- GatewayCreateProducerOracleDb
- GatewayCreateProducerOracleDbOutput
- GatewayCreateProducerPostgreSQL
- GatewayCreateProducerPostgreSQLOutput
- GatewayCreateProducerRabbitMQ
- GatewayCreateProducerRabbitMQOutput
- GatewayCreateProducerRdp
- GatewayCreateProducerRdpOutput
- GatewayCreateProducerRedshift
- GatewayCreateProducerRedshiftOutput
- GatewayCreateProducerSnowflake
- GatewayCreateProducerSnowflakeOutput
- GatewayDeleteAllowedManagementAccess
- GatewayDeleteK8SAuthConfig
- GatewayDeleteK8SAuthConfigOutput
- GatewayDeleteMigration
- GatewayDeleteProducer
- GatewayDeleteProducerOutput
- GatewayGetConfig
- GatewayGetK8SAuthConfig
- GatewayGetK8SAuthConfigOutput
- GatewayGetLdapAuthConfig
- GatewayGetLdapAuthConfigOutput
- GatewayGetMigration
- GatewayGetProducer
- GatewayGetTmpUsers
- GatewayListAllowedManagementAccess
- GatewayListMigration
- GatewayListProducers
- GatewayMessageQueueInfo
- GatewayMigratePersonalItems
- GatewayMigratePersonalItemsOutput
- GatewayMigrationCreateOutput
- GatewayMigrationDeleteOutput
- GatewayMigrationGetOutput
- GatewayMigrationListOutput
- GatewayMigrationSyncOutput
- GatewayMigrationUpdateOutput
- GatewayRevokeTmpUsers
- GatewayStartProducer
- GatewayStartProducerOutput
- GatewayStatusMigration
- GatewayStopProducer
- GatewayStopProducerOutput
- GatewaySyncMigration
- GatewayUpdateItem
- GatewayUpdateItemOutput
- GatewayUpdateK8SAuthConfig
- GatewayUpdateK8SAuthConfigOutput
- GatewayUpdateLdapAuthConfig
- GatewayUpdateLdapAuthConfigOutput
- GatewayUpdateMigration
- GatewayUpdateProducerArtifactory
- GatewayUpdateProducerArtifactoryOutput
- GatewayUpdateProducerAws
- GatewayUpdateProducerAwsOutput
- GatewayUpdateProducerAzure
- GatewayUpdateProducerAzureOutput
- GatewayUpdateProducerCassandra
- GatewayUpdateProducerCassandraOutput
- GatewayUpdateProducerCertificateAutomation
- GatewayUpdateProducerCertificateAutomationOutput
- GatewayUpdateProducerChef
- GatewayUpdateProducerChefOutput
- GatewayUpdateProducerCustom
- GatewayUpdateProducerCustomOutput
- GatewayUpdateProducerDockerhub
- GatewayUpdateProducerDockerhubOutput
- GatewayUpdateProducerEks
- GatewayUpdateProducerEksOutput
- GatewayUpdateProducerGcp
- GatewayUpdateProducerGcpOutput
- GatewayUpdateProducerGithub
- GatewayUpdateProducerGithubOutput
- GatewayUpdateProducerGke
- GatewayUpdateProducerGkeOutput
- GatewayUpdateProducerHanaDb
- GatewayUpdateProducerHanaDbOutput
- GatewayUpdateProducerLdap
- GatewayUpdateProducerLdapOutput
- GatewayUpdateProducerMSSQL
- GatewayUpdateProducerMSSQLOutput
- GatewayUpdateProducerMongo
- GatewayUpdateProducerMongoOutput
- GatewayUpdateProducerMySQL
- GatewayUpdateProducerMySQLOutput
- GatewayUpdateProducerNativeK8S
- GatewayUpdateProducerNativeK8SOutput
- GatewayUpdateProducerOracleDb
- GatewayUpdateProducerOracleDbOutput
- GatewayUpdateProducerPostgreSQL
- GatewayUpdateProducerPostgreSQLOutput
- GatewayUpdateProducerRabbitMQ
- GatewayUpdateProducerRabbitMQOutput
- GatewayUpdateProducerRdp
- GatewayUpdateProducerRdpOutput
- GatewayUpdateProducerRedshift
- GatewayUpdateProducerRedshiftOutput
- GatewayUpdateProducerSnowflake
- GatewayUpdateProducerSnowflakeOutput
- GatewayUpdateTmpUsers
- GatewaysListResponse
- GenCustomerFragment
- GeneralConfigPart
- GetAccountSettings
- GetAccountSettingsCommandOutput
- GetAuthMethod
- GetDynamicSecretValue
- GetKubeExecCreds
- GetKubeExecCredsOutput
- GetPKICertificate
- GetPKICertificateOutput
- GetProducersListReplyObj
- GetRSAPublic
- GetRSAPublicOutput
- GetRole
- GetRotatedSecretValue
- GetSSHCertificate
- GetSSHCertificateOutput
- GetSecretValue
- GetSubAdminsListReplyObj
- GetTags
- GetTarget
- GetTargetDetails
- GetTargetDetailsOutput
- GwClusterIdentity
- HashiMigration
- HashiPayload
- HuaweiAccessRules
- Item
- ItemGeneralInfo
- ItemTargetAssociation
- ItemVersion
- JSONError
- K8SAuth
- K8SAuthsConfigLastChange
- K8SAuthsConfigPart
- K8SMigration
- K8SPayload
- KMIPClient
- KMIPClientGetResponse
- KMIPClientListResponse
- KMIPClientUpdateResponse
- KMIPConfigPart
- KMIPEnvironmentCreateResponse
- KMIPServer
- KmipClientDeleteRule
- KmipClientSetRule
- KmipCreateClient
- KmipCreateClientOutput
- KmipDeleteClient
- KmipDeleteServer
- KmipDescribeClient
- KmipDescribeServer
- KmipDescribeServerOutput
- KmipListClients
- KmipMoveServer
- KmipMoveServerOutput
- KmipRenewClientCertificate
- KmipRenewClientCertificateOutput
- KmipRenewServerCertificate
- KmipRenewServerCertificateOutput
- KmipServerSetup
- KmipSetServerState
- KmipSetServerStateOutput
- KubernetesAccessRules
- LDAPAccessRules
- LastConfigChange
- LastStatusInfo
- LdapConfigPart
- LeadershipConfigPart
- ListAuthMethods
- ListAuthMethodsOutput
- ListGateways
- ListItems
- ListItemsInPathOutput
- ListRoles
- ListRolesOutput
- ListSRABastions
- ListTargets
- ListTargetsOutput
- LogForwardingConfigPart
- LogstashLogForwardingConfig
- LogzIoLogForwardingConfig
- MigrationGeneral
- MigrationItems
- MigrationStatus
- MigrationStatusReplyObj
- MigrationsConfigLastChange
- MigrationsConfigPart
- MockMigration
- MockPayload
- MoveObjects
- OAuth2AccessRules
- OAuth2CustomClaim
- OIDCAccessRules
- OIDCCustomClaim
- ObjectVersionSettingsOutput
- OnePasswordMigration
- OnePasswordPayload
- PKICertificateIssueDetails
- PasswordPolicyInfo
- PathRule
- Producer
- ProducersConfigPart
- RawCreds
- RefreshKey
- RefreshKeyOutput
- RegexpTokenizerInfo
- RequiredActivity
- ReverseRBAC
- ReverseRBACClient
- ReverseRBACOutput
- RevokeCreds
- Role
- RoleAuthMethodAssociation
- RollbackSecret
- RollbackSecretOutput
- RotateKey
- RotateKeyOutput
- RotateSecret
- RotatedSecretDetailsInfo
- RotatedSecretOutput
- Rotator
- RotatorsConfigPart
- RuleAssigner
- Rules
- SAMLAccessRules
- SAMLAttribute
- SSHCertificateIssueDetails
- SecureRemoteAccess
- SetItemState
- SetRoleRule
- ShareItem
- SignJWTOutput
- SignJWTWithClassicKey
- SignPKCS1
- SignPKCS1Output
- SignPKICertOutput
- SignPKICertWithClassicKey
- SmInfo
- SplunkLogForwardingConfig
- SraInfo
- StaticCredsAuth
- StaticCredsAuthOutput
- StaticSecretDetailsInfo
- SyslogLogForwardingConfig
- SystemAccessCredentialsReplyObj
- SystemAccessCredsSettings
- Target
- TargetItemAssociation
- TargetItemVersion
- TargetTypeDetailsInput
- TmpUserData
- Tokenize
- TokenizeOutput
- TokenizerInfo
- UIDTokenDetails
- UidCreateChildToken
- UidCreateChildTokenOutput
- UidGenerateToken
- UidGenerateTokenOutput
- UidListChildren
- UidRevokeToken
- UidRotateToken
- UidRotateTokenOutput
- Unconfigure
- UniversalIdentityAccessRules
- UniversalIdentityDetails
- Update
- UpdateAWSTarget
- UpdateAWSTargetDetails
- UpdateAccountSettings
- UpdateAccountSettingsOutput
- UpdateArtifactoryTarget
- UpdateArtifactoryTargetOutput
- UpdateAssoc
- UpdateAuthMethod
- UpdateAuthMethodAWSIAM
- UpdateAuthMethodAzureAD
- UpdateAuthMethodCert
- UpdateAuthMethodCertOutput
- UpdateAuthMethodGCP
- UpdateAuthMethodK8S
- UpdateAuthMethodK8SOutput
- UpdateAuthMethodLDAP
- UpdateAuthMethodLDAPOutput
- UpdateAuthMethodOAuth2
- UpdateAuthMethodOIDC
- UpdateAuthMethodOutput
- UpdateAuthMethodSAML
- UpdateAuthMethodUniversalIdentity
- UpdateAzureTarget
- UpdateAzureTargetOutput
- UpdateDBTarget
- UpdateDBTargetDetails
- UpdateDBTargetOutput
- UpdateDockerhubTarget
- UpdateDockerhubTargetOutput
- UpdateEKSTarget
- UpdateEKSTargetOutput
- UpdateGKETarget
- UpdateGKETargetOutput
- UpdateGcpTarget
- UpdateGcpTargetOutput
- UpdateGithubTarget
- UpdateGithubTargetOutput
- UpdateItem
- UpdateItemOutput
- UpdateLdapTarget
- UpdateLdapTargetDetails
- UpdateLdapTargetOutput
- UpdateNativeK8STarget
- UpdateNativeK8STargetOutput
- UpdateOutput
- UpdatePKICertIssuer
- UpdatePKICertIssuerOutput
- UpdateRDPTargetDetails
- UpdateRabbitMQTarget
- UpdateRabbitMQTargetDetails
- UpdateRabbitMQTargetOutput
- UpdateRole
- UpdateRoleOutput
- UpdateRotatedSecret
- UpdateRotatedSecretOutput
- UpdateRotationSettings
- UpdateSSHCertIssuer
- UpdateSSHCertIssuerOutput
- UpdateSSHTarget
- UpdateSSHTargetDetails
- UpdateSSHTargetOutput
- UpdateSalesforceTarget
- UpdateSalesforceTargetOutput
- UpdateSecretVal
- UpdateSecretValOutput
- UpdateTarget
- UpdateTargetDetails
- UpdateTargetDetailsOutput
- UpdateTargetOutput
- UpdateWebTarget
- UpdateWebTargetDetails
- UpdateWebTargetOutput
- UploadPKCS12
- UploadRSA
- ValidateToken
- ValidateTokenOutput
- VaultlessTokenizerInfo
- VerifyJWTOutput
- VerifyJWTWithClassicKey
- VerifyPKCS1
- VerifyPKICertOutput
- VerifyPKICertWithClassicKey
Documentation For Authorization
Endpoints do not require authorization.
Documentation for Utility Methods
Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:
PtrBool
PtrInt
PtrInt32
PtrInt64
PtrFloat
PtrFloat32
PtrFloat64
PtrString
PtrTime
Author
# Functions
CacheExpires helper function to determine remaining time before repeating a request.
NewAccountGeneralSettings instantiates a new AccountGeneralSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountGeneralSettingsWithDefaults instantiates a new AccountGeneralSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountObjectVersionSettingsOutput instantiates a new AccountObjectVersionSettingsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountObjectVersionSettingsOutputWithDefaults instantiates a new AccountObjectVersionSettingsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActiveDirectoryMigration instantiates a new ActiveDirectoryMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActiveDirectoryMigrationWithDefaults instantiates a new ActiveDirectoryMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewActiveDirectoryPayload instantiates a new ActiveDirectoryPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewActiveDirectoryPayloadWithDefaults instantiates a new ActiveDirectoryPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAdminsConfigPart instantiates a new AdminsConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAdminsConfigPartWithDefaults instantiates a new AdminsConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAkeylessGatewayConfig instantiates a new AkeylessGatewayConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAkeylessGatewayConfigWithDefaults instantiates a new AkeylessGatewayConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAllowedAccess instantiates a new AllowedAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAllowedAccessWithDefaults instantiates a new AllowedAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewAPIKeyAccessRules instantiates a new APIKeyAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyAccessRulesWithDefaults instantiates a new APIKeyAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewAssocRoleAuthMethod instantiates a new AssocRoleAuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssocRoleAuthMethodWithDefaults instantiates a new AssocRoleAuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAssocTargetItem instantiates a new AssocTargetItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAssocTargetItemWithDefaults instantiates a new AssocTargetItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuth instantiates a new Auth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthMethod instantiates a new AuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthMethodAccessInfo instantiates a new AuthMethodAccessInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthMethodAccessInfoWithDefaults instantiates a new AuthMethodAccessInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthMethodRoleAssociation instantiates a new AuthMethodRoleAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthMethodRoleAssociationWithDefaults instantiates a new AuthMethodRoleAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthMethodWithDefaults instantiates a new AuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthOutput instantiates a new AuthOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAuthOutputWithDefaults instantiates a new AuthOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAuthWithDefaults instantiates a new Auth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSIAMAccessRules instantiates a new AWSIAMAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSIAMAccessRulesWithDefaults instantiates a new AWSIAMAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSPayload instantiates a new AWSPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSPayloadWithDefaults instantiates a new AWSPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAwsS3LogForwardingConfig instantiates a new AwsS3LogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAwsS3LogForwardingConfigWithDefaults instantiates a new AwsS3LogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAWSSecretsMigration instantiates a new AWSSecretsMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAWSSecretsMigrationWithDefaults instantiates a new AWSSecretsMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureADAccessRules instantiates a new AzureADAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureADAccessRulesWithDefaults instantiates a new AzureADAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureKeyVaultMigration instantiates a new AzureKeyVaultMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureKeyVaultMigrationWithDefaults instantiates a new AzureKeyVaultMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzureLogAnalyticsForwardingConfig instantiates a new AzureLogAnalyticsForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzureLogAnalyticsForwardingConfigWithDefaults instantiates a new AzureLogAnalyticsForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAzurePayload instantiates a new AzurePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAzurePayloadWithDefaults instantiates a new AzurePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBastionListEntry instantiates a new BastionListEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBastionListEntryWithDefaults instantiates a new BastionListEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBastionsList instantiates a new BastionsList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBastionsListWithDefaults instantiates a new BastionsList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCacheConfigPart instantiates a new CacheConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCacheConfigPartWithDefaults instantiates a new CacheConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertAccessRules instantiates a new CertAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertAccessRulesWithDefaults instantiates a new CertAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCertificateIssueInfo instantiates a new CertificateIssueInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCertificateIssueInfoWithDefaults instantiates a new CertificateIssueInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCFConfigPart instantiates a new CFConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCFConfigPartWithDefaults instantiates a new CFConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClassicKeyDetailsInfo instantiates a new ClassicKeyDetailsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClassicKeyDetailsInfoWithDefaults instantiates a new ClassicKeyDetailsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClassicKeyStatusInfo instantiates a new ClassicKeyStatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClassicKeyStatusInfoWithDefaults instantiates a new ClassicKeyStatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClassicKeyTargetInfo instantiates a new ClassicKeyTargetInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClassicKeyTargetInfoWithDefaults instantiates a new ClassicKeyTargetInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewClientData instantiates a new ClientData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewClientDataWithDefaults instantiates a new ClientData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigChange instantiates a new ConfigChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigChangeWithDefaults instantiates a new ConfigChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigHash instantiates a new ConfigHash object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigHashWithDefaults instantiates a new ConfigHash object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewConfigure instantiates a new Configure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigureOutput instantiates a new ConfigureOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConfigureOutputWithDefaults instantiates a new ConfigureOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfigureWithDefaults instantiates a new Configure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConnect instantiates a new Connect object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewConnectWithDefaults instantiates a new Connect object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateArtifactoryTarget instantiates a new CreateArtifactoryTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateArtifactoryTargetOutput instantiates a new CreateArtifactoryTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateArtifactoryTargetOutputWithDefaults instantiates a new CreateArtifactoryTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateArtifactoryTargetWithDefaults instantiates a new CreateArtifactoryTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethod instantiates a new CreateAuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodAWSIAM instantiates a new CreateAuthMethodAWSIAM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodAWSIAMOutput instantiates a new CreateAuthMethodAWSIAMOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodAWSIAMOutputWithDefaults instantiates a new CreateAuthMethodAWSIAMOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodAWSIAMWithDefaults instantiates a new CreateAuthMethodAWSIAM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodAzureAD instantiates a new CreateAuthMethodAzureAD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodAzureADOutput instantiates a new CreateAuthMethodAzureADOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodAzureADOutputWithDefaults instantiates a new CreateAuthMethodAzureADOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodAzureADWithDefaults instantiates a new CreateAuthMethodAzureAD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodCert instantiates a new CreateAuthMethodCert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodCertOutput instantiates a new CreateAuthMethodCertOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodCertOutputWithDefaults instantiates a new CreateAuthMethodCertOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodCertWithDefaults instantiates a new CreateAuthMethodCert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodGCP instantiates a new CreateAuthMethodGCP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodGCPOutput instantiates a new CreateAuthMethodGCPOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodGCPOutputWithDefaults instantiates a new CreateAuthMethodGCPOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodGCPWithDefaults instantiates a new CreateAuthMethodGCP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodHuawei instantiates a new CreateAuthMethodHuawei object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodHuaweiOutput instantiates a new CreateAuthMethodHuaweiOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodHuaweiOutputWithDefaults instantiates a new CreateAuthMethodHuaweiOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodHuaweiWithDefaults instantiates a new CreateAuthMethodHuawei object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodK8S instantiates a new CreateAuthMethodK8S object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodK8SOutput instantiates a new CreateAuthMethodK8SOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodK8SOutputWithDefaults instantiates a new CreateAuthMethodK8SOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodK8SWithDefaults instantiates a new CreateAuthMethodK8S object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodLDAP instantiates a new CreateAuthMethodLDAP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodLDAPOutput instantiates a new CreateAuthMethodLDAPOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodLDAPOutputWithDefaults instantiates a new CreateAuthMethodLDAPOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodLDAPWithDefaults instantiates a new CreateAuthMethodLDAP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodOAuth2 instantiates a new CreateAuthMethodOAuth2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodOAuth2Output instantiates a new CreateAuthMethodOAuth2Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodOAuth2OutputWithDefaults instantiates a new CreateAuthMethodOAuth2Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodOAuth2WithDefaults instantiates a new CreateAuthMethodOAuth2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodOIDC instantiates a new CreateAuthMethodOIDC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodOIDCOutput instantiates a new CreateAuthMethodOIDCOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodOIDCOutputWithDefaults instantiates a new CreateAuthMethodOIDCOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodOIDCWithDefaults instantiates a new CreateAuthMethodOIDC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodOutput instantiates a new CreateAuthMethodOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodOutputWithDefaults instantiates a new CreateAuthMethodOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodSAML instantiates a new CreateAuthMethodSAML object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodSAMLOutput instantiates a new CreateAuthMethodSAMLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodSAMLOutputWithDefaults instantiates a new CreateAuthMethodSAMLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodSAMLWithDefaults instantiates a new CreateAuthMethodSAML object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodUniversalIdentity instantiates a new CreateAuthMethodUniversalIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodUniversalIdentityOutput instantiates a new CreateAuthMethodUniversalIdentityOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAuthMethodUniversalIdentityOutputWithDefaults instantiates a new CreateAuthMethodUniversalIdentityOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodUniversalIdentityWithDefaults instantiates a new CreateAuthMethodUniversalIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAuthMethodWithDefaults instantiates a new CreateAuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAWSTarget instantiates a new CreateAWSTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAWSTargetOutput instantiates a new CreateAWSTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAWSTargetOutputWithDefaults instantiates a new CreateAWSTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAWSTargetWithDefaults instantiates a new CreateAWSTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAzureTarget instantiates a new CreateAzureTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAzureTargetOutput instantiates a new CreateAzureTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateAzureTargetOutputWithDefaults instantiates a new CreateAzureTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateAzureTargetWithDefaults instantiates a new CreateAzureTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateClassicKey instantiates a new CreateClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateClassicKeyOutput instantiates a new CreateClassicKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateClassicKeyOutputWithDefaults instantiates a new CreateClassicKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateClassicKeyWithDefaults instantiates a new CreateClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDBTarget instantiates a new CreateDBTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDBTargetOutput instantiates a new CreateDBTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDBTargetOutputWithDefaults instantiates a new CreateDBTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDBTargetWithDefaults instantiates a new CreateDBTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDFCKey instantiates a new CreateDFCKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDFCKeyOutput instantiates a new CreateDFCKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDFCKeyOutputWithDefaults instantiates a new CreateDFCKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDFCKeyWithDefaults instantiates a new CreateDFCKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDockerhubTarget instantiates a new CreateDockerhubTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDockerhubTargetOutput instantiates a new CreateDockerhubTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDockerhubTargetOutputWithDefaults instantiates a new CreateDockerhubTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDockerhubTargetWithDefaults instantiates a new CreateDockerhubTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateDynamicSecret instantiates a new CreateDynamicSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateDynamicSecretWithDefaults instantiates a new CreateDynamicSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateEKSTarget instantiates a new CreateEKSTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateEKSTargetOutput instantiates a new CreateEKSTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateEKSTargetOutputWithDefaults instantiates a new CreateEKSTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateEKSTargetWithDefaults instantiates a new CreateEKSTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGcpTarget instantiates a new CreateGcpTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGcpTargetOutput instantiates a new CreateGcpTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGcpTargetOutputWithDefaults instantiates a new CreateGcpTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGcpTargetWithDefaults instantiates a new CreateGcpTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGithubTarget instantiates a new CreateGithubTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGithubTargetOutput instantiates a new CreateGithubTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGithubTargetOutputWithDefaults instantiates a new CreateGithubTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGithubTargetWithDefaults instantiates a new CreateGithubTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGKETarget instantiates a new CreateGKETarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGKETargetOutput instantiates a new CreateGKETargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateGKETargetOutputWithDefaults instantiates a new CreateGKETargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateGKETargetWithDefaults instantiates a new CreateGKETarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateKey instantiates a new CreateKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateKeyOutput instantiates a new CreateKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateKeyOutputWithDefaults instantiates a new CreateKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateKeyWithDefaults instantiates a new CreateKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateLdapTarget instantiates a new CreateLdapTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateLdapTargetOutput instantiates a new CreateLdapTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateLdapTargetOutputWithDefaults instantiates a new CreateLdapTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateLdapTargetWithDefaults instantiates a new CreateLdapTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateManagedKey instantiates a new CreateManagedKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateManagedKeyOutput instantiates a new CreateManagedKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateManagedKeyOutputWithDefaults instantiates a new CreateManagedKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateManagedKeyWithDefaults instantiates a new CreateManagedKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateNativeK8STarget instantiates a new CreateNativeK8STarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateNativeK8STargetOutput instantiates a new CreateNativeK8STargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateNativeK8STargetOutputWithDefaults instantiates a new CreateNativeK8STargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateNativeK8STargetWithDefaults instantiates a new CreateNativeK8STarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreatePKICertIssuer instantiates a new CreatePKICertIssuer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatePKICertIssuerOutput instantiates a new CreatePKICertIssuerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatePKICertIssuerOutputWithDefaults instantiates a new CreatePKICertIssuerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreatePKICertIssuerWithDefaults instantiates a new CreatePKICertIssuer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRabbitMQTarget instantiates a new CreateRabbitMQTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRabbitMQTargetOutput instantiates a new CreateRabbitMQTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRabbitMQTargetOutputWithDefaults instantiates a new CreateRabbitMQTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRabbitMQTargetWithDefaults instantiates a new CreateRabbitMQTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRdpTarget instantiates a new CreateRdpTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRdpTargetWithDefaults instantiates a new CreateRdpTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRole instantiates a new CreateRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRoleAuthMethodAssocOutput instantiates a new CreateRoleAuthMethodAssocOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRoleAuthMethodAssocOutputWithDefaults instantiates a new CreateRoleAuthMethodAssocOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRoleWithDefaults instantiates a new CreateRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRotatedSecret instantiates a new CreateRotatedSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRotatedSecretOutput instantiates a new CreateRotatedSecretOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateRotatedSecretOutputWithDefaults instantiates a new CreateRotatedSecretOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateRotatedSecretWithDefaults instantiates a new CreateRotatedSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSalesforceTarget instantiates a new CreateSalesforceTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSalesforceTargetOutput instantiates a new CreateSalesforceTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSalesforceTargetOutputWithDefaults instantiates a new CreateSalesforceTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSalesforceTargetWithDefaults instantiates a new CreateSalesforceTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSecret instantiates a new CreateSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSecretOutput instantiates a new CreateSecretOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSecretOutputWithDefaults instantiates a new CreateSecretOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSecretWithDefaults instantiates a new CreateSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSSHCertIssuer instantiates a new CreateSSHCertIssuer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSSHCertIssuerOutput instantiates a new CreateSSHCertIssuerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSSHCertIssuerOutputWithDefaults instantiates a new CreateSSHCertIssuerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSSHCertIssuerWithDefaults instantiates a new CreateSSHCertIssuer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSSHTarget instantiates a new CreateSSHTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSSHTargetOutput instantiates a new CreateSSHTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateSSHTargetOutputWithDefaults instantiates a new CreateSSHTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateSSHTargetWithDefaults instantiates a new CreateSSHTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTargetItemAssocOutput instantiates a new CreateTargetItemAssocOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTargetItemAssocOutputWithDefaults instantiates a new CreateTargetItemAssocOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTargetOutput instantiates a new CreateTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTargetOutputWithDefaults instantiates a new CreateTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTokenizer instantiates a new CreateTokenizer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTokenizerOutput instantiates a new CreateTokenizerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateTokenizerOutputWithDefaults instantiates a new CreateTokenizerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateTokenizerWithDefaults instantiates a new CreateTokenizer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWebTarget instantiates a new CreateWebTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWebTargetOutput instantiates a new CreateWebTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreateWebTargetOutputWithDefaults instantiates a new CreateWebTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCreateWebTargetWithDefaults instantiates a new CreateWebTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerFragment instantiates a new CustomerFragment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerFragmentsJson instantiates a new CustomerFragmentsJson object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerFragmentsJsonWithDefaults instantiates a new CustomerFragmentsJson object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerFragmentWithDefaults instantiates a new CustomerFragment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCustomerFullAddress instantiates a new CustomerFullAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCustomerFullAddressWithDefaults instantiates a new CustomerFullAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDatadogForwardingConfig instantiates a new DatadogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDatadogForwardingConfigWithDefaults instantiates a new DatadogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDataProtectionSection instantiates a new DataProtectionSection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDataProtectionSectionWithDefaults instantiates a new DataProtectionSection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecrypt instantiates a new Decrypt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptFile instantiates a new DecryptFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptFileOutput instantiates a new DecryptFileOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptFileOutputWithDefaults instantiates a new DecryptFileOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptFileWithDefaults instantiates a new DecryptFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptOutput instantiates a new DecryptOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptOutputWithDefaults instantiates a new DecryptOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptPKCS1 instantiates a new DecryptPKCS1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptPKCS1Output instantiates a new DecryptPKCS1Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptPKCS1OutputWithDefaults instantiates a new DecryptPKCS1Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptPKCS1WithDefaults instantiates a new DecryptPKCS1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptWithClassicKey instantiates a new DecryptWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptWithClassicKeyOutput instantiates a new DecryptWithClassicKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDecryptWithClassicKeyOutputWithDefaults instantiates a new DecryptWithClassicKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptWithClassicKeyWithDefaults instantiates a new DecryptWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDecryptWithDefaults instantiates a new Decrypt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDefaultConfigPart instantiates a new DefaultConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDefaultConfigPartWithDefaults instantiates a new DefaultConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAuthMethod instantiates a new DeleteAuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAuthMethodOutput instantiates a new DeleteAuthMethodOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAuthMethodOutputWithDefaults instantiates a new DeleteAuthMethodOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAuthMethods instantiates a new DeleteAuthMethods object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAuthMethodsOutput instantiates a new DeleteAuthMethodsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteAuthMethodsOutputWithDefaults instantiates a new DeleteAuthMethodsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAuthMethodsWithDefaults instantiates a new DeleteAuthMethods object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteAuthMethodWithDefaults instantiates a new DeleteAuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteItem instantiates a new DeleteItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteItemOutput instantiates a new DeleteItemOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteItemOutputWithDefaults instantiates a new DeleteItemOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteItems instantiates a new DeleteItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteItemsOutput instantiates a new DeleteItemsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteItemsOutputWithDefaults instantiates a new DeleteItemsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteItemsWithDefaults instantiates a new DeleteItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteItemWithDefaults instantiates a new DeleteItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteRole instantiates a new DeleteRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteRoleAssociation instantiates a new DeleteRoleAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteRoleAssociationWithDefaults instantiates a new DeleteRoleAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteRoleRule instantiates a new DeleteRoleRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteRoleRuleOutput instantiates a new DeleteRoleRuleOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteRoleRuleOutputWithDefaults instantiates a new DeleteRoleRuleOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteRoleRuleWithDefaults instantiates a new DeleteRoleRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteRoles instantiates a new DeleteRoles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteRolesWithDefaults instantiates a new DeleteRoles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteRoleWithDefaults instantiates a new DeleteRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteTarget instantiates a new DeleteTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteTargetAssociation instantiates a new DeleteTargetAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteTargetAssociationWithDefaults instantiates a new DeleteTargetAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteTargets instantiates a new DeleteTargets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteTargetsWithDefaults instantiates a new DeleteTargets object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteTargetWithDefaults instantiates a new DeleteTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDescribeItem instantiates a new DescribeItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDescribeItemWithDefaults instantiates a new DescribeItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDescribePermissions instantiates a new DescribePermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDescribePermissionsOutput instantiates a new DescribePermissionsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDescribePermissionsOutputWithDefaults instantiates a new DescribePermissionsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDescribePermissionsWithDefaults instantiates a new DescribePermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDescribeSubClaims instantiates a new DescribeSubClaims object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDescribeSubClaimsOutput instantiates a new DescribeSubClaimsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDescribeSubClaimsOutputWithDefaults instantiates a new DescribeSubClaimsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDescribeSubClaimsWithDefaults instantiates a new DescribeSubClaims object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDetokenize instantiates a new Detokenize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDetokenizeOutput instantiates a new DetokenizeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDetokenizeOutputWithDefaults instantiates a new DetokenizeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDetokenizeWithDefaults instantiates a new Detokenize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDSProducerDetails instantiates a new DSProducerDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDSProducerDetailsWithDefaults instantiates a new DSProducerDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDynamicSecretProducerInfo instantiates a new DynamicSecretProducerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDynamicSecretProducerInfoWithDefaults instantiates a new DynamicSecretProducerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewElasticsearchLogForwardingConfig instantiates a new ElasticsearchLogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewElasticsearchLogForwardingConfigWithDefaults instantiates a new ElasticsearchLogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEmailPassAccessRules instantiates a new EmailPassAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEmailPassAccessRulesWithDefaults instantiates a new EmailPassAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEmailTokenizerInfo instantiates a new EmailTokenizerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEmailTokenizerInfoWithDefaults instantiates a new EmailTokenizerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncrypt instantiates a new Encrypt object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptFile instantiates a new EncryptFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptFileOutput instantiates a new EncryptFileOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptFileOutputWithDefaults instantiates a new EncryptFileOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptFileWithDefaults instantiates a new EncryptFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptOutput instantiates a new EncryptOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptOutputWithDefaults instantiates a new EncryptOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptPKCS1 instantiates a new EncryptPKCS1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptPKCS1Output instantiates a new EncryptPKCS1Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptPKCS1OutputWithDefaults instantiates a new EncryptPKCS1Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptPKCS1WithDefaults instantiates a new EncryptPKCS1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptWithClassicKey instantiates a new EncryptWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptWithClassicKeyOutput instantiates a new EncryptWithClassicKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEncryptWithClassicKeyOutputWithDefaults instantiates a new EncryptWithClassicKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptWithClassicKeyWithDefaults instantiates a new EncryptWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEncryptWithDefaults instantiates a new Encrypt object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExportClassicKey instantiates a new ExportClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExportClassicKeyOutput instantiates a new ExportClassicKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExportClassicKeyOutputWithDefaults instantiates a new ExportClassicKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExportClassicKeyWithDefaults instantiates a new ExportClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewExternalKMSKeyId instantiates a new ExternalKMSKeyId object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewExternalKMSKeyIdWithDefaults instantiates a new ExternalKMSKeyId object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayAddAllowedManagementAccess instantiates a new GatewayAddAllowedManagementAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayAddAllowedManagementAccessWithDefaults instantiates a new GatewayAddAllowedManagementAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayAddSubAdmins instantiates a new GatewayAddSubAdmins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayAddSubAdminsOutput instantiates a new GatewayAddSubAdminsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayAddSubAdminsOutputWithDefaults instantiates a new GatewayAddSubAdminsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayAddSubAdminsWithDefaults instantiates a new GatewayAddSubAdmins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateK8SAuthConfig instantiates a new GatewayCreateK8SAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateK8SAuthConfigOutput instantiates a new GatewayCreateK8SAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateK8SAuthConfigOutputWithDefaults instantiates a new GatewayCreateK8SAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateK8SAuthConfigWithDefaults instantiates a new GatewayCreateK8SAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateMigration instantiates a new GatewayCreateMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateMigrationWithDefaults instantiates a new GatewayCreateMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerArtifactory instantiates a new GatewayCreateProducerArtifactory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerArtifactoryOutput instantiates a new GatewayCreateProducerArtifactoryOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerArtifactoryOutputWithDefaults instantiates a new GatewayCreateProducerArtifactoryOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerArtifactoryWithDefaults instantiates a new GatewayCreateProducerArtifactory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerAws instantiates a new GatewayCreateProducerAws object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerAwsOutput instantiates a new GatewayCreateProducerAwsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerAwsOutputWithDefaults instantiates a new GatewayCreateProducerAwsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerAwsWithDefaults instantiates a new GatewayCreateProducerAws object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerAzure instantiates a new GatewayCreateProducerAzure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerAzureOutput instantiates a new GatewayCreateProducerAzureOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerAzureOutputWithDefaults instantiates a new GatewayCreateProducerAzureOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerAzureWithDefaults instantiates a new GatewayCreateProducerAzure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCassandra instantiates a new GatewayCreateProducerCassandra object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCassandraOutput instantiates a new GatewayCreateProducerCassandraOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCassandraOutputWithDefaults instantiates a new GatewayCreateProducerCassandraOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCassandraWithDefaults instantiates a new GatewayCreateProducerCassandra object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCertificateAutomation instantiates a new GatewayCreateProducerCertificateAutomation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCertificateAutomationOutput instantiates a new GatewayCreateProducerCertificateAutomationOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCertificateAutomationOutputWithDefaults instantiates a new GatewayCreateProducerCertificateAutomationOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCertificateAutomationWithDefaults instantiates a new GatewayCreateProducerCertificateAutomation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerChef instantiates a new GatewayCreateProducerChef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerChefOutput instantiates a new GatewayCreateProducerChefOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerChefOutputWithDefaults instantiates a new GatewayCreateProducerChefOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerChefWithDefaults instantiates a new GatewayCreateProducerChef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCustom instantiates a new GatewayCreateProducerCustom object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCustomOutput instantiates a new GatewayCreateProducerCustomOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerCustomOutputWithDefaults instantiates a new GatewayCreateProducerCustomOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerCustomWithDefaults instantiates a new GatewayCreateProducerCustom object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerDockerhub instantiates a new GatewayCreateProducerDockerhub object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerDockerhubOutput instantiates a new GatewayCreateProducerDockerhubOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerDockerhubOutputWithDefaults instantiates a new GatewayCreateProducerDockerhubOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerDockerhubWithDefaults instantiates a new GatewayCreateProducerDockerhub object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerEks instantiates a new GatewayCreateProducerEks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerEksOutput instantiates a new GatewayCreateProducerEksOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerEksOutputWithDefaults instantiates a new GatewayCreateProducerEksOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerEksWithDefaults instantiates a new GatewayCreateProducerEks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGcp instantiates a new GatewayCreateProducerGcp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGcpOutput instantiates a new GatewayCreateProducerGcpOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGcpOutputWithDefaults instantiates a new GatewayCreateProducerGcpOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGcpWithDefaults instantiates a new GatewayCreateProducerGcp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGithub instantiates a new GatewayCreateProducerGithub object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGithubOutput instantiates a new GatewayCreateProducerGithubOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGithubOutputWithDefaults instantiates a new GatewayCreateProducerGithubOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGithubWithDefaults instantiates a new GatewayCreateProducerGithub object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGke instantiates a new GatewayCreateProducerGke object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGkeOutput instantiates a new GatewayCreateProducerGkeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerGkeOutputWithDefaults instantiates a new GatewayCreateProducerGkeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerGkeWithDefaults instantiates a new GatewayCreateProducerGke object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerHanaDb instantiates a new GatewayCreateProducerHanaDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerHanaDbOutput instantiates a new GatewayCreateProducerHanaDbOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerHanaDbOutputWithDefaults instantiates a new GatewayCreateProducerHanaDbOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerHanaDbWithDefaults instantiates a new GatewayCreateProducerHanaDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerLdap instantiates a new GatewayCreateProducerLdap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerLdapOutput instantiates a new GatewayCreateProducerLdapOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerLdapOutputWithDefaults instantiates a new GatewayCreateProducerLdapOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerLdapWithDefaults instantiates a new GatewayCreateProducerLdap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMongo instantiates a new GatewayCreateProducerMongo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMongoOutput instantiates a new GatewayCreateProducerMongoOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMongoOutputWithDefaults instantiates a new GatewayCreateProducerMongoOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMongoWithDefaults instantiates a new GatewayCreateProducerMongo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMSSQL instantiates a new GatewayCreateProducerMSSQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMSSQLOutput instantiates a new GatewayCreateProducerMSSQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMSSQLOutputWithDefaults instantiates a new GatewayCreateProducerMSSQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMSSQLWithDefaults instantiates a new GatewayCreateProducerMSSQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMySQL instantiates a new GatewayCreateProducerMySQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMySQLOutput instantiates a new GatewayCreateProducerMySQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerMySQLOutputWithDefaults instantiates a new GatewayCreateProducerMySQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerMySQLWithDefaults instantiates a new GatewayCreateProducerMySQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerNativeK8S instantiates a new GatewayCreateProducerNativeK8S object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerNativeK8SOutput instantiates a new GatewayCreateProducerNativeK8SOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerNativeK8SOutputWithDefaults instantiates a new GatewayCreateProducerNativeK8SOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerNativeK8SWithDefaults instantiates a new GatewayCreateProducerNativeK8S object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerOracleDb instantiates a new GatewayCreateProducerOracleDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerOracleDbOutput instantiates a new GatewayCreateProducerOracleDbOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerOracleDbOutputWithDefaults instantiates a new GatewayCreateProducerOracleDbOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerOracleDbWithDefaults instantiates a new GatewayCreateProducerOracleDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerPostgreSQL instantiates a new GatewayCreateProducerPostgreSQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerPostgreSQLOutput instantiates a new GatewayCreateProducerPostgreSQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerPostgreSQLOutputWithDefaults instantiates a new GatewayCreateProducerPostgreSQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerPostgreSQLWithDefaults instantiates a new GatewayCreateProducerPostgreSQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRabbitMQ instantiates a new GatewayCreateProducerRabbitMQ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRabbitMQOutput instantiates a new GatewayCreateProducerRabbitMQOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRabbitMQOutputWithDefaults instantiates a new GatewayCreateProducerRabbitMQOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRabbitMQWithDefaults instantiates a new GatewayCreateProducerRabbitMQ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRdp instantiates a new GatewayCreateProducerRdp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRdpOutput instantiates a new GatewayCreateProducerRdpOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRdpOutputWithDefaults instantiates a new GatewayCreateProducerRdpOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRdpWithDefaults instantiates a new GatewayCreateProducerRdp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRedshift instantiates a new GatewayCreateProducerRedshift object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRedshiftOutput instantiates a new GatewayCreateProducerRedshiftOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerRedshiftOutputWithDefaults instantiates a new GatewayCreateProducerRedshiftOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerRedshiftWithDefaults instantiates a new GatewayCreateProducerRedshift object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerSnowflake instantiates a new GatewayCreateProducerSnowflake object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerSnowflakeOutput instantiates a new GatewayCreateProducerSnowflakeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayCreateProducerSnowflakeOutputWithDefaults instantiates a new GatewayCreateProducerSnowflakeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayCreateProducerSnowflakeWithDefaults instantiates a new GatewayCreateProducerSnowflake object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteAllowedManagementAccess instantiates a new GatewayDeleteAllowedManagementAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteAllowedManagementAccessWithDefaults instantiates a new GatewayDeleteAllowedManagementAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteK8SAuthConfig instantiates a new GatewayDeleteK8SAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteK8SAuthConfigOutput instantiates a new GatewayDeleteK8SAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteK8SAuthConfigOutputWithDefaults instantiates a new GatewayDeleteK8SAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteK8SAuthConfigWithDefaults instantiates a new GatewayDeleteK8SAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteMigration instantiates a new GatewayDeleteMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteMigrationWithDefaults instantiates a new GatewayDeleteMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteProducer instantiates a new GatewayDeleteProducer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteProducerOutput instantiates a new GatewayDeleteProducerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteProducerOutputWithDefaults instantiates a new GatewayDeleteProducerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteProducerWithDefaults instantiates a new GatewayDeleteProducer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteSubAdmins instantiates a new GatewayDeleteSubAdmins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteSubAdminsOutput instantiates a new GatewayDeleteSubAdminsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayDeleteSubAdminsOutputWithDefaults instantiates a new GatewayDeleteSubAdminsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayDeleteSubAdminsWithDefaults instantiates a new GatewayDeleteSubAdmins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetConfig instantiates a new GatewayGetConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetConfigWithDefaults instantiates a new GatewayGetConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetK8SAuthConfig instantiates a new GatewayGetK8SAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetK8SAuthConfigOutput instantiates a new GatewayGetK8SAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetK8SAuthConfigOutputWithDefaults instantiates a new GatewayGetK8SAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetK8SAuthConfigWithDefaults instantiates a new GatewayGetK8SAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetLdapAuthConfig instantiates a new GatewayGetLdapAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetLdapAuthConfigOutput instantiates a new GatewayGetLdapAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetLdapAuthConfigOutputWithDefaults instantiates a new GatewayGetLdapAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetLdapAuthConfigWithDefaults instantiates a new GatewayGetLdapAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetMigration instantiates a new GatewayGetMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetMigrationWithDefaults instantiates a new GatewayGetMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetProducer instantiates a new GatewayGetProducer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetProducerWithDefaults instantiates a new GatewayGetProducer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayGetTmpUsers instantiates a new GatewayGetTmpUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayGetTmpUsersWithDefaults instantiates a new GatewayGetTmpUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayListAllowedManagementAccess instantiates a new GatewayListAllowedManagementAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayListAllowedManagementAccessWithDefaults instantiates a new GatewayListAllowedManagementAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayListMigration instantiates a new GatewayListMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayListMigrationWithDefaults instantiates a new GatewayListMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayListProducers instantiates a new GatewayListProducers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayListProducersWithDefaults instantiates a new GatewayListProducers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayListSubAdmins instantiates a new GatewayListSubAdmins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayListSubAdminsWithDefaults instantiates a new GatewayListSubAdmins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMessageQueueInfo instantiates a new GatewayMessageQueueInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMessageQueueInfoWithDefaults instantiates a new GatewayMessageQueueInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigratePersonalItems instantiates a new GatewayMigratePersonalItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigratePersonalItemsOutput instantiates a new GatewayMigratePersonalItemsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigratePersonalItemsOutputWithDefaults instantiates a new GatewayMigratePersonalItemsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigratePersonalItemsWithDefaults instantiates a new GatewayMigratePersonalItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationCreateOutput instantiates a new GatewayMigrationCreateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationCreateOutputWithDefaults instantiates a new GatewayMigrationCreateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationDeleteOutput instantiates a new GatewayMigrationDeleteOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationDeleteOutputWithDefaults instantiates a new GatewayMigrationDeleteOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationGetOutput instantiates a new GatewayMigrationGetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationGetOutputWithDefaults instantiates a new GatewayMigrationGetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationListOutput instantiates a new GatewayMigrationListOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationListOutputWithDefaults instantiates a new GatewayMigrationListOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationSyncOutput instantiates a new GatewayMigrationSyncOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationSyncOutputWithDefaults instantiates a new GatewayMigrationSyncOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayMigrationUpdateOutput instantiates a new GatewayMigrationUpdateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayMigrationUpdateOutputWithDefaults instantiates a new GatewayMigrationUpdateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayRevokeTmpUsers instantiates a new GatewayRevokeTmpUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayRevokeTmpUsersWithDefaults instantiates a new GatewayRevokeTmpUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewaysListResponse instantiates a new GatewaysListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewaysListResponseWithDefaults instantiates a new GatewaysListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayStartProducer instantiates a new GatewayStartProducer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayStartProducerOutput instantiates a new GatewayStartProducerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayStartProducerOutputWithDefaults instantiates a new GatewayStartProducerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayStartProducerWithDefaults instantiates a new GatewayStartProducer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayStatusMigration instantiates a new GatewayStatusMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayStatusMigrationWithDefaults instantiates a new GatewayStatusMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayStopProducer instantiates a new GatewayStopProducer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayStopProducerOutput instantiates a new GatewayStopProducerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayStopProducerOutputWithDefaults instantiates a new GatewayStopProducerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayStopProducerWithDefaults instantiates a new GatewayStopProducer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewaySyncMigration instantiates a new GatewaySyncMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewaySyncMigrationWithDefaults instantiates a new GatewaySyncMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateItem instantiates a new GatewayUpdateItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateItemOutput instantiates a new GatewayUpdateItemOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateItemOutputWithDefaults instantiates a new GatewayUpdateItemOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateItemWithDefaults instantiates a new GatewayUpdateItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateK8SAuthConfig instantiates a new GatewayUpdateK8SAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateK8SAuthConfigOutput instantiates a new GatewayUpdateK8SAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateK8SAuthConfigOutputWithDefaults instantiates a new GatewayUpdateK8SAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateK8SAuthConfigWithDefaults instantiates a new GatewayUpdateK8SAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateLdapAuthConfig instantiates a new GatewayUpdateLdapAuthConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateLdapAuthConfigOutput instantiates a new GatewayUpdateLdapAuthConfigOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateLdapAuthConfigOutputWithDefaults instantiates a new GatewayUpdateLdapAuthConfigOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateLdapAuthConfigWithDefaults instantiates a new GatewayUpdateLdapAuthConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateMigration instantiates a new GatewayUpdateMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateMigrationWithDefaults instantiates a new GatewayUpdateMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerArtifactory instantiates a new GatewayUpdateProducerArtifactory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerArtifactoryOutput instantiates a new GatewayUpdateProducerArtifactoryOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerArtifactoryOutputWithDefaults instantiates a new GatewayUpdateProducerArtifactoryOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerArtifactoryWithDefaults instantiates a new GatewayUpdateProducerArtifactory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerAws instantiates a new GatewayUpdateProducerAws object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerAwsOutput instantiates a new GatewayUpdateProducerAwsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerAwsOutputWithDefaults instantiates a new GatewayUpdateProducerAwsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerAwsWithDefaults instantiates a new GatewayUpdateProducerAws object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerAzure instantiates a new GatewayUpdateProducerAzure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerAzureOutput instantiates a new GatewayUpdateProducerAzureOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerAzureOutputWithDefaults instantiates a new GatewayUpdateProducerAzureOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerAzureWithDefaults instantiates a new GatewayUpdateProducerAzure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCassandra instantiates a new GatewayUpdateProducerCassandra object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCassandraOutput instantiates a new GatewayUpdateProducerCassandraOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCassandraOutputWithDefaults instantiates a new GatewayUpdateProducerCassandraOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCassandraWithDefaults instantiates a new GatewayUpdateProducerCassandra object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCertificateAutomation instantiates a new GatewayUpdateProducerCertificateAutomation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCertificateAutomationOutput instantiates a new GatewayUpdateProducerCertificateAutomationOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCertificateAutomationOutputWithDefaults instantiates a new GatewayUpdateProducerCertificateAutomationOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCertificateAutomationWithDefaults instantiates a new GatewayUpdateProducerCertificateAutomation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerChef instantiates a new GatewayUpdateProducerChef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerChefOutput instantiates a new GatewayUpdateProducerChefOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerChefOutputWithDefaults instantiates a new GatewayUpdateProducerChefOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerChefWithDefaults instantiates a new GatewayUpdateProducerChef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCustom instantiates a new GatewayUpdateProducerCustom object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCustomOutput instantiates a new GatewayUpdateProducerCustomOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerCustomOutputWithDefaults instantiates a new GatewayUpdateProducerCustomOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerCustomWithDefaults instantiates a new GatewayUpdateProducerCustom object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerDockerhub instantiates a new GatewayUpdateProducerDockerhub object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerDockerhubOutput instantiates a new GatewayUpdateProducerDockerhubOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerDockerhubOutputWithDefaults instantiates a new GatewayUpdateProducerDockerhubOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerDockerhubWithDefaults instantiates a new GatewayUpdateProducerDockerhub object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerEks instantiates a new GatewayUpdateProducerEks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerEksOutput instantiates a new GatewayUpdateProducerEksOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerEksOutputWithDefaults instantiates a new GatewayUpdateProducerEksOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerEksWithDefaults instantiates a new GatewayUpdateProducerEks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGcp instantiates a new GatewayUpdateProducerGcp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGcpOutput instantiates a new GatewayUpdateProducerGcpOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGcpOutputWithDefaults instantiates a new GatewayUpdateProducerGcpOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGcpWithDefaults instantiates a new GatewayUpdateProducerGcp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGithub instantiates a new GatewayUpdateProducerGithub object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGithubOutput instantiates a new GatewayUpdateProducerGithubOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGithubOutputWithDefaults instantiates a new GatewayUpdateProducerGithubOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGithubWithDefaults instantiates a new GatewayUpdateProducerGithub object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGke instantiates a new GatewayUpdateProducerGke object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGkeOutput instantiates a new GatewayUpdateProducerGkeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerGkeOutputWithDefaults instantiates a new GatewayUpdateProducerGkeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerGkeWithDefaults instantiates a new GatewayUpdateProducerGke object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerHanaDb instantiates a new GatewayUpdateProducerHanaDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerHanaDbOutput instantiates a new GatewayUpdateProducerHanaDbOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerHanaDbOutputWithDefaults instantiates a new GatewayUpdateProducerHanaDbOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerHanaDbWithDefaults instantiates a new GatewayUpdateProducerHanaDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerLdap instantiates a new GatewayUpdateProducerLdap object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerLdapOutput instantiates a new GatewayUpdateProducerLdapOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerLdapOutputWithDefaults instantiates a new GatewayUpdateProducerLdapOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerLdapWithDefaults instantiates a new GatewayUpdateProducerLdap object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMongo instantiates a new GatewayUpdateProducerMongo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMongoOutput instantiates a new GatewayUpdateProducerMongoOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMongoOutputWithDefaults instantiates a new GatewayUpdateProducerMongoOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMongoWithDefaults instantiates a new GatewayUpdateProducerMongo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMSSQL instantiates a new GatewayUpdateProducerMSSQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMSSQLOutput instantiates a new GatewayUpdateProducerMSSQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMSSQLOutputWithDefaults instantiates a new GatewayUpdateProducerMSSQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMSSQLWithDefaults instantiates a new GatewayUpdateProducerMSSQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMySQL instantiates a new GatewayUpdateProducerMySQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMySQLOutput instantiates a new GatewayUpdateProducerMySQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerMySQLOutputWithDefaults instantiates a new GatewayUpdateProducerMySQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerMySQLWithDefaults instantiates a new GatewayUpdateProducerMySQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerNativeK8S instantiates a new GatewayUpdateProducerNativeK8S object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerNativeK8SOutput instantiates a new GatewayUpdateProducerNativeK8SOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerNativeK8SOutputWithDefaults instantiates a new GatewayUpdateProducerNativeK8SOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerNativeK8SWithDefaults instantiates a new GatewayUpdateProducerNativeK8S object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerOracleDb instantiates a new GatewayUpdateProducerOracleDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerOracleDbOutput instantiates a new GatewayUpdateProducerOracleDbOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerOracleDbOutputWithDefaults instantiates a new GatewayUpdateProducerOracleDbOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerOracleDbWithDefaults instantiates a new GatewayUpdateProducerOracleDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerPostgreSQL instantiates a new GatewayUpdateProducerPostgreSQL object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerPostgreSQLOutput instantiates a new GatewayUpdateProducerPostgreSQLOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerPostgreSQLOutputWithDefaults instantiates a new GatewayUpdateProducerPostgreSQLOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerPostgreSQLWithDefaults instantiates a new GatewayUpdateProducerPostgreSQL object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRabbitMQ instantiates a new GatewayUpdateProducerRabbitMQ object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRabbitMQOutput instantiates a new GatewayUpdateProducerRabbitMQOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRabbitMQOutputWithDefaults instantiates a new GatewayUpdateProducerRabbitMQOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRabbitMQWithDefaults instantiates a new GatewayUpdateProducerRabbitMQ object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRdp instantiates a new GatewayUpdateProducerRdp object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRdpOutput instantiates a new GatewayUpdateProducerRdpOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRdpOutputWithDefaults instantiates a new GatewayUpdateProducerRdpOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRdpWithDefaults instantiates a new GatewayUpdateProducerRdp object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRedshift instantiates a new GatewayUpdateProducerRedshift object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRedshiftOutput instantiates a new GatewayUpdateProducerRedshiftOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerRedshiftOutputWithDefaults instantiates a new GatewayUpdateProducerRedshiftOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerRedshiftWithDefaults instantiates a new GatewayUpdateProducerRedshift object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerSnowflake instantiates a new GatewayUpdateProducerSnowflake object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerSnowflakeOutput instantiates a new GatewayUpdateProducerSnowflakeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateProducerSnowflakeOutputWithDefaults instantiates a new GatewayUpdateProducerSnowflakeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateProducerSnowflakeWithDefaults instantiates a new GatewayUpdateProducerSnowflake object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGatewayUpdateTmpUsers instantiates a new GatewayUpdateTmpUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGatewayUpdateTmpUsersWithDefaults instantiates a new GatewayUpdateTmpUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPAccessRules instantiates a new GCPAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPAccessRulesWithDefaults instantiates a new GCPAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPPayload instantiates a new GCPPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPPayloadWithDefaults instantiates a new GCPPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGCPSecretsMigration instantiates a new GCPSecretsMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGCPSecretsMigrationWithDefaults instantiates a new GCPSecretsMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenCustomerFragment instantiates a new GenCustomerFragment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenCustomerFragmentWithDefaults instantiates a new GenCustomerFragment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGeneralConfigPart instantiates a new GeneralConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGeneralConfigPartWithDefaults instantiates a new GeneralConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAccountSettings instantiates a new GetAccountSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAccountSettingsCommandOutput instantiates a new GetAccountSettingsCommandOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAccountSettingsCommandOutputWithDefaults instantiates a new GetAccountSettingsCommandOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAccountSettingsWithDefaults instantiates a new GetAccountSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetAuthMethod instantiates a new GetAuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetAuthMethodWithDefaults instantiates a new GetAuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCloudIdentity instantiates a new GetCloudIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCloudIdentityOutput instantiates a new GetCloudIdentityOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetCloudIdentityOutputWithDefaults instantiates a new GetCloudIdentityOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetCloudIdentityWithDefaults instantiates a new GetCloudIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetDynamicSecretValue instantiates a new GetDynamicSecretValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetDynamicSecretValueWithDefaults instantiates a new GetDynamicSecretValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubeExecCreds instantiates a new GetKubeExecCreds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubeExecCredsOutput instantiates a new GetKubeExecCredsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetKubeExecCredsOutputWithDefaults instantiates a new GetKubeExecCredsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetKubeExecCredsWithDefaults instantiates a new GetKubeExecCreds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetPKICertificate instantiates a new GetPKICertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetPKICertificateOutput instantiates a new GetPKICertificateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetPKICertificateOutputWithDefaults instantiates a new GetPKICertificateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetPKICertificateWithDefaults instantiates a new GetPKICertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetProducersListReplyObj instantiates a new GetProducersListReplyObj object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetProducersListReplyObjWithDefaults instantiates a new GetProducersListReplyObj object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRole instantiates a new GetRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRoleWithDefaults instantiates a new GetRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRotatedSecretValue instantiates a new GetRotatedSecretValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRotatedSecretValueWithDefaults instantiates a new GetRotatedSecretValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRSAPublic instantiates a new GetRSAPublic object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRSAPublicOutput instantiates a new GetRSAPublicOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetRSAPublicOutputWithDefaults instantiates a new GetRSAPublicOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetRSAPublicWithDefaults instantiates a new GetRSAPublic object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetSecretValue instantiates a new GetSecretValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetSecretValueWithDefaults instantiates a new GetSecretValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetSSHCertificate instantiates a new GetSSHCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetSSHCertificateOutput instantiates a new GetSSHCertificateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetSSHCertificateOutputWithDefaults instantiates a new GetSSHCertificateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetSSHCertificateWithDefaults instantiates a new GetSSHCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetSubAdminsListReplyObj instantiates a new GetSubAdminsListReplyObj object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetSubAdminsListReplyObjWithDefaults instantiates a new GetSubAdminsListReplyObj object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTags instantiates a new GetTags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTagsWithDefaults instantiates a new GetTags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTarget instantiates a new GetTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTargetDetails instantiates a new GetTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTargetDetailsOutput instantiates a new GetTargetDetailsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGetTargetDetailsOutputWithDefaults instantiates a new GetTargetDetailsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTargetDetailsWithDefaults instantiates a new GetTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGetTargetWithDefaults instantiates a new GetTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGwClusterIdentity instantiates a new GwClusterIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGwClusterIdentityWithDefaults instantiates a new GwClusterIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHashiMigration instantiates a new HashiMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHashiMigrationWithDefaults instantiates a new HashiMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHashiPayload instantiates a new HashiPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHashiPayloadWithDefaults instantiates a new HashiPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewHuaweiAccessRules instantiates a new HuaweiAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewHuaweiAccessRulesWithDefaults instantiates a new HuaweiAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewItem instantiates a new Item object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewItemGeneralInfo instantiates a new ItemGeneralInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewItemGeneralInfoWithDefaults instantiates a new ItemGeneralInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewItemTargetAssociation instantiates a new ItemTargetAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewItemTargetAssociationWithDefaults instantiates a new ItemTargetAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewItemVersion instantiates a new ItemVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewItemVersionWithDefaults instantiates a new ItemVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewItemWithDefaults instantiates a new Item object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewJSONError instantiates a new JSONError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewJSONErrorWithDefaults instantiates a new JSONError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SAuth instantiates a new K8SAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SAuthsConfigLastChange instantiates a new K8SAuthsConfigLastChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SAuthsConfigLastChangeWithDefaults instantiates a new K8SAuthsConfigLastChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SAuthsConfigPart instantiates a new K8SAuthsConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SAuthsConfigPartWithDefaults instantiates a new K8SAuthsConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SAuthWithDefaults instantiates a new K8SAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SMigration instantiates a new K8SMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SMigrationWithDefaults instantiates a new K8SMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewK8SPayload instantiates a new K8SPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewK8SPayloadWithDefaults instantiates a new K8SPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClient instantiates a new KMIPClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipClientDeleteRule instantiates a new KmipClientDeleteRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipClientDeleteRuleWithDefaults instantiates a new KmipClientDeleteRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClientGetResponse instantiates a new KMIPClientGetResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPClientGetResponseWithDefaults instantiates a new KMIPClientGetResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClientListResponse instantiates a new KMIPClientListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPClientListResponseWithDefaults instantiates a new KMIPClientListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClientsConfigPart instantiates a new KMIPClientsConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPClientsConfigPartWithDefaults instantiates a new KMIPClientsConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipClientSetRule instantiates a new KmipClientSetRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipClientSetRuleWithDefaults instantiates a new KmipClientSetRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClientUpdateResponse instantiates a new KMIPClientUpdateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPClientUpdateResponseWithDefaults instantiates a new KMIPClientUpdateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPClientWithDefaults instantiates a new KMIPClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPConfigPart instantiates a new KMIPConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPConfigPartWithDefaults instantiates a new KMIPConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipCreateClient instantiates a new KmipCreateClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipCreateClientOutput instantiates a new KmipCreateClientOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipCreateClientOutputWithDefaults instantiates a new KmipCreateClientOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipCreateClientWithDefaults instantiates a new KmipCreateClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipDeleteClient instantiates a new KmipDeleteClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipDeleteClientWithDefaults instantiates a new KmipDeleteClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipDeleteServer instantiates a new KmipDeleteServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipDeleteServerWithDefaults instantiates a new KmipDeleteServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipDescribeClient instantiates a new KmipDescribeClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipDescribeClientWithDefaults instantiates a new KmipDescribeClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipDescribeServer instantiates a new KmipDescribeServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipDescribeServerOutput instantiates a new KmipDescribeServerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipDescribeServerOutputWithDefaults instantiates a new KmipDescribeServerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipDescribeServerWithDefaults instantiates a new KmipDescribeServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPEnvironmentCreateResponse instantiates a new KMIPEnvironmentCreateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKMIPEnvironmentCreateResponseWithDefaults instantiates a new KMIPEnvironmentCreateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipListClients instantiates a new KmipListClients object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipListClientsWithDefaults instantiates a new KmipListClients object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipMoveServer instantiates a new KmipMoveServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipMoveServerOutput instantiates a new KmipMoveServerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipMoveServerOutputWithDefaults instantiates a new KmipMoveServerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipMoveServerWithDefaults instantiates a new KmipMoveServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipRenewClientCertificate instantiates a new KmipRenewClientCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipRenewClientCertificateOutput instantiates a new KmipRenewClientCertificateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipRenewClientCertificateOutputWithDefaults instantiates a new KmipRenewClientCertificateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipRenewClientCertificateWithDefaults instantiates a new KmipRenewClientCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipRenewServerCertificate instantiates a new KmipRenewServerCertificate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipRenewServerCertificateOutput instantiates a new KmipRenewServerCertificateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipRenewServerCertificateOutputWithDefaults instantiates a new KmipRenewServerCertificateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipRenewServerCertificateWithDefaults instantiates a new KmipRenewServerCertificate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPServer instantiates a new KMIPServer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipServerSetup instantiates a new KmipServerSetup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipServerSetupWithDefaults instantiates a new KmipServerSetup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKMIPServerWithDefaults instantiates a new KMIPServer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipSetServerState instantiates a new KmipSetServerState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipSetServerStateOutput instantiates a new KmipSetServerStateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKmipSetServerStateOutputWithDefaults instantiates a new KmipSetServerStateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKmipSetServerStateWithDefaults instantiates a new KmipSetServerState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewKubernetesAccessRules instantiates a new KubernetesAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewKubernetesAccessRulesWithDefaults instantiates a new KubernetesAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLastConfigChange instantiates a new LastConfigChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLastConfigChangeWithDefaults instantiates a new LastConfigChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLastStatusInfo instantiates a new LastStatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLastStatusInfoWithDefaults instantiates a new LastStatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLDAPAccessRules instantiates a new LDAPAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLDAPAccessRulesWithDefaults instantiates a new LDAPAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLdapConfigPart instantiates a new LdapConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLdapConfigPartWithDefaults instantiates a new LdapConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLeadershipConfigPart instantiates a new LeadershipConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLeadershipConfigPartWithDefaults instantiates a new LeadershipConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAuthMethods instantiates a new ListAuthMethods object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAuthMethodsOutput instantiates a new ListAuthMethodsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListAuthMethodsOutputWithDefaults instantiates a new ListAuthMethodsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListAuthMethodsWithDefaults instantiates a new ListAuthMethods object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListGateways instantiates a new ListGateways object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListGatewaysWithDefaults instantiates a new ListGateways object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListItems instantiates a new ListItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListItemsInPathOutput instantiates a new ListItemsInPathOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListItemsInPathOutputWithDefaults instantiates a new ListItemsInPathOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListItemsWithDefaults instantiates a new ListItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListRoles instantiates a new ListRoles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListRolesOutput instantiates a new ListRolesOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListRolesOutputWithDefaults instantiates a new ListRolesOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListRolesWithDefaults instantiates a new ListRoles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListSRABastions instantiates a new ListSRABastions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListSRABastionsWithDefaults instantiates a new ListSRABastions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTargets instantiates a new ListTargets object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTargetsOutput instantiates a new ListTargetsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListTargetsOutputWithDefaults instantiates a new ListTargetsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewListTargetsWithDefaults instantiates a new ListTargets object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogForwardingConfigPart instantiates a new LogForwardingConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogForwardingConfigPartWithDefaults instantiates a new LogForwardingConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogstashLogForwardingConfig instantiates a new LogstashLogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogstashLogForwardingConfigWithDefaults instantiates a new LogstashLogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogzIoLogForwardingConfig instantiates a new LogzIoLogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogzIoLogForwardingConfigWithDefaults instantiates a new LogzIoLogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewManagedKeyDetailsInfo instantiates a new ManagedKeyDetailsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewManagedKeyDetailsInfoWithDefaults instantiates a new ManagedKeyDetailsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewManagedKeyStatusInfo instantiates a new ManagedKeyStatusInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewManagedKeyStatusInfoWithDefaults instantiates a new ManagedKeyStatusInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewManagedKeyTargetInfo instantiates a new ManagedKeyTargetInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewManagedKeyTargetInfoWithDefaults instantiates a new ManagedKeyTargetInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationGeneral instantiates a new MigrationGeneral object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationGeneralWithDefaults instantiates a new MigrationGeneral object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationItems instantiates a new MigrationItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationItemsWithDefaults instantiates a new MigrationItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationsConfigLastChange instantiates a new MigrationsConfigLastChange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationsConfigLastChangeWithDefaults instantiates a new MigrationsConfigLastChange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationsConfigPart instantiates a new MigrationsConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationsConfigPartWithDefaults instantiates a new MigrationsConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationStatus instantiates a new MigrationStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationStatusReplyObj instantiates a new MigrationStatusReplyObj object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMigrationStatusReplyObjWithDefaults instantiates a new MigrationStatusReplyObj object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMigrationStatusWithDefaults instantiates a new MigrationStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMockMigration instantiates a new MockMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMockMigrationWithDefaults instantiates a new MockMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMockPayload instantiates a new MockPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMockPayloadWithDefaults instantiates a new MockPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMoveObjects instantiates a new MoveObjects object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMoveObjectsWithDefaults instantiates a new MoveObjects object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOAuth2AccessRules instantiates a new OAuth2AccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOAuth2AccessRulesWithDefaults instantiates a new OAuth2AccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOAuth2CustomClaim instantiates a new OAuth2CustomClaim object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOAuth2CustomClaimWithDefaults instantiates a new OAuth2CustomClaim object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewObjectVersionSettingsOutput instantiates a new ObjectVersionSettingsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewObjectVersionSettingsOutputWithDefaults instantiates a new ObjectVersionSettingsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOIDCAccessRules instantiates a new OIDCAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOIDCAccessRulesWithDefaults instantiates a new OIDCAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOIDCCustomClaim instantiates a new OIDCCustomClaim object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOIDCCustomClaimWithDefaults instantiates a new OIDCCustomClaim object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOnePasswordMigration instantiates a new OnePasswordMigration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOnePasswordMigrationWithDefaults instantiates a new OnePasswordMigration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOnePasswordPayload instantiates a new OnePasswordPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOnePasswordPayloadWithDefaults instantiates a new OnePasswordPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPasswordPolicyInfo instantiates a new PasswordPolicyInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPasswordPolicyInfoWithDefaults instantiates a new PasswordPolicyInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPathRule instantiates a new PathRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPathRuleWithDefaults instantiates a new PathRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPKICertificateIssueDetails instantiates a new PKICertificateIssueDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPKICertificateIssueDetailsWithDefaults instantiates a new PKICertificateIssueDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProducer instantiates a new Producer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProducersConfigPart instantiates a new ProducersConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProducersConfigPartWithDefaults instantiates a new ProducersConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProducerWithDefaults instantiates a new Producer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRawCreds instantiates a new RawCreds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRawCredsWithDefaults instantiates a new RawCreds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRefreshKey instantiates a new RefreshKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRefreshKeyOutput instantiates a new RefreshKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRefreshKeyOutputWithDefaults instantiates a new RefreshKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRefreshKeyWithDefaults instantiates a new RefreshKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegexpTokenizerInfo instantiates a new RegexpTokenizerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegexpTokenizerInfoWithDefaults instantiates a new RegexpTokenizerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRequiredActivity instantiates a new RequiredActivity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRequiredActivityWithDefaults instantiates a new RequiredActivity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReverseRBAC instantiates a new ReverseRBAC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReverseRBACClient instantiates a new ReverseRBACClient object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReverseRBACClientWithDefaults instantiates a new ReverseRBACClient object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReverseRBACOutput instantiates a new ReverseRBACOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewReverseRBACOutputWithDefaults instantiates a new ReverseRBACOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewReverseRBACWithDefaults instantiates a new ReverseRBAC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRevokeCreds instantiates a new RevokeCreds object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRevokeCredsWithDefaults instantiates a new RevokeCreds object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleAuthMethodAssociation instantiates a new RoleAuthMethodAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleAuthMethodAssociationWithDefaults instantiates a new RoleAuthMethodAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRollbackSecret instantiates a new RollbackSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRollbackSecretOutput instantiates a new RollbackSecretOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRollbackSecretOutputWithDefaults instantiates a new RollbackSecretOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRollbackSecretWithDefaults instantiates a new RollbackSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotatedSecretDetailsInfo instantiates a new RotatedSecretDetailsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotatedSecretDetailsInfoWithDefaults instantiates a new RotatedSecretDetailsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotatedSecretOutput instantiates a new RotatedSecretOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotatedSecretOutputWithDefaults instantiates a new RotatedSecretOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotateKey instantiates a new RotateKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotateKeyOutput instantiates a new RotateKeyOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotateKeyOutputWithDefaults instantiates a new RotateKeyOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotateKeyWithDefaults instantiates a new RotateKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotateSecret instantiates a new RotateSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotateSecretWithDefaults instantiates a new RotateSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotator instantiates a new Rotator object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotatorsConfigPart instantiates a new RotatorsConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRotatorsConfigPartWithDefaults instantiates a new RotatorsConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRotatorWithDefaults instantiates a new Rotator object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRuleAssigner instantiates a new RuleAssigner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRuleAssignerWithDefaults instantiates a new RuleAssigner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRules instantiates a new Rules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRulesWithDefaults instantiates a new Rules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSAMLAccessRules instantiates a new SAMLAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSAMLAccessRulesWithDefaults instantiates a new SAMLAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSAMLAttribute instantiates a new SAMLAttribute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSAMLAttributeWithDefaults instantiates a new SAMLAttribute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSamlConfigPart instantiates a new SamlConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSamlConfigPartWithDefaults instantiates a new SamlConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecureRemoteAccess instantiates a new SecureRemoteAccess object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecureRemoteAccessWithDefaults instantiates a new SecureRemoteAccess object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSetItemState instantiates a new SetItemState object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSetItemStateWithDefaults instantiates a new SetItemState object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSetRoleRule instantiates a new SetRoleRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSetRoleRuleWithDefaults instantiates a new SetRoleRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewShareItem instantiates a new ShareItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewShareItemWithDefaults instantiates a new ShareItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignJWTOutput instantiates a new SignJWTOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignJWTOutputWithDefaults instantiates a new SignJWTOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignJWTWithClassicKey instantiates a new SignJWTWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignJWTWithClassicKeyWithDefaults instantiates a new SignJWTWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignPKCS1 instantiates a new SignPKCS1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignPKCS1Output instantiates a new SignPKCS1Output object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignPKCS1OutputWithDefaults instantiates a new SignPKCS1Output object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignPKCS1WithDefaults instantiates a new SignPKCS1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignPKICertOutput instantiates a new SignPKICertOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignPKICertOutputWithDefaults instantiates a new SignPKICertOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSignPKICertWithClassicKey instantiates a new SignPKICertWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSignPKICertWithClassicKeyWithDefaults instantiates a new SignPKICertWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSmInfo instantiates a new SmInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSmInfoWithDefaults instantiates a new SmInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSplunkLogForwardingConfig instantiates a new SplunkLogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSplunkLogForwardingConfigWithDefaults instantiates a new SplunkLogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSraInfo instantiates a new SraInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSraInfoWithDefaults instantiates a new SraInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSSHCertificateIssueDetails instantiates a new SSHCertificateIssueDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSSHCertificateIssueDetailsWithDefaults instantiates a new SSHCertificateIssueDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStaticCredsAuth instantiates a new StaticCredsAuth object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStaticCredsAuthOutput instantiates a new StaticCredsAuthOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStaticCredsAuthOutputWithDefaults instantiates a new StaticCredsAuthOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStaticCredsAuthWithDefaults instantiates a new StaticCredsAuth object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStaticSecretDetailsInfo instantiates a new StaticSecretDetailsInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStaticSecretDetailsInfoWithDefaults instantiates a new StaticSecretDetailsInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSyslogLogForwardingConfig instantiates a new SyslogLogForwardingConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSyslogLogForwardingConfigWithDefaults instantiates a new SyslogLogForwardingConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSystemAccessCredentialsReplyObj instantiates a new SystemAccessCredentialsReplyObj object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSystemAccessCredentialsReplyObjWithDefaults instantiates a new SystemAccessCredentialsReplyObj object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSystemAccessCredsSettings instantiates a new SystemAccessCredsSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSystemAccessCredsSettingsWithDefaults instantiates a new SystemAccessCredsSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTarget instantiates a new Target object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetItemAssociation instantiates a new TargetItemAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetItemAssociationWithDefaults instantiates a new TargetItemAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetItemVersion instantiates a new TargetItemVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetItemVersionWithDefaults instantiates a new TargetItemVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetObjectAssociation instantiates a new TargetObjectAssociation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetObjectAssociationWithDefaults instantiates a new TargetObjectAssociation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetTypeDetailesInput instantiates a new TargetTypeDetailesInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetTypeDetailesInputWithDefaults instantiates a new TargetTypeDetailesInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetTypeDetailsInput instantiates a new TargetTypeDetailsInput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTargetTypeDetailsInputWithDefaults instantiates a new TargetTypeDetailsInput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTargetWithDefaults instantiates a new Target object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTmpUserData instantiates a new TmpUserData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTmpUserDataWithDefaults instantiates a new TmpUserData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenize instantiates a new Tokenize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenizeOutput instantiates a new TokenizeOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenizeOutputWithDefaults instantiates a new TokenizeOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenizerInfo instantiates a new TokenizerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenizerInfoWithDefaults instantiates a new TokenizerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenizeWithDefaults instantiates a new Tokenize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidCreateChildToken instantiates a new UidCreateChildToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidCreateChildTokenOutput instantiates a new UidCreateChildTokenOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidCreateChildTokenOutputWithDefaults instantiates a new UidCreateChildTokenOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidCreateChildTokenWithDefaults instantiates a new UidCreateChildToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUIdentityConfigPart instantiates a new UIdentityConfigPart object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUIdentityConfigPartWithDefaults instantiates a new UIdentityConfigPart object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidGenerateToken instantiates a new UidGenerateToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidGenerateTokenOutput instantiates a new UidGenerateTokenOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidGenerateTokenOutputWithDefaults instantiates a new UidGenerateTokenOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidGenerateTokenWithDefaults instantiates a new UidGenerateToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidListChildren instantiates a new UidListChildren object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidListChildrenWithDefaults instantiates a new UidListChildren object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidRevokeToken instantiates a new UidRevokeToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidRevokeTokenWithDefaults instantiates a new UidRevokeToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidRotateToken instantiates a new UidRotateToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidRotateTokenOutput instantiates a new UidRotateTokenOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUidRotateTokenOutputWithDefaults instantiates a new UidRotateTokenOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUidRotateTokenWithDefaults instantiates a new UidRotateToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUIDTokenDetails instantiates a new UIDTokenDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUIDTokenDetailsWithDefaults instantiates a new UIDTokenDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUnconfigure instantiates a new Unconfigure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUnconfigureWithDefaults instantiates a new Unconfigure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniversalIdentityAccessRules instantiates a new UniversalIdentityAccessRules object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniversalIdentityAccessRulesWithDefaults instantiates a new UniversalIdentityAccessRules object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUniversalIdentityDetails instantiates a new UniversalIdentityDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUniversalIdentityDetailsWithDefaults instantiates a new UniversalIdentityDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdate instantiates a new Update object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAccountSettings instantiates a new UpdateAccountSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAccountSettingsOutput instantiates a new UpdateAccountSettingsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAccountSettingsOutputWithDefaults instantiates a new UpdateAccountSettingsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAccountSettingsWithDefaults instantiates a new UpdateAccountSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateArtifactoryTarget instantiates a new UpdateArtifactoryTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateArtifactoryTargetOutput instantiates a new UpdateArtifactoryTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateArtifactoryTargetOutputWithDefaults instantiates a new UpdateArtifactoryTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateArtifactoryTargetWithDefaults instantiates a new UpdateArtifactoryTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAssoc instantiates a new UpdateAssoc object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAssocWithDefaults instantiates a new UpdateAssoc object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethod instantiates a new UpdateAuthMethod object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodAWSIAM instantiates a new UpdateAuthMethodAWSIAM object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodAWSIAMWithDefaults instantiates a new UpdateAuthMethodAWSIAM object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodAzureAD instantiates a new UpdateAuthMethodAzureAD object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodAzureADWithDefaults instantiates a new UpdateAuthMethodAzureAD object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodCert instantiates a new UpdateAuthMethodCert object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodCertOutput instantiates a new UpdateAuthMethodCertOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodCertOutputWithDefaults instantiates a new UpdateAuthMethodCertOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodCertWithDefaults instantiates a new UpdateAuthMethodCert object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodGCP instantiates a new UpdateAuthMethodGCP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodGCPWithDefaults instantiates a new UpdateAuthMethodGCP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodK8S instantiates a new UpdateAuthMethodK8S object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodK8SOutput instantiates a new UpdateAuthMethodK8SOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodK8SOutputWithDefaults instantiates a new UpdateAuthMethodK8SOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodK8SWithDefaults instantiates a new UpdateAuthMethodK8S object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodLDAP instantiates a new UpdateAuthMethodLDAP object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodLDAPOutput instantiates a new UpdateAuthMethodLDAPOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodLDAPOutputWithDefaults instantiates a new UpdateAuthMethodLDAPOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodLDAPWithDefaults instantiates a new UpdateAuthMethodLDAP object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodOAuth2 instantiates a new UpdateAuthMethodOAuth2 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodOAuth2WithDefaults instantiates a new UpdateAuthMethodOAuth2 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodOIDC instantiates a new UpdateAuthMethodOIDC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodOIDCWithDefaults instantiates a new UpdateAuthMethodOIDC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodOutput instantiates a new UpdateAuthMethodOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodOutputWithDefaults instantiates a new UpdateAuthMethodOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodSAML instantiates a new UpdateAuthMethodSAML object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodSAMLWithDefaults instantiates a new UpdateAuthMethodSAML object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodUniversalIdentity instantiates a new UpdateAuthMethodUniversalIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAuthMethodUniversalIdentityWithDefaults instantiates a new UpdateAuthMethodUniversalIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAuthMethodWithDefaults instantiates a new UpdateAuthMethod object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAWSTarget instantiates a new UpdateAWSTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAWSTargetDetails instantiates a new UpdateAWSTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAWSTargetDetailsWithDefaults instantiates a new UpdateAWSTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAWSTargetWithDefaults instantiates a new UpdateAWSTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAzureTarget instantiates a new UpdateAzureTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAzureTargetOutput instantiates a new UpdateAzureTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateAzureTargetOutputWithDefaults instantiates a new UpdateAzureTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateAzureTargetWithDefaults instantiates a new UpdateAzureTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDBTarget instantiates a new UpdateDBTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDBTargetDetails instantiates a new UpdateDBTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDBTargetDetailsWithDefaults instantiates a new UpdateDBTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDBTargetOutput instantiates a new UpdateDBTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDBTargetOutputWithDefaults instantiates a new UpdateDBTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDBTargetWithDefaults instantiates a new UpdateDBTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDockerhubTarget instantiates a new UpdateDockerhubTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDockerhubTargetOutput instantiates a new UpdateDockerhubTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateDockerhubTargetOutputWithDefaults instantiates a new UpdateDockerhubTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateDockerhubTargetWithDefaults instantiates a new UpdateDockerhubTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateEKSTarget instantiates a new UpdateEKSTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateEKSTargetOutput instantiates a new UpdateEKSTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateEKSTargetOutputWithDefaults instantiates a new UpdateEKSTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateEKSTargetWithDefaults instantiates a new UpdateEKSTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGcpTarget instantiates a new UpdateGcpTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGcpTargetOutput instantiates a new UpdateGcpTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGcpTargetOutputWithDefaults instantiates a new UpdateGcpTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGcpTargetWithDefaults instantiates a new UpdateGcpTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGithubTarget instantiates a new UpdateGithubTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGithubTargetOutput instantiates a new UpdateGithubTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGithubTargetOutputWithDefaults instantiates a new UpdateGithubTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGithubTargetWithDefaults instantiates a new UpdateGithubTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGKETarget instantiates a new UpdateGKETarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGKETargetOutput instantiates a new UpdateGKETargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateGKETargetOutputWithDefaults instantiates a new UpdateGKETargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateGKETargetWithDefaults instantiates a new UpdateGKETarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateItem instantiates a new UpdateItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateItemOutput instantiates a new UpdateItemOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateItemOutputWithDefaults instantiates a new UpdateItemOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateItemWithDefaults instantiates a new UpdateItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateLdapTarget instantiates a new UpdateLdapTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateLdapTargetDetails instantiates a new UpdateLdapTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateLdapTargetDetailsWithDefaults instantiates a new UpdateLdapTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateLdapTargetOutput instantiates a new UpdateLdapTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateLdapTargetOutputWithDefaults instantiates a new UpdateLdapTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateLdapTargetWithDefaults instantiates a new UpdateLdapTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateManagedKey instantiates a new UpdateManagedKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateManagedKeyWithDefaults instantiates a new UpdateManagedKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateNativeK8STarget instantiates a new UpdateNativeK8STarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateNativeK8STargetOutput instantiates a new UpdateNativeK8STargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateNativeK8STargetOutputWithDefaults instantiates a new UpdateNativeK8STargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateNativeK8STargetWithDefaults instantiates a new UpdateNativeK8STarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateOutput instantiates a new UpdateOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateOutputWithDefaults instantiates a new UpdateOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdatePKICertIssuer instantiates a new UpdatePKICertIssuer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdatePKICertIssuerOutput instantiates a new UpdatePKICertIssuerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdatePKICertIssuerOutputWithDefaults instantiates a new UpdatePKICertIssuerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdatePKICertIssuerWithDefaults instantiates a new UpdatePKICertIssuer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRabbitMQTarget instantiates a new UpdateRabbitMQTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRabbitMQTargetDetails instantiates a new UpdateRabbitMQTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRabbitMQTargetDetailsWithDefaults instantiates a new UpdateRabbitMQTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRabbitMQTargetOutput instantiates a new UpdateRabbitMQTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRabbitMQTargetOutputWithDefaults instantiates a new UpdateRabbitMQTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRabbitMQTargetWithDefaults instantiates a new UpdateRabbitMQTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRDPTargetDetails instantiates a new UpdateRDPTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRDPTargetDetailsWithDefaults instantiates a new UpdateRDPTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRole instantiates a new UpdateRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRoleOutput instantiates a new UpdateRoleOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRoleOutputWithDefaults instantiates a new UpdateRoleOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRoleWithDefaults instantiates a new UpdateRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRotatedSecret instantiates a new UpdateRotatedSecret object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRotatedSecretOutput instantiates a new UpdateRotatedSecretOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRotatedSecretOutputWithDefaults instantiates a new UpdateRotatedSecretOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRotatedSecretSC instantiates a new UpdateRotatedSecretSC object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRotatedSecretSCOutput instantiates a new UpdateRotatedSecretSCOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRotatedSecretSCOutputWithDefaults instantiates a new UpdateRotatedSecretSCOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRotatedSecretSCWithDefaults instantiates a new UpdateRotatedSecretSC object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRotatedSecretWithDefaults instantiates a new UpdateRotatedSecret object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateRotationSettings instantiates a new UpdateRotationSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateRotationSettingsWithDefaults instantiates a new UpdateRotationSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSalesforceTarget instantiates a new UpdateSalesforceTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSalesforceTargetOutput instantiates a new UpdateSalesforceTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSalesforceTargetOutputWithDefaults instantiates a new UpdateSalesforceTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSalesforceTargetWithDefaults instantiates a new UpdateSalesforceTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSecretVal instantiates a new UpdateSecretVal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSecretValOutput instantiates a new UpdateSecretValOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSecretValOutputWithDefaults instantiates a new UpdateSecretValOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSecretValWithDefaults instantiates a new UpdateSecretVal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSSHCertIssuer instantiates a new UpdateSSHCertIssuer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSSHCertIssuerOutput instantiates a new UpdateSSHCertIssuerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSSHCertIssuerOutputWithDefaults instantiates a new UpdateSSHCertIssuerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSSHCertIssuerWithDefaults instantiates a new UpdateSSHCertIssuer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSSHTarget instantiates a new UpdateSSHTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSSHTargetDetails instantiates a new UpdateSSHTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSSHTargetDetailsWithDefaults instantiates a new UpdateSSHTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSSHTargetOutput instantiates a new UpdateSSHTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateSSHTargetOutputWithDefaults instantiates a new UpdateSSHTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateSSHTargetWithDefaults instantiates a new UpdateSSHTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTarget instantiates a new UpdateTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTargetDetails instantiates a new UpdateTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTargetDetailsOutput instantiates a new UpdateTargetDetailsOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTargetDetailsOutputWithDefaults instantiates a new UpdateTargetDetailsOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTargetDetailsWithDefaults instantiates a new UpdateTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTargetOutput instantiates a new UpdateTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTargetOutputWithDefaults instantiates a new UpdateTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTargetWithDefaults instantiates a new UpdateTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTokenizer instantiates a new UpdateTokenizer object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTokenizerOutput instantiates a new UpdateTokenizerOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateTokenizerOutputWithDefaults instantiates a new UpdateTokenizerOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateTokenizerWithDefaults instantiates a new UpdateTokenizer object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWebTarget instantiates a new UpdateWebTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateWebTargetDetails instantiates a new UpdateWebTargetDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateWebTargetDetailsWithDefaults instantiates a new UpdateWebTargetDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWebTargetOutput instantiates a new UpdateWebTargetOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUpdateWebTargetOutputWithDefaults instantiates a new UpdateWebTargetOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWebTargetWithDefaults instantiates a new UpdateWebTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUpdateWithDefaults instantiates a new Update object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUploadPKCS12 instantiates a new UploadPKCS12 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUploadPKCS12WithDefaults instantiates a new UploadPKCS12 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUploadRSA instantiates a new UploadRSA object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUploadRSAWithDefaults instantiates a new UploadRSA object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateToken instantiates a new ValidateToken object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateTokenOutput instantiates a new ValidateTokenOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewValidateTokenOutputWithDefaults instantiates a new ValidateTokenOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewValidateTokenWithDefaults instantiates a new ValidateToken object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVaultlessTokenizerInfo instantiates a new VaultlessTokenizerInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVaultlessTokenizerInfoWithDefaults instantiates a new VaultlessTokenizerInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerifyJWTOutput instantiates a new VerifyJWTOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerifyJWTOutputWithDefaults instantiates a new VerifyJWTOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerifyJWTWithClassicKey instantiates a new VerifyJWTWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerifyJWTWithClassicKeyWithDefaults instantiates a new VerifyJWTWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerifyPKCS1 instantiates a new VerifyPKCS1 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerifyPKCS1WithDefaults instantiates a new VerifyPKCS1 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerifyPKICertOutput instantiates a new VerifyPKICertOutput object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerifyPKICertOutputWithDefaults instantiates a new VerifyPKICertOutput object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVerifyPKICertWithClassicKey instantiates a new VerifyPKICertWithClassicKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVerifyPKICertWithClassicKeyWithDefaults instantiates a new VerifyPKICertWithClassicKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
# Variables
ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.
# Structs
AccountGeneralSettings AccountGeneralSettings describes general settings for an account.
AccountObjectVersionSettingsOutput struct for AccountObjectVersionSettingsOutput.
ActiveDirectoryMigration struct for ActiveDirectoryMigration.
ActiveDirectoryPayload struct for ActiveDirectoryPayload.
AdminsConfigPart struct for AdminsConfigPart.
AkeylessGatewayConfig struct for AkeylessGatewayConfig.
AllowedAccess struct for AllowedAccess.
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Akeyless API API v2.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIKeyAccessRules struct for APIKeyAccessRules.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AssocRoleAuthMethod assocRoleAuthMethod is a command that creates an association between role and auth method.
AssocTargetItem assocTargetItem is a command that creates an association between target and item.
Auth struct for Auth.
AuthMethod struct for AuthMethod.
AuthMethodAccessInfo struct for AuthMethodAccessInfo.
AuthMethodRoleAssociation AuthMethodRoleAssociation includes details of an association between an auth method and a role.
AuthOutput struct for AuthOutput.
AWSIAMAccessRules struct for AWSIAMAccessRules.
AWSPayload struct for AWSPayload.
AwsS3LogForwardingConfig struct for AwsS3LogForwardingConfig.
AWSSecretsMigration struct for AWSSecretsMigration.
AzureADAccessRules AzureADAccessRules contains access rules specific to Azure Active Directory authentication.
AzureKeyVaultMigration struct for AzureKeyVaultMigration.
AzureLogAnalyticsForwardingConfig struct for AzureLogAnalyticsForwardingConfig.
AzurePayload struct for AzurePayload.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BastionListEntry struct for BastionListEntry.
BastionsList struct for BastionsList.
CacheConfigPart struct for CacheConfigPart.
CertAccessRules struct for CertAccessRules.
CertificateIssueInfo struct for CertificateIssueInfo.
CFConfigPart struct for CFConfigPart.
ClassicKeyDetailsInfo struct for ClassicKeyDetailsInfo.
ClassicKeyStatusInfo struct for ClassicKeyStatusInfo.
ClassicKeyTargetInfo struct for ClassicKeyTargetInfo.
ClientData struct for ClientData.
ConfigChange struct for ConfigChange.
ConfigHash struct for ConfigHash.
Configuration stores the configuration of the API client.
Configure struct for Configure.
ConfigureOutput struct for ConfigureOutput.
Connect Connect is a command that performs secure remote access.
CreateArtifactoryTarget struct for CreateArtifactoryTarget.
CreateArtifactoryTargetOutput struct for CreateArtifactoryTargetOutput.
CreateAuthMethod struct for CreateAuthMethod.
CreateAuthMethodAWSIAM createAuthMethodAWSIAM is a command that creates a new Auth Method that will be able to authenticate using AWS IAM credentials.
CreateAuthMethodAWSIAMOutput struct for CreateAuthMethodAWSIAMOutput.
CreateAuthMethodAzureAD createAuthMethodAzureAD is a command that creates a new auth method that will be able to authenticate using Azure Active Directory credentials.
CreateAuthMethodAzureADOutput struct for CreateAuthMethodAzureADOutput.
CreateAuthMethodCert createAuthMethodCert is a command that creates a new auth method that will be able to authenticate using a client certificae.
CreateAuthMethodCertOutput struct for CreateAuthMethodCertOutput.
CreateAuthMethodGCP createAuthMethodGCP is a command that creates a new auth method that will be able to authenticate using GCP IAM Service Account credentials or GCE instance credentials.
CreateAuthMethodGCPOutput struct for CreateAuthMethodGCPOutput.
CreateAuthMethodHuawei createAuthMethodHuawei is a command that creates a new auth method that will be able to authenticate using Huawei credentials.
CreateAuthMethodHuaweiOutput struct for CreateAuthMethodHuaweiOutput.
CreateAuthMethodK8S createAuthMethodK8S is a command that creates a new auth method that will be able to authenticate using K8S.
CreateAuthMethodK8SOutput struct for CreateAuthMethodK8SOutput.
CreateAuthMethodLDAP createAuthMethodLDAP is a command that creates a new auth method that will be able to authenticate using LDAP.
CreateAuthMethodLDAPOutput struct for CreateAuthMethodLDAPOutput.
CreateAuthMethodOAuth2 createAuthMethodOAuth2 is a command that creates a new auth method that will be able to authenticate using Oauth2.
CreateAuthMethodOAuth2Output struct for CreateAuthMethodOAuth2Output.
CreateAuthMethodOIDC createAuthMethodOIDC is a command that creates a new auth method that will be available to authenticate using OIDC.
CreateAuthMethodOIDCOutput struct for CreateAuthMethodOIDCOutput.
CreateAuthMethodOutput struct for CreateAuthMethodOutput.
CreateAuthMethodSAML createAuthMethodSAML is a command that creates a new auth method that will be available to authenticate using SAML.
CreateAuthMethodSAMLOutput struct for CreateAuthMethodSAMLOutput.
CreateAuthMethodUniversalIdentity createAuthMethodUniversalIdentity is a command that creates a new auth method that will be able to authenticate using Akeyless Universal Identity.
CreateAuthMethodUniversalIdentityOutput struct for CreateAuthMethodUniversalIdentityOutput.
CreateAWSTarget struct for CreateAWSTarget.
CreateAWSTargetOutput struct for CreateAWSTargetOutput.
CreateAzureTarget struct for CreateAzureTarget.
CreateAzureTargetOutput struct for CreateAzureTargetOutput.
CreateClassicKey CreateClassicKey is a command that creates classic key.
CreateClassicKeyOutput struct for CreateClassicKeyOutput.
CreateDBTarget struct for CreateDBTarget.
CreateDBTargetOutput struct for CreateDBTargetOutput.
CreateDFCKey struct for CreateDFCKey.
CreateDFCKeyOutput struct for CreateDFCKeyOutput.
CreateDockerhubTarget struct for CreateDockerhubTarget.
CreateDockerhubTargetOutput struct for CreateDockerhubTargetOutput.
CreateDynamicSecret struct for CreateDynamicSecret.
CreateEKSTarget struct for CreateEKSTarget.
CreateEKSTargetOutput struct for CreateEKSTargetOutput.
CreateGcpTarget struct for CreateGcpTarget.
CreateGcpTargetOutput struct for CreateGcpTargetOutput.
CreateGithubTarget struct for CreateGithubTarget.
CreateGithubTargetOutput struct for CreateGithubTargetOutput.
CreateGKETarget struct for CreateGKETarget.
CreateGKETargetOutput struct for CreateGKETargetOutput.
CreateKey createKey is a command that creates a new key.
CreateKeyOutput struct for CreateKeyOutput.
CreateLdapTarget struct for CreateLdapTarget.
CreateLdapTargetOutput struct for CreateLdapTargetOutput.
CreateManagedKey CreateManagedKey is a command that creates managed key.
CreateManagedKeyOutput struct for CreateManagedKeyOutput.
CreateNativeK8STarget struct for CreateNativeK8STarget.
CreateNativeK8STargetOutput struct for CreateNativeK8STargetOutput.
CreatePKICertIssuer struct for CreatePKICertIssuer.
CreatePKICertIssuerOutput struct for CreatePKICertIssuerOutput.
CreateRabbitMQTarget struct for CreateRabbitMQTarget.
CreateRabbitMQTargetOutput struct for CreateRabbitMQTargetOutput.
CreateRdpTarget struct for CreateRdpTarget.
CreateRole struct for CreateRole.
CreateRoleAuthMethodAssocOutput CreateRoleAuthMethodAssocOutput defines output of CreateRoleAuthMethodAssoc operation.
CreateRotatedSecret struct for CreateRotatedSecret.
CreateRotatedSecretOutput struct for CreateRotatedSecretOutput.
CreateSalesforceTarget struct for CreateSalesforceTarget.
CreateSalesforceTargetOutput struct for CreateSalesforceTargetOutput.
CreateSecret struct for CreateSecret.
CreateSecretOutput struct for CreateSecretOutput.
CreateSSHCertIssuer struct for CreateSSHCertIssuer.
CreateSSHCertIssuerOutput struct for CreateSSHCertIssuerOutput.
CreateSSHTarget struct for CreateSSHTarget.
CreateSSHTargetOutput struct for CreateSSHTargetOutput.
CreateTargetItemAssocOutput CreateTargetItemAssocOutput defines output of CreateTargetItemAssoc operation.
CreateTargetOutput struct for CreateTargetOutput.
CreateTokenizer createTokenizer is a command that creates a tokenizer item.
CreateTokenizerOutput struct for CreateTokenizerOutput.
CreateWebTarget struct for CreateWebTarget.
CreateWebTargetOutput struct for CreateWebTargetOutput.
CustomerFragment struct for CustomerFragment.
CustomerFragmentsJson struct for CustomerFragmentsJson.
CustomerFullAddress struct for CustomerFullAddress.
DatadogForwardingConfig struct for DatadogForwardingConfig.
DataProtectionSection We need the fields to be pointers as we use the same struct for partial updates as well.
Decrypt decrypt is a command that decrypts ciphertext into plaintext by using an AES key.
DecryptFile struct for DecryptFile.
DecryptFileOutput struct for DecryptFileOutput.
DecryptOutput struct for DecryptOutput.
DecryptPKCS1 struct for DecryptPKCS1.
DecryptPKCS1Output struct for DecryptPKCS1Output.
DecryptWithClassicKey struct for DecryptWithClassicKey.
DecryptWithClassicKeyOutput struct for DecryptWithClassicKeyOutput.
DefaultConfigPart struct for DefaultConfigPart.
DeleteAuthMethod struct for DeleteAuthMethod.
DeleteAuthMethodOutput struct for DeleteAuthMethodOutput.
DeleteAuthMethods deleteAuthMethods is a command that deletes multiple auth methods from a given path.
DeleteAuthMethodsOutput struct for DeleteAuthMethodsOutput.
DeleteItem struct for DeleteItem.
DeleteItemOutput struct for DeleteItemOutput.
DeleteItems struct for DeleteItems.
DeleteItemsOutput struct for DeleteItemsOutput.
DeleteRole struct for DeleteRole.
DeleteRoleAssociation deleteRoleAssociation is a command that deletes an association between role and auth method.
DeleteRoleRule struct for DeleteRoleRule.
DeleteRoleRuleOutput struct for DeleteRoleRuleOutput.
DeleteRoles struct for DeleteRoles.
DeleteTarget struct for DeleteTarget.
DeleteTargetAssociation deleteTargetAssociation is a command that deletes an association between target and item.
DeleteTargets struct for DeleteTargets.
DescribeItem struct for DescribeItem.
DescribePermissions describePermissions is a command that shows which permissions your have to a particular path.
DescribePermissionsOutput struct for DescribePermissionsOutput.
DescribeSubClaims describe-sub-claims Get the sub-claims associated with the provided token or authentication profile.
DescribeSubClaimsOutput struct for DescribeSubClaimsOutput.
Detokenize detokenize is a command that decrypts text with a tokenizer.
DetokenizeOutput struct for DetokenizeOutput.
DSProducerDetails struct for DSProducerDetails.
DynamicSecretProducerInfo DynamicSecretProducerInfo The dynamic secret producer info This parameter relevant and required only in case of create update dynamic secret.
ElasticsearchLogForwardingConfig struct for ElasticsearchLogForwardingConfig.
EmailPassAccessRules struct for EmailPassAccessRules.
EmailTokenizerInfo EmailTokenizerInfo represents a tokenizer that specifically tokenizes emails.
Encrypt struct for Encrypt.
EncryptFile struct for EncryptFile.
EncryptFileOutput struct for EncryptFileOutput.
EncryptOutput struct for EncryptOutput.
EncryptPKCS1 struct for EncryptPKCS1.
EncryptPKCS1Output struct for EncryptPKCS1Output.
EncryptWithClassicKey struct for EncryptWithClassicKey.
EncryptWithClassicKeyOutput struct for EncryptWithClassicKeyOutput.
ExportClassicKey ExportClassicKey is a command that returns the classic key material.
ExportClassicKeyOutput struct for ExportClassicKeyOutput.
ExternalKMSKeyId struct for ExternalKMSKeyId.
GatewayAddAllowedManagementAccess gatewayAddAllowedManagementAccess is a command that adds sub-admins.
GatewayAddSubAdmins gatewayAddSubAdmins is a command that adds sub-admins.
GatewayAddSubAdminsOutput struct for GatewayAddSubAdminsOutput.
GatewayCreateK8SAuthConfig gatewayCreateK8SAuth is a command that creates k8s auth config.
GatewayCreateK8SAuthConfigOutput struct for GatewayCreateK8SAuthConfigOutput.
GatewayCreateMigration gatewayCreateMigration is a command that create migration.
GatewayCreateProducerArtifactory gatewayCreateProducerArtifactory is a command that creates artifactory producer.
GatewayCreateProducerArtifactoryOutput struct for GatewayCreateProducerArtifactoryOutput.
GatewayCreateProducerAws gatewayCreateProducerAws is a command that creates aws producer.
GatewayCreateProducerAwsOutput struct for GatewayCreateProducerAwsOutput.
GatewayCreateProducerAzure gatewayCreateProducerAzure is a command that creates azure producer.
GatewayCreateProducerAzureOutput struct for GatewayCreateProducerAzureOutput.
GatewayCreateProducerCassandra gatewayCreateProducerCassandra is a command that creates a Cassandra producer.
GatewayCreateProducerCassandraOutput struct for GatewayCreateProducerCassandraOutput.
GatewayCreateProducerCertificateAutomation gatewayCreateProducerCertificateAutomation is a command that creates a Certificate Automation dynamic secret producer to dynamically create certificates generated by Venafi or have Akeyless generated certificates using PKI be monitored by Venafi.
GatewayCreateProducerCertificateAutomationOutput struct for GatewayCreateProducerCertificateAutomationOutput.
GatewayCreateProducerChef gatewayCreateProducerChef is a command that creates chef producer.
GatewayCreateProducerChefOutput struct for GatewayCreateProducerChefOutput.
GatewayCreateProducerCustom struct for GatewayCreateProducerCustom.
GatewayCreateProducerCustomOutput struct for GatewayCreateProducerCustomOutput.
GatewayCreateProducerDockerhub gatewayCreateProducerDockerhub is a command that creates a DOCKERHUB producer.
GatewayCreateProducerDockerhubOutput struct for GatewayCreateProducerDockerhubOutput.
GatewayCreateProducerEks gatewayCreateProducerEks is a command that creates eks producer.
GatewayCreateProducerEksOutput struct for GatewayCreateProducerEksOutput.
GatewayCreateProducerGcp gatewayCreateProducerGcp is a command that creates a GCP producer.
GatewayCreateProducerGcpOutput struct for GatewayCreateProducerGcpOutput.
GatewayCreateProducerGithub gatewayCreateProducerGithub is a command that creates github producer.
GatewayCreateProducerGithubOutput struct for GatewayCreateProducerGithubOutput.
GatewayCreateProducerGke gatewayCreateProducerGke is a command that creates gke producer.
GatewayCreateProducerGkeOutput struct for GatewayCreateProducerGkeOutput.
GatewayCreateProducerHanaDb gatewayCreateProducerHanaDb is a command that creates hanadb producer.
GatewayCreateProducerHanaDbOutput struct for GatewayCreateProducerHanaDbOutput.
GatewayCreateProducerLdap gatewayCreateProducerLdap is a command that creates ldap producer.
GatewayCreateProducerLdapOutput struct for GatewayCreateProducerLdapOutput.
GatewayCreateProducerMongo gatewayCreateProducerMongo is a command that creates either mongodb producer or mongodb atlas producer.
GatewayCreateProducerMongoOutput struct for GatewayCreateProducerMongoOutput.
GatewayCreateProducerMSSQL gatewayCreateProducerMSSQL is a command that creates mssql producer.
GatewayCreateProducerMSSQLOutput struct for GatewayCreateProducerMSSQLOutput.
GatewayCreateProducerMySQL gatewayCreateProducerMySQL is a command that creates mysql producer.
GatewayCreateProducerMySQLOutput struct for GatewayCreateProducerMySQLOutput.
GatewayCreateProducerNativeK8S gatewayCreateProducerNativeK8S is a command that creates k8s producer.
GatewayCreateProducerNativeK8SOutput struct for GatewayCreateProducerNativeK8SOutput.
GatewayCreateProducerOracleDb gatewayCreateProducerOracleDb is a command that creates oracle db producer.
GatewayCreateProducerOracleDbOutput struct for GatewayCreateProducerOracleDbOutput.
GatewayCreateProducerPostgreSQL gatewayCreateProducerPostgreSQL is a command that creates postgresql producer.
GatewayCreateProducerPostgreSQLOutput struct for GatewayCreateProducerPostgreSQLOutput.
GatewayCreateProducerRabbitMQ gatewayCreateProducerRabbitMQ is a command that creates rabbitmq producer.
GatewayCreateProducerRabbitMQOutput struct for GatewayCreateProducerRabbitMQOutput.
GatewayCreateProducerRdp gatewayCreateProducerRdp is a command that creates rdp producer.
GatewayCreateProducerRdpOutput struct for GatewayCreateProducerRdpOutput.
GatewayCreateProducerRedshift gatewayCreateProducerRedshift is a command that creates redshift producer.
GatewayCreateProducerRedshiftOutput struct for GatewayCreateProducerRedshiftOutput.
GatewayCreateProducerSnowflake gatewayCreateProducerSnowflakeCmd is a command that creates a Snowflake producer.
GatewayCreateProducerSnowflakeOutput struct for GatewayCreateProducerSnowflakeOutput.
GatewayDeleteAllowedManagementAccess gatewayDeleteAllowedManagementAccess is a command that deletes sub-admins.
GatewayDeleteK8SAuthConfig gatewayDeleteK8SAuth is a command that deletes k8s auth config.
GatewayDeleteK8SAuthConfigOutput struct for GatewayDeleteK8SAuthConfigOutput.
GatewayDeleteMigration gatewayDeleteMigration is a command that delete migration.
GatewayDeleteProducer gatewayDeleteProducer is a command that deletes producer.
GatewayDeleteProducerOutput struct for GatewayDeleteProducerOutput.
GatewayDeleteSubAdmins gatewayDeleteSubAdmins is a command that deletes sub-admins.
GatewayDeleteSubAdminsOutput struct for GatewayDeleteSubAdminsOutput.
GatewayGetConfig gatewayGetConfig is a command that returns gateway configuration.
GatewayGetK8SAuthConfig gatewayGetK8SAuth is a command that gets k8s auth config.
GatewayGetK8SAuthConfigOutput struct for GatewayGetK8SAuthConfigOutput.
GatewayGetLdapAuthConfig gatewayGetLdapAuth is a command that gets ldap auth config.
GatewayGetLdapAuthConfigOutput struct for GatewayGetLdapAuthConfigOutput.
GatewayGetMigration gatewayGetMigration is a command that get migration.
GatewayGetProducer gatewayGetProducer is a command that returns producer.
GatewayGetTmpUsers gatewayGetTmpUsers is a command that returns gateway configuration.
GatewayListAllowedManagementAccess gatewayListAllowedManagementAccess is a command that returns list sub admins.
GatewayListMigration gatewayListMigration is a command that list migration.
GatewayListProducers gatewayListProducers is a command that returns producer.
GatewayListSubAdmins gatewayListSubAdmins is a command that returns list sub admins.
GatewayMessageQueueInfo struct for GatewayMessageQueueInfo.
GatewayMigratePersonalItems gatewayMigratePersonalItems is a command that migrate personal items from external vault.
GatewayMigratePersonalItemsOutput struct for GatewayMigratePersonalItemsOutput.
GatewayMigrationCreateOutput struct for GatewayMigrationCreateOutput.
GatewayMigrationDeleteOutput struct for GatewayMigrationDeleteOutput.
GatewayMigrationGetOutput struct for GatewayMigrationGetOutput.
GatewayMigrationListOutput struct for GatewayMigrationListOutput.
GatewayMigrationSyncOutput struct for GatewayMigrationSyncOutput.
GatewayMigrationUpdateOutput struct for GatewayMigrationUpdateOutput.
GatewayRevokeTmpUsers gatewayRevokeTmpUsers is a command that revoke producer tmp user.
GatewaysListResponse GatewaysListResponse Gateway cluster identity list.
GatewayStartProducer gatewayStartProducer is a command that starts producer.
GatewayStartProducerOutput struct for GatewayStartProducerOutput.
GatewayStatusMigration gatewayStatusMigration is a command that get migration status.
GatewayStopProducer gatewayStopProducer is a command that stops producer.
GatewayStopProducerOutput struct for GatewayStopProducerOutput.
GatewaySyncMigration gatewaySyncMigration is a command that sync migration.
GatewayUpdateItem gatewayUpdateItem is a command that updates classic key.
GatewayUpdateItemOutput struct for GatewayUpdateItemOutput.
GatewayUpdateK8SAuthConfig gatewayUpdateK8SAuth is a command that updates k8s auth config.
GatewayUpdateK8SAuthConfigOutput struct for GatewayUpdateK8SAuthConfigOutput.
GatewayUpdateLdapAuthConfig gatewayUpdateLdapAuth is a command that updates ldap auth config.
GatewayUpdateLdapAuthConfigOutput struct for GatewayUpdateLdapAuthConfigOutput.
GatewayUpdateMigration gatewayUpdateMigration is a command that update migration.
GatewayUpdateProducerArtifactory gatewayUpdateProducerArtifactory is a command that updates artifactory producer.
GatewayUpdateProducerArtifactoryOutput struct for GatewayUpdateProducerArtifactoryOutput.
GatewayUpdateProducerAws gatewayUpdateProducerAws is a command that Updates aws producer.
GatewayUpdateProducerAwsOutput struct for GatewayUpdateProducerAwsOutput.
GatewayUpdateProducerAzure gatewayUpdateProducerAzure is a command that updates azure producer.
GatewayUpdateProducerAzureOutput struct for GatewayUpdateProducerAzureOutput.
GatewayUpdateProducerCassandra gatewayUpdateProducerCassandra is a command that updates a Cassandra producer.
GatewayUpdateProducerCassandraOutput struct for GatewayUpdateProducerCassandraOutput.
GatewayUpdateProducerCertificateAutomation gatewayUpdateProducerCertificateAutomation is a command that updates a Certificate Automation dynamic secret producer to dynamically update certificates generated by Venafi or have Akeyless generated certificates using PKI be monitored by Venafi.
GatewayUpdateProducerCertificateAutomationOutput struct for GatewayUpdateProducerCertificateAutomationOutput.
GatewayUpdateProducerChef gatewayUpdateProducerChef is a command that updates chef producer.
GatewayUpdateProducerChefOutput struct for GatewayUpdateProducerChefOutput.
GatewayUpdateProducerCustom struct for GatewayUpdateProducerCustom.
GatewayUpdateProducerCustomOutput struct for GatewayUpdateProducerCustomOutput.
GatewayUpdateProducerDockerhub gatewayUpdateProducerDockerhub is a command that updates a DOCKERHUB producer.
GatewayUpdateProducerDockerhubOutput struct for GatewayUpdateProducerDockerhubOutput.
GatewayUpdateProducerEks gatewayUpdateProducerEks is a command that updates eks producer.
GatewayUpdateProducerEksOutput struct for GatewayUpdateProducerEksOutput.
GatewayUpdateProducerGcp gatewayUpdateProducerGcp is a command that updates a GCP producer.
GatewayUpdateProducerGcpOutput struct for GatewayUpdateProducerGcpOutput.
GatewayUpdateProducerGithub gatewayUpdateProducerGithub is a command that updates github producer.
GatewayUpdateProducerGithubOutput struct for GatewayUpdateProducerGithubOutput.
GatewayUpdateProducerGke gatewayUpdateProducerGke is a command that updates gke producer.
GatewayUpdateProducerGkeOutput struct for GatewayUpdateProducerGkeOutput.
GatewayUpdateProducerHanaDb gatewayUpdateProducerHanaDb is a command that updates hanadb producer.
GatewayUpdateProducerHanaDbOutput struct for GatewayUpdateProducerHanaDbOutput.
GatewayUpdateProducerLdap gatewayUpdateProducerLdap is a command that updates ldap producer.
GatewayUpdateProducerLdapOutput struct for GatewayUpdateProducerLdapOutput.
GatewayUpdateProducerMongo gatewayUpdateProducerMongo is a command that updates either mongodb producer or mongodb atlas producer.
GatewayUpdateProducerMongoOutput struct for GatewayUpdateProducerMongoOutput.
GatewayUpdateProducerMSSQL gatewayUpdateProducerMSSQL is a command that updates mssql producer.
GatewayUpdateProducerMSSQLOutput struct for GatewayUpdateProducerMSSQLOutput.
GatewayUpdateProducerMySQL gatewayUpdateProducerMySQL is a command that updates mysql producer.
GatewayUpdateProducerMySQLOutput struct for GatewayUpdateProducerMySQLOutput.
GatewayUpdateProducerNativeK8S gatewayUpdateProducerNativeK8S is a command that updates k8s producer.
GatewayUpdateProducerNativeK8SOutput struct for GatewayUpdateProducerNativeK8SOutput.
GatewayUpdateProducerOracleDb gatewayUpdateProducerOracleDb is a command that updates oracle db producer.
GatewayUpdateProducerOracleDbOutput struct for GatewayUpdateProducerOracleDbOutput.
GatewayUpdateProducerPostgreSQL gatewayUpdateProducerPostgreSQL is a command that updates postgresql producer.
GatewayUpdateProducerPostgreSQLOutput struct for GatewayUpdateProducerPostgreSQLOutput.
GatewayUpdateProducerRabbitMQ gatewayUpdateProducerRabbitMQ is a command that updates rabbitmq producer.
GatewayUpdateProducerRabbitMQOutput struct for GatewayUpdateProducerRabbitMQOutput.
GatewayUpdateProducerRdp gatewayUpdateProducerRdp is a command that updates rdp producer.
GatewayUpdateProducerRdpOutput struct for GatewayUpdateProducerRdpOutput.
GatewayUpdateProducerRedshift gatewayUpdateProducerRedshift is a command that updates redshift producer.
GatewayUpdateProducerRedshiftOutput struct for GatewayUpdateProducerRedshiftOutput.
GatewayUpdateProducerSnowflake gatewayUpdateProducerSnowflakeCmd is a command that updates a Snowflake producer.
GatewayUpdateProducerSnowflakeOutput struct for GatewayUpdateProducerSnowflakeOutput.
GatewayUpdateTmpUsers gatewayUpdateTmpUsers is a command that returns gateway configuration.
GCPAccessRules struct for GCPAccessRules.
GCPPayload struct for GCPPayload.
GCPSecretsMigration struct for GCPSecretsMigration.
GenCustomerFragment struct for GenCustomerFragment.
GeneralConfigPart struct for GeneralConfigPart.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetAccountSettings struct for GetAccountSettings.
GetAccountSettingsCommandOutput struct for GetAccountSettingsCommandOutput.
GetAuthMethod struct for GetAuthMethod.
GetCloudIdentity getCloudIdentity is a command that gets Cloud Identity Token (relevant only for access-type=azure_ad, aws_iam, gcp).
GetCloudIdentityOutput struct for GetCloudIdentityOutput.
GetDynamicSecretValue struct for GetDynamicSecretValue.
GetKubeExecCreds getKubeExecCreds is a command that gets credentials for authentication with Kubernetes cluster based on a PKI cert issuer.
GetKubeExecCredsOutput struct for GetKubeExecCredsOutput.
GetPKICertificate struct for GetPKICertificate.
GetPKICertificateOutput struct for GetPKICertificateOutput.
GetProducersListReplyObj struct for GetProducersListReplyObj.
GetRole struct for GetRole.
GetRotatedSecretValue struct for GetRotatedSecretValue.
GetRSAPublic getRSAPublic is a command that obtains the public key from a specific RSA private key.
GetRSAPublicOutput struct for GetRSAPublicOutput.
GetSecretValue struct for GetSecretValue.
GetSSHCertificate struct for GetSSHCertificate.
GetSSHCertificateOutput struct for GetSSHCertificateOutput.
GetSubAdminsListReplyObj struct for GetSubAdminsListReplyObj.
GetTags struct for GetTags.
GetTarget struct for GetTarget.
GetTargetDetails struct for GetTargetDetails.
GetTargetDetailsOutput struct for GetTargetDetailsOutput.
GwClusterIdentity struct for GwClusterIdentity.
HashiMigration struct for HashiMigration.
HashiPayload struct for HashiPayload.
HuaweiAccessRules struct for HuaweiAccessRules.
Item struct for Item.
ItemGeneralInfo struct for ItemGeneralInfo.
ItemTargetAssociation ItemTargetAssociation includes details of an association between an item and a target.
ItemVersion struct for ItemVersion.
JSONError struct for JSONError.
K8SAuth struct for K8SAuth.
K8SAuthsConfigLastChange struct for K8SAuthsConfigLastChange.
K8SAuthsConfigPart struct for K8SAuthsConfigPart.
K8SMigration struct for K8SMigration.
K8SPayload struct for K8SPayload.
KMIPClient struct for KMIPClient.
KmipClientDeleteRule struct for KmipClientDeleteRule.
KMIPClientGetResponse struct for KMIPClientGetResponse.
KMIPClientListResponse struct for KMIPClientListResponse.
KMIPClientsConfigPart struct for KMIPClientsConfigPart.
KmipClientSetRule struct for KmipClientSetRule.
KMIPClientUpdateResponse struct for KMIPClientUpdateResponse.
KMIPConfigPart struct for KMIPConfigPart.
KmipCreateClient struct for KmipCreateClient.
KmipCreateClientOutput struct for KmipCreateClientOutput.
KmipDeleteClient struct for KmipDeleteClient.
KmipDeleteServer kmipDeleteServer is a command that the kmip server (allowed only if it has no clients nor associated items).
KmipDescribeClient struct for KmipDescribeClient.
KmipDescribeServer struct for KmipDescribeServer.
KmipDescribeServerOutput struct for KmipDescribeServerOutput.
KMIPEnvironmentCreateResponse struct for KMIPEnvironmentCreateResponse.
KmipListClients struct for KmipListClients.
KmipMoveServer kmipMoveServer is a command that Moves the root location of the kmip server and all associated items to a new root location.
KmipMoveServerOutput struct for KmipMoveServerOutput.
KmipRenewClientCertificate struct for KmipRenewClientCertificate.
KmipRenewClientCertificateOutput struct for KmipRenewClientCertificateOutput.
KmipRenewServerCertificate struct for KmipRenewServerCertificate.
KmipRenewServerCertificateOutput struct for KmipRenewServerCertificateOutput.
KMIPServer struct for KMIPServer.
KmipServerSetup struct for KmipServerSetup.
KmipSetServerState kmipSetServerState is a command that sets the environment state to active/inactive.
KmipSetServerStateOutput struct for KmipSetServerStateOutput.
KubernetesAccessRules struct for KubernetesAccessRules.
LastConfigChange struct for LastConfigChange.
LastStatusInfo struct for LastStatusInfo.
LDAPAccessRules struct for LDAPAccessRules.
LdapConfigPart struct for LdapConfigPart.
LeadershipConfigPart struct for LeadershipConfigPart.
ListAuthMethods listAuthMethods is a command that returns a list of all auth methods in the account.
ListAuthMethodsOutput struct for ListAuthMethodsOutput.
ListGateways struct for ListGateways.
ListItems struct for ListItems.
ListItemsInPathOutput struct for ListItemsInPathOutput.
ListRoles struct for ListRoles.
ListRolesOutput struct for ListRolesOutput.
ListSRABastions struct for ListSRABastions.
ListTargets struct for ListTargets.
ListTargetsOutput struct for ListTargetsOutput.
LogForwardingConfigPart struct for LogForwardingConfigPart.
LogstashLogForwardingConfig struct for LogstashLogForwardingConfig.
LogzIoLogForwardingConfig struct for LogzIoLogForwardingConfig.
ManagedKeyDetailsInfo struct for ManagedKeyDetailsInfo.
ManagedKeyStatusInfo struct for ManagedKeyStatusInfo.
ManagedKeyTargetInfo struct for ManagedKeyTargetInfo.
MigrationGeneral struct for MigrationGeneral.
MigrationItems struct for MigrationItems.
MigrationsConfigLastChange struct for MigrationsConfigLastChange.
MigrationsConfigPart struct for MigrationsConfigPart.
MigrationStatus struct for MigrationStatus.
MigrationStatusReplyObj struct for MigrationStatusReplyObj.
MockMigration struct for MockMigration.
MockPayload struct for MockPayload.
MoveObjects struct for MoveObjects.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OAuth2AccessRules OAuth2AccessRules contains access rules specific to OAuth2 authentication method.
OAuth2CustomClaim OAuth2CustomClaim is a custom claim specific to OAuth2 authentication method.
ObjectVersionSettingsOutput struct for ObjectVersionSettingsOutput.
OIDCAccessRules OIDCAccessRules contains access rules specific to Open Id Connect authentication method.
OIDCCustomClaim OIDCCustomClaim is a custom claim specific to OIDC authentication method.
OnePasswordMigration struct for OnePasswordMigration.
OnePasswordPayload struct for OnePasswordPayload.
PasswordPolicyInfo struct for PasswordPolicyInfo.
PathRule struct for PathRule.
PKICertificateIssueDetails struct for PKICertificateIssueDetails.
Producer struct for Producer.
ProducersConfigPart struct for ProducersConfigPart.
RawCreds struct for RawCreds.
RefreshKey struct for RefreshKey.
RefreshKeyOutput struct for RefreshKeyOutput.
RegexpTokenizerInfo RegexpTokenizerInfo represents a general Regexp tokenization template.
RequiredActivity struct for RequiredActivity.
ReverseRBAC reverseRBAC is a command that shows which auth methods have access to a particular object.
ReverseRBACClient struct for ReverseRBACClient.
ReverseRBACOutput struct for ReverseRBACOutput.
RevokeCreds revokeCreds will permanently revoke the credentials associated with the provided token or profile.
Role struct for Role.
RoleAuthMethodAssociation RoleAuthMethodAssociation includes details of an association between a role and an auth method.
RollbackSecret struct for RollbackSecret.
RollbackSecretOutput struct for RollbackSecretOutput.
RotatedSecretDetailsInfo RotatedSecretDetailsInfo The rotated secret rotator info.
RotatedSecretOutput struct for RotatedSecretOutput.
RotateKey of it.
RotateKeyOutput RotateKeyOutput defines output of RotateKey operation.
RotateSecret struct for RotateSecret.
Rotator struct for Rotator.
RotatorsConfigPart struct for RotatorsConfigPart.
RuleAssigner struct for RuleAssigner.
Rules struct for Rules.
SAMLAccessRules struct for SAMLAccessRules.
SAMLAttribute struct for SAMLAttribute.
SamlConfigPart struct for SamlConfigPart.
SecureRemoteAccess struct for SecureRemoteAccess.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SetItemState struct for SetItemState.
SetRoleRule struct for SetRoleRule.
ShareItem struct for ShareItem.
SignJWTOutput struct for SignJWTOutput.
SignJWTWithClassicKey struct for SignJWTWithClassicKey.
SignPKCS1 signPKCS1 is a command that calculates the signature of hashed data using RSASSA-PKCS1-V1_5-SIGN from RSA PKCS#1 v1.5.
SignPKCS1Output struct for SignPKCS1Output.
SignPKICertOutput struct for SignPKICertOutput.
SignPKICertWithClassicKey struct for SignPKICertWithClassicKey.
SmInfo struct for SmInfo.
SplunkLogForwardingConfig struct for SplunkLogForwardingConfig.
SraInfo struct for SraInfo.
SSHCertificateIssueDetails struct for SSHCertificateIssueDetails.
StaticCredsAuth staticCredsAuth is a command that creates a temporary access profile using the provided static credentials.
StaticCredsAuthOutput struct for StaticCredsAuthOutput.
StaticSecretDetailsInfo struct for StaticSecretDetailsInfo.
SyslogLogForwardingConfig struct for SyslogLogForwardingConfig.
SystemAccessCredentialsReplyObj struct for SystemAccessCredentialsReplyObj.
SystemAccessCredsSettings SystemAccessCredsSettings describes system access credential settings for account by minutes.
Target struct for Target.
TargetItemAssociation TargetItemAssociation includes details of an association between a target and an item.
TargetItemVersion struct for TargetItemVersion.
TargetObjectAssociation TargetObjectAssociation includes details of an association between a target and an object (target, migration_id).
TargetTypeDetailesInput struct for TargetTypeDetailesInput.
TargetTypeDetailsInput struct for TargetTypeDetailsInput.
TmpUserData struct for TmpUserData.
Tokenize tokenize is a command that encrypts text with a tokenizer.
TokenizeOutput struct for TokenizeOutput.
TokenizerInfo struct for TokenizerInfo.
UidCreateChildToken uidCreateChildToken is a command that creates a new child token using Akeyless Universal Identity.
UidCreateChildTokenOutput struct for UidCreateChildTokenOutput.
UIdentityConfigPart struct for UIdentityConfigPart.
UidGenerateToken uidGenerateToken is a command that generates a new token using Akeyless Universal Identity.
UidGenerateTokenOutput struct for UidGenerateTokenOutput.
UidListChildren uidListChildren is a command that lists child token ids of Akeyless Universal Identity.
UidRevokeToken struct for UidRevokeToken.
UidRotateToken uidRotateToken is a command that rotates an Akeyless Universal Identity token.
UidRotateTokenOutput struct for UidRotateTokenOutput.
UIDTokenDetails struct for UIDTokenDetails.
Unconfigure struct for Unconfigure.
UniversalIdentityAccessRules struct for UniversalIdentityAccessRules.
UniversalIdentityDetails struct for UniversalIdentityDetails.
Update struct for Update.
UpdateAccountSettings struct for UpdateAccountSettings.
UpdateAccountSettingsOutput struct for UpdateAccountSettingsOutput.
UpdateArtifactoryTarget struct for UpdateArtifactoryTarget.
UpdateArtifactoryTargetOutput struct for UpdateArtifactoryTargetOutput.
UpdateAssoc updateAssoc is a command that updates the sub-claims of an association between role and auth method.
UpdateAuthMethod struct for UpdateAuthMethod.
UpdateAuthMethodAWSIAM updateAuthMethodAWSIAM is a command that updates a new Auth Method that will be able to authenticate using AWS IAM credentials.
UpdateAuthMethodAzureAD updateAuthMethodAzureAD is a command that updates a new auth method that will be able to authenticate using Azure Active Directory credentials.
UpdateAuthMethodCert updateAuthMethodCert is a command that updates a new auth method that will be able to authenticate using a client certificae.
UpdateAuthMethodCertOutput struct for UpdateAuthMethodCertOutput.
UpdateAuthMethodGCP updateAuthMethodGCP is a command that updates a new auth method that will be able to authenticate using GCP IAM Service Account credentials or GCE instance credentials.
UpdateAuthMethodK8S updateAuthMethodK8S is a command that updates a new auth method that will be able to authenticate using K8S.
UpdateAuthMethodK8SOutput struct for UpdateAuthMethodK8SOutput.
UpdateAuthMethodLDAP updateAuthMethodLDAP is a command that updates a new auth method that will be able to authenticate using LDAP.
UpdateAuthMethodLDAPOutput struct for UpdateAuthMethodLDAPOutput.
UpdateAuthMethodOAuth2 updateAuthMethodOAuth2 is a command that updates a new auth method that will be able to authenticate using Oauth2.
UpdateAuthMethodOIDC updateAuthMethodOIDC is a command that updates a new auth method that will be available to authenticate using OIDC.
UpdateAuthMethodOutput struct for UpdateAuthMethodOutput.
UpdateAuthMethodSAML updateAuthMethodSAML is a command that updates a new auth method that will be available to authenticate using SAML.
UpdateAuthMethodUniversalIdentity updateAuthMethodUniversalIdentity is a command that updates a new auth method that will be able to authenticate using Akeyless Universal Identity.
UpdateAWSTarget struct for UpdateAWSTarget.
UpdateAWSTargetDetails struct for UpdateAWSTargetDetails.
UpdateAzureTarget struct for UpdateAzureTarget.
UpdateAzureTargetOutput struct for UpdateAzureTargetOutput.
UpdateDBTarget struct for UpdateDBTarget.
UpdateDBTargetDetails struct for UpdateDBTargetDetails.
UpdateDBTargetOutput struct for UpdateDBTargetOutput.
UpdateDockerhubTarget struct for UpdateDockerhubTarget.
UpdateDockerhubTargetOutput struct for UpdateDockerhubTargetOutput.
UpdateEKSTarget struct for UpdateEKSTarget.
UpdateEKSTargetOutput struct for UpdateEKSTargetOutput.
UpdateGcpTarget struct for UpdateGcpTarget.
UpdateGcpTargetOutput struct for UpdateGcpTargetOutput.
UpdateGithubTarget struct for UpdateGithubTarget.
UpdateGithubTargetOutput struct for UpdateGithubTargetOutput.
UpdateGKETarget struct for UpdateGKETarget.
UpdateGKETargetOutput struct for UpdateGKETargetOutput.
UpdateItem struct for UpdateItem.
UpdateItemOutput struct for UpdateItemOutput.
UpdateLdapTarget struct for UpdateLdapTarget.
UpdateLdapTargetDetails struct for UpdateLdapTargetDetails.
UpdateLdapTargetOutput struct for UpdateLdapTargetOutput.
UpdateManagedKey struct for UpdateManagedKey.
UpdateNativeK8STarget struct for UpdateNativeK8STarget.
UpdateNativeK8STargetOutput struct for UpdateNativeK8STargetOutput.
UpdateOutput struct for UpdateOutput.
UpdatePKICertIssuer struct for UpdatePKICertIssuer.
UpdatePKICertIssuerOutput struct for UpdatePKICertIssuerOutput.
UpdateRabbitMQTarget struct for UpdateRabbitMQTarget.
UpdateRabbitMQTargetDetails struct for UpdateRabbitMQTargetDetails.
UpdateRabbitMQTargetOutput struct for UpdateRabbitMQTargetOutput.
UpdateRDPTargetDetails struct for UpdateRDPTargetDetails.
UpdateRole struct for UpdateRole.
UpdateRoleOutput struct for UpdateRoleOutput.
UpdateRotatedSecret updateRotatedSecret is a command that updates rotated secret.
UpdateRotatedSecretOutput struct for UpdateRotatedSecretOutput.
UpdateRotatedSecretSC struct for UpdateRotatedSecretSC.
UpdateRotatedSecretSCOutput struct for UpdateRotatedSecretSCOutput.
UpdateRotationSettings updateRotationSettings is a command that updates rotations settings of an existing key.
UpdateSalesforceTarget struct for UpdateSalesforceTarget.
UpdateSalesforceTargetOutput struct for UpdateSalesforceTargetOutput.
UpdateSecretVal struct for UpdateSecretVal.
UpdateSecretValOutput struct for UpdateSecretValOutput.
UpdateSSHCertIssuer struct for UpdateSSHCertIssuer.
UpdateSSHCertIssuerOutput struct for UpdateSSHCertIssuerOutput.
UpdateSSHTarget struct for UpdateSSHTarget.
UpdateSSHTargetDetails struct for UpdateSSHTargetDetails.
UpdateSSHTargetOutput struct for UpdateSSHTargetOutput.
UpdateTarget struct for UpdateTarget.
UpdateTargetDetails struct for UpdateTargetDetails.
UpdateTargetDetailsOutput struct for UpdateTargetDetailsOutput.
UpdateTargetOutput struct for UpdateTargetOutput.
UpdateTokenizer updateTokenizer is a command that updates a tokenizer item.
UpdateTokenizerOutput struct for UpdateTokenizerOutput.
UpdateWebTarget struct for UpdateWebTarget.
UpdateWebTargetDetails struct for UpdateWebTargetDetails.
UpdateWebTargetOutput struct for UpdateWebTargetOutput.
UploadPKCS12 struct for UploadPKCS12.
UploadRSA struct for UploadRSA.
ValidateToken validate-token is a command that validaties token.
ValidateTokenOutput struct for ValidateTokenOutput.
VaultlessTokenizerInfo struct for VaultlessTokenizerInfo.
VerifyJWTOutput struct for VerifyJWTOutput.
VerifyJWTWithClassicKey struct for VerifyJWTWithClassicKey.
VerifyPKCS1 struct for VerifyPKCS1.
VerifyPKICertOutput struct for VerifyPKICertOutput.
VerifyPKICertWithClassicKey struct for VerifyPKICertWithClassicKey.
# Type aliases
ServerConfigurations stores multiple ServerConfiguration items.
V2ApiService V2Api service.