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

Index

Constants

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

Package type metadata.

Variables

View Source
var (
	AssignedIdentity_Kind             = "AssignedIdentity"
	AssignedIdentity_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: AssignedIdentity_Kind}.String()
	AssignedIdentity_KindAPIVersion   = AssignedIdentity_Kind + "." + CRDGroupVersion.String()
	AssignedIdentity_GroupVersionKind = CRDGroupVersion.WithKind(AssignedIdentity_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
)

Functions

This section is empty.

Types

type AssignedIdentity

type AssignedIdentity struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              AssignedIdentitySpec   `json:"spec"`
	Status            AssignedIdentityStatus `json:"status,omitempty"`
}

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

func (in *AssignedIdentity) DeepCopy() *AssignedIdentity

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

func (*AssignedIdentity) DeepCopyInto

func (in *AssignedIdentity) DeepCopyInto(out *AssignedIdentity)

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

func (*AssignedIdentity) DeepCopyObject

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

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

func (*AssignedIdentity) GetCondition

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

GetCondition of this AssignedIdentity.

func (*AssignedIdentity) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this AssignedIdentity

func (*AssignedIdentity) GetDeletionPolicy

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

GetDeletionPolicy of this AssignedIdentity.

func (*AssignedIdentity) GetObservation

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

GetObservation of this AssignedIdentity

func (*AssignedIdentity) GetParameters

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

GetParameters of this AssignedIdentity

func (*AssignedIdentity) GetProviderConfigReference

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

GetProviderConfigReference of this AssignedIdentity.

func (*AssignedIdentity) GetProviderReference

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

GetProviderReference of this AssignedIdentity. Deprecated: Use GetProviderConfigReference.

func (*AssignedIdentity) GetTerraformResourceType

func (mg *AssignedIdentity) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this AssignedIdentity

func (*AssignedIdentity) GetTerraformSchemaVersion

func (tr *AssignedIdentity) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*AssignedIdentity) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this AssignedIdentity.

func (*AssignedIdentity) LateInitialize

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

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

func (*AssignedIdentity) SetConditions

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

SetConditions of this AssignedIdentity.

func (*AssignedIdentity) SetDeletionPolicy

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

SetDeletionPolicy of this AssignedIdentity.

func (*AssignedIdentity) SetObservation

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

SetObservation for this AssignedIdentity

func (*AssignedIdentity) SetParameters

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

SetParameters for this AssignedIdentity

func (*AssignedIdentity) SetProviderConfigReference

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

SetProviderConfigReference of this AssignedIdentity.

func (*AssignedIdentity) SetProviderReference

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

SetProviderReference of this AssignedIdentity. Deprecated: Use SetProviderConfigReference.

func (*AssignedIdentity) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this AssignedIdentity.

type AssignedIdentityList

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

AssignedIdentityList contains a list of AssignedIdentitys

func (*AssignedIdentityList) DeepCopy

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

func (*AssignedIdentityList) DeepCopyInto

func (in *AssignedIdentityList) DeepCopyInto(out *AssignedIdentityList)

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

func (*AssignedIdentityList) DeepCopyObject

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

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

func (*AssignedIdentityList) GetItems

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

GetItems of this AssignedIdentityList.

type AssignedIdentityObservation

type AssignedIdentityObservation struct {
	ClientID *string `json:"clientId,omitempty" tf:"client_id,omitempty"`

	PrincipalID *string `json:"principalId,omitempty" tf:"principal_id,omitempty"`

	TenantID *string `json:"tenantId,omitempty" tf:"tenant_id,omitempty"`
}

func (*AssignedIdentityObservation) DeepCopy

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

func (*AssignedIdentityObservation) DeepCopyInto

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

type AssignedIdentityParameters

type AssignedIdentityParameters struct {

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

	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,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 (*AssignedIdentityParameters) DeepCopy

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

func (*AssignedIdentityParameters) DeepCopyInto

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

type AssignedIdentitySpec

type AssignedIdentitySpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AssignedIdentityParameters `json:"forProvider"`
}

AssignedIdentitySpec defines the desired state of AssignedIdentity

func (*AssignedIdentitySpec) DeepCopy

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

func (*AssignedIdentitySpec) DeepCopyInto

func (in *AssignedIdentitySpec) DeepCopyInto(out *AssignedIdentitySpec)

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

type AssignedIdentityStatus

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

AssignedIdentityStatus defines the observed state of AssignedIdentity.

func (*AssignedIdentityStatus) DeepCopy

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

func (*AssignedIdentityStatus) DeepCopyInto

func (in *AssignedIdentityStatus) DeepCopyInto(out *AssignedIdentityStatus)

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