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

Index

Constants

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

Package type metadata.

Variables

View Source
var (
	Agreement_Kind             = "Agreement"
	Agreement_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Agreement_Kind}.String()
	Agreement_KindAPIVersion   = Agreement_Kind + "." + CRDGroupVersion.String()
	Agreement_GroupVersionKind = CRDGroupVersion.WithKind(Agreement_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 Agreement

type Agreement struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              AgreementSpec   `json:"spec"`
	Status            AgreementStatus `json:"status,omitempty"`
}

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

func (in *Agreement) DeepCopy() *Agreement

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

func (*Agreement) DeepCopyInto

func (in *Agreement) DeepCopyInto(out *Agreement)

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

func (*Agreement) DeepCopyObject

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

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

func (*Agreement) GetCondition

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

GetCondition of this Agreement.

func (*Agreement) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Agreement

func (*Agreement) GetDeletionPolicy

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

GetDeletionPolicy of this Agreement.

func (*Agreement) GetObservation

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

GetObservation of this Agreement

func (*Agreement) GetParameters

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

GetParameters of this Agreement

func (*Agreement) GetProviderConfigReference

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

GetProviderConfigReference of this Agreement.

func (*Agreement) GetProviderReference

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

GetProviderReference of this Agreement. Deprecated: Use GetProviderConfigReference.

func (*Agreement) GetTerraformResourceType

func (mg *Agreement) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Agreement

func (*Agreement) GetTerraformSchemaVersion

func (tr *Agreement) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Agreement) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Agreement.

func (*Agreement) LateInitialize

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

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

func (*Agreement) SetConditions

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

SetConditions of this Agreement.

func (*Agreement) SetDeletionPolicy

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

SetDeletionPolicy of this Agreement.

func (*Agreement) SetObservation

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

SetObservation for this Agreement

func (*Agreement) SetParameters

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

SetParameters for this Agreement

func (*Agreement) SetProviderConfigReference

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

SetProviderConfigReference of this Agreement.

func (*Agreement) SetProviderReference

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

SetProviderReference of this Agreement. Deprecated: Use SetProviderConfigReference.

func (*Agreement) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Agreement.

type AgreementList

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

AgreementList contains a list of Agreements

func (*AgreementList) DeepCopy

func (in *AgreementList) DeepCopy() *AgreementList

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

func (*AgreementList) DeepCopyInto

func (in *AgreementList) DeepCopyInto(out *AgreementList)

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

func (*AgreementList) DeepCopyObject

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

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

func (*AgreementList) GetItems

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

GetItems of this AgreementList.

type AgreementObservation

type AgreementObservation struct {
	LicenseTextLink *string `json:"licenseTextLink,omitempty" tf:"license_text_link,omitempty"`

	PrivacyPolicyLink *string `json:"privacyPolicyLink,omitempty" tf:"privacy_policy_link,omitempty"`
}

func (*AgreementObservation) DeepCopy

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

func (*AgreementObservation) DeepCopyInto

func (in *AgreementObservation) DeepCopyInto(out *AgreementObservation)

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

type AgreementParameters

type AgreementParameters struct {

	// +kubebuilder:validation:Required
	Offer *string `json:"offer" tf:"offer,omitempty"`

	// +kubebuilder:validation:Required
	Plan *string `json:"plan" tf:"plan,omitempty"`

	// +kubebuilder:validation:Required
	Publisher *string `json:"publisher" tf:"publisher,omitempty"`
}

func (*AgreementParameters) DeepCopy

func (in *AgreementParameters) DeepCopy() *AgreementParameters

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

func (*AgreementParameters) DeepCopyInto

func (in *AgreementParameters) DeepCopyInto(out *AgreementParameters)

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

type AgreementSpec

type AgreementSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     AgreementParameters `json:"forProvider"`
}

AgreementSpec defines the desired state of Agreement

func (*AgreementSpec) DeepCopy

func (in *AgreementSpec) DeepCopy() *AgreementSpec

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

func (*AgreementSpec) DeepCopyInto

func (in *AgreementSpec) DeepCopyInto(out *AgreementSpec)

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

type AgreementStatus

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

AgreementStatus defines the observed state of Agreement.

func (*AgreementStatus) DeepCopy

func (in *AgreementStatus) DeepCopy() *AgreementStatus

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

func (*AgreementStatus) DeepCopyInto

func (in *AgreementStatus) DeepCopyInto(out *AgreementStatus)

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