Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=video.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Analyzer
- func (in *Analyzer) DeepCopy() *Analyzer
- func (in *Analyzer) DeepCopyInto(out *Analyzer)
- func (in *Analyzer) DeepCopyObject() runtime.Object
- func (mg *Analyzer) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Analyzer) GetConnectionDetailsMapping() map[string]string
- func (mg *Analyzer) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Analyzer) GetObservation() (map[string]interface{}, error)
- func (tr *Analyzer) GetParameters() (map[string]interface{}, error)
- func (mg *Analyzer) GetProviderConfigReference() *xpv1.Reference
- func (mg *Analyzer) GetProviderReference() *xpv1.Reference
- func (mg *Analyzer) GetTerraformResourceType() string
- func (tr *Analyzer) GetTerraformSchemaVersion() int
- func (mg *Analyzer) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Analyzer) LateInitialize(attrs []byte) (bool, error)
- func (mg *Analyzer) SetConditions(c ...xpv1.Condition)
- func (mg *Analyzer) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Analyzer) SetObservation(obs map[string]interface{}) error
- func (tr *Analyzer) SetParameters(params map[string]interface{}) error
- func (mg *Analyzer) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Analyzer) SetProviderReference(r *xpv1.Reference)
- func (mg *Analyzer) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AnalyzerEdgeModule
- func (in *AnalyzerEdgeModule) DeepCopy() *AnalyzerEdgeModule
- func (in *AnalyzerEdgeModule) DeepCopyInto(out *AnalyzerEdgeModule)
- func (in *AnalyzerEdgeModule) DeepCopyObject() runtime.Object
- func (mg *AnalyzerEdgeModule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *AnalyzerEdgeModule) GetConnectionDetailsMapping() map[string]string
- func (mg *AnalyzerEdgeModule) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *AnalyzerEdgeModule) GetObservation() (map[string]interface{}, error)
- func (tr *AnalyzerEdgeModule) GetParameters() (map[string]interface{}, error)
- func (mg *AnalyzerEdgeModule) GetProviderConfigReference() *xpv1.Reference
- func (mg *AnalyzerEdgeModule) GetProviderReference() *xpv1.Reference
- func (mg *AnalyzerEdgeModule) GetTerraformResourceType() string
- func (tr *AnalyzerEdgeModule) GetTerraformSchemaVersion() int
- func (mg *AnalyzerEdgeModule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *AnalyzerEdgeModule) LateInitialize(attrs []byte) (bool, error)
- func (mg *AnalyzerEdgeModule) SetConditions(c ...xpv1.Condition)
- func (mg *AnalyzerEdgeModule) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *AnalyzerEdgeModule) SetObservation(obs map[string]interface{}) error
- func (tr *AnalyzerEdgeModule) SetParameters(params map[string]interface{}) error
- func (mg *AnalyzerEdgeModule) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *AnalyzerEdgeModule) SetProviderReference(r *xpv1.Reference)
- func (mg *AnalyzerEdgeModule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AnalyzerEdgeModuleList
- type AnalyzerEdgeModuleObservation
- type AnalyzerEdgeModuleParameters
- type AnalyzerEdgeModuleSpec
- type AnalyzerEdgeModuleStatus
- type AnalyzerList
- type AnalyzerObservation
- type AnalyzerParameters
- type AnalyzerSpec
- type AnalyzerStatus
- type IdentityObservation
- type IdentityParameters
- type StorageAccountObservation
- type StorageAccountParameters
Constants ¶
const ( CRDGroup = "video.azure.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Analyzer_Kind = "Analyzer" Analyzer_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Analyzer_Kind}.String() Analyzer_KindAPIVersion = Analyzer_Kind + "." + CRDGroupVersion.String() Analyzer_GroupVersionKind = CRDGroupVersion.WithKind(Analyzer_Kind) )
Repository type metadata.
var ( AnalyzerEdgeModule_Kind = "AnalyzerEdgeModule" AnalyzerEdgeModule_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: AnalyzerEdgeModule_Kind}.String() AnalyzerEdgeModule_KindAPIVersion = AnalyzerEdgeModule_Kind + "." + CRDGroupVersion.String() AnalyzerEdgeModule_GroupVersionKind = CRDGroupVersion.WithKind(AnalyzerEdgeModule_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 Analyzer ¶
type Analyzer struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AnalyzerSpec `json:"spec"` Status AnalyzerStatus `json:"status,omitempty"` }
Analyzer is the Schema for the Analyzers API +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,azurejet}
func (*Analyzer) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Analyzer.
func (*Analyzer) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Analyzer) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Analyzer) GetCondition ¶
func (mg *Analyzer) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Analyzer.
func (*Analyzer) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Analyzer
func (*Analyzer) GetDeletionPolicy ¶
func (mg *Analyzer) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Analyzer.
func (*Analyzer) GetObservation ¶
GetObservation of this Analyzer
func (*Analyzer) GetParameters ¶
GetParameters of this Analyzer
func (*Analyzer) GetProviderConfigReference ¶
GetProviderConfigReference of this Analyzer.
func (*Analyzer) GetProviderReference ¶
GetProviderReference of this Analyzer. Deprecated: Use GetProviderConfigReference.
func (*Analyzer) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Analyzer
func (*Analyzer) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Analyzer) GetWriteConnectionSecretToReference ¶
func (mg *Analyzer) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Analyzer.
func (*Analyzer) LateInitialize ¶
LateInitialize this Analyzer using its observed tfState. returns True if there are any spec changes for the resource.
func (*Analyzer) SetConditions ¶
SetConditions of this Analyzer.
func (*Analyzer) SetDeletionPolicy ¶
func (mg *Analyzer) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Analyzer.
func (*Analyzer) SetObservation ¶
SetObservation for this Analyzer
func (*Analyzer) SetParameters ¶
SetParameters for this Analyzer
func (*Analyzer) SetProviderConfigReference ¶
SetProviderConfigReference of this Analyzer.
func (*Analyzer) SetProviderReference ¶
SetProviderReference of this Analyzer. Deprecated: Use SetProviderConfigReference.
func (*Analyzer) SetWriteConnectionSecretToReference ¶
func (mg *Analyzer) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Analyzer.
type AnalyzerEdgeModule ¶
type AnalyzerEdgeModule struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AnalyzerEdgeModuleSpec `json:"spec"` Status AnalyzerEdgeModuleStatus `json:"status,omitempty"` }
AnalyzerEdgeModule is the Schema for the AnalyzerEdgeModules API +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,azurejet}
func (*AnalyzerEdgeModule) DeepCopy ¶
func (in *AnalyzerEdgeModule) DeepCopy() *AnalyzerEdgeModule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) DeepCopyInto ¶
func (in *AnalyzerEdgeModule) DeepCopyInto(out *AnalyzerEdgeModule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AnalyzerEdgeModule) DeepCopyObject ¶
func (in *AnalyzerEdgeModule) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AnalyzerEdgeModule) GetCondition ¶
func (mg *AnalyzerEdgeModule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) GetConnectionDetailsMapping ¶
func (tr *AnalyzerEdgeModule) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) GetDeletionPolicy ¶
func (mg *AnalyzerEdgeModule) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) GetObservation ¶
func (tr *AnalyzerEdgeModule) GetObservation() (map[string]interface{}, error)
GetObservation of this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) GetParameters ¶
func (tr *AnalyzerEdgeModule) GetParameters() (map[string]interface{}, error)
GetParameters of this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) GetProviderConfigReference ¶
func (mg *AnalyzerEdgeModule) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) GetProviderReference ¶
func (mg *AnalyzerEdgeModule) GetProviderReference() *xpv1.Reference
GetProviderReference of this AnalyzerEdgeModule. Deprecated: Use GetProviderConfigReference.
func (*AnalyzerEdgeModule) GetTerraformResourceType ¶
func (mg *AnalyzerEdgeModule) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) GetTerraformSchemaVersion ¶
func (tr *AnalyzerEdgeModule) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*AnalyzerEdgeModule) GetWriteConnectionSecretToReference ¶
func (mg *AnalyzerEdgeModule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) LateInitialize ¶
func (tr *AnalyzerEdgeModule) LateInitialize(attrs []byte) (bool, error)
LateInitialize this AnalyzerEdgeModule using its observed tfState. returns True if there are any spec changes for the resource.
func (*AnalyzerEdgeModule) SetConditions ¶
func (mg *AnalyzerEdgeModule) SetConditions(c ...xpv1.Condition)
SetConditions of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) SetDeletionPolicy ¶
func (mg *AnalyzerEdgeModule) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) SetObservation ¶
func (tr *AnalyzerEdgeModule) SetObservation(obs map[string]interface{}) error
SetObservation for this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) SetParameters ¶
func (tr *AnalyzerEdgeModule) SetParameters(params map[string]interface{}) error
SetParameters for this AnalyzerEdgeModule
func (*AnalyzerEdgeModule) SetProviderConfigReference ¶
func (mg *AnalyzerEdgeModule) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this AnalyzerEdgeModule.
func (*AnalyzerEdgeModule) SetProviderReference ¶
func (mg *AnalyzerEdgeModule) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this AnalyzerEdgeModule. Deprecated: Use SetProviderConfigReference.
func (*AnalyzerEdgeModule) SetWriteConnectionSecretToReference ¶
func (mg *AnalyzerEdgeModule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this AnalyzerEdgeModule.
type AnalyzerEdgeModuleList ¶
type AnalyzerEdgeModuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []AnalyzerEdgeModule `json:"items"` }
AnalyzerEdgeModuleList contains a list of AnalyzerEdgeModules
func (*AnalyzerEdgeModuleList) DeepCopy ¶
func (in *AnalyzerEdgeModuleList) DeepCopy() *AnalyzerEdgeModuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModuleList.
func (*AnalyzerEdgeModuleList) DeepCopyInto ¶
func (in *AnalyzerEdgeModuleList) DeepCopyInto(out *AnalyzerEdgeModuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AnalyzerEdgeModuleList) DeepCopyObject ¶
func (in *AnalyzerEdgeModuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AnalyzerEdgeModuleList) GetItems ¶
func (l *AnalyzerEdgeModuleList) GetItems() []resource.Managed
GetItems of this AnalyzerEdgeModuleList.
type AnalyzerEdgeModuleObservation ¶
type AnalyzerEdgeModuleObservation struct { }
func (*AnalyzerEdgeModuleObservation) DeepCopy ¶
func (in *AnalyzerEdgeModuleObservation) DeepCopy() *AnalyzerEdgeModuleObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModuleObservation.
func (*AnalyzerEdgeModuleObservation) DeepCopyInto ¶
func (in *AnalyzerEdgeModuleObservation) DeepCopyInto(out *AnalyzerEdgeModuleObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerEdgeModuleParameters ¶
type AnalyzerEdgeModuleParameters struct { // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name,omitempty"` // +kubebuilder:validation:Required VideoAnalyzerName *string `json:"videoAnalyzerName" tf:"video_analyzer_name,omitempty"` }
func (*AnalyzerEdgeModuleParameters) DeepCopy ¶
func (in *AnalyzerEdgeModuleParameters) DeepCopy() *AnalyzerEdgeModuleParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModuleParameters.
func (*AnalyzerEdgeModuleParameters) DeepCopyInto ¶
func (in *AnalyzerEdgeModuleParameters) DeepCopyInto(out *AnalyzerEdgeModuleParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerEdgeModuleSpec ¶
type AnalyzerEdgeModuleSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AnalyzerEdgeModuleParameters `json:"forProvider"` }
AnalyzerEdgeModuleSpec defines the desired state of AnalyzerEdgeModule
func (*AnalyzerEdgeModuleSpec) DeepCopy ¶
func (in *AnalyzerEdgeModuleSpec) DeepCopy() *AnalyzerEdgeModuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModuleSpec.
func (*AnalyzerEdgeModuleSpec) DeepCopyInto ¶
func (in *AnalyzerEdgeModuleSpec) DeepCopyInto(out *AnalyzerEdgeModuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerEdgeModuleStatus ¶
type AnalyzerEdgeModuleStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AnalyzerEdgeModuleObservation `json:"atProvider,omitempty"` }
AnalyzerEdgeModuleStatus defines the observed state of AnalyzerEdgeModule.
func (*AnalyzerEdgeModuleStatus) DeepCopy ¶
func (in *AnalyzerEdgeModuleStatus) DeepCopy() *AnalyzerEdgeModuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerEdgeModuleStatus.
func (*AnalyzerEdgeModuleStatus) DeepCopyInto ¶
func (in *AnalyzerEdgeModuleStatus) DeepCopyInto(out *AnalyzerEdgeModuleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerList ¶
type AnalyzerList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Analyzer `json:"items"` }
AnalyzerList contains a list of Analyzers
func (*AnalyzerList) DeepCopy ¶
func (in *AnalyzerList) DeepCopy() *AnalyzerList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerList.
func (*AnalyzerList) DeepCopyInto ¶
func (in *AnalyzerList) DeepCopyInto(out *AnalyzerList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AnalyzerList) DeepCopyObject ¶
func (in *AnalyzerList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AnalyzerList) GetItems ¶
func (l *AnalyzerList) GetItems() []resource.Managed
GetItems of this AnalyzerList.
type AnalyzerObservation ¶
type AnalyzerObservation struct { }
func (*AnalyzerObservation) DeepCopy ¶
func (in *AnalyzerObservation) DeepCopy() *AnalyzerObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerObservation.
func (*AnalyzerObservation) DeepCopyInto ¶
func (in *AnalyzerObservation) DeepCopyInto(out *AnalyzerObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerParameters ¶
type AnalyzerParameters struct { // +kubebuilder:validation:Required Identity []IdentityParameters `json:"identity" tf:"identity,omitempty"` // +kubebuilder:validation:Required Location *string `json:"location" tf:"location,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name,omitempty"` // +kubebuilder:validation:Required StorageAccount []StorageAccountParameters `json:"storageAccount" tf:"storage_account,omitempty"` // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*AnalyzerParameters) DeepCopy ¶
func (in *AnalyzerParameters) DeepCopy() *AnalyzerParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerParameters.
func (*AnalyzerParameters) DeepCopyInto ¶
func (in *AnalyzerParameters) DeepCopyInto(out *AnalyzerParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerSpec ¶
type AnalyzerSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AnalyzerParameters `json:"forProvider"` }
AnalyzerSpec defines the desired state of Analyzer
func (*AnalyzerSpec) DeepCopy ¶
func (in *AnalyzerSpec) DeepCopy() *AnalyzerSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerSpec.
func (*AnalyzerSpec) DeepCopyInto ¶
func (in *AnalyzerSpec) DeepCopyInto(out *AnalyzerSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AnalyzerStatus ¶
type AnalyzerStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AnalyzerObservation `json:"atProvider,omitempty"` }
AnalyzerStatus defines the observed state of Analyzer.
func (*AnalyzerStatus) DeepCopy ¶
func (in *AnalyzerStatus) DeepCopy() *AnalyzerStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalyzerStatus.
func (*AnalyzerStatus) DeepCopyInto ¶
func (in *AnalyzerStatus) DeepCopyInto(out *AnalyzerStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityObservation ¶
type IdentityObservation struct { }
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 { // +kubebuilder:validation:Required IdentityIds []*string `json:"identityIds" tf:"identity_ids,omitempty"` // +kubebuilder:validation:Required 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 StorageAccountObservation ¶
type StorageAccountObservation struct { }
func (*StorageAccountObservation) DeepCopy ¶
func (in *StorageAccountObservation) DeepCopy() *StorageAccountObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountObservation.
func (*StorageAccountObservation) DeepCopyInto ¶
func (in *StorageAccountObservation) DeepCopyInto(out *StorageAccountObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageAccountParameters ¶
type StorageAccountParameters struct { // +kubebuilder:validation:Required ID *string `json:"id" tf:"id,omitempty"` // +kubebuilder:validation:Required UserAssignedIdentityID *string `json:"userAssignedIdentityId" tf:"user_assigned_identity_id,omitempty"` }
func (*StorageAccountParameters) DeepCopy ¶
func (in *StorageAccountParameters) DeepCopy() *StorageAccountParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountParameters.
func (*StorageAccountParameters) DeepCopyInto ¶
func (in *StorageAccountParameters) DeepCopyInto(out *StorageAccountParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.