Documentation
¶
Overview ¶
+kubebuilder:object:generate=true +groupName=licensemanager.aws.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type Association
- func (in *Association) DeepCopy() *Association
- func (in *Association) DeepCopyInto(out *Association)
- func (in *Association) DeepCopyObject() runtime.Object
- func (mg *Association) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Association) GetConnectionDetailsMapping() map[string]string
- func (mg *Association) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Association) GetID() string
- func (mg *Association) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *Association) GetObservation() (map[string]any, error)
- func (tr *Association) GetParameters() (map[string]any, error)
- func (mg *Association) GetProviderConfigReference() *xpv1.Reference
- func (mg *Association) GetProviderReference() *xpv1.Reference
- func (mg *Association) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Association) GetTerraformResourceType() string
- func (tr *Association) GetTerraformSchemaVersion() int
- func (mg *Association) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Association) LateInitialize(attrs []byte) (bool, error)
- func (mg *Association) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Association) SetConditions(c ...xpv1.Condition)
- func (mg *Association) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Association) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *Association) SetObservation(obs map[string]any) error
- func (tr *Association) SetParameters(params map[string]any) error
- func (mg *Association) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Association) SetProviderReference(r *xpv1.Reference)
- func (mg *Association) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Association) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AssociationList
- type AssociationObservation
- type AssociationParameters
- type AssociationSpec
- type AssociationStatus
- type LicenseConfiguration
- func (in *LicenseConfiguration) DeepCopy() *LicenseConfiguration
- func (in *LicenseConfiguration) DeepCopyInto(out *LicenseConfiguration)
- func (in *LicenseConfiguration) DeepCopyObject() runtime.Object
- func (mg *LicenseConfiguration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *LicenseConfiguration) GetConnectionDetailsMapping() map[string]string
- func (mg *LicenseConfiguration) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *LicenseConfiguration) GetID() string
- func (mg *LicenseConfiguration) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *LicenseConfiguration) GetObservation() (map[string]any, error)
- func (tr *LicenseConfiguration) GetParameters() (map[string]any, error)
- func (mg *LicenseConfiguration) GetProviderConfigReference() *xpv1.Reference
- func (mg *LicenseConfiguration) GetProviderReference() *xpv1.Reference
- func (mg *LicenseConfiguration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *LicenseConfiguration) GetTerraformResourceType() string
- func (tr *LicenseConfiguration) GetTerraformSchemaVersion() int
- func (mg *LicenseConfiguration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *LicenseConfiguration) LateInitialize(attrs []byte) (bool, error)
- func (mg *LicenseConfiguration) SetConditions(c ...xpv1.Condition)
- func (mg *LicenseConfiguration) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *LicenseConfiguration) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *LicenseConfiguration) SetObservation(obs map[string]any) error
- func (tr *LicenseConfiguration) SetParameters(params map[string]any) error
- func (mg *LicenseConfiguration) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *LicenseConfiguration) SetProviderReference(r *xpv1.Reference)
- func (mg *LicenseConfiguration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *LicenseConfiguration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type LicenseConfigurationList
- type LicenseConfigurationObservation
- type LicenseConfigurationParameters
- type LicenseConfigurationSpec
- type LicenseConfigurationStatus
Constants ¶
const ( CRDGroup = "licensemanager.aws.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( Association_Kind = "Association" Association_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Association_Kind}.String() Association_KindAPIVersion = Association_Kind + "." + CRDGroupVersion.String() Association_GroupVersionKind = CRDGroupVersion.WithKind(Association_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 )
var ( LicenseConfiguration_Kind = "LicenseConfiguration" LicenseConfiguration_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: LicenseConfiguration_Kind}.String() LicenseConfiguration_KindAPIVersion = LicenseConfiguration_Kind + "." + CRDGroupVersion.String() LicenseConfiguration_GroupVersionKind = CRDGroupVersion.WithKind(LicenseConfiguration_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type Association ¶
type Association struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec AssociationSpec `json:"spec"`
Status AssociationStatus `json:"status,omitempty"`
}
Association is the Schema for the Associations API. Provides a License Manager association resource. +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,aws}
func (*Association) DeepCopy ¶
func (in *Association) DeepCopy() *Association
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Association.
func (*Association) DeepCopyInto ¶
func (in *Association) DeepCopyInto(out *Association)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Association) DeepCopyObject ¶
func (in *Association) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Association) GetCondition ¶
func (mg *Association) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Association.
func (*Association) GetConnectionDetailsMapping ¶
func (tr *Association) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Association
func (*Association) GetDeletionPolicy ¶
func (mg *Association) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Association.
func (*Association) GetID ¶
func (tr *Association) GetID() string
GetID returns ID of underlying Terraform resource of this Association
func (*Association) GetManagementPolicy ¶
func (mg *Association) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this Association.
func (*Association) GetObservation ¶
func (tr *Association) GetObservation() (map[string]any, error)
GetObservation of this Association
func (*Association) GetParameters ¶
func (tr *Association) GetParameters() (map[string]any, error)
GetParameters of this Association
func (*Association) GetProviderConfigReference ¶
func (mg *Association) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Association.
func (*Association) GetProviderReference ¶
func (mg *Association) GetProviderReference() *xpv1.Reference
GetProviderReference of this Association. Deprecated: Use GetProviderConfigReference.
func (*Association) GetPublishConnectionDetailsTo ¶
func (mg *Association) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Association.
func (*Association) GetTerraformResourceType ¶
func (mg *Association) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Association
func (*Association) GetTerraformSchemaVersion ¶
func (tr *Association) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Association) GetWriteConnectionSecretToReference ¶
func (mg *Association) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Association.
func (*Association) LateInitialize ¶
func (tr *Association) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Association using its observed tfState. returns True if there are any spec changes for the resource.
func (*Association) ResolveReferences ¶
ResolveReferences of this Association.
func (*Association) SetConditions ¶
func (mg *Association) SetConditions(c ...xpv1.Condition)
SetConditions of this Association.
func (*Association) SetDeletionPolicy ¶
func (mg *Association) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Association.
func (*Association) SetManagementPolicy ¶
func (mg *Association) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this Association.
func (*Association) SetObservation ¶
func (tr *Association) SetObservation(obs map[string]any) error
SetObservation for this Association
func (*Association) SetParameters ¶
func (tr *Association) SetParameters(params map[string]any) error
SetParameters for this Association
func (*Association) SetProviderConfigReference ¶
func (mg *Association) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Association.
func (*Association) SetProviderReference ¶
func (mg *Association) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this Association. Deprecated: Use SetProviderConfigReference.
func (*Association) SetPublishConnectionDetailsTo ¶
func (mg *Association) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Association.
func (*Association) SetWriteConnectionSecretToReference ¶
func (mg *Association) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Association.
type AssociationList ¶
type AssociationList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []Association `json:"items"`
}
AssociationList contains a list of Associations
func (*AssociationList) DeepCopy ¶
func (in *AssociationList) DeepCopy() *AssociationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationList.
func (*AssociationList) DeepCopyInto ¶
func (in *AssociationList) DeepCopyInto(out *AssociationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AssociationList) DeepCopyObject ¶
func (in *AssociationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*AssociationList) GetItems ¶
func (l *AssociationList) GetItems() []resource.Managed
GetItems of this AssociationList.
type AssociationObservation ¶
type AssociationObservation struct {
// The license configuration ARN.
ID *string `json:"id,omitempty" tf:"id,omitempty"`
// ARN of the license configuration.
LicenseConfigurationArn *string `json:"licenseConfigurationArn,omitempty" tf:"license_configuration_arn,omitempty"`
// ARN of the resource associated with the license configuration.
ResourceArn *string `json:"resourceArn,omitempty" tf:"resource_arn,omitempty"`
}
func (*AssociationObservation) DeepCopy ¶
func (in *AssociationObservation) DeepCopy() *AssociationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationObservation.
func (*AssociationObservation) DeepCopyInto ¶
func (in *AssociationObservation) DeepCopyInto(out *AssociationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationParameters ¶
type AssociationParameters struct {
// ARN of the license configuration.
// +crossplane:generate:reference:type=LicenseConfiguration
// +crossplane:generate:reference:extractor=github.com/spirosco/upbound-provider-aws/config/common.ARNExtractor()
// +kubebuilder:validation:Optional
LicenseConfigurationArn *string `json:"licenseConfigurationArn,omitempty" tf:"license_configuration_arn,omitempty"`
// Reference to a LicenseConfiguration to populate licenseConfigurationArn.
// +kubebuilder:validation:Optional
LicenseConfigurationArnRef *v1.Reference `json:"licenseConfigurationArnRef,omitempty" tf:"-"`
// Selector for a LicenseConfiguration to populate licenseConfigurationArn.
// +kubebuilder:validation:Optional
LicenseConfigurationArnSelector *v1.Selector `json:"licenseConfigurationArnSelector,omitempty" tf:"-"`
// Region is the region you'd like your resource to be created in.
// +upjet:crd:field:TFTag=-
// +kubebuilder:validation:Required
Region *string `json:"region" tf:"-"`
// ARN of the resource associated with the license configuration.
// +crossplane:generate:reference:type=github.com/spirosco/upbound-provider-aws/apis/ec2/v1beta1.Instance
// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
// +kubebuilder:validation:Optional
ResourceArn *string `json:"resourceArn,omitempty" tf:"resource_arn,omitempty"`
// Reference to a Instance in ec2 to populate resourceArn.
// +kubebuilder:validation:Optional
ResourceArnRef *v1.Reference `json:"resourceArnRef,omitempty" tf:"-"`
// Selector for a Instance in ec2 to populate resourceArn.
// +kubebuilder:validation:Optional
ResourceArnSelector *v1.Selector `json:"resourceArnSelector,omitempty" tf:"-"`
}
func (*AssociationParameters) DeepCopy ¶
func (in *AssociationParameters) DeepCopy() *AssociationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationParameters.
func (*AssociationParameters) DeepCopyInto ¶
func (in *AssociationParameters) DeepCopyInto(out *AssociationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationSpec ¶
type AssociationSpec struct {
v1.ResourceSpec `json:",inline"`
ForProvider AssociationParameters `json:"forProvider"`
}
AssociationSpec defines the desired state of Association
func (*AssociationSpec) DeepCopy ¶
func (in *AssociationSpec) DeepCopy() *AssociationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationSpec.
func (*AssociationSpec) DeepCopyInto ¶
func (in *AssociationSpec) DeepCopyInto(out *AssociationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AssociationStatus ¶
type AssociationStatus struct {
v1.ResourceStatus `json:",inline"`
AtProvider AssociationObservation `json:"atProvider,omitempty"`
}
AssociationStatus defines the observed state of Association.
func (*AssociationStatus) DeepCopy ¶
func (in *AssociationStatus) DeepCopy() *AssociationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssociationStatus.
func (*AssociationStatus) DeepCopyInto ¶
func (in *AssociationStatus) DeepCopyInto(out *AssociationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LicenseConfiguration ¶
type LicenseConfiguration struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.licenseCountingType)",message="licenseCountingType is a required parameter"
// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.name)",message="name is a required parameter"
Spec LicenseConfigurationSpec `json:"spec"`
Status LicenseConfigurationStatus `json:"status,omitempty"`
}
LicenseConfiguration is the Schema for the LicenseConfigurations API. Provides a License Manager license configuration resource. +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,aws}
func (*LicenseConfiguration) DeepCopy ¶
func (in *LicenseConfiguration) DeepCopy() *LicenseConfiguration
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfiguration.
func (*LicenseConfiguration) DeepCopyInto ¶
func (in *LicenseConfiguration) DeepCopyInto(out *LicenseConfiguration)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LicenseConfiguration) DeepCopyObject ¶
func (in *LicenseConfiguration) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LicenseConfiguration) GetCondition ¶
func (mg *LicenseConfiguration) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this LicenseConfiguration.
func (*LicenseConfiguration) GetConnectionDetailsMapping ¶
func (tr *LicenseConfiguration) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this LicenseConfiguration
func (*LicenseConfiguration) GetDeletionPolicy ¶
func (mg *LicenseConfiguration) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this LicenseConfiguration.
func (*LicenseConfiguration) GetID ¶
func (tr *LicenseConfiguration) GetID() string
GetID returns ID of underlying Terraform resource of this LicenseConfiguration
func (*LicenseConfiguration) GetManagementPolicy ¶
func (mg *LicenseConfiguration) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this LicenseConfiguration.
func (*LicenseConfiguration) GetObservation ¶
func (tr *LicenseConfiguration) GetObservation() (map[string]any, error)
GetObservation of this LicenseConfiguration
func (*LicenseConfiguration) GetParameters ¶
func (tr *LicenseConfiguration) GetParameters() (map[string]any, error)
GetParameters of this LicenseConfiguration
func (*LicenseConfiguration) GetProviderConfigReference ¶
func (mg *LicenseConfiguration) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this LicenseConfiguration.
func (*LicenseConfiguration) GetProviderReference ¶
func (mg *LicenseConfiguration) GetProviderReference() *xpv1.Reference
GetProviderReference of this LicenseConfiguration. Deprecated: Use GetProviderConfigReference.
func (*LicenseConfiguration) GetPublishConnectionDetailsTo ¶
func (mg *LicenseConfiguration) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this LicenseConfiguration.
func (*LicenseConfiguration) GetTerraformResourceType ¶
func (mg *LicenseConfiguration) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this LicenseConfiguration
func (*LicenseConfiguration) GetTerraformSchemaVersion ¶
func (tr *LicenseConfiguration) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*LicenseConfiguration) GetWriteConnectionSecretToReference ¶
func (mg *LicenseConfiguration) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this LicenseConfiguration.
func (*LicenseConfiguration) LateInitialize ¶
func (tr *LicenseConfiguration) LateInitialize(attrs []byte) (bool, error)
LateInitialize this LicenseConfiguration using its observed tfState. returns True if there are any spec changes for the resource.
func (*LicenseConfiguration) SetConditions ¶
func (mg *LicenseConfiguration) SetConditions(c ...xpv1.Condition)
SetConditions of this LicenseConfiguration.
func (*LicenseConfiguration) SetDeletionPolicy ¶
func (mg *LicenseConfiguration) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this LicenseConfiguration.
func (*LicenseConfiguration) SetManagementPolicy ¶
func (mg *LicenseConfiguration) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this LicenseConfiguration.
func (*LicenseConfiguration) SetObservation ¶
func (tr *LicenseConfiguration) SetObservation(obs map[string]any) error
SetObservation for this LicenseConfiguration
func (*LicenseConfiguration) SetParameters ¶
func (tr *LicenseConfiguration) SetParameters(params map[string]any) error
SetParameters for this LicenseConfiguration
func (*LicenseConfiguration) SetProviderConfigReference ¶
func (mg *LicenseConfiguration) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this LicenseConfiguration.
func (*LicenseConfiguration) SetProviderReference ¶
func (mg *LicenseConfiguration) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this LicenseConfiguration. Deprecated: Use SetProviderConfigReference.
func (*LicenseConfiguration) SetPublishConnectionDetailsTo ¶
func (mg *LicenseConfiguration) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this LicenseConfiguration.
func (*LicenseConfiguration) SetWriteConnectionSecretToReference ¶
func (mg *LicenseConfiguration) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this LicenseConfiguration.
type LicenseConfigurationList ¶
type LicenseConfigurationList struct {
metav1.TypeMeta `json:",inline"`
metav1.ListMeta `json:"metadata,omitempty"`
Items []LicenseConfiguration `json:"items"`
}
LicenseConfigurationList contains a list of LicenseConfigurations
func (*LicenseConfigurationList) DeepCopy ¶
func (in *LicenseConfigurationList) DeepCopy() *LicenseConfigurationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfigurationList.
func (*LicenseConfigurationList) DeepCopyInto ¶
func (in *LicenseConfigurationList) DeepCopyInto(out *LicenseConfigurationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LicenseConfigurationList) DeepCopyObject ¶
func (in *LicenseConfigurationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LicenseConfigurationList) GetItems ¶
func (l *LicenseConfigurationList) GetItems() []resource.Managed
GetItems of this LicenseConfigurationList.
type LicenseConfigurationObservation ¶
type LicenseConfigurationObservation struct {
// The license configuration ARN.
Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`
// Description of the license configuration.
Description *string `json:"description,omitempty" tf:"description,omitempty"`
// The license configuration ARN.
ID *string `json:"id,omitempty" tf:"id,omitempty"`
// Number of licenses managed by the license configuration.
LicenseCount *float64 `json:"licenseCount,omitempty" tf:"license_count,omitempty"`
// Sets the number of available licenses as a hard limit.
LicenseCountHardLimit *bool `json:"licenseCountHardLimit,omitempty" tf:"license_count_hard_limit,omitempty"`
// Dimension to use to track license inventory. Specify either vCPU, Instance, Core or Socket.
LicenseCountingType *string `json:"licenseCountingType,omitempty" tf:"license_counting_type,omitempty"`
// Array of configured License Manager rules.
LicenseRules []*string `json:"licenseRules,omitempty" tf:"license_rules,omitempty"`
// Name of the license configuration.
Name *string `json:"name,omitempty" tf:"name,omitempty"`
// Account ID of the owner of the license configuration.
OwnerAccountID *string `json:"ownerAccountId,omitempty" tf:"owner_account_id,omitempty"`
// Key-value map of resource tags.
Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`
}
func (*LicenseConfigurationObservation) DeepCopy ¶
func (in *LicenseConfigurationObservation) DeepCopy() *LicenseConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfigurationObservation.
func (*LicenseConfigurationObservation) DeepCopyInto ¶
func (in *LicenseConfigurationObservation) DeepCopyInto(out *LicenseConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LicenseConfigurationParameters ¶
type LicenseConfigurationParameters struct {
// Description of the license configuration.
// +kubebuilder:validation:Optional
Description *string `json:"description,omitempty" tf:"description,omitempty"`
// Number of licenses managed by the license configuration.
// +kubebuilder:validation:Optional
LicenseCount *float64 `json:"licenseCount,omitempty" tf:"license_count,omitempty"`
// Sets the number of available licenses as a hard limit.
// +kubebuilder:validation:Optional
LicenseCountHardLimit *bool `json:"licenseCountHardLimit,omitempty" tf:"license_count_hard_limit,omitempty"`
// Dimension to use to track license inventory. Specify either vCPU, Instance, Core or Socket.
// +kubebuilder:validation:Optional
LicenseCountingType *string `json:"licenseCountingType,omitempty" tf:"license_counting_type,omitempty"`
// Array of configured License Manager rules.
// +kubebuilder:validation:Optional
LicenseRules []*string `json:"licenseRules,omitempty" tf:"license_rules,omitempty"`
// Name of the license configuration.
// +kubebuilder:validation:Optional
Name *string `json:"name,omitempty" tf:"name,omitempty"`
// Region is the region you'd like your resource to be created in.
// +upjet:crd:field:TFTag=-
// +kubebuilder:validation:Required
Region *string `json:"region" tf:"-"`
// Key-value map of resource tags.
// +kubebuilder:validation:Optional
Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`
}
func (*LicenseConfigurationParameters) DeepCopy ¶
func (in *LicenseConfigurationParameters) DeepCopy() *LicenseConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfigurationParameters.
func (*LicenseConfigurationParameters) DeepCopyInto ¶
func (in *LicenseConfigurationParameters) DeepCopyInto(out *LicenseConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LicenseConfigurationSpec ¶
type LicenseConfigurationSpec struct {
v1.ResourceSpec `json:",inline"`
ForProvider LicenseConfigurationParameters `json:"forProvider"`
}
LicenseConfigurationSpec defines the desired state of LicenseConfiguration
func (*LicenseConfigurationSpec) DeepCopy ¶
func (in *LicenseConfigurationSpec) DeepCopy() *LicenseConfigurationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfigurationSpec.
func (*LicenseConfigurationSpec) DeepCopyInto ¶
func (in *LicenseConfigurationSpec) DeepCopyInto(out *LicenseConfigurationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LicenseConfigurationStatus ¶
type LicenseConfigurationStatus struct {
v1.ResourceStatus `json:",inline"`
AtProvider LicenseConfigurationObservation `json:"atProvider,omitempty"`
}
LicenseConfigurationStatus defines the observed state of LicenseConfiguration.
func (*LicenseConfigurationStatus) DeepCopy ¶
func (in *LicenseConfigurationStatus) DeepCopy() *LicenseConfigurationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LicenseConfigurationStatus.
func (*LicenseConfigurationStatus) DeepCopyInto ¶
func (in *LicenseConfigurationStatus) DeepCopyInto(out *LicenseConfigurationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.