Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=marketplace.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Agreement
- func (in *Agreement) DeepCopy() *Agreement
- func (in *Agreement) DeepCopyInto(out *Agreement)
- func (in *Agreement) DeepCopyObject() runtime.Object
- func (mg *Agreement) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Agreement) GetConnectionDetailsMapping() map[string]string
- func (mg *Agreement) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Agreement) GetObservation() (map[string]interface{}, error)
- func (tr *Agreement) GetParameters() (map[string]interface{}, error)
- func (mg *Agreement) GetProviderConfigReference() *xpv1.Reference
- func (mg *Agreement) GetProviderReference() *xpv1.Reference
- func (mg *Agreement) GetTerraformResourceType() string
- func (tr *Agreement) GetTerraformSchemaVersion() int
- func (mg *Agreement) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Agreement) LateInitialize(attrs []byte) (bool, error)
- func (mg *Agreement) SetConditions(c ...xpv1.Condition)
- func (mg *Agreement) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Agreement) SetObservation(obs map[string]interface{}) error
- func (tr *Agreement) SetParameters(params map[string]interface{}) error
- func (mg *Agreement) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Agreement) SetProviderReference(r *xpv1.Reference)
- func (mg *Agreement) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AgreementList
- type AgreementObservation
- type AgreementParameters
- type AgreementSpec
- type AgreementStatus
Constants ¶
const ( CRDGroup = "marketplace.azure.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
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.
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 ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Agreement.
func (*Agreement) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Agreement) DeepCopyObject ¶
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 ¶
GetConnectionDetailsMapping for this Agreement
func (*Agreement) GetDeletionPolicy ¶
func (mg *Agreement) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Agreement.
func (*Agreement) GetObservation ¶
GetObservation of this Agreement
func (*Agreement) GetParameters ¶
GetParameters of this Agreement
func (*Agreement) GetProviderConfigReference ¶
GetProviderConfigReference of this Agreement.
func (*Agreement) GetProviderReference ¶
GetProviderReference of this Agreement. Deprecated: Use GetProviderConfigReference.
func (*Agreement) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Agreement
func (*Agreement) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Agreement) GetWriteConnectionSecretToReference ¶
func (mg *Agreement) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Agreement.
func (*Agreement) LateInitialize ¶
LateInitialize this Agreement using its observed tfState. returns True if there are any spec changes for the resource.
func (*Agreement) SetConditions ¶
SetConditions of this Agreement.
func (*Agreement) SetDeletionPolicy ¶
func (mg *Agreement) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Agreement.
func (*Agreement) SetObservation ¶
SetObservation for this Agreement
func (*Agreement) SetParameters ¶
SetParameters for this Agreement
func (*Agreement) SetProviderConfigReference ¶
SetProviderConfigReference of this Agreement.
func (*Agreement) SetProviderReference ¶
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 ¶
func (in *AgreementObservation) DeepCopy() *AgreementObservation
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.