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=ssh.azure.jet.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "ssh.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 (
	PublicKey_Kind             = "PublicKey"
	PublicKey_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: PublicKey_Kind}.String()
	PublicKey_KindAPIVersion   = PublicKey_Kind + "." + CRDGroupVersion.String()
	PublicKey_GroupVersionKind = CRDGroupVersion.WithKind(PublicKey_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type PublicKey

type PublicKey struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              PublicKeySpec   `json:"spec"`
	Status            PublicKeyStatus `json:"status,omitempty"`
}

PublicKey is the Schema for the PublicKeys 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 (*PublicKey) DeepCopy

func (in *PublicKey) DeepCopy() *PublicKey

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

func (*PublicKey) DeepCopyInto

func (in *PublicKey) DeepCopyInto(out *PublicKey)

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

func (*PublicKey) DeepCopyObject

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

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

func (*PublicKey) GetCondition

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

GetCondition of this PublicKey.

func (*PublicKey) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this PublicKey

func (*PublicKey) GetDeletionPolicy

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

GetDeletionPolicy of this PublicKey.

func (*PublicKey) GetObservation

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

GetObservation of this PublicKey

func (*PublicKey) GetParameters

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

GetParameters of this PublicKey

func (*PublicKey) GetProviderConfigReference

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

GetProviderConfigReference of this PublicKey.

func (*PublicKey) GetProviderReference

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

GetProviderReference of this PublicKey. Deprecated: Use GetProviderConfigReference.

func (*PublicKey) GetTerraformResourceType

func (mg *PublicKey) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this PublicKey

func (*PublicKey) GetTerraformSchemaVersion

func (tr *PublicKey) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*PublicKey) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this PublicKey.

func (*PublicKey) LateInitialize

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

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

func (*PublicKey) SetConditions

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

SetConditions of this PublicKey.

func (*PublicKey) SetDeletionPolicy

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

SetDeletionPolicy of this PublicKey.

func (*PublicKey) SetObservation

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

SetObservation for this PublicKey

func (*PublicKey) SetParameters

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

SetParameters for this PublicKey

func (*PublicKey) SetProviderConfigReference

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

SetProviderConfigReference of this PublicKey.

func (*PublicKey) SetProviderReference

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

SetProviderReference of this PublicKey. Deprecated: Use SetProviderConfigReference.

func (*PublicKey) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this PublicKey.

type PublicKeyList

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

PublicKeyList contains a list of PublicKeys

func (*PublicKeyList) DeepCopy

func (in *PublicKeyList) DeepCopy() *PublicKeyList

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

func (*PublicKeyList) DeepCopyInto

func (in *PublicKeyList) DeepCopyInto(out *PublicKeyList)

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

func (*PublicKeyList) DeepCopyObject

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

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

func (*PublicKeyList) GetItems

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

GetItems of this PublicKeyList.

type PublicKeyObservation

type PublicKeyObservation struct {
}

func (*PublicKeyObservation) DeepCopy

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

func (*PublicKeyObservation) DeepCopyInto

func (in *PublicKeyObservation) DeepCopyInto(out *PublicKeyObservation)

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

type PublicKeyParameters

type PublicKeyParameters struct {

	// +kubebuilder:validation:Required
	Location *string `json:"location" tf:"location,omitempty"`

	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,omitempty"`

	// +kubebuilder:validation:Required
	PublicKey *string `json:"publicKey" tf:"public_key,omitempty"`

	// +kubebuilder:validation:Required
	ResourceGroupName *string `json:"resourceGroupName" tf:"resource_group_name,omitempty"`

	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*PublicKeyParameters) DeepCopy

func (in *PublicKeyParameters) DeepCopy() *PublicKeyParameters

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

func (*PublicKeyParameters) DeepCopyInto

func (in *PublicKeyParameters) DeepCopyInto(out *PublicKeyParameters)

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

type PublicKeySpec

type PublicKeySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     PublicKeyParameters `json:"forProvider"`
}

PublicKeySpec defines the desired state of PublicKey

func (*PublicKeySpec) DeepCopy

func (in *PublicKeySpec) DeepCopy() *PublicKeySpec

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

func (*PublicKeySpec) DeepCopyInto

func (in *PublicKeySpec) DeepCopyInto(out *PublicKeySpec)

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

type PublicKeyStatus

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

PublicKeyStatus defines the observed state of PublicKey.

func (*PublicKeyStatus) DeepCopy

func (in *PublicKeyStatus) DeepCopy() *PublicKeyStatus

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

func (*PublicKeyStatus) DeepCopyInto

func (in *PublicKeyStatus) DeepCopyInto(out *PublicKeyStatus)

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