v1alpha1

package
v0.1.1 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	Group   = "custom-attribute.terraform-provider-vsphere.crossplane.io"
	Version = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	Kind                  = "CustomAttribute"
	GroupKind             = schema.GroupKind{Group: Group, Kind: Kind}.String()
	KindAPIVersion        = Kind + "." + SchemeGroupVersion.String()
	GroupVersionKind      = SchemeGroupVersion.WithKind(Kind)
	TerraformResourceName = "vsphere_custom_attribute"
)
View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: Group, Version: Version}
)

Functions

func DecodeCustomAttribute

func DecodeCustomAttribute(prev *CustomAttribute, ctyValue cty.Value) (resource.Managed, error)

func DecodeCustomAttribute_ManagedObjectType

func DecodeCustomAttribute_ManagedObjectType(p *CustomAttributeParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func DecodeCustomAttribute_Name

func DecodeCustomAttribute_Name(p *CustomAttributeParameters, vals map[string]cty.Value)

primitiveTypeDecodeTemplate

func EncodeCustomAttribute

func EncodeCustomAttribute(r CustomAttribute) cty.Value

func EncodeCustomAttribute_ManagedObjectType

func EncodeCustomAttribute_ManagedObjectType(p CustomAttributeParameters, vals map[string]cty.Value)

func EncodeCustomAttribute_Name

func EncodeCustomAttribute_Name(p CustomAttributeParameters, vals map[string]cty.Value)

func Implementation

func Implementation() *plugin.Implementation

func MergeCustomAttribute_ManagedObjectType

func MergeCustomAttribute_ManagedObjectType(k *CustomAttributeParameters, p *CustomAttributeParameters, md *plugin.MergeDescription) bool

mergePrimitiveTemplateSpec

func MergeCustomAttribute_Name

mergePrimitiveTemplateSpec

Types

type CustomAttribute

type CustomAttribute struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   CustomAttributeSpec   `json:"spec"`
	Status CustomAttributeStatus `json:"status,omitempty"`
}

CustomAttribute is a managed resource representing a resource mirrored in the cloud +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster

func (*CustomAttribute) DeepCopy

func (in *CustomAttribute) DeepCopy() *CustomAttribute

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

func (*CustomAttribute) DeepCopyInto

func (in *CustomAttribute) DeepCopyInto(out *CustomAttribute)

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

func (*CustomAttribute) DeepCopyObject

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

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

func (*CustomAttribute) GetCondition

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

GetCondition of this CustomAttribute.

func (*CustomAttribute) GetDeletionPolicy

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

GetDeletionPolicy of this CustomAttribute.

func (*CustomAttribute) GetProviderConfigReference

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

GetProviderConfigReference of this CustomAttribute.

func (*CustomAttribute) GetProviderReference

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

GetProviderReference of this CustomAttribute. Deprecated: Use GetProviderConfigReference.

func (*CustomAttribute) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this CustomAttribute.

func (*CustomAttribute) SetConditions

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

SetConditions of this CustomAttribute.

func (*CustomAttribute) SetDeletionPolicy

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

SetDeletionPolicy of this CustomAttribute.

func (*CustomAttribute) SetProviderConfigReference

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

SetProviderConfigReference of this CustomAttribute.

func (*CustomAttribute) SetProviderReference

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

SetProviderReference of this CustomAttribute. Deprecated: Use SetProviderConfigReference.

func (*CustomAttribute) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this CustomAttribute.

type CustomAttributeList

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

CustomAttribute contains a list of CustomAttributeList

func (*CustomAttributeList) DeepCopy

func (in *CustomAttributeList) DeepCopy() *CustomAttributeList

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

func (*CustomAttributeList) DeepCopyInto

func (in *CustomAttributeList) DeepCopyInto(out *CustomAttributeList)

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

func (*CustomAttributeList) DeepCopyObject

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

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

func (*CustomAttributeList) GetItems

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

GetItems of this CustomAttributeList.

type CustomAttributeObservation

type CustomAttributeObservation struct{}

A CustomAttributeObservation records the observed state of a CustomAttribute

func (*CustomAttributeObservation) DeepCopy

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

func (*CustomAttributeObservation) DeepCopyInto

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

type CustomAttributeParameters

type CustomAttributeParameters struct {
	ManagedObjectType string `json:"managed_object_type"`
	Name              string `json:"name"`
}

A CustomAttributeParameters defines the desired state of a CustomAttribute

func (*CustomAttributeParameters) DeepCopy

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

func (*CustomAttributeParameters) DeepCopyInto

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

type CustomAttributeSpec

type CustomAttributeSpec struct {
	xpv1.ResourceSpec `json:",inline"`
	ForProvider       CustomAttributeParameters `json:"forProvider"`
}

A CustomAttributeSpec defines the desired state of a CustomAttribute

func (*CustomAttributeSpec) DeepCopy

func (in *CustomAttributeSpec) DeepCopy() *CustomAttributeSpec

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

func (*CustomAttributeSpec) DeepCopyInto

func (in *CustomAttributeSpec) DeepCopyInto(out *CustomAttributeSpec)

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

type CustomAttributeStatus

type CustomAttributeStatus struct {
	xpv1.ResourceStatus `json:",inline"`
	AtProvider          CustomAttributeObservation `json:"atProvider"`
}

A CustomAttributeStatus defines the observed state of a CustomAttribute

func (*CustomAttributeStatus) DeepCopy

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

func (*CustomAttributeStatus) DeepCopyInto

func (in *CustomAttributeStatus) DeepCopyInto(out *CustomAttributeStatus)

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