v1alpha1

package
v0.3.0-preview Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 19, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=dedicated.azure.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "dedicated.azure.jet.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
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
)
View Source
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.

View Source
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

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

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

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleList.

func (*HardwareSecurityModuleList) DeepCopyInto

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

GetItems of this HardwareSecurityModuleList.

type HardwareSecurityModuleObservation

type HardwareSecurityModuleObservation struct {
}

func (*HardwareSecurityModuleObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleObservation.

func (*HardwareSecurityModuleObservation) DeepCopyInto

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

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleParameters.

func (*HardwareSecurityModuleParameters) DeepCopyInto

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

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleSpec.

func (*HardwareSecurityModuleSpec) DeepCopyInto

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

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HardwareSecurityModuleStatus.

func (*HardwareSecurityModuleStatus) DeepCopyInto

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

func (in *Host) DeepCopy() *Host

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Host.

func (*Host) DeepCopyInto

func (in *Host) DeepCopyInto(out *Host)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Host) DeepCopyObject

func (in *Host) DeepCopyObject() runtime.Object

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

func (tr *Host) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this Host

func (*Host) GetDeletionPolicy

func (mg *Host) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this Host.

func (*Host) GetObservation

func (tr *Host) GetObservation() (map[string]interface{}, error)

GetObservation of this Host

func (*Host) GetParameters

func (tr *Host) GetParameters() (map[string]interface{}, error)

GetParameters of this Host

func (*Host) GetProviderConfigReference

func (mg *Host) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this Host.

func (*Host) GetProviderReference

func (mg *Host) GetProviderReference() *xpv1.Reference

GetProviderReference of this Host. Deprecated: Use GetProviderConfigReference.

func (*Host) GetTerraformResourceType

func (mg *Host) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Host

func (*Host) GetTerraformSchemaVersion

func (tr *Host) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Host) GetWriteConnectionSecretToReference

func (mg *Host) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this Host.

func (*Host) LateInitialize

func (tr *Host) LateInitialize(attrs []byte) (bool, error)

LateInitialize this Host using its observed tfState. returns True if there are any spec changes for the resource.

func (*Host) SetConditions

func (mg *Host) SetConditions(c ...xpv1.Condition)

SetConditions of this Host.

func (*Host) SetDeletionPolicy

func (mg *Host) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this Host.

func (*Host) SetObservation

func (tr *Host) SetObservation(obs map[string]interface{}) error

SetObservation for this Host

func (*Host) SetParameters

func (tr *Host) SetParameters(params map[string]interface{}) error

SetParameters for this Host

func (*Host) SetProviderConfigReference

func (mg *Host) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this Host.

func (*Host) SetProviderReference

func (mg *Host) SetProviderReference(r *xpv1.Reference)

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

func (in *HostList) DeepCopy() *HostList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostList.

func (*HostList) DeepCopyInto

func (in *HostList) DeepCopyInto(out *HostList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*HostList) DeepCopyObject

func (in *HostList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*HostList) GetItems

func (l *HostList) GetItems() []resource.Managed

GetItems of this HostList.

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

func (in *HostSpec) DeepCopy() *HostSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostSpec.

func (*HostSpec) DeepCopyInto

func (in *HostSpec) DeepCopyInto(out *HostSpec)

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

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkProfileObservation.

func (*NetworkProfileObservation) DeepCopyInto

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

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL