v1alpha1

package
v0.0.0-...-10a304b Latest Latest
Warning

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

Go to latest
Published: Jan 31, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=css.otc.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "css.otc.jet.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	ClusterV1_Kind             = "ClusterV1"
	ClusterV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ClusterV1_Kind}.String()
	ClusterV1_KindAPIVersion   = ClusterV1_Kind + "." + CRDGroupVersion.String()
	ClusterV1_GroupVersionKind = CRDGroupVersion.WithKind(ClusterV1_Kind)
)

Repository type metadata.

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 (
	SnapshotConfigurationV1_Kind             = "SnapshotConfigurationV1"
	SnapshotConfigurationV1_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: SnapshotConfigurationV1_Kind}.String()
	SnapshotConfigurationV1_KindAPIVersion   = SnapshotConfigurationV1_Kind + "." + CRDGroupVersion.String()
	SnapshotConfigurationV1_GroupVersionKind = CRDGroupVersion.WithKind(SnapshotConfigurationV1_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type ClusterV1

type ClusterV1 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              ClusterV1Spec   `json:"spec"`
	Status            ClusterV1Status `json:"status,omitempty"`
}

ClusterV1 is the Schema for the ClusterV1s 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,otcjet}

func (*ClusterV1) DeepCopy

func (in *ClusterV1) DeepCopy() *ClusterV1

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

func (*ClusterV1) DeepCopyInto

func (in *ClusterV1) DeepCopyInto(out *ClusterV1)

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

func (*ClusterV1) DeepCopyObject

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

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

func (*ClusterV1) GetCondition

func (mg *ClusterV1) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ClusterV1.

func (*ClusterV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this ClusterV1

func (*ClusterV1) GetDeletionPolicy

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

GetDeletionPolicy of this ClusterV1.

func (*ClusterV1) GetID

func (tr *ClusterV1) GetID() string

GetID returns ID of underlying Terraform resource of this ClusterV1

func (*ClusterV1) GetObservation

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

GetObservation of this ClusterV1

func (*ClusterV1) GetParameters

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

GetParameters of this ClusterV1

func (*ClusterV1) GetProviderConfigReference

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

GetProviderConfigReference of this ClusterV1.

func (*ClusterV1) GetProviderReference

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

GetProviderReference of this ClusterV1. Deprecated: Use GetProviderConfigReference.

func (*ClusterV1) GetTerraformResourceType

func (mg *ClusterV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ClusterV1

func (*ClusterV1) GetTerraformSchemaVersion

func (tr *ClusterV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ClusterV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this ClusterV1.

func (*ClusterV1) LateInitialize

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

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

func (*ClusterV1) SetConditions

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

SetConditions of this ClusterV1.

func (*ClusterV1) SetDeletionPolicy

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

SetDeletionPolicy of this ClusterV1.

func (*ClusterV1) SetObservation

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

SetObservation for this ClusterV1

func (*ClusterV1) SetParameters

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

SetParameters for this ClusterV1

func (*ClusterV1) SetProviderConfigReference

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

SetProviderConfigReference of this ClusterV1.

func (*ClusterV1) SetProviderReference

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

SetProviderReference of this ClusterV1. Deprecated: Use SetProviderConfigReference.

func (*ClusterV1) SetWriteConnectionSecretToReference

func (mg *ClusterV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ClusterV1.

type ClusterV1List

type ClusterV1List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ClusterV1 `json:"items"`
}

ClusterV1List contains a list of ClusterV1s

func (*ClusterV1List) DeepCopy

func (in *ClusterV1List) DeepCopy() *ClusterV1List

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

func (*ClusterV1List) DeepCopyInto

func (in *ClusterV1List) DeepCopyInto(out *ClusterV1List)

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

func (*ClusterV1List) DeepCopyObject

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

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

func (*ClusterV1List) GetItems

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

GetItems of this ClusterV1List.

type ClusterV1Observation

type ClusterV1Observation struct {
	Created *string `json:"created,omitempty" tf:"created,omitempty"`

	Endpoint *string `json:"endpoint,omitempty" tf:"endpoint,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	Nodes []NodesObservation `json:"nodes,omitempty" tf:"nodes,omitempty"`

	Updated *string `json:"updated,omitempty" tf:"updated,omitempty"`
}

func (*ClusterV1Observation) DeepCopy

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

func (*ClusterV1Observation) DeepCopyInto

func (in *ClusterV1Observation) DeepCopyInto(out *ClusterV1Observation)

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

type ClusterV1Parameters

type ClusterV1Parameters struct {

	// +kubebuilder:validation:Optional
	AdminPass *string `json:"adminPass,omitempty" tf:"admin_pass,omitempty"`

	// +kubebuilder:validation:Optional
	Datastore []DatastoreParameters `json:"datastore,omitempty" tf:"datastore,omitempty"`

	// +kubebuilder:validation:Optional
	EnableAuthority *bool `json:"enableAuthority,omitempty" tf:"enable_authority,omitempty"`

	// +kubebuilder:validation:Optional
	EnableHTTPS *bool `json:"enableHttps,omitempty" tf:"enable_https,omitempty"`

	// +kubebuilder:validation:Optional
	ExpectNodeNum *int64 `json:"expectNodeNum,omitempty" tf:"expect_node_num,omitempty"`

	// +kubebuilder:validation:Required
	NodeConfig []NodeConfigParameters `json:"nodeConfig" tf:"node_config,omitempty"`
}

func (*ClusterV1Parameters) DeepCopy

func (in *ClusterV1Parameters) DeepCopy() *ClusterV1Parameters

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

func (*ClusterV1Parameters) DeepCopyInto

func (in *ClusterV1Parameters) DeepCopyInto(out *ClusterV1Parameters)

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

type ClusterV1Spec

type ClusterV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ClusterV1Parameters `json:"forProvider"`
}

ClusterV1Spec defines the desired state of ClusterV1

func (*ClusterV1Spec) DeepCopy

func (in *ClusterV1Spec) DeepCopy() *ClusterV1Spec

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

func (*ClusterV1Spec) DeepCopyInto

func (in *ClusterV1Spec) DeepCopyInto(out *ClusterV1Spec)

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

type ClusterV1Status

type ClusterV1Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ClusterV1Observation `json:"atProvider,omitempty"`
}

ClusterV1Status defines the observed state of ClusterV1.

func (*ClusterV1Status) DeepCopy

func (in *ClusterV1Status) DeepCopy() *ClusterV1Status

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

func (*ClusterV1Status) DeepCopyInto

func (in *ClusterV1Status) DeepCopyInto(out *ClusterV1Status)

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

type ConfigurationObservation

type ConfigurationObservation struct {
}

func (*ConfigurationObservation) DeepCopy

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

func (*ConfigurationObservation) DeepCopyInto

func (in *ConfigurationObservation) DeepCopyInto(out *ConfigurationObservation)

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

type ConfigurationParameters

type ConfigurationParameters struct {

	// +kubebuilder:validation:Required
	Agency *string `json:"agency" tf:"agency,omitempty"`

	// +kubebuilder:validation:Required
	Bucket *string `json:"bucket" tf:"bucket,omitempty"`

	// +kubebuilder:validation:Optional
	KMSID *string `json:"kmsId,omitempty" tf:"kms_id,omitempty"`
}

func (*ConfigurationParameters) DeepCopy

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

func (*ConfigurationParameters) DeepCopyInto

func (in *ConfigurationParameters) DeepCopyInto(out *ConfigurationParameters)

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

type CreationPolicyObservation

type CreationPolicyObservation struct {
}

func (*CreationPolicyObservation) DeepCopy

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

func (*CreationPolicyObservation) DeepCopyInto

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

type CreationPolicyParameters

type CreationPolicyParameters struct {

	// +kubebuilder:validation:Optional
	DeleteAuto *bool `json:"deleteAuto,omitempty" tf:"delete_auto,omitempty"`

	// +kubebuilder:validation:Required
	Enable *bool `json:"enable" tf:"enable,omitempty"`

	// +kubebuilder:validation:Required
	Keepday *int64 `json:"keepday" tf:"keepday,omitempty"`

	// +kubebuilder:validation:Required
	Period *string `json:"period" tf:"period,omitempty"`

	// +kubebuilder:validation:Required
	Prefix *string `json:"prefix" tf:"prefix,omitempty"`
}

func (*CreationPolicyParameters) DeepCopy

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

func (*CreationPolicyParameters) DeepCopyInto

func (in *CreationPolicyParameters) DeepCopyInto(out *CreationPolicyParameters)

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

type DatastoreObservation

type DatastoreObservation struct {
}

func (*DatastoreObservation) DeepCopy

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

func (*DatastoreObservation) DeepCopyInto

func (in *DatastoreObservation) DeepCopyInto(out *DatastoreObservation)

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

type DatastoreParameters

type DatastoreParameters struct {

	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`

	// +kubebuilder:validation:Optional
	Version *string `json:"version,omitempty" tf:"version,omitempty"`
}

func (*DatastoreParameters) DeepCopy

func (in *DatastoreParameters) DeepCopy() *DatastoreParameters

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

func (*DatastoreParameters) DeepCopyInto

func (in *DatastoreParameters) DeepCopyInto(out *DatastoreParameters)

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

type NetworkInfoObservation

type NetworkInfoObservation struct {
}

func (*NetworkInfoObservation) DeepCopy

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

func (*NetworkInfoObservation) DeepCopyInto

func (in *NetworkInfoObservation) DeepCopyInto(out *NetworkInfoObservation)

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

type NetworkInfoParameters

type NetworkInfoParameters struct {

	// +kubebuilder:validation:Required
	NetworkID *string `json:"networkId" tf:"network_id,omitempty"`

	// +kubebuilder:validation:Required
	SecurityGroupID *string `json:"securityGroupId" tf:"security_group_id,omitempty"`

	// +kubebuilder:validation:Required
	VPCID *string `json:"vpcId" tf:"vpc_id,omitempty"`
}

func (*NetworkInfoParameters) DeepCopy

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

func (*NetworkInfoParameters) DeepCopyInto

func (in *NetworkInfoParameters) DeepCopyInto(out *NetworkInfoParameters)

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

type NodeConfigObservation

type NodeConfigObservation struct {
}

func (*NodeConfigObservation) DeepCopy

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

func (*NodeConfigObservation) DeepCopyInto

func (in *NodeConfigObservation) DeepCopyInto(out *NodeConfigObservation)

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

type NodeConfigParameters

type NodeConfigParameters struct {

	// +kubebuilder:validation:Optional
	AvailabilityZone *string `json:"availabilityZone,omitempty" tf:"availability_zone,omitempty"`

	// +kubebuilder:validation:Required
	Flavor *string `json:"flavor" tf:"flavor,omitempty"`

	// +kubebuilder:validation:Required
	NetworkInfo []NetworkInfoParameters `json:"networkInfo" tf:"network_info,omitempty"`

	// +kubebuilder:validation:Required
	Volume []VolumeParameters `json:"volume" tf:"volume,omitempty"`
}

func (*NodeConfigParameters) DeepCopy

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

func (*NodeConfigParameters) DeepCopyInto

func (in *NodeConfigParameters) DeepCopyInto(out *NodeConfigParameters)

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

type NodesObservation

type NodesObservation struct {
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*NodesObservation) DeepCopy

func (in *NodesObservation) DeepCopy() *NodesObservation

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

func (*NodesObservation) DeepCopyInto

func (in *NodesObservation) DeepCopyInto(out *NodesObservation)

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

type NodesParameters

type NodesParameters struct {
}

func (*NodesParameters) DeepCopy

func (in *NodesParameters) DeepCopy() *NodesParameters

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

func (*NodesParameters) DeepCopyInto

func (in *NodesParameters) DeepCopyInto(out *NodesParameters)

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

type SnapshotConfigurationV1

type SnapshotConfigurationV1 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              SnapshotConfigurationV1Spec   `json:"spec"`
	Status            SnapshotConfigurationV1Status `json:"status,omitempty"`
}

SnapshotConfigurationV1 is the Schema for the SnapshotConfigurationV1s 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,otcjet}

func (*SnapshotConfigurationV1) DeepCopy

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

func (*SnapshotConfigurationV1) DeepCopyInto

func (in *SnapshotConfigurationV1) DeepCopyInto(out *SnapshotConfigurationV1)

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

func (*SnapshotConfigurationV1) DeepCopyObject

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

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

func (*SnapshotConfigurationV1) GetCondition

GetCondition of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) GetDeletionPolicy

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

GetDeletionPolicy of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) GetID

func (tr *SnapshotConfigurationV1) GetID() string

GetID returns ID of underlying Terraform resource of this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) GetObservation

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

GetObservation of this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) GetParameters

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

GetParameters of this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) GetProviderConfigReference

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

GetProviderConfigReference of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) GetProviderReference

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

GetProviderReference of this SnapshotConfigurationV1. Deprecated: Use GetProviderConfigReference.

func (*SnapshotConfigurationV1) GetTerraformResourceType

func (mg *SnapshotConfigurationV1) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) GetTerraformSchemaVersion

func (tr *SnapshotConfigurationV1) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*SnapshotConfigurationV1) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) LateInitialize

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

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

func (*SnapshotConfigurationV1) SetConditions

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

SetConditions of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) SetDeletionPolicy

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

SetDeletionPolicy of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) SetObservation

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

SetObservation for this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) SetParameters

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

SetParameters for this SnapshotConfigurationV1

func (*SnapshotConfigurationV1) SetProviderConfigReference

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

SetProviderConfigReference of this SnapshotConfigurationV1.

func (*SnapshotConfigurationV1) SetProviderReference

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

SetProviderReference of this SnapshotConfigurationV1. Deprecated: Use SetProviderConfigReference.

func (*SnapshotConfigurationV1) SetWriteConnectionSecretToReference

func (mg *SnapshotConfigurationV1) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this SnapshotConfigurationV1.

type SnapshotConfigurationV1List

type SnapshotConfigurationV1List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []SnapshotConfigurationV1 `json:"items"`
}

SnapshotConfigurationV1List contains a list of SnapshotConfigurationV1s

func (*SnapshotConfigurationV1List) DeepCopy

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

func (*SnapshotConfigurationV1List) DeepCopyInto

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

func (*SnapshotConfigurationV1List) DeepCopyObject

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

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

func (*SnapshotConfigurationV1List) GetItems

GetItems of this SnapshotConfigurationV1List.

type SnapshotConfigurationV1Observation

type SnapshotConfigurationV1Observation struct {
	BasePath *string `json:"basePath,omitempty" tf:"base_path,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`
}

func (*SnapshotConfigurationV1Observation) DeepCopy

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

func (*SnapshotConfigurationV1Observation) DeepCopyInto

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

type SnapshotConfigurationV1Parameters

type SnapshotConfigurationV1Parameters struct {

	// +kubebuilder:validation:Optional
	Automatic *bool `json:"automatic,omitempty" tf:"automatic,omitempty"`

	// +kubebuilder:validation:Required
	ClusterID *string `json:"clusterId" tf:"cluster_id,omitempty"`

	// +kubebuilder:validation:Optional
	Configuration []ConfigurationParameters `json:"configuration,omitempty" tf:"configuration,omitempty"`

	// +kubebuilder:validation:Optional
	CreationPolicy []CreationPolicyParameters `json:"creationPolicy,omitempty" tf:"creation_policy,omitempty"`
}

func (*SnapshotConfigurationV1Parameters) DeepCopy

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

func (*SnapshotConfigurationV1Parameters) DeepCopyInto

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

type SnapshotConfigurationV1Spec

type SnapshotConfigurationV1Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     SnapshotConfigurationV1Parameters `json:"forProvider"`
}

SnapshotConfigurationV1Spec defines the desired state of SnapshotConfigurationV1

func (*SnapshotConfigurationV1Spec) DeepCopy

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

func (*SnapshotConfigurationV1Spec) DeepCopyInto

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

type SnapshotConfigurationV1Status

type SnapshotConfigurationV1Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        SnapshotConfigurationV1Observation `json:"atProvider,omitempty"`
}

SnapshotConfigurationV1Status defines the observed state of SnapshotConfigurationV1.

func (*SnapshotConfigurationV1Status) DeepCopy

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

func (*SnapshotConfigurationV1Status) DeepCopyInto

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

type VolumeObservation

type VolumeObservation struct {
}

func (*VolumeObservation) DeepCopy

func (in *VolumeObservation) DeepCopy() *VolumeObservation

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

func (*VolumeObservation) DeepCopyInto

func (in *VolumeObservation) DeepCopyInto(out *VolumeObservation)

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

type VolumeParameters

type VolumeParameters struct {

	// +kubebuilder:validation:Optional
	EncryptionKey *string `json:"encryptionKey,omitempty" tf:"encryption_key,omitempty"`

	// +kubebuilder:validation:Required
	Size *int64 `json:"size" tf:"size,omitempty"`

	// +kubebuilder:validation:Required
	VolumeType *string `json:"volumeType" tf:"volume_type,omitempty"`
}

func (*VolumeParameters) DeepCopy

func (in *VolumeParameters) DeepCopy() *VolumeParameters

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

func (*VolumeParameters) DeepCopyInto

func (in *VolumeParameters) DeepCopyInto(out *VolumeParameters)

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