Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=costmanagement.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type DeliveryInfoObservation
- type DeliveryInfoParameters
- type ExportResourceGroup
- func (in *ExportResourceGroup) DeepCopy() *ExportResourceGroup
- func (in *ExportResourceGroup) DeepCopyInto(out *ExportResourceGroup)
- func (in *ExportResourceGroup) DeepCopyObject() runtime.Object
- func (mg *ExportResourceGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ExportResourceGroup) GetConnectionDetailsMapping() map[string]string
- func (mg *ExportResourceGroup) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ExportResourceGroup) GetID() string
- func (tr *ExportResourceGroup) GetObservation() (map[string]interface{}, error)
- func (tr *ExportResourceGroup) GetParameters() (map[string]interface{}, error)
- func (mg *ExportResourceGroup) GetProviderConfigReference() *xpv1.Reference
- func (mg *ExportResourceGroup) GetProviderReference() *xpv1.Reference
- func (mg *ExportResourceGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ExportResourceGroup) GetTerraformResourceType() string
- func (tr *ExportResourceGroup) GetTerraformSchemaVersion() int
- func (mg *ExportResourceGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ExportResourceGroup) LateInitialize(attrs []byte) (bool, error)
- func (mg *ExportResourceGroup) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *ExportResourceGroup) SetConditions(c ...xpv1.Condition)
- func (mg *ExportResourceGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *ExportResourceGroup) SetObservation(obs map[string]interface{}) error
- func (tr *ExportResourceGroup) SetParameters(params map[string]interface{}) error
- func (mg *ExportResourceGroup) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ExportResourceGroup) SetProviderReference(r *xpv1.Reference)
- func (mg *ExportResourceGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ExportResourceGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ExportResourceGroupList
- type ExportResourceGroupObservation
- type ExportResourceGroupParameters
- type ExportResourceGroupSpec
- type ExportResourceGroupStatus
- type QueryObservation
- type QueryParameters
Constants ¶
const ( CRDGroup = "costmanagement.azure.jet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( ExportResourceGroup_Kind = "ExportResourceGroup" ExportResourceGroup_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ExportResourceGroup_Kind}.String() ExportResourceGroup_KindAPIVersion = ExportResourceGroup_Kind + "." + CRDGroupVersion.String() ExportResourceGroup_GroupVersionKind = CRDGroupVersion.WithKind(ExportResourceGroup_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 DeliveryInfoObservation ¶
type DeliveryInfoObservation struct { }
func (*DeliveryInfoObservation) DeepCopy ¶
func (in *DeliveryInfoObservation) DeepCopy() *DeliveryInfoObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryInfoObservation.
func (*DeliveryInfoObservation) DeepCopyInto ¶
func (in *DeliveryInfoObservation) DeepCopyInto(out *DeliveryInfoObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DeliveryInfoParameters ¶
type DeliveryInfoParameters struct { // +kubebuilder:validation:Required ContainerName *string `json:"containerName" tf:"container_name,omitempty"` // +kubebuilder:validation:Required RootFolderPath *string `json:"rootFolderPath" tf:"root_folder_path,omitempty"` // +kubebuilder:validation:Required StorageAccountID *string `json:"storageAccountId" tf:"storage_account_id,omitempty"` }
func (*DeliveryInfoParameters) DeepCopy ¶
func (in *DeliveryInfoParameters) DeepCopy() *DeliveryInfoParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryInfoParameters.
func (*DeliveryInfoParameters) DeepCopyInto ¶
func (in *DeliveryInfoParameters) DeepCopyInto(out *DeliveryInfoParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportResourceGroup ¶
type ExportResourceGroup struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ExportResourceGroupSpec `json:"spec"` Status ExportResourceGroupStatus `json:"status,omitempty"` }
ExportResourceGroup is the Schema for the ExportResourceGroups 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 (*ExportResourceGroup) DeepCopy ¶
func (in *ExportResourceGroup) DeepCopy() *ExportResourceGroup
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroup.
func (*ExportResourceGroup) DeepCopyInto ¶
func (in *ExportResourceGroup) DeepCopyInto(out *ExportResourceGroup)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ExportResourceGroup) DeepCopyObject ¶
func (in *ExportResourceGroup) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ExportResourceGroup) GetCondition ¶
func (mg *ExportResourceGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ExportResourceGroup.
func (*ExportResourceGroup) GetConnectionDetailsMapping ¶
func (tr *ExportResourceGroup) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this ExportResourceGroup
func (*ExportResourceGroup) GetDeletionPolicy ¶
func (mg *ExportResourceGroup) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ExportResourceGroup.
func (*ExportResourceGroup) GetID ¶
func (tr *ExportResourceGroup) GetID() string
GetID returns ID of underlying Terraform resource of this ExportResourceGroup
func (*ExportResourceGroup) GetObservation ¶
func (tr *ExportResourceGroup) GetObservation() (map[string]interface{}, error)
GetObservation of this ExportResourceGroup
func (*ExportResourceGroup) GetParameters ¶
func (tr *ExportResourceGroup) GetParameters() (map[string]interface{}, error)
GetParameters of this ExportResourceGroup
func (*ExportResourceGroup) GetProviderConfigReference ¶
func (mg *ExportResourceGroup) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ExportResourceGroup.
func (*ExportResourceGroup) GetProviderReference ¶
func (mg *ExportResourceGroup) GetProviderReference() *xpv1.Reference
GetProviderReference of this ExportResourceGroup. Deprecated: Use GetProviderConfigReference.
func (*ExportResourceGroup) GetPublishConnectionDetailsTo ¶
func (mg *ExportResourceGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ExportResourceGroup.
func (*ExportResourceGroup) GetTerraformResourceType ¶
func (mg *ExportResourceGroup) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this ExportResourceGroup
func (*ExportResourceGroup) GetTerraformSchemaVersion ¶
func (tr *ExportResourceGroup) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ExportResourceGroup) GetWriteConnectionSecretToReference ¶
func (mg *ExportResourceGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ExportResourceGroup.
func (*ExportResourceGroup) LateInitialize ¶
func (tr *ExportResourceGroup) LateInitialize(attrs []byte) (bool, error)
LateInitialize this ExportResourceGroup using its observed tfState. returns True if there are any spec changes for the resource.
func (*ExportResourceGroup) ResolveReferences ¶
ResolveReferences of this ExportResourceGroup.
func (*ExportResourceGroup) SetConditions ¶
func (mg *ExportResourceGroup) SetConditions(c ...xpv1.Condition)
SetConditions of this ExportResourceGroup.
func (*ExportResourceGroup) SetDeletionPolicy ¶
func (mg *ExportResourceGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ExportResourceGroup.
func (*ExportResourceGroup) SetObservation ¶
func (tr *ExportResourceGroup) SetObservation(obs map[string]interface{}) error
SetObservation for this ExportResourceGroup
func (*ExportResourceGroup) SetParameters ¶
func (tr *ExportResourceGroup) SetParameters(params map[string]interface{}) error
SetParameters for this ExportResourceGroup
func (*ExportResourceGroup) SetProviderConfigReference ¶
func (mg *ExportResourceGroup) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ExportResourceGroup.
func (*ExportResourceGroup) SetProviderReference ¶
func (mg *ExportResourceGroup) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this ExportResourceGroup. Deprecated: Use SetProviderConfigReference.
func (*ExportResourceGroup) SetPublishConnectionDetailsTo ¶
func (mg *ExportResourceGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ExportResourceGroup.
func (*ExportResourceGroup) SetWriteConnectionSecretToReference ¶
func (mg *ExportResourceGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ExportResourceGroup.
type ExportResourceGroupList ¶
type ExportResourceGroupList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ExportResourceGroup `json:"items"` }
ExportResourceGroupList contains a list of ExportResourceGroups
func (*ExportResourceGroupList) DeepCopy ¶
func (in *ExportResourceGroupList) DeepCopy() *ExportResourceGroupList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroupList.
func (*ExportResourceGroupList) DeepCopyInto ¶
func (in *ExportResourceGroupList) DeepCopyInto(out *ExportResourceGroupList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ExportResourceGroupList) DeepCopyObject ¶
func (in *ExportResourceGroupList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ExportResourceGroupList) GetItems ¶
func (l *ExportResourceGroupList) GetItems() []resource.Managed
GetItems of this ExportResourceGroupList.
type ExportResourceGroupObservation ¶
type ExportResourceGroupObservation struct {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*ExportResourceGroupObservation) DeepCopy ¶
func (in *ExportResourceGroupObservation) DeepCopy() *ExportResourceGroupObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroupObservation.
func (*ExportResourceGroupObservation) DeepCopyInto ¶
func (in *ExportResourceGroupObservation) DeepCopyInto(out *ExportResourceGroupObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportResourceGroupParameters ¶
type ExportResourceGroupParameters struct { // +kubebuilder:validation:Optional Active *bool `json:"active,omitempty" tf:"active,omitempty"` // +kubebuilder:validation:Required DeliveryInfo []DeliveryInfoParameters `json:"deliveryInfo" tf:"delivery_info,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Required Query []QueryParameters `json:"query" tf:"query,omitempty"` // +kubebuilder:validation:Required RecurrencePeriodEnd *string `json:"recurrencePeriodEnd" tf:"recurrence_period_end,omitempty"` // +kubebuilder:validation:Required RecurrencePeriodStart *string `json:"recurrencePeriodStart" tf:"recurrence_period_start,omitempty"` // +kubebuilder:validation:Required RecurrenceType *string `json:"recurrenceType" tf:"recurrence_type,omitempty"` // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-azure/apis/azure/v1alpha2.ResourceGroup // +crossplane:generate:reference:extractor=github.com/crossplane-contrib/provider-jet-azure/apis/rconfig.ExtractResourceID() // +kubebuilder:validation:Optional ResourceGroupID *string `json:"resourceGroupId,omitempty" tf:"resource_group_id,omitempty"` // +kubebuilder:validation:Optional ResourceGroupIDRef *v1.Reference `json:"resourceGroupIdRef,omitempty" tf:"-"` // +kubebuilder:validation:Optional ResourceGroupIDSelector *v1.Selector `json:"resourceGroupIdSelector,omitempty" tf:"-"` }
func (*ExportResourceGroupParameters) DeepCopy ¶
func (in *ExportResourceGroupParameters) DeepCopy() *ExportResourceGroupParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroupParameters.
func (*ExportResourceGroupParameters) DeepCopyInto ¶
func (in *ExportResourceGroupParameters) DeepCopyInto(out *ExportResourceGroupParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportResourceGroupSpec ¶
type ExportResourceGroupSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ExportResourceGroupParameters `json:"forProvider"` }
ExportResourceGroupSpec defines the desired state of ExportResourceGroup
func (*ExportResourceGroupSpec) DeepCopy ¶
func (in *ExportResourceGroupSpec) DeepCopy() *ExportResourceGroupSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroupSpec.
func (*ExportResourceGroupSpec) DeepCopyInto ¶
func (in *ExportResourceGroupSpec) DeepCopyInto(out *ExportResourceGroupSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExportResourceGroupStatus ¶
type ExportResourceGroupStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ExportResourceGroupObservation `json:"atProvider,omitempty"` }
ExportResourceGroupStatus defines the observed state of ExportResourceGroup.
func (*ExportResourceGroupStatus) DeepCopy ¶
func (in *ExportResourceGroupStatus) DeepCopy() *ExportResourceGroupStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExportResourceGroupStatus.
func (*ExportResourceGroupStatus) DeepCopyInto ¶
func (in *ExportResourceGroupStatus) DeepCopyInto(out *ExportResourceGroupStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type QueryObservation ¶
type QueryObservation struct { }
func (*QueryObservation) DeepCopy ¶
func (in *QueryObservation) DeepCopy() *QueryObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueryObservation.
func (*QueryObservation) DeepCopyInto ¶
func (in *QueryObservation) DeepCopyInto(out *QueryObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type QueryParameters ¶
type QueryParameters struct { // +kubebuilder:validation:Required TimeFrame *string `json:"timeFrame" tf:"time_frame,omitempty"` // +kubebuilder:validation:Required Type *string `json:"type" tf:"type,omitempty"` }
func (*QueryParameters) DeepCopy ¶
func (in *QueryParameters) DeepCopy() *QueryParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueryParameters.
func (*QueryParameters) DeepCopyInto ¶
func (in *QueryParameters) DeepCopyInto(out *QueryParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.