Documentation ¶
Overview ¶
Package v1beta20210901storage contains API Schema definitions for the containerregistry v1beta20210901storage API group +kubebuilder:object:generate=true All object properties are optional by default, this will be overridden when needed: +kubebuilder:validation:Optional +groupName=containerregistry.azure.com
Code generated by azure-service-operator-codegen. DO NOT EDIT. Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Index ¶
- Constants
- Variables
- type APIVersion
- type EncryptionProperty
- type EncryptionProperty_STATUS
- type ExportPolicy
- type ExportPolicy_STATUS
- type IPRule
- type IPRule_STATUS
- type IdentityProperties
- type IdentityProperties_STATUS
- type KeyVaultProperties
- type KeyVaultProperties_STATUS
- type NetworkRuleSet
- type NetworkRuleSet_STATUS
- type Policies
- type Policies_STATUS
- type PrivateEndpointConnection_STATUS
- type QuarantinePolicy
- type QuarantinePolicy_STATUS
- type Registry
- func (registry *Registry) AzureName() string
- func (in *Registry) DeepCopy() *Registry
- func (in *Registry) DeepCopyInto(out *Registry)
- func (in *Registry) DeepCopyObject() runtime.Object
- func (registry Registry) GetAPIVersion() string
- func (registry *Registry) GetConditions() conditions.Conditions
- func (registry *Registry) GetResourceScope() genruntime.ResourceScope
- func (registry *Registry) GetSpec() genruntime.ConvertibleSpec
- func (registry *Registry) GetStatus() genruntime.ConvertibleStatus
- func (registry *Registry) GetType() string
- func (registry *Registry) Hub()
- func (registry *Registry) NewEmptyStatus() genruntime.ConvertibleStatus
- func (registry *Registry) OriginalGVK() *schema.GroupVersionKind
- func (registry *Registry) Owner() *genruntime.ResourceReference
- func (registry *Registry) SetConditions(conditions conditions.Conditions)
- func (registry *Registry) SetStatus(status genruntime.ConvertibleStatus) error
- type RegistryList
- type Registry_STATUS
- func (registry *Registry_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error
- func (registry *Registry_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error
- func (in *Registry_STATUS) DeepCopy() *Registry_STATUS
- func (in *Registry_STATUS) DeepCopyInto(out *Registry_STATUS)
- type Registry_Spec
- type RetentionPolicy
- type RetentionPolicy_STATUS
- type Sku
- type Sku_STATUS
- type Status_STATUS
- type SystemData_STATUS
- type TrustPolicy
- type TrustPolicy_STATUS
- type UserIdentityProperties
- type UserIdentityProperties_STATUS
Constants ¶
const APIVersion_Value = APIVersion("2021-09-01")
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "containerregistry.azure.com", Version: "v1beta20210901storage"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type APIVersion ¶
type APIVersion string
Storage version of v1beta20210901.APIVersion +kubebuilder:validation:Enum={"2021-09-01"}
type EncryptionProperty ¶
type EncryptionProperty struct { KeyVaultProperties *KeyVaultProperties `json:"keyVaultProperties,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.EncryptionProperty
func (*EncryptionProperty) DeepCopy ¶
func (in *EncryptionProperty) DeepCopy() *EncryptionProperty
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionProperty.
func (*EncryptionProperty) DeepCopyInto ¶
func (in *EncryptionProperty) DeepCopyInto(out *EncryptionProperty)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EncryptionProperty_STATUS ¶
type EncryptionProperty_STATUS struct { KeyVaultProperties *KeyVaultProperties_STATUS `json:"keyVaultProperties,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.EncryptionProperty_STATUS
func (*EncryptionProperty_STATUS) DeepCopy ¶
func (in *EncryptionProperty_STATUS) DeepCopy() *EncryptionProperty_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EncryptionProperty_STATUS.
func (*EncryptionProperty_STATUS) DeepCopyInto ¶
func (in *EncryptionProperty_STATUS) DeepCopyInto(out *EncryptionProperty_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportPolicy ¶
type ExportPolicy struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.ExportPolicy The export policy for a container registry.
func (*ExportPolicy) DeepCopy ¶
func (in *ExportPolicy) DeepCopy() *ExportPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportPolicy.
func (*ExportPolicy) DeepCopyInto ¶
func (in *ExportPolicy) DeepCopyInto(out *ExportPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportPolicy_STATUS ¶
type ExportPolicy_STATUS struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.ExportPolicy_STATUS The export policy for a container registry.
func (*ExportPolicy_STATUS) DeepCopy ¶
func (in *ExportPolicy_STATUS) DeepCopy() *ExportPolicy_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportPolicy_STATUS.
func (*ExportPolicy_STATUS) DeepCopyInto ¶
func (in *ExportPolicy_STATUS) DeepCopyInto(out *ExportPolicy_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPRule ¶
type IPRule struct { Action *string `json:"action,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Value *string `json:"value,omitempty"` }
Storage version of v1beta20210901.IPRule IP rule with specific IP or IP range in CIDR format.
func (*IPRule) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPRule.
func (*IPRule) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPRule_STATUS ¶
type IPRule_STATUS struct { Action *string `json:"action,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Value *string `json:"value,omitempty"` }
Storage version of v1beta20210901.IPRule_STATUS IP rule with specific IP or IP range in CIDR format.
func (*IPRule_STATUS) DeepCopy ¶
func (in *IPRule_STATUS) DeepCopy() *IPRule_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPRule_STATUS.
func (*IPRule_STATUS) DeepCopyInto ¶
func (in *IPRule_STATUS) DeepCopyInto(out *IPRule_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityProperties ¶
type IdentityProperties struct { PrincipalId *string `json:"principalId,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` TenantId *string `json:"tenantId,omitempty"` Type *string `json:"type,omitempty"` UserAssignedIdentities map[string]UserIdentityProperties `json:"userAssignedIdentities,omitempty"` }
Storage version of v1beta20210901.IdentityProperties Managed identity for the resource.
func (*IdentityProperties) DeepCopy ¶
func (in *IdentityProperties) DeepCopy() *IdentityProperties
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityProperties.
func (*IdentityProperties) DeepCopyInto ¶
func (in *IdentityProperties) DeepCopyInto(out *IdentityProperties)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityProperties_STATUS ¶
type IdentityProperties_STATUS struct { PrincipalId *string `json:"principalId,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` TenantId *string `json:"tenantId,omitempty"` Type *string `json:"type,omitempty"` UserAssignedIdentities map[string]UserIdentityProperties_STATUS `json:"userAssignedIdentities,omitempty"` }
Storage version of v1beta20210901.IdentityProperties_STATUS Managed identity for the resource.
func (*IdentityProperties_STATUS) DeepCopy ¶
func (in *IdentityProperties_STATUS) DeepCopy() *IdentityProperties_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityProperties_STATUS.
func (*IdentityProperties_STATUS) DeepCopyInto ¶
func (in *IdentityProperties_STATUS) DeepCopyInto(out *IdentityProperties_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KeyVaultProperties ¶
type KeyVaultProperties struct { Identity *string `json:"identity,omitempty"` KeyIdentifier *string `json:"keyIdentifier,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.KeyVaultProperties
func (*KeyVaultProperties) DeepCopy ¶
func (in *KeyVaultProperties) DeepCopy() *KeyVaultProperties
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeyVaultProperties.
func (*KeyVaultProperties) DeepCopyInto ¶
func (in *KeyVaultProperties) DeepCopyInto(out *KeyVaultProperties)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type KeyVaultProperties_STATUS ¶
type KeyVaultProperties_STATUS struct { Identity *string `json:"identity,omitempty"` KeyIdentifier *string `json:"keyIdentifier,omitempty"` KeyRotationEnabled *bool `json:"keyRotationEnabled,omitempty"` LastKeyRotationTimestamp *string `json:"lastKeyRotationTimestamp,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` VersionedKeyIdentifier *string `json:"versionedKeyIdentifier,omitempty"` }
Storage version of v1beta20210901.KeyVaultProperties_STATUS
func (*KeyVaultProperties_STATUS) DeepCopy ¶
func (in *KeyVaultProperties_STATUS) DeepCopy() *KeyVaultProperties_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KeyVaultProperties_STATUS.
func (*KeyVaultProperties_STATUS) DeepCopyInto ¶
func (in *KeyVaultProperties_STATUS) DeepCopyInto(out *KeyVaultProperties_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkRuleSet ¶
type NetworkRuleSet struct { DefaultAction *string `json:"defaultAction,omitempty"` IpRules []IPRule `json:"ipRules,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.NetworkRuleSet The network rule set for a container registry.
func (*NetworkRuleSet) DeepCopy ¶
func (in *NetworkRuleSet) DeepCopy() *NetworkRuleSet
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkRuleSet.
func (*NetworkRuleSet) DeepCopyInto ¶
func (in *NetworkRuleSet) DeepCopyInto(out *NetworkRuleSet)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkRuleSet_STATUS ¶
type NetworkRuleSet_STATUS struct { DefaultAction *string `json:"defaultAction,omitempty"` IpRules []IPRule_STATUS `json:"ipRules,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.NetworkRuleSet_STATUS The network rule set for a container registry.
func (*NetworkRuleSet_STATUS) DeepCopy ¶
func (in *NetworkRuleSet_STATUS) DeepCopy() *NetworkRuleSet_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkRuleSet_STATUS.
func (*NetworkRuleSet_STATUS) DeepCopyInto ¶
func (in *NetworkRuleSet_STATUS) DeepCopyInto(out *NetworkRuleSet_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Policies ¶
type Policies struct { ExportPolicy *ExportPolicy `json:"exportPolicy,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` QuarantinePolicy *QuarantinePolicy `json:"quarantinePolicy,omitempty"` RetentionPolicy *RetentionPolicy `json:"retentionPolicy,omitempty"` TrustPolicy *TrustPolicy `json:"trustPolicy,omitempty"` }
Storage version of v1beta20210901.Policies The policies for a container registry.
func (*Policies) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policies.
func (*Policies) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Policies_STATUS ¶
type Policies_STATUS struct { ExportPolicy *ExportPolicy_STATUS `json:"exportPolicy,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` QuarantinePolicy *QuarantinePolicy_STATUS `json:"quarantinePolicy,omitempty"` RetentionPolicy *RetentionPolicy_STATUS `json:"retentionPolicy,omitempty"` TrustPolicy *TrustPolicy_STATUS `json:"trustPolicy,omitempty"` }
Storage version of v1beta20210901.Policies_STATUS The policies for a container registry.
func (*Policies_STATUS) DeepCopy ¶
func (in *Policies_STATUS) DeepCopy() *Policies_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policies_STATUS.
func (*Policies_STATUS) DeepCopyInto ¶
func (in *Policies_STATUS) DeepCopyInto(out *Policies_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PrivateEndpointConnection_STATUS ¶
type PrivateEndpointConnection_STATUS struct { Id *string `json:"id,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.PrivateEndpointConnection_STATUS An object that represents a private endpoint connection for a container registry.
func (*PrivateEndpointConnection_STATUS) DeepCopy ¶
func (in *PrivateEndpointConnection_STATUS) DeepCopy() *PrivateEndpointConnection_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PrivateEndpointConnection_STATUS.
func (*PrivateEndpointConnection_STATUS) DeepCopyInto ¶
func (in *PrivateEndpointConnection_STATUS) DeepCopyInto(out *PrivateEndpointConnection_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type QuarantinePolicy ¶
type QuarantinePolicy struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.QuarantinePolicy The quarantine policy for a container registry.
func (*QuarantinePolicy) DeepCopy ¶
func (in *QuarantinePolicy) DeepCopy() *QuarantinePolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuarantinePolicy.
func (*QuarantinePolicy) DeepCopyInto ¶
func (in *QuarantinePolicy) DeepCopyInto(out *QuarantinePolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type QuarantinePolicy_STATUS ¶
type QuarantinePolicy_STATUS struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.QuarantinePolicy_STATUS The quarantine policy for a container registry.
func (*QuarantinePolicy_STATUS) DeepCopy ¶
func (in *QuarantinePolicy_STATUS) DeepCopy() *QuarantinePolicy_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QuarantinePolicy_STATUS.
func (*QuarantinePolicy_STATUS) DeepCopyInto ¶
func (in *QuarantinePolicy_STATUS) DeepCopyInto(out *QuarantinePolicy_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Registry ¶
type Registry struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec Registry_Spec `json:"spec,omitempty"` Status Registry_STATUS `json:"status,omitempty"` }
+kubebuilder:object:root=true +kubebuilder:subresource:status +kubebuilder:storageversion +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" Storage version of v1beta20210901.Registry Generator information: - Generated from: /containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2021-09-01/containerregistry.json - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}
func (*Registry) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Registry.
func (*Registry) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Registry) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (Registry) GetAPIVersion ¶
GetAPIVersion returns the ARM API version of the resource. This is always "2021-09-01"
func (*Registry) GetConditions ¶
func (registry *Registry) GetConditions() conditions.Conditions
GetConditions returns the conditions of the resource
func (*Registry) GetResourceScope ¶
func (registry *Registry) GetResourceScope() genruntime.ResourceScope
GetResourceScope returns the scope of the resource
func (*Registry) GetSpec ¶
func (registry *Registry) GetSpec() genruntime.ConvertibleSpec
GetSpec returns the specification of this resource
func (*Registry) GetStatus ¶
func (registry *Registry) GetStatus() genruntime.ConvertibleStatus
GetStatus returns the status of this resource
func (*Registry) GetType ¶
GetType returns the ARM Type of the resource. This is always "Microsoft.ContainerRegistry/registries"
func (*Registry) Hub ¶
func (registry *Registry) Hub()
Hub marks that this Registry is the hub type for conversion
func (*Registry) NewEmptyStatus ¶
func (registry *Registry) NewEmptyStatus() genruntime.ConvertibleStatus
NewEmptyStatus returns a new empty (blank) status
func (*Registry) OriginalGVK ¶
func (registry *Registry) OriginalGVK() *schema.GroupVersionKind
OriginalGVK returns a GroupValueKind for the original API version used to create the resource
func (*Registry) Owner ¶
func (registry *Registry) Owner() *genruntime.ResourceReference
Owner returns the ResourceReference of the owner, or nil if there is no owner
func (*Registry) SetConditions ¶
func (registry *Registry) SetConditions(conditions conditions.Conditions)
SetConditions sets the conditions on the resource status
func (*Registry) SetStatus ¶
func (registry *Registry) SetStatus(status genruntime.ConvertibleStatus) error
SetStatus sets the status of this resource
type RegistryList ¶
type RegistryList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Registry `json:"items"` }
+kubebuilder:object:root=true Storage version of v1beta20210901.Registry Generator information: - Generated from: /containerregistry/resource-manager/Microsoft.ContainerRegistry/stable/2021-09-01/containerregistry.json - ARM URI: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}
func (*RegistryList) DeepCopy ¶
func (in *RegistryList) DeepCopy() *RegistryList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RegistryList.
func (*RegistryList) DeepCopyInto ¶
func (in *RegistryList) DeepCopyInto(out *RegistryList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RegistryList) DeepCopyObject ¶
func (in *RegistryList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type Registry_STATUS ¶
type Registry_STATUS struct { AdminUserEnabled *bool `json:"adminUserEnabled,omitempty"` Conditions []conditions.Condition `json:"conditions,omitempty"` CreationDate *string `json:"creationDate,omitempty"` DataEndpointEnabled *bool `json:"dataEndpointEnabled,omitempty"` DataEndpointHostNames []string `json:"dataEndpointHostNames,omitempty"` Encryption *EncryptionProperty_STATUS `json:"encryption,omitempty"` Id *string `json:"id,omitempty"` Identity *IdentityProperties_STATUS `json:"identity,omitempty"` Location *string `json:"location,omitempty"` LoginServer *string `json:"loginServer,omitempty"` Name *string `json:"name,omitempty"` NetworkRuleBypassOptions *string `json:"networkRuleBypassOptions,omitempty"` NetworkRuleSet *NetworkRuleSet_STATUS `json:"networkRuleSet,omitempty"` Policies *Policies_STATUS `json:"policies,omitempty"` PrivateEndpointConnections []PrivateEndpointConnection_STATUS `json:"privateEndpointConnections,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` ProvisioningState *string `json:"provisioningState,omitempty"` PublicNetworkAccess *string `json:"publicNetworkAccess,omitempty"` Sku *Sku_STATUS `json:"sku,omitempty"` Status *Status_STATUS `json:"status,omitempty"` SystemData *SystemData_STATUS `json:"systemData,omitempty"` Tags map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` ZoneRedundancy *string `json:"zoneRedundancy,omitempty"` }
Storage version of v1beta20210901.Registry_STATUS An object that represents a container registry.
func (*Registry_STATUS) ConvertStatusFrom ¶
func (registry *Registry_STATUS) ConvertStatusFrom(source genruntime.ConvertibleStatus) error
ConvertStatusFrom populates our Registry_STATUS from the provided source
func (*Registry_STATUS) ConvertStatusTo ¶
func (registry *Registry_STATUS) ConvertStatusTo(destination genruntime.ConvertibleStatus) error
ConvertStatusTo populates the provided destination from our Registry_STATUS
func (*Registry_STATUS) DeepCopy ¶
func (in *Registry_STATUS) DeepCopy() *Registry_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Registry_STATUS.
func (*Registry_STATUS) DeepCopyInto ¶
func (in *Registry_STATUS) DeepCopyInto(out *Registry_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Registry_Spec ¶
type Registry_Spec struct { AdminUserEnabled *bool `json:"adminUserEnabled,omitempty"` // +kubebuilder:validation:MaxLength=50 // +kubebuilder:validation:MinLength=5 // +kubebuilder:validation:Pattern="^[a-zA-Z0-9]*$" // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it // doesn't have to be. AzureName string `json:"azureName,omitempty"` DataEndpointEnabled *bool `json:"dataEndpointEnabled,omitempty"` Encryption *EncryptionProperty `json:"encryption,omitempty"` Identity *IdentityProperties `json:"identity,omitempty"` Location *string `json:"location,omitempty"` NetworkRuleBypassOptions *string `json:"networkRuleBypassOptions,omitempty"` NetworkRuleSet *NetworkRuleSet `json:"networkRuleSet,omitempty"` OriginalVersion string `json:"originalVersion,omitempty"` // +kubebuilder:validation:Required // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a // reference to a resources.azure.com/ResourceGroup resource Owner *genruntime.KnownResourceReference `group:"resources.azure.com" json:"owner,omitempty" kind:"ResourceGroup"` Policies *Policies `json:"policies,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` PublicNetworkAccess *string `json:"publicNetworkAccess,omitempty"` Sku *Sku `json:"sku,omitempty"` Tags map[string]string `json:"tags,omitempty"` ZoneRedundancy *string `json:"zoneRedundancy,omitempty"` }
Storage version of v1beta20210901.Registry_Spec
func (*Registry_Spec) ConvertSpecFrom ¶
func (registry *Registry_Spec) ConvertSpecFrom(source genruntime.ConvertibleSpec) error
ConvertSpecFrom populates our Registry_Spec from the provided source
func (*Registry_Spec) ConvertSpecTo ¶
func (registry *Registry_Spec) ConvertSpecTo(destination genruntime.ConvertibleSpec) error
ConvertSpecTo populates the provided destination from our Registry_Spec
func (*Registry_Spec) DeepCopy ¶
func (in *Registry_Spec) DeepCopy() *Registry_Spec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Registry_Spec.
func (*Registry_Spec) DeepCopyInto ¶
func (in *Registry_Spec) DeepCopyInto(out *Registry_Spec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RetentionPolicy ¶
type RetentionPolicy struct { Days *int `json:"days,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.RetentionPolicy The retention policy for a container registry.
func (*RetentionPolicy) DeepCopy ¶
func (in *RetentionPolicy) DeepCopy() *RetentionPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RetentionPolicy.
func (*RetentionPolicy) DeepCopyInto ¶
func (in *RetentionPolicy) DeepCopyInto(out *RetentionPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RetentionPolicy_STATUS ¶
type RetentionPolicy_STATUS struct { Days *int `json:"days,omitempty"` LastUpdatedTime *string `json:"lastUpdatedTime,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` }
Storage version of v1beta20210901.RetentionPolicy_STATUS The retention policy for a container registry.
func (*RetentionPolicy_STATUS) DeepCopy ¶
func (in *RetentionPolicy_STATUS) DeepCopy() *RetentionPolicy_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RetentionPolicy_STATUS.
func (*RetentionPolicy_STATUS) DeepCopyInto ¶
func (in *RetentionPolicy_STATUS) DeepCopyInto(out *RetentionPolicy_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Sku ¶
type Sku struct { Name *string `json:"name,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.Sku The SKU of a container registry.
func (*Sku) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Sku.
func (*Sku) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Sku_STATUS ¶
type Sku_STATUS struct { Name *string `json:"name,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Tier *string `json:"tier,omitempty"` }
Storage version of v1beta20210901.Sku_STATUS The SKU of a container registry.
func (*Sku_STATUS) DeepCopy ¶
func (in *Sku_STATUS) DeepCopy() *Sku_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Sku_STATUS.
func (*Sku_STATUS) DeepCopyInto ¶
func (in *Sku_STATUS) DeepCopyInto(out *Sku_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Status_STATUS ¶
type Status_STATUS struct { DisplayStatus *string `json:"displayStatus,omitempty"` Message *string `json:"message,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Timestamp *string `json:"timestamp,omitempty"` }
Storage version of v1beta20210901.Status_STATUS The status of an Azure resource at the time the operation was called.
func (*Status_STATUS) DeepCopy ¶
func (in *Status_STATUS) DeepCopy() *Status_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Status_STATUS.
func (*Status_STATUS) DeepCopyInto ¶
func (in *Status_STATUS) DeepCopyInto(out *Status_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SystemData_STATUS ¶
type SystemData_STATUS struct { CreatedAt *string `json:"createdAt,omitempty"` CreatedBy *string `json:"createdBy,omitempty"` CreatedByType *string `json:"createdByType,omitempty"` LastModifiedAt *string `json:"lastModifiedAt,omitempty"` LastModifiedBy *string `json:"lastModifiedBy,omitempty"` LastModifiedByType *string `json:"lastModifiedByType,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.SystemData_STATUS Metadata pertaining to creation and last modification of the resource.
func (*SystemData_STATUS) DeepCopy ¶
func (in *SystemData_STATUS) DeepCopy() *SystemData_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SystemData_STATUS.
func (*SystemData_STATUS) DeepCopyInto ¶
func (in *SystemData_STATUS) DeepCopyInto(out *SystemData_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TrustPolicy ¶
type TrustPolicy struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` Type *string `json:"type,omitempty"` }
Storage version of v1beta20210901.TrustPolicy The content trust policy for a container registry.
func (*TrustPolicy) DeepCopy ¶
func (in *TrustPolicy) DeepCopy() *TrustPolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TrustPolicy.
func (*TrustPolicy) DeepCopyInto ¶
func (in *TrustPolicy) DeepCopyInto(out *TrustPolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TrustPolicy_STATUS ¶
type TrustPolicy_STATUS struct { PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` Status *string `json:"status,omitempty"` Type *string `json:"type,omitempty"` }
Storage version of v1beta20210901.TrustPolicy_STATUS The content trust policy for a container registry.
func (*TrustPolicy_STATUS) DeepCopy ¶
func (in *TrustPolicy_STATUS) DeepCopy() *TrustPolicy_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TrustPolicy_STATUS.
func (*TrustPolicy_STATUS) DeepCopyInto ¶
func (in *TrustPolicy_STATUS) DeepCopyInto(out *TrustPolicy_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type UserIdentityProperties ¶
type UserIdentityProperties struct { ClientId *string `json:"clientId,omitempty"` PrincipalId *string `json:"principalId,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.UserIdentityProperties
func (*UserIdentityProperties) DeepCopy ¶
func (in *UserIdentityProperties) DeepCopy() *UserIdentityProperties
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserIdentityProperties.
func (*UserIdentityProperties) DeepCopyInto ¶
func (in *UserIdentityProperties) DeepCopyInto(out *UserIdentityProperties)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type UserIdentityProperties_STATUS ¶
type UserIdentityProperties_STATUS struct { ClientId *string `json:"clientId,omitempty"` PrincipalId *string `json:"principalId,omitempty"` PropertyBag genruntime.PropertyBag `json:"$propertyBag,omitempty"` }
Storage version of v1beta20210901.UserIdentityProperties_STATUS
func (*UserIdentityProperties_STATUS) DeepCopy ¶
func (in *UserIdentityProperties_STATUS) DeepCopy() *UserIdentityProperties_STATUS
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserIdentityProperties_STATUS.
func (*UserIdentityProperties_STATUS) DeepCopyInto ¶
func (in *UserIdentityProperties_STATUS) DeepCopyInto(out *UserIdentityProperties_STATUS)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.