Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=appconfiguration.azure.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type Configuration
- func (in *Configuration) DeepCopy() *Configuration
- func (in *Configuration) DeepCopyInto(out *Configuration)
- func (in *Configuration) DeepCopyObject() runtime.Object
- func (mg *Configuration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Configuration) GetConnectionDetailsMapping() map[string]string
- func (mg *Configuration) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Configuration) GetID() string
- func (tr *Configuration) GetInitParameters() (map[string]any, error)
- func (mg *Configuration) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Configuration) GetObservation() (map[string]any, error)
- func (tr *Configuration) GetParameters() (map[string]any, error)
- func (mg *Configuration) GetProviderConfigReference() *xpv1.Reference
- func (mg *Configuration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Configuration) GetTerraformResourceType() string
- func (tr *Configuration) GetTerraformSchemaVersion() int
- func (mg *Configuration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Configuration) LateInitialize(attrs []byte) (bool, error)
- func (mg *Configuration) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Configuration) SetConditions(c ...xpv1.Condition)
- func (mg *Configuration) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Configuration) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Configuration) SetObservation(obs map[string]any) error
- func (tr *Configuration) SetParameters(params map[string]any) error
- func (mg *Configuration) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Configuration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Configuration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ConfigurationInitParameters
- type ConfigurationList
- type ConfigurationObservation
- type ConfigurationParameters
- type ConfigurationSpec
- type ConfigurationStatus
- type EncryptionInitParameters
- type EncryptionObservation
- type EncryptionParameters
- type IdentityInitParameters
- type IdentityObservation
- type IdentityParameters
- type PrimaryReadKeyInitParameters
- type PrimaryReadKeyObservation
- type PrimaryReadKeyParameters
- type PrimaryWriteKeyInitParameters
- type PrimaryWriteKeyObservation
- type PrimaryWriteKeyParameters
- type SecondaryReadKeyInitParameters
- type SecondaryReadKeyObservation
- type SecondaryReadKeyParameters
- type SecondaryWriteKeyInitParameters
- type SecondaryWriteKeyObservation
- type SecondaryWriteKeyParameters
Constants ¶
const ( CRDGroup = "appconfiguration.azure.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( Configuration_Kind = "Configuration" Configuration_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Configuration_Kind}.String() Configuration_KindAPIVersion = Configuration_Kind + "." + CRDGroupVersion.String() Configuration_GroupVersionKind = CRDGroupVersion.WithKind(Configuration_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type Configuration ¶
type Configuration struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.location) || (has(self.initProvider) && has(self.initProvider.location))",message="spec.forProvider.location is a required parameter" Spec ConfigurationSpec `json:"spec"` Status ConfigurationStatus `json:"status,omitempty"` }
Configuration is the Schema for the Configurations API. Manages an Azure App Configuration. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,azure}
func (*Configuration) DeepCopy ¶
func (in *Configuration) DeepCopy() *Configuration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configuration.
func (*Configuration) DeepCopyInto ¶
func (in *Configuration) DeepCopyInto(out *Configuration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Configuration) DeepCopyObject ¶
func (in *Configuration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Configuration) GetCondition ¶
func (mg *Configuration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Configuration.
func (*Configuration) GetConnectionDetailsMapping ¶
func (tr *Configuration) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Configuration
func (*Configuration) GetDeletionPolicy ¶
func (mg *Configuration) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Configuration.
func (*Configuration) GetID ¶
func (tr *Configuration) GetID() string
GetID returns ID of underlying Terraform resource of this Configuration
func (*Configuration) GetInitParameters ¶ added in v0.35.0
func (tr *Configuration) GetInitParameters() (map[string]any, error)
GetInitParameters of this Configuration
func (*Configuration) GetManagementPolicies ¶ added in v0.35.0
func (mg *Configuration) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Configuration.
func (*Configuration) GetObservation ¶
func (tr *Configuration) GetObservation() (map[string]any, error)
GetObservation of this Configuration
func (*Configuration) GetParameters ¶
func (tr *Configuration) GetParameters() (map[string]any, error)
GetParameters of this Configuration
func (*Configuration) GetProviderConfigReference ¶
func (mg *Configuration) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Configuration.
func (*Configuration) GetPublishConnectionDetailsTo ¶
func (mg *Configuration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Configuration.
func (*Configuration) GetTerraformResourceType ¶
func (mg *Configuration) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Configuration
func (*Configuration) GetTerraformSchemaVersion ¶
func (tr *Configuration) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Configuration) GetWriteConnectionSecretToReference ¶
func (mg *Configuration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Configuration.
func (*Configuration) LateInitialize ¶
func (tr *Configuration) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Configuration using its observed tfState. returns True if there are any spec changes for the resource.
func (*Configuration) ResolveReferences ¶
ResolveReferences of this Configuration.
func (*Configuration) SetConditions ¶
func (mg *Configuration) SetConditions(c ...xpv1.Condition)
SetConditions of this Configuration.
func (*Configuration) SetDeletionPolicy ¶
func (mg *Configuration) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Configuration.
func (*Configuration) SetManagementPolicies ¶ added in v0.35.0
func (mg *Configuration) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Configuration.
func (*Configuration) SetObservation ¶
func (tr *Configuration) SetObservation(obs map[string]any) error
SetObservation for this Configuration
func (*Configuration) SetParameters ¶
func (tr *Configuration) SetParameters(params map[string]any) error
SetParameters for this Configuration
func (*Configuration) SetProviderConfigReference ¶
func (mg *Configuration) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Configuration.
func (*Configuration) SetPublishConnectionDetailsTo ¶
func (mg *Configuration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Configuration.
func (*Configuration) SetWriteConnectionSecretToReference ¶
func (mg *Configuration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Configuration.
type ConfigurationInitParameters ¶ added in v0.35.0
type ConfigurationInitParameters struct { // An encryption block as defined below. Encryption []EncryptionInitParameters `json:"encryption,omitempty" tf:"encryption,omitempty"` // An identity block as defined below. Identity []IdentityInitParameters `json:"identity,omitempty" tf:"identity,omitempty"` // Whether local authentication methods is enabled. Defaults to true. LocalAuthEnabled *bool `json:"localAuthEnabled,omitempty" tf:"local_auth_enabled,omitempty"` // Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Location *string `json:"location,omitempty" tf:"location,omitempty"` // The Public Network Access setting of the App Configuration. Possible values are Enabled and Disabled. PublicNetworkAccess *string `json:"publicNetworkAccess,omitempty" tf:"public_network_access,omitempty"` // Whether Purge Protection is enabled. This field only works for standard sku. Defaults to false. PurgeProtectionEnabled *bool `json:"purgeProtectionEnabled,omitempty" tf:"purge_protection_enabled,omitempty"` // The SKU name of the App Configuration. Possible values are free and standard. Defaults to free. Sku *string `json:"sku,omitempty" tf:"sku,omitempty"` // The number of days that items should be retained for once soft-deleted. This field only works for standard sku. This value can be between 1 and 7 days. Defaults to 7. Changing this forces a new resource to be created. SoftDeleteRetentionDays *float64 `json:"softDeleteRetentionDays,omitempty" tf:"soft_delete_retention_days,omitempty"` // A mapping of tags to assign to the resource. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ConfigurationInitParameters) DeepCopy ¶ added in v0.35.0
func (in *ConfigurationInitParameters) DeepCopy() *ConfigurationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationInitParameters.
func (*ConfigurationInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *ConfigurationInitParameters) DeepCopyInto(out *ConfigurationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationList ¶
type ConfigurationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Configuration `json:"items"` }
ConfigurationList contains a list of Configurations
func (*ConfigurationList) DeepCopy ¶
func (in *ConfigurationList) DeepCopy() *ConfigurationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationList.
func (*ConfigurationList) DeepCopyInto ¶
func (in *ConfigurationList) DeepCopyInto(out *ConfigurationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ConfigurationList) DeepCopyObject ¶
func (in *ConfigurationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ConfigurationList) GetItems ¶
func (l *ConfigurationList) GetItems() []resource.Managed
GetItems of this ConfigurationList.
type ConfigurationObservation ¶
type ConfigurationObservation struct { // An encryption block as defined below. Encryption []EncryptionObservation `json:"encryption,omitempty" tf:"encryption,omitempty"` // The URL of the App Configuration. Endpoint *string `json:"endpoint,omitempty" tf:"endpoint,omitempty"` // The App Configuration ID. ID *string `json:"id,omitempty" tf:"id,omitempty"` // An identity block as defined below. Identity []IdentityObservation `json:"identity,omitempty" tf:"identity,omitempty"` // Whether local authentication methods is enabled. Defaults to true. LocalAuthEnabled *bool `json:"localAuthEnabled,omitempty" tf:"local_auth_enabled,omitempty"` // Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Location *string `json:"location,omitempty" tf:"location,omitempty"` // A primary_read_key block as defined below containing the primary read access key. PrimaryReadKey []PrimaryReadKeyObservation `json:"primaryReadKey,omitempty" tf:"primary_read_key,omitempty"` // A primary_write_key block as defined below containing the primary write access key. PrimaryWriteKey []PrimaryWriteKeyObservation `json:"primaryWriteKey,omitempty" tf:"primary_write_key,omitempty"` // The Public Network Access setting of the App Configuration. Possible values are Enabled and Disabled. PublicNetworkAccess *string `json:"publicNetworkAccess,omitempty" tf:"public_network_access,omitempty"` // Whether Purge Protection is enabled. This field only works for standard sku. Defaults to false. PurgeProtectionEnabled *bool `json:"purgeProtectionEnabled,omitempty" tf:"purge_protection_enabled,omitempty"` // The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created. ResourceGroupName *string `json:"resourceGroupName,omitempty" tf:"resource_group_name,omitempty"` // A secondary_read_key block as defined below containing the secondary read access key. SecondaryReadKey []SecondaryReadKeyObservation `json:"secondaryReadKey,omitempty" tf:"secondary_read_key,omitempty"` // A secondary_write_key block as defined below containing the secondary write access key. SecondaryWriteKey []SecondaryWriteKeyObservation `json:"secondaryWriteKey,omitempty" tf:"secondary_write_key,omitempty"` // The SKU name of the App Configuration. Possible values are free and standard. Defaults to free. Sku *string `json:"sku,omitempty" tf:"sku,omitempty"` // The number of days that items should be retained for once soft-deleted. This field only works for standard sku. This value can be between 1 and 7 days. Defaults to 7. Changing this forces a new resource to be created. SoftDeleteRetentionDays *float64 `json:"softDeleteRetentionDays,omitempty" tf:"soft_delete_retention_days,omitempty"` // A mapping of tags to assign to the resource. Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ConfigurationObservation) DeepCopy ¶
func (in *ConfigurationObservation) DeepCopy() *ConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationObservation.
func (*ConfigurationObservation) DeepCopyInto ¶
func (in *ConfigurationObservation) DeepCopyInto(out *ConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationParameters ¶
type ConfigurationParameters struct { // An encryption block as defined below. // +kubebuilder:validation:Optional Encryption []EncryptionParameters `json:"encryption,omitempty" tf:"encryption,omitempty"` // An identity block as defined below. // +kubebuilder:validation:Optional Identity []IdentityParameters `json:"identity,omitempty" tf:"identity,omitempty"` // Whether local authentication methods is enabled. Defaults to true. // +kubebuilder:validation:Optional LocalAuthEnabled *bool `json:"localAuthEnabled,omitempty" tf:"local_auth_enabled,omitempty"` // Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. // +kubebuilder:validation:Optional Location *string `json:"location,omitempty" tf:"location,omitempty"` // The Public Network Access setting of the App Configuration. Possible values are Enabled and Disabled. // +kubebuilder:validation:Optional PublicNetworkAccess *string `json:"publicNetworkAccess,omitempty" tf:"public_network_access,omitempty"` // Whether Purge Protection is enabled. This field only works for standard sku. Defaults to false. // +kubebuilder:validation:Optional PurgeProtectionEnabled *bool `json:"purgeProtectionEnabled,omitempty" tf:"purge_protection_enabled,omitempty"` // The name of the resource group in which to create the App Configuration. Changing this forces a new resource to be created. // +crossplane:generate:reference:type=github.com/upbound/provider-azure/apis/azure/v1beta1.ResourceGroup // +kubebuilder:validation:Optional ResourceGroupName *string `json:"resourceGroupName,omitempty" tf:"resource_group_name,omitempty"` // Reference to a ResourceGroup in azure to populate resourceGroupName. // +kubebuilder:validation:Optional ResourceGroupNameRef *v1.Reference `json:"resourceGroupNameRef,omitempty" tf:"-"` // Selector for a ResourceGroup in azure to populate resourceGroupName. // +kubebuilder:validation:Optional ResourceGroupNameSelector *v1.Selector `json:"resourceGroupNameSelector,omitempty" tf:"-"` // The SKU name of the App Configuration. Possible values are free and standard. Defaults to free. // +kubebuilder:validation:Optional Sku *string `json:"sku,omitempty" tf:"sku,omitempty"` // The number of days that items should be retained for once soft-deleted. This field only works for standard sku. This value can be between 1 and 7 days. Defaults to 7. Changing this forces a new resource to be created. // +kubebuilder:validation:Optional SoftDeleteRetentionDays *float64 `json:"softDeleteRetentionDays,omitempty" tf:"soft_delete_retention_days,omitempty"` // A mapping of tags to assign to the resource. // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ConfigurationParameters) DeepCopy ¶
func (in *ConfigurationParameters) DeepCopy() *ConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationParameters.
func (*ConfigurationParameters) DeepCopyInto ¶
func (in *ConfigurationParameters) DeepCopyInto(out *ConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationSpec ¶
type ConfigurationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ConfigurationParameters `json:"forProvider"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider ConfigurationInitParameters `json:"initProvider,omitempty"` }
ConfigurationSpec defines the desired state of Configuration
func (*ConfigurationSpec) DeepCopy ¶
func (in *ConfigurationSpec) DeepCopy() *ConfigurationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationSpec.
func (*ConfigurationSpec) DeepCopyInto ¶
func (in *ConfigurationSpec) DeepCopyInto(out *ConfigurationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConfigurationStatus ¶
type ConfigurationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ConfigurationObservation `json:"atProvider,omitempty"` }
ConfigurationStatus defines the observed state of Configuration.
func (*ConfigurationStatus) DeepCopy ¶
func (in *ConfigurationStatus) DeepCopy() *ConfigurationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConfigurationStatus.
func (*ConfigurationStatus) DeepCopyInto ¶
func (in *ConfigurationStatus) DeepCopyInto(out *ConfigurationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionInitParameters ¶ added in v0.35.0
type EncryptionInitParameters struct { }
func (*EncryptionInitParameters) DeepCopy ¶ added in v0.35.0
func (in *EncryptionInitParameters) DeepCopy() *EncryptionInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionInitParameters.
func (*EncryptionInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *EncryptionInitParameters) DeepCopyInto(out *EncryptionInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionObservation ¶
type EncryptionObservation struct { // Specifies the client id of the identity which will be used to access key vault. IdentityClientID *string `json:"identityClientId,omitempty" tf:"identity_client_id,omitempty"` // Specifies the URI of the key vault key used to encrypt data. KeyVaultKeyIdentifier *string `json:"keyVaultKeyIdentifier,omitempty" tf:"key_vault_key_identifier,omitempty"` }
func (*EncryptionObservation) DeepCopy ¶
func (in *EncryptionObservation) DeepCopy() *EncryptionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionObservation.
func (*EncryptionObservation) DeepCopyInto ¶
func (in *EncryptionObservation) DeepCopyInto(out *EncryptionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionParameters ¶
type EncryptionParameters struct { // Specifies the client id of the identity which will be used to access key vault. // +crossplane:generate:reference:type=github.com/upbound/provider-azure/apis/managedidentity/v1beta1.UserAssignedIdentity // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("client_id",true) // +kubebuilder:validation:Optional IdentityClientID *string `json:"identityClientId,omitempty" tf:"identity_client_id,omitempty"` // Reference to a UserAssignedIdentity in managedidentity to populate identityClientId. // +kubebuilder:validation:Optional IdentityClientIDRef *v1.Reference `json:"identityClientIdRef,omitempty" tf:"-"` // Selector for a UserAssignedIdentity in managedidentity to populate identityClientId. // +kubebuilder:validation:Optional IdentityClientIDSelector *v1.Selector `json:"identityClientIdSelector,omitempty" tf:"-"` // Specifies the URI of the key vault key used to encrypt data. // +crossplane:generate:reference:type=github.com/upbound/provider-azure/apis/keyvault/v1beta1.Key // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractResourceID() // +kubebuilder:validation:Optional KeyVaultKeyIdentifier *string `json:"keyVaultKeyIdentifier,omitempty" tf:"key_vault_key_identifier,omitempty"` // Reference to a Key in keyvault to populate keyVaultKeyIdentifier. // +kubebuilder:validation:Optional KeyVaultKeyIdentifierRef *v1.Reference `json:"keyVaultKeyIdentifierRef,omitempty" tf:"-"` // Selector for a Key in keyvault to populate keyVaultKeyIdentifier. // +kubebuilder:validation:Optional KeyVaultKeyIdentifierSelector *v1.Selector `json:"keyVaultKeyIdentifierSelector,omitempty" tf:"-"` }
func (*EncryptionParameters) DeepCopy ¶
func (in *EncryptionParameters) DeepCopy() *EncryptionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionParameters.
func (*EncryptionParameters) DeepCopyInto ¶
func (in *EncryptionParameters) DeepCopyInto(out *EncryptionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityInitParameters ¶ added in v0.35.0
type IdentityInitParameters struct { // A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. IdentityIds []*string `json:"identityIds,omitempty" tf:"identity_ids,omitempty"` // Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both). Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*IdentityInitParameters) DeepCopy ¶ added in v0.35.0
func (in *IdentityInitParameters) DeepCopy() *IdentityInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityInitParameters.
func (*IdentityInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *IdentityInitParameters) DeepCopyInto(out *IdentityInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityObservation ¶
type IdentityObservation struct { // A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. IdentityIds []*string `json:"identityIds,omitempty" tf:"identity_ids,omitempty"` // The Principal ID associated with this Managed Service Identity. PrincipalID *string `json:"principalId,omitempty" tf:"principal_id,omitempty"` // The Tenant ID associated with this Managed Service Identity. TenantID *string `json:"tenantId,omitempty" tf:"tenant_id,omitempty"` // Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both). Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*IdentityObservation) DeepCopy ¶
func (in *IdentityObservation) DeepCopy() *IdentityObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityObservation.
func (*IdentityObservation) DeepCopyInto ¶
func (in *IdentityObservation) DeepCopyInto(out *IdentityObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityParameters ¶
type IdentityParameters struct { // A list of User Assigned Managed Identity IDs to be assigned to this App Configuration. // +kubebuilder:validation:Optional IdentityIds []*string `json:"identityIds,omitempty" tf:"identity_ids,omitempty"` // Specifies the type of Managed Service Identity that should be configured on this App Configuration. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both). // +kubebuilder:validation:Optional Type *string `json:"type" tf:"type,omitempty"` }
func (*IdentityParameters) DeepCopy ¶
func (in *IdentityParameters) DeepCopy() *IdentityParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityParameters.
func (*IdentityParameters) DeepCopyInto ¶
func (in *IdentityParameters) DeepCopyInto(out *IdentityParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryReadKeyInitParameters ¶ added in v0.35.0
type PrimaryReadKeyInitParameters struct { }
func (*PrimaryReadKeyInitParameters) DeepCopy ¶ added in v0.35.0
func (in *PrimaryReadKeyInitParameters) DeepCopy() *PrimaryReadKeyInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryReadKeyInitParameters.
func (*PrimaryReadKeyInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *PrimaryReadKeyInitParameters) DeepCopyInto(out *PrimaryReadKeyInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryReadKeyObservation ¶
type PrimaryReadKeyObservation struct { // The Connection String for this Access Key - comprising of the Endpoint, ID and Secret. ConnectionString *string `json:"connectionString,omitempty" tf:"connection_string,omitempty"` // The ID of the Access Key. ID *string `json:"id,omitempty" tf:"id,omitempty"` // The Secret of the Access Key. Secret *string `json:"secret,omitempty" tf:"secret,omitempty"` }
func (*PrimaryReadKeyObservation) DeepCopy ¶
func (in *PrimaryReadKeyObservation) DeepCopy() *PrimaryReadKeyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryReadKeyObservation.
func (*PrimaryReadKeyObservation) DeepCopyInto ¶
func (in *PrimaryReadKeyObservation) DeepCopyInto(out *PrimaryReadKeyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryReadKeyParameters ¶
type PrimaryReadKeyParameters struct { }
func (*PrimaryReadKeyParameters) DeepCopy ¶
func (in *PrimaryReadKeyParameters) DeepCopy() *PrimaryReadKeyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryReadKeyParameters.
func (*PrimaryReadKeyParameters) DeepCopyInto ¶
func (in *PrimaryReadKeyParameters) DeepCopyInto(out *PrimaryReadKeyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryWriteKeyInitParameters ¶ added in v0.35.0
type PrimaryWriteKeyInitParameters struct { }
func (*PrimaryWriteKeyInitParameters) DeepCopy ¶ added in v0.35.0
func (in *PrimaryWriteKeyInitParameters) DeepCopy() *PrimaryWriteKeyInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryWriteKeyInitParameters.
func (*PrimaryWriteKeyInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *PrimaryWriteKeyInitParameters) DeepCopyInto(out *PrimaryWriteKeyInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryWriteKeyObservation ¶
type PrimaryWriteKeyObservation struct { // The Connection String for this Access Key - comprising of the Endpoint, ID and Secret. ConnectionString *string `json:"connectionString,omitempty" tf:"connection_string,omitempty"` // The ID of the Access Key. ID *string `json:"id,omitempty" tf:"id,omitempty"` // The Secret of the Access Key. Secret *string `json:"secret,omitempty" tf:"secret,omitempty"` }
func (*PrimaryWriteKeyObservation) DeepCopy ¶
func (in *PrimaryWriteKeyObservation) DeepCopy() *PrimaryWriteKeyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryWriteKeyObservation.
func (*PrimaryWriteKeyObservation) DeepCopyInto ¶
func (in *PrimaryWriteKeyObservation) DeepCopyInto(out *PrimaryWriteKeyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrimaryWriteKeyParameters ¶
type PrimaryWriteKeyParameters struct { }
func (*PrimaryWriteKeyParameters) DeepCopy ¶
func (in *PrimaryWriteKeyParameters) DeepCopy() *PrimaryWriteKeyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrimaryWriteKeyParameters.
func (*PrimaryWriteKeyParameters) DeepCopyInto ¶
func (in *PrimaryWriteKeyParameters) DeepCopyInto(out *PrimaryWriteKeyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryReadKeyInitParameters ¶ added in v0.35.0
type SecondaryReadKeyInitParameters struct { }
func (*SecondaryReadKeyInitParameters) DeepCopy ¶ added in v0.35.0
func (in *SecondaryReadKeyInitParameters) DeepCopy() *SecondaryReadKeyInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryReadKeyInitParameters.
func (*SecondaryReadKeyInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *SecondaryReadKeyInitParameters) DeepCopyInto(out *SecondaryReadKeyInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryReadKeyObservation ¶
type SecondaryReadKeyObservation struct { // The Connection String for this Access Key - comprising of the Endpoint, ID and Secret. ConnectionString *string `json:"connectionString,omitempty" tf:"connection_string,omitempty"` // The ID of the Access Key. ID *string `json:"id,omitempty" tf:"id,omitempty"` // The Secret of the Access Key. Secret *string `json:"secret,omitempty" tf:"secret,omitempty"` }
func (*SecondaryReadKeyObservation) DeepCopy ¶
func (in *SecondaryReadKeyObservation) DeepCopy() *SecondaryReadKeyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryReadKeyObservation.
func (*SecondaryReadKeyObservation) DeepCopyInto ¶
func (in *SecondaryReadKeyObservation) DeepCopyInto(out *SecondaryReadKeyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryReadKeyParameters ¶
type SecondaryReadKeyParameters struct { }
func (*SecondaryReadKeyParameters) DeepCopy ¶
func (in *SecondaryReadKeyParameters) DeepCopy() *SecondaryReadKeyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryReadKeyParameters.
func (*SecondaryReadKeyParameters) DeepCopyInto ¶
func (in *SecondaryReadKeyParameters) DeepCopyInto(out *SecondaryReadKeyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryWriteKeyInitParameters ¶ added in v0.35.0
type SecondaryWriteKeyInitParameters struct { }
func (*SecondaryWriteKeyInitParameters) DeepCopy ¶ added in v0.35.0
func (in *SecondaryWriteKeyInitParameters) DeepCopy() *SecondaryWriteKeyInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryWriteKeyInitParameters.
func (*SecondaryWriteKeyInitParameters) DeepCopyInto ¶ added in v0.35.0
func (in *SecondaryWriteKeyInitParameters) DeepCopyInto(out *SecondaryWriteKeyInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryWriteKeyObservation ¶
type SecondaryWriteKeyObservation struct { // The Connection String for this Access Key - comprising of the Endpoint, ID and Secret. ConnectionString *string `json:"connectionString,omitempty" tf:"connection_string,omitempty"` // The ID of the Access Key. ID *string `json:"id,omitempty" tf:"id,omitempty"` // The Secret of the Access Key. Secret *string `json:"secret,omitempty" tf:"secret,omitempty"` }
func (*SecondaryWriteKeyObservation) DeepCopy ¶
func (in *SecondaryWriteKeyObservation) DeepCopy() *SecondaryWriteKeyObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryWriteKeyObservation.
func (*SecondaryWriteKeyObservation) DeepCopyInto ¶
func (in *SecondaryWriteKeyObservation) DeepCopyInto(out *SecondaryWriteKeyObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SecondaryWriteKeyParameters ¶
type SecondaryWriteKeyParameters struct { }
func (*SecondaryWriteKeyParameters) DeepCopy ¶
func (in *SecondaryWriteKeyParameters) DeepCopy() *SecondaryWriteKeyParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SecondaryWriteKeyParameters.
func (*SecondaryWriteKeyParameters) DeepCopyInto ¶
func (in *SecondaryWriteKeyParameters) DeepCopyInto(out *SecondaryWriteKeyParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.