Documentation
¶
Overview ¶
+kubebuilder:object:generate=true +groupName=dedicated.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type HardwareSecurityModule
- func (in *HardwareSecurityModule) DeepCopy() *HardwareSecurityModule
- func (in *HardwareSecurityModule) DeepCopyInto(out *HardwareSecurityModule)
- func (in *HardwareSecurityModule) DeepCopyObject() runtime.Object
- func (mg *HardwareSecurityModule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *HardwareSecurityModule) GetConnectionDetailsMapping() map[string]string
- func (mg *HardwareSecurityModule) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *HardwareSecurityModule) GetObservation() (map[string]interface{}, error)
- func (tr *HardwareSecurityModule) GetParameters() (map[string]interface{}, error)
- func (mg *HardwareSecurityModule) GetProviderConfigReference() *xpv1.Reference
- func (mg *HardwareSecurityModule) GetProviderReference() *xpv1.Reference
- func (mg *HardwareSecurityModule) GetTerraformResourceType() string
- func (tr *HardwareSecurityModule) GetTerraformSchemaVersion() int
- func (mg *HardwareSecurityModule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *HardwareSecurityModule) LateInitialize(attrs []byte) (bool, error)
- func (mg *HardwareSecurityModule) SetConditions(c ...xpv1.Condition)
- func (mg *HardwareSecurityModule) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *HardwareSecurityModule) SetObservation(obs map[string]interface{}) error
- func (tr *HardwareSecurityModule) SetParameters(params map[string]interface{}) error
- func (mg *HardwareSecurityModule) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *HardwareSecurityModule) SetProviderReference(r *xpv1.Reference)
- func (mg *HardwareSecurityModule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type HardwareSecurityModuleList
- type HardwareSecurityModuleObservation
- type HardwareSecurityModuleParameters
- type HardwareSecurityModuleSpec
- type HardwareSecurityModuleStatus
- type Host
- func (in *Host) DeepCopy() *Host
- func (in *Host) DeepCopyInto(out *Host)
- func (in *Host) DeepCopyObject() runtime.Object
- func (mg *Host) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Host) GetConnectionDetailsMapping() map[string]string
- func (mg *Host) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Host) GetObservation() (map[string]interface{}, error)
- func (tr *Host) GetParameters() (map[string]interface{}, error)
- func (mg *Host) GetProviderConfigReference() *xpv1.Reference
- func (mg *Host) GetProviderReference() *xpv1.Reference
- func (mg *Host) GetTerraformResourceType() string
- func (tr *Host) GetTerraformSchemaVersion() int
- func (mg *Host) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Host) LateInitialize(attrs []byte) (bool, error)
- func (mg *Host) SetConditions(c ...xpv1.Condition)
- func (mg *Host) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Host) SetObservation(obs map[string]interface{}) error
- func (tr *Host) SetParameters(params map[string]interface{}) error
- func (mg *Host) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Host) SetProviderReference(r *xpv1.Reference)
- func (mg *Host) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type HostList
- type HostObservation
- type HostParameters
- type HostSpec
- type HostStatus
- type NetworkProfileObservation
- type NetworkProfileParameters
Constants ¶
const ( CRDGroup = "dedicated.azure.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
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 )
var ( HardwareSecurityModule_Kind = "HardwareSecurityModule" HardwareSecurityModule_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: HardwareSecurityModule_Kind}.String() HardwareSecurityModule_KindAPIVersion = HardwareSecurityModule_Kind + "." + CRDGroupVersion.String() HardwareSecurityModule_GroupVersionKind = CRDGroupVersion.WithKind(HardwareSecurityModule_Kind) )
Repository type metadata.
var ( Host_Kind = "Host" Host_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Host_Kind}.String() Host_KindAPIVersion = Host_Kind + "." + CRDGroupVersion.String() Host_GroupVersionKind = CRDGroupVersion.WithKind(Host_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type HardwareSecurityModule ¶
type HardwareSecurityModule struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec HardwareSecurityModuleSpec `json:"spec"` Status HardwareSecurityModuleStatus `json:"status,omitempty"` }
HardwareSecurityModule is the Schema for the HardwareSecurityModules 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 (*HardwareSecurityModule) DeepCopy ¶
func (in *HardwareSecurityModule) DeepCopy() *HardwareSecurityModule
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModule.
func (*HardwareSecurityModule) DeepCopyInto ¶
func (in *HardwareSecurityModule) DeepCopyInto(out *HardwareSecurityModule)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*HardwareSecurityModule) DeepCopyObject ¶
func (in *HardwareSecurityModule) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*HardwareSecurityModule) GetCondition ¶
func (mg *HardwareSecurityModule) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this HardwareSecurityModule.
func (*HardwareSecurityModule) GetConnectionDetailsMapping ¶
func (tr *HardwareSecurityModule) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this HardwareSecurityModule
func (*HardwareSecurityModule) GetDeletionPolicy ¶
func (mg *HardwareSecurityModule) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this HardwareSecurityModule.
func (*HardwareSecurityModule) GetObservation ¶
func (tr *HardwareSecurityModule) GetObservation() (map[string]interface{}, error)
GetObservation of this HardwareSecurityModule
func (*HardwareSecurityModule) GetParameters ¶
func (tr *HardwareSecurityModule) GetParameters() (map[string]interface{}, error)
GetParameters of this HardwareSecurityModule
func (*HardwareSecurityModule) GetProviderConfigReference ¶
func (mg *HardwareSecurityModule) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this HardwareSecurityModule.
func (*HardwareSecurityModule) GetProviderReference ¶
func (mg *HardwareSecurityModule) GetProviderReference() *xpv1.Reference
GetProviderReference of this HardwareSecurityModule. Deprecated: Use GetProviderConfigReference.
func (*HardwareSecurityModule) GetTerraformResourceType ¶
func (mg *HardwareSecurityModule) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this HardwareSecurityModule
func (*HardwareSecurityModule) GetTerraformSchemaVersion ¶
func (tr *HardwareSecurityModule) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*HardwareSecurityModule) GetWriteConnectionSecretToReference ¶
func (mg *HardwareSecurityModule) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this HardwareSecurityModule.
func (*HardwareSecurityModule) LateInitialize ¶
func (tr *HardwareSecurityModule) LateInitialize(attrs []byte) (bool, error)
LateInitialize this HardwareSecurityModule using its observed tfState. returns True if there are any spec changes for the resource.
func (*HardwareSecurityModule) SetConditions ¶
func (mg *HardwareSecurityModule) SetConditions(c ...xpv1.Condition)
SetConditions of this HardwareSecurityModule.
func (*HardwareSecurityModule) SetDeletionPolicy ¶
func (mg *HardwareSecurityModule) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this HardwareSecurityModule.
func (*HardwareSecurityModule) SetObservation ¶
func (tr *HardwareSecurityModule) SetObservation(obs map[string]interface{}) error
SetObservation for this HardwareSecurityModule
func (*HardwareSecurityModule) SetParameters ¶
func (tr *HardwareSecurityModule) SetParameters(params map[string]interface{}) error
SetParameters for this HardwareSecurityModule
func (*HardwareSecurityModule) SetProviderConfigReference ¶
func (mg *HardwareSecurityModule) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this HardwareSecurityModule.
func (*HardwareSecurityModule) SetProviderReference ¶
func (mg *HardwareSecurityModule) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this HardwareSecurityModule. Deprecated: Use SetProviderConfigReference.
func (*HardwareSecurityModule) SetWriteConnectionSecretToReference ¶
func (mg *HardwareSecurityModule) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this HardwareSecurityModule.
type HardwareSecurityModuleList ¶
type HardwareSecurityModuleList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []HardwareSecurityModule `json:"items"` }
HardwareSecurityModuleList contains a list of HardwareSecurityModules
func (*HardwareSecurityModuleList) DeepCopy ¶
func (in *HardwareSecurityModuleList) DeepCopy() *HardwareSecurityModuleList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleList.
func (*HardwareSecurityModuleList) DeepCopyInto ¶
func (in *HardwareSecurityModuleList) DeepCopyInto(out *HardwareSecurityModuleList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*HardwareSecurityModuleList) DeepCopyObject ¶
func (in *HardwareSecurityModuleList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*HardwareSecurityModuleList) GetItems ¶
func (l *HardwareSecurityModuleList) GetItems() []resource.Managed
GetItems of this HardwareSecurityModuleList.
type HardwareSecurityModuleObservation ¶
type HardwareSecurityModuleObservation struct { }
func (*HardwareSecurityModuleObservation) DeepCopy ¶
func (in *HardwareSecurityModuleObservation) DeepCopy() *HardwareSecurityModuleObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleObservation.
func (*HardwareSecurityModuleObservation) DeepCopyInto ¶
func (in *HardwareSecurityModuleObservation) DeepCopyInto(out *HardwareSecurityModuleObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HardwareSecurityModuleParameters ¶
type HardwareSecurityModuleParameters struct { // +kubebuilder:validation:Required Location *string `json:"location" tf:"location,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required NetworkProfile []NetworkProfileParameters `json:"networkProfile" tf:"network_profile,omitempty"` // +kubebuilder:validation:Required ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name,omitempty"` // +kubebuilder:validation:Required SkuName *string `json:"skuName" tf:"sku_name,omitempty"` // +kubebuilder:validation:Optional StampID *string `json:"stampId,omitempty" tf:"stamp_id,omitempty"` // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // +kubebuilder:validation:Optional Zones []*string `json:"zones,omitempty" tf:"zones,omitempty"` }
func (*HardwareSecurityModuleParameters) DeepCopy ¶
func (in *HardwareSecurityModuleParameters) DeepCopy() *HardwareSecurityModuleParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleParameters.
func (*HardwareSecurityModuleParameters) DeepCopyInto ¶
func (in *HardwareSecurityModuleParameters) DeepCopyInto(out *HardwareSecurityModuleParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HardwareSecurityModuleSpec ¶
type HardwareSecurityModuleSpec struct { v1.ResourceSpec `json:",inline"` ForProvider HardwareSecurityModuleParameters `json:"forProvider"` }
HardwareSecurityModuleSpec defines the desired state of HardwareSecurityModule
func (*HardwareSecurityModuleSpec) DeepCopy ¶
func (in *HardwareSecurityModuleSpec) DeepCopy() *HardwareSecurityModuleSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleSpec.
func (*HardwareSecurityModuleSpec) DeepCopyInto ¶
func (in *HardwareSecurityModuleSpec) DeepCopyInto(out *HardwareSecurityModuleSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HardwareSecurityModuleStatus ¶
type HardwareSecurityModuleStatus struct { v1.ResourceStatus `json:",inline"` AtProvider HardwareSecurityModuleObservation `json:"atProvider,omitempty"` }
HardwareSecurityModuleStatus defines the observed state of HardwareSecurityModule.
func (*HardwareSecurityModuleStatus) DeepCopy ¶
func (in *HardwareSecurityModuleStatus) DeepCopy() *HardwareSecurityModuleStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleStatus.
func (*HardwareSecurityModuleStatus) DeepCopyInto ¶
func (in *HardwareSecurityModuleStatus) DeepCopyInto(out *HardwareSecurityModuleStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Host ¶
type Host struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec HostSpec `json:"spec"` Status HostStatus `json:"status,omitempty"` }
Host is the Schema for the Hosts 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 (*Host) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Host.
func (*Host) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Host) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Host) GetCondition ¶
func (mg *Host) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Host.
func (*Host) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Host
func (*Host) GetDeletionPolicy ¶
func (mg *Host) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Host.
func (*Host) GetObservation ¶
GetObservation of this Host
func (*Host) GetParameters ¶
GetParameters of this Host
func (*Host) GetProviderConfigReference ¶
GetProviderConfigReference of this Host.
func (*Host) GetProviderReference ¶
GetProviderReference of this Host. Deprecated: Use GetProviderConfigReference.
func (*Host) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Host
func (*Host) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Host) GetWriteConnectionSecretToReference ¶
func (mg *Host) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Host.
func (*Host) LateInitialize ¶
LateInitialize this Host using its observed tfState. returns True if there are any spec changes for the resource.
func (*Host) SetConditions ¶
SetConditions of this Host.
func (*Host) SetDeletionPolicy ¶
func (mg *Host) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Host.
func (*Host) SetObservation ¶
SetObservation for this Host
func (*Host) SetParameters ¶
SetParameters for this Host
func (*Host) SetProviderConfigReference ¶
SetProviderConfigReference of this Host.
func (*Host) SetProviderReference ¶
SetProviderReference of this Host. Deprecated: Use SetProviderConfigReference.
func (*Host) SetWriteConnectionSecretToReference ¶
func (mg *Host) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Host.
type HostList ¶
type HostList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Host `json:"items"` }
HostList contains a list of Hosts
func (*HostList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostList.
func (*HostList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*HostList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type HostObservation ¶
type HostObservation struct { }
func (*HostObservation) DeepCopy ¶
func (in *HostObservation) DeepCopy() *HostObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostObservation.
func (*HostObservation) DeepCopyInto ¶
func (in *HostObservation) DeepCopyInto(out *HostObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HostParameters ¶
type HostParameters struct { // +kubebuilder:validation:Optional AutoReplaceOnFailure *bool `json:"autoReplaceOnFailure,omitempty" tf:"auto_replace_on_failure,omitempty"` // +kubebuilder:validation:Required DedicatedHostGroupID *string `json:"dedicatedHostGroupId" tf:"dedicated_host_group_id,omitempty"` // +kubebuilder:validation:Optional LicenseType *string `json:"licenseType,omitempty" tf:"license_type,omitempty"` // +kubebuilder:validation:Required Location *string `json:"location" tf:"location,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required PlatformFaultDomain *int64 `json:"platformFaultDomain" tf:"platform_fault_domain,omitempty"` // +kubebuilder:validation:Required SkuName *string `json:"skuName" tf:"sku_name,omitempty"` // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*HostParameters) DeepCopy ¶
func (in *HostParameters) DeepCopy() *HostParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostParameters.
func (*HostParameters) DeepCopyInto ¶
func (in *HostParameters) DeepCopyInto(out *HostParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HostSpec ¶
type HostSpec struct { v1.ResourceSpec `json:",inline"` ForProvider HostParameters `json:"forProvider"` }
HostSpec defines the desired state of Host
func (*HostSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostSpec.
func (*HostSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HostStatus ¶
type HostStatus struct { v1.ResourceStatus `json:",inline"` AtProvider HostObservation `json:"atProvider,omitempty"` }
HostStatus defines the observed state of Host.
func (*HostStatus) DeepCopy ¶
func (in *HostStatus) DeepCopy() *HostStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostStatus.
func (*HostStatus) DeepCopyInto ¶
func (in *HostStatus) DeepCopyInto(out *HostStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkProfileObservation ¶
type NetworkProfileObservation struct { }
func (*NetworkProfileObservation) DeepCopy ¶
func (in *NetworkProfileObservation) DeepCopy() *NetworkProfileObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkProfileObservation.
func (*NetworkProfileObservation) DeepCopyInto ¶
func (in *NetworkProfileObservation) DeepCopyInto(out *NetworkProfileObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkProfileParameters ¶
type NetworkProfileParameters struct { // +kubebuilder:validation:Required NetworkInterfacePrivateIPAddresses []*string `json:"networkInterfacePrivateIpAddresses" tf:"network_interface_private_ip_addresses,omitempty"` // +kubebuilder:validation:Required SubnetID *string `json:"subnetId" tf:"subnet_id,omitempty"` }
func (*NetworkProfileParameters) DeepCopy ¶
func (in *NetworkProfileParameters) DeepCopy() *NetworkProfileParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkProfileParameters.
func (*NetworkProfileParameters) DeepCopyInto ¶
func (in *NetworkProfileParameters) DeepCopyInto(out *NetworkProfileParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.