Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=disk.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Access
- func (in *Access) DeepCopy() *Access
- func (in *Access) DeepCopyInto(out *Access)
- func (in *Access) DeepCopyObject() runtime.Object
- func (mg *Access) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Access) GetConnectionDetailsMapping() map[string]string
- func (mg *Access) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Access) GetObservation() (map[string]interface{}, error)
- func (tr *Access) GetParameters() (map[string]interface{}, error)
- func (mg *Access) GetProviderConfigReference() *xpv1.Reference
- func (mg *Access) GetProviderReference() *xpv1.Reference
- func (mg *Access) GetTerraformResourceType() string
- func (tr *Access) GetTerraformSchemaVersion() int
- func (mg *Access) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Access) LateInitialize(attrs []byte) (bool, error)
- func (mg *Access) SetConditions(c ...xpv1.Condition)
- func (mg *Access) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Access) SetObservation(obs map[string]interface{}) error
- func (tr *Access) SetParameters(params map[string]interface{}) error
- func (mg *Access) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Access) SetProviderReference(r *xpv1.Reference)
- func (mg *Access) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AccessList
- type AccessObservation
- type AccessParameters
- type AccessSpec
- type AccessStatus
- type EncryptionSet
- func (in *EncryptionSet) DeepCopy() *EncryptionSet
- func (in *EncryptionSet) DeepCopyInto(out *EncryptionSet)
- func (in *EncryptionSet) DeepCopyObject() runtime.Object
- func (mg *EncryptionSet) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *EncryptionSet) GetConnectionDetailsMapping() map[string]string
- func (mg *EncryptionSet) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *EncryptionSet) GetObservation() (map[string]interface{}, error)
- func (tr *EncryptionSet) GetParameters() (map[string]interface{}, error)
- func (mg *EncryptionSet) GetProviderConfigReference() *xpv1.Reference
- func (mg *EncryptionSet) GetProviderReference() *xpv1.Reference
- func (mg *EncryptionSet) GetTerraformResourceType() string
- func (tr *EncryptionSet) GetTerraformSchemaVersion() int
- func (mg *EncryptionSet) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *EncryptionSet) LateInitialize(attrs []byte) (bool, error)
- func (mg *EncryptionSet) SetConditions(c ...xpv1.Condition)
- func (mg *EncryptionSet) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *EncryptionSet) SetObservation(obs map[string]interface{}) error
- func (tr *EncryptionSet) SetParameters(params map[string]interface{}) error
- func (mg *EncryptionSet) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *EncryptionSet) SetProviderReference(r *xpv1.Reference)
- func (mg *EncryptionSet) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type EncryptionSetList
- type EncryptionSetObservation
- type EncryptionSetParameters
- type EncryptionSetSpec
- type EncryptionSetStatus
- type IdentityObservation
- type IdentityParameters
Constants ¶
const ( CRDGroup = "disk.azure.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Access_Kind = "Access" Access_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Access_Kind}.String() Access_KindAPIVersion = Access_Kind + "." + CRDGroupVersion.String() Access_GroupVersionKind = CRDGroupVersion.WithKind(Access_Kind) )
Repository type metadata.
var ( EncryptionSet_Kind = "EncryptionSet" EncryptionSet_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: EncryptionSet_Kind}.String() EncryptionSet_KindAPIVersion = EncryptionSet_Kind + "." + CRDGroupVersion.String() EncryptionSet_GroupVersionKind = CRDGroupVersion.WithKind(EncryptionSet_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 Access ¶
type Access struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AccessSpec `json:"spec"` Status AccessStatus `json:"status,omitempty"` }
Access is the Schema for the Accesss 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 (*Access) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Access.
func (*Access) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Access) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Access) GetCondition ¶
func (mg *Access) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Access.
func (*Access) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Access
func (*Access) GetDeletionPolicy ¶
func (mg *Access) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Access.
func (*Access) GetObservation ¶
GetObservation of this Access
func (*Access) GetParameters ¶
GetParameters of this Access
func (*Access) GetProviderConfigReference ¶
GetProviderConfigReference of this Access.
func (*Access) GetProviderReference ¶
GetProviderReference of this Access. Deprecated: Use GetProviderConfigReference.
func (*Access) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Access
func (*Access) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Access) GetWriteConnectionSecretToReference ¶
func (mg *Access) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Access.
func (*Access) LateInitialize ¶
LateInitialize this Access using its observed tfState. returns True if there are any spec changes for the resource.
func (*Access) SetConditions ¶
SetConditions of this Access.
func (*Access) SetDeletionPolicy ¶
func (mg *Access) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Access.
func (*Access) SetObservation ¶
SetObservation for this Access
func (*Access) SetParameters ¶
SetParameters for this Access
func (*Access) SetProviderConfigReference ¶
SetProviderConfigReference of this Access.
func (*Access) SetProviderReference ¶
SetProviderReference of this Access. Deprecated: Use SetProviderConfigReference.
func (*Access) SetWriteConnectionSecretToReference ¶
func (mg *Access) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Access.
type AccessList ¶
type AccessList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Access `json:"items"` }
AccessList contains a list of Accesss
func (*AccessList) DeepCopy ¶
func (in *AccessList) DeepCopy() *AccessList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessList.
func (*AccessList) DeepCopyInto ¶
func (in *AccessList) DeepCopyInto(out *AccessList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AccessList) DeepCopyObject ¶
func (in *AccessList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AccessList) GetItems ¶
func (l *AccessList) GetItems() []resource.Managed
GetItems of this AccessList.
type AccessObservation ¶
type AccessObservation struct { }
func (*AccessObservation) DeepCopy ¶
func (in *AccessObservation) DeepCopy() *AccessObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessObservation.
func (*AccessObservation) DeepCopyInto ¶
func (in *AccessObservation) DeepCopyInto(out *AccessObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AccessParameters ¶
type AccessParameters struct { // +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:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*AccessParameters) DeepCopy ¶
func (in *AccessParameters) DeepCopy() *AccessParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessParameters.
func (*AccessParameters) DeepCopyInto ¶
func (in *AccessParameters) DeepCopyInto(out *AccessParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AccessSpec ¶
type AccessSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AccessParameters `json:"forProvider"` }
AccessSpec defines the desired state of Access
func (*AccessSpec) DeepCopy ¶
func (in *AccessSpec) DeepCopy() *AccessSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessSpec.
func (*AccessSpec) DeepCopyInto ¶
func (in *AccessSpec) DeepCopyInto(out *AccessSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AccessStatus ¶
type AccessStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AccessObservation `json:"atProvider,omitempty"` }
AccessStatus defines the observed state of Access.
func (*AccessStatus) DeepCopy ¶
func (in *AccessStatus) DeepCopy() *AccessStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessStatus.
func (*AccessStatus) DeepCopyInto ¶
func (in *AccessStatus) DeepCopyInto(out *AccessStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionSet ¶
type EncryptionSet struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec EncryptionSetSpec `json:"spec"` Status EncryptionSetStatus `json:"status,omitempty"` }
EncryptionSet is the Schema for the EncryptionSets 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 (*EncryptionSet) DeepCopy ¶
func (in *EncryptionSet) DeepCopy() *EncryptionSet
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSet.
func (*EncryptionSet) DeepCopyInto ¶
func (in *EncryptionSet) DeepCopyInto(out *EncryptionSet)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EncryptionSet) DeepCopyObject ¶
func (in *EncryptionSet) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EncryptionSet) GetCondition ¶
func (mg *EncryptionSet) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this EncryptionSet.
func (*EncryptionSet) GetConnectionDetailsMapping ¶
func (tr *EncryptionSet) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this EncryptionSet
func (*EncryptionSet) GetDeletionPolicy ¶
func (mg *EncryptionSet) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this EncryptionSet.
func (*EncryptionSet) GetObservation ¶
func (tr *EncryptionSet) GetObservation() (map[string]interface{}, error)
GetObservation of this EncryptionSet
func (*EncryptionSet) GetParameters ¶
func (tr *EncryptionSet) GetParameters() (map[string]interface{}, error)
GetParameters of this EncryptionSet
func (*EncryptionSet) GetProviderConfigReference ¶
func (mg *EncryptionSet) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this EncryptionSet.
func (*EncryptionSet) GetProviderReference ¶
func (mg *EncryptionSet) GetProviderReference() *xpv1.Reference
GetProviderReference of this EncryptionSet. Deprecated: Use GetProviderConfigReference.
func (*EncryptionSet) GetTerraformResourceType ¶
func (mg *EncryptionSet) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this EncryptionSet
func (*EncryptionSet) GetTerraformSchemaVersion ¶
func (tr *EncryptionSet) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*EncryptionSet) GetWriteConnectionSecretToReference ¶
func (mg *EncryptionSet) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this EncryptionSet.
func (*EncryptionSet) LateInitialize ¶
func (tr *EncryptionSet) LateInitialize(attrs []byte) (bool, error)
LateInitialize this EncryptionSet using its observed tfState. returns True if there are any spec changes for the resource.
func (*EncryptionSet) SetConditions ¶
func (mg *EncryptionSet) SetConditions(c ...xpv1.Condition)
SetConditions of this EncryptionSet.
func (*EncryptionSet) SetDeletionPolicy ¶
func (mg *EncryptionSet) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this EncryptionSet.
func (*EncryptionSet) SetObservation ¶
func (tr *EncryptionSet) SetObservation(obs map[string]interface{}) error
SetObservation for this EncryptionSet
func (*EncryptionSet) SetParameters ¶
func (tr *EncryptionSet) SetParameters(params map[string]interface{}) error
SetParameters for this EncryptionSet
func (*EncryptionSet) SetProviderConfigReference ¶
func (mg *EncryptionSet) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this EncryptionSet.
func (*EncryptionSet) SetProviderReference ¶
func (mg *EncryptionSet) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this EncryptionSet. Deprecated: Use SetProviderConfigReference.
func (*EncryptionSet) SetWriteConnectionSecretToReference ¶
func (mg *EncryptionSet) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this EncryptionSet.
type EncryptionSetList ¶
type EncryptionSetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []EncryptionSet `json:"items"` }
EncryptionSetList contains a list of EncryptionSets
func (*EncryptionSetList) DeepCopy ¶
func (in *EncryptionSetList) DeepCopy() *EncryptionSetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSetList.
func (*EncryptionSetList) DeepCopyInto ¶
func (in *EncryptionSetList) DeepCopyInto(out *EncryptionSetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*EncryptionSetList) DeepCopyObject ¶
func (in *EncryptionSetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*EncryptionSetList) GetItems ¶
func (l *EncryptionSetList) GetItems() []resource.Managed
GetItems of this EncryptionSetList.
type EncryptionSetObservation ¶
type EncryptionSetObservation struct { }
func (*EncryptionSetObservation) DeepCopy ¶
func (in *EncryptionSetObservation) DeepCopy() *EncryptionSetObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSetObservation.
func (*EncryptionSetObservation) DeepCopyInto ¶
func (in *EncryptionSetObservation) DeepCopyInto(out *EncryptionSetObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionSetParameters ¶
type EncryptionSetParameters struct { // +kubebuilder:validation:Required Identity []IdentityParameters `json:"identity" tf:"identity,omitempty"` // +kubebuilder:validation:Required KeyVaultKeyID *string `json:"keyVaultKeyId" tf:"key_vault_key_id,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:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*EncryptionSetParameters) DeepCopy ¶
func (in *EncryptionSetParameters) DeepCopy() *EncryptionSetParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSetParameters.
func (*EncryptionSetParameters) DeepCopyInto ¶
func (in *EncryptionSetParameters) DeepCopyInto(out *EncryptionSetParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionSetSpec ¶
type EncryptionSetSpec struct { v1.ResourceSpec `json:",inline"` ForProvider EncryptionSetParameters `json:"forProvider"` }
EncryptionSetSpec defines the desired state of EncryptionSet
func (*EncryptionSetSpec) DeepCopy ¶
func (in *EncryptionSetSpec) DeepCopy() *EncryptionSetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSetSpec.
func (*EncryptionSetSpec) DeepCopyInto ¶
func (in *EncryptionSetSpec) DeepCopyInto(out *EncryptionSetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionSetStatus ¶
type EncryptionSetStatus struct { v1.ResourceStatus `json:",inline"` AtProvider EncryptionSetObservation `json:"atProvider,omitempty"` }
EncryptionSetStatus defines the observed state of EncryptionSet.
func (*EncryptionSetStatus) DeepCopy ¶
func (in *EncryptionSetStatus) DeepCopy() *EncryptionSetStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionSetStatus.
func (*EncryptionSetStatus) DeepCopyInto ¶
func (in *EncryptionSetStatus) DeepCopyInto(out *EncryptionSetStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityObservation ¶
type IdentityObservation struct { PrincipalID *string `json:"principalId,omitempty" tf:"principal_id,omitempty"` TenantID *string `json:"tenantId,omitempty" tf:"tenant_id,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 { // +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.