v1alpha1

package
v0.5.0-preview Latest Latest
Warning

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

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

Documentation

Overview

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

Index

Constants

View Source
const (
	CRDGroup   = "portal.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 (
	TenantConfiguration_Kind             = "TenantConfiguration"
	TenantConfiguration_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: TenantConfiguration_Kind}.String()
	TenantConfiguration_KindAPIVersion   = TenantConfiguration_Kind + "." + CRDGroupVersion.String()
	TenantConfiguration_GroupVersionKind = CRDGroupVersion.WithKind(TenantConfiguration_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type TenantConfiguration

type TenantConfiguration struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              TenantConfigurationSpec   `json:"spec"`
	Status            TenantConfigurationStatus `json:"status,omitempty"`
}

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

func (in *TenantConfiguration) DeepCopy() *TenantConfiguration

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

func (*TenantConfiguration) DeepCopyInto

func (in *TenantConfiguration) DeepCopyInto(out *TenantConfiguration)

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

func (*TenantConfiguration) DeepCopyObject

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

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

func (*TenantConfiguration) GetCondition

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

GetCondition of this TenantConfiguration.

func (*TenantConfiguration) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this TenantConfiguration

func (*TenantConfiguration) GetDeletionPolicy

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

GetDeletionPolicy of this TenantConfiguration.

func (*TenantConfiguration) GetID

func (tr *TenantConfiguration) GetID() string

GetID returns ID of underlying Terraform resource of this TenantConfiguration

func (*TenantConfiguration) GetObservation

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

GetObservation of this TenantConfiguration

func (*TenantConfiguration) GetParameters

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

GetParameters of this TenantConfiguration

func (*TenantConfiguration) GetProviderConfigReference

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

GetProviderConfigReference of this TenantConfiguration.

func (*TenantConfiguration) GetProviderReference

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

GetProviderReference of this TenantConfiguration. Deprecated: Use GetProviderConfigReference.

func (*TenantConfiguration) GetTerraformResourceType

func (mg *TenantConfiguration) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this TenantConfiguration

func (*TenantConfiguration) GetTerraformSchemaVersion

func (tr *TenantConfiguration) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*TenantConfiguration) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this TenantConfiguration.

func (*TenantConfiguration) LateInitialize

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

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

func (*TenantConfiguration) SetConditions

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

SetConditions of this TenantConfiguration.

func (*TenantConfiguration) SetDeletionPolicy

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

SetDeletionPolicy of this TenantConfiguration.

func (*TenantConfiguration) SetObservation

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

SetObservation for this TenantConfiguration

func (*TenantConfiguration) SetParameters

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

SetParameters for this TenantConfiguration

func (*TenantConfiguration) SetProviderConfigReference

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

SetProviderConfigReference of this TenantConfiguration.

func (*TenantConfiguration) SetProviderReference

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

SetProviderReference of this TenantConfiguration. Deprecated: Use SetProviderConfigReference.

func (*TenantConfiguration) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this TenantConfiguration.

type TenantConfigurationList

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

TenantConfigurationList contains a list of TenantConfigurations

func (*TenantConfigurationList) DeepCopy

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

func (*TenantConfigurationList) DeepCopyInto

func (in *TenantConfigurationList) DeepCopyInto(out *TenantConfigurationList)

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

func (*TenantConfigurationList) DeepCopyObject

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

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

func (*TenantConfigurationList) GetItems

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

GetItems of this TenantConfigurationList.

type TenantConfigurationObservation

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

func (*TenantConfigurationObservation) DeepCopy

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

func (*TenantConfigurationObservation) DeepCopyInto

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

type TenantConfigurationParameters

type TenantConfigurationParameters struct {

	// +kubebuilder:validation:Required
	PrivateMarkdownStorageEnforced *bool `json:"privateMarkdownStorageEnforced" tf:"private_markdown_storage_enforced,omitempty"`
}

func (*TenantConfigurationParameters) DeepCopy

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

func (*TenantConfigurationParameters) DeepCopyInto

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

type TenantConfigurationSpec

type TenantConfigurationSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     TenantConfigurationParameters `json:"forProvider"`
}

TenantConfigurationSpec defines the desired state of TenantConfiguration

func (*TenantConfigurationSpec) DeepCopy

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

func (*TenantConfigurationSpec) DeepCopyInto

func (in *TenantConfigurationSpec) DeepCopyInto(out *TenantConfigurationSpec)

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

type TenantConfigurationStatus

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

TenantConfigurationStatus defines the observed state of TenantConfiguration.

func (*TenantConfigurationStatus) DeepCopy

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

func (*TenantConfigurationStatus) DeepCopyInto

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