Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=route53recoveryreadiness.aws.upbound.io +versionName=v1beta2
Index ¶
- Constants
- Variables
- type DNSTargetResourceInitParameters
- type DNSTargetResourceObservation
- type DNSTargetResourceParameters
- type NlbResourceInitParameters
- type NlbResourceObservation
- type NlbResourceParameters
- type R53ResourceInitParameters
- type R53ResourceObservation
- type R53ResourceParameters
- type ResourceSet
- func (in *ResourceSet) DeepCopy() *ResourceSet
- func (in *ResourceSet) DeepCopyInto(out *ResourceSet)
- func (in *ResourceSet) DeepCopyObject() runtime.Object
- func (mg *ResourceSet) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ResourceSet) GetConnectionDetailsMapping() map[string]string
- func (mg *ResourceSet) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ResourceSet) GetID() string
- func (tr *ResourceSet) GetInitParameters() (map[string]any, error)
- func (mg *ResourceSet) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *ResourceSet) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *ResourceSet) GetObservation() (map[string]any, error)
- func (tr *ResourceSet) GetParameters() (map[string]any, error)
- func (mg *ResourceSet) GetProviderConfigReference() *xpv1.Reference
- func (mg *ResourceSet) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ResourceSet) GetTerraformResourceType() string
- func (tr *ResourceSet) GetTerraformSchemaVersion() int
- func (mg *ResourceSet) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ResourceSet) Hub()
- func (tr *ResourceSet) LateInitialize(attrs []byte) (bool, error)
- func (mg *ResourceSet) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *ResourceSet) SetConditions(c ...xpv1.Condition)
- func (mg *ResourceSet) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *ResourceSet) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *ResourceSet) SetObservation(obs map[string]any) error
- func (tr *ResourceSet) SetParameters(params map[string]any) error
- func (mg *ResourceSet) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ResourceSet) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ResourceSet) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ResourceSetInitParameters
- type ResourceSetList
- type ResourceSetObservation
- type ResourceSetParameters
- type ResourceSetSpec
- type ResourceSetStatus
- type ResourcesInitParameters
- type ResourcesObservation
- type ResourcesParameters
- type TargetResourceInitParameters
- type TargetResourceObservation
- type TargetResourceParameters
Constants ¶
const ( CRDGroup = "route53recoveryreadiness.aws.upbound.io" CRDVersion = "v1beta2" )
Package type metadata.
Variables ¶
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 ( ResourceSet_Kind = "ResourceSet" ResourceSet_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ResourceSet_Kind}.String() ResourceSet_KindAPIVersion = ResourceSet_Kind + "." + CRDGroupVersion.String() ResourceSet_GroupVersionKind = CRDGroupVersion.WithKind(ResourceSet_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type DNSTargetResourceInitParameters ¶
type DNSTargetResourceInitParameters struct { // DNS Name that acts as the ingress point to a portion of application. DomainName *string `json:"domainName,omitempty" tf:"domain_name,omitempty"` // Hosted Zone ARN that contains the DNS record with the provided name of target resource. HostedZoneArn *string `json:"hostedZoneArn,omitempty" tf:"hosted_zone_arn,omitempty"` // Route53 record set id to uniquely identify a record given a domain_name and a record_type. RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` // Type of DNS Record of target resource. RecordType *string `json:"recordType,omitempty" tf:"record_type,omitempty"` // Target resource the R53 record specified with the above params points to. TargetResource *TargetResourceInitParameters `json:"targetResource,omitempty" tf:"target_resource,omitempty"` }
func (*DNSTargetResourceInitParameters) DeepCopy ¶
func (in *DNSTargetResourceInitParameters) DeepCopy() *DNSTargetResourceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSTargetResourceInitParameters.
func (*DNSTargetResourceInitParameters) DeepCopyInto ¶
func (in *DNSTargetResourceInitParameters) DeepCopyInto(out *DNSTargetResourceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSTargetResourceObservation ¶
type DNSTargetResourceObservation struct { // DNS Name that acts as the ingress point to a portion of application. DomainName *string `json:"domainName,omitempty" tf:"domain_name,omitempty"` // Hosted Zone ARN that contains the DNS record with the provided name of target resource. HostedZoneArn *string `json:"hostedZoneArn,omitempty" tf:"hosted_zone_arn,omitempty"` // Route53 record set id to uniquely identify a record given a domain_name and a record_type. RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` // Type of DNS Record of target resource. RecordType *string `json:"recordType,omitempty" tf:"record_type,omitempty"` // Target resource the R53 record specified with the above params points to. TargetResource *TargetResourceObservation `json:"targetResource,omitempty" tf:"target_resource,omitempty"` }
func (*DNSTargetResourceObservation) DeepCopy ¶
func (in *DNSTargetResourceObservation) DeepCopy() *DNSTargetResourceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSTargetResourceObservation.
func (*DNSTargetResourceObservation) DeepCopyInto ¶
func (in *DNSTargetResourceObservation) DeepCopyInto(out *DNSTargetResourceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSTargetResourceParameters ¶
type DNSTargetResourceParameters struct { // DNS Name that acts as the ingress point to a portion of application. // +kubebuilder:validation:Optional DomainName *string `json:"domainName" tf:"domain_name,omitempty"` // Hosted Zone ARN that contains the DNS record with the provided name of target resource. // +kubebuilder:validation:Optional HostedZoneArn *string `json:"hostedZoneArn,omitempty" tf:"hosted_zone_arn,omitempty"` // Route53 record set id to uniquely identify a record given a domain_name and a record_type. // +kubebuilder:validation:Optional RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` // Type of DNS Record of target resource. // +kubebuilder:validation:Optional RecordType *string `json:"recordType,omitempty" tf:"record_type,omitempty"` // Target resource the R53 record specified with the above params points to. // +kubebuilder:validation:Optional TargetResource *TargetResourceParameters `json:"targetResource,omitempty" tf:"target_resource,omitempty"` }
func (*DNSTargetResourceParameters) DeepCopy ¶
func (in *DNSTargetResourceParameters) DeepCopy() *DNSTargetResourceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSTargetResourceParameters.
func (*DNSTargetResourceParameters) DeepCopyInto ¶
func (in *DNSTargetResourceParameters) DeepCopyInto(out *DNSTargetResourceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NlbResourceInitParameters ¶
type NlbResourceInitParameters struct { // NLB resource ARN. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` }
func (*NlbResourceInitParameters) DeepCopy ¶
func (in *NlbResourceInitParameters) DeepCopy() *NlbResourceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NlbResourceInitParameters.
func (*NlbResourceInitParameters) DeepCopyInto ¶
func (in *NlbResourceInitParameters) DeepCopyInto(out *NlbResourceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NlbResourceObservation ¶
type NlbResourceObservation struct { // NLB resource ARN. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` }
func (*NlbResourceObservation) DeepCopy ¶
func (in *NlbResourceObservation) DeepCopy() *NlbResourceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NlbResourceObservation.
func (*NlbResourceObservation) DeepCopyInto ¶
func (in *NlbResourceObservation) DeepCopyInto(out *NlbResourceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NlbResourceParameters ¶
type NlbResourceParameters struct { // NLB resource ARN. // +kubebuilder:validation:Optional Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` }
func (*NlbResourceParameters) DeepCopy ¶
func (in *NlbResourceParameters) DeepCopy() *NlbResourceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NlbResourceParameters.
func (*NlbResourceParameters) DeepCopyInto ¶
func (in *NlbResourceParameters) DeepCopyInto(out *NlbResourceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type R53ResourceInitParameters ¶
type R53ResourceInitParameters struct { // Domain name that is targeted. DomainName *string `json:"domainName,omitempty" tf:"domain_name,omitempty"` // Resource record set ID that is targeted. RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` }
func (*R53ResourceInitParameters) DeepCopy ¶
func (in *R53ResourceInitParameters) DeepCopy() *R53ResourceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new R53ResourceInitParameters.
func (*R53ResourceInitParameters) DeepCopyInto ¶
func (in *R53ResourceInitParameters) DeepCopyInto(out *R53ResourceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type R53ResourceObservation ¶
type R53ResourceObservation struct { // Domain name that is targeted. DomainName *string `json:"domainName,omitempty" tf:"domain_name,omitempty"` // Resource record set ID that is targeted. RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` }
func (*R53ResourceObservation) DeepCopy ¶
func (in *R53ResourceObservation) DeepCopy() *R53ResourceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new R53ResourceObservation.
func (*R53ResourceObservation) DeepCopyInto ¶
func (in *R53ResourceObservation) DeepCopyInto(out *R53ResourceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type R53ResourceParameters ¶
type R53ResourceParameters struct { // Domain name that is targeted. // +kubebuilder:validation:Optional DomainName *string `json:"domainName,omitempty" tf:"domain_name,omitempty"` // Resource record set ID that is targeted. // +kubebuilder:validation:Optional RecordSetID *string `json:"recordSetId,omitempty" tf:"record_set_id,omitempty"` }
func (*R53ResourceParameters) DeepCopy ¶
func (in *R53ResourceParameters) DeepCopy() *R53ResourceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new R53ResourceParameters.
func (*R53ResourceParameters) DeepCopyInto ¶
func (in *R53ResourceParameters) DeepCopyInto(out *R53ResourceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourceSet ¶
type ResourceSet struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.resourceSetType) || (has(self.initProvider) && has(self.initProvider.resourceSetType))",message="spec.forProvider.resourceSetType is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.resources) || (has(self.initProvider) && has(self.initProvider.resources))",message="spec.forProvider.resources is a required parameter" Spec ResourceSetSpec `json:"spec"` Status ResourceSetStatus `json:"status,omitempty"` }
ResourceSet is the Schema for the ResourceSets API. Provides an AWS Route 53 Recovery Readiness Resource Set +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*ResourceSet) DeepCopy ¶
func (in *ResourceSet) DeepCopy() *ResourceSet
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSet.
func (*ResourceSet) DeepCopyInto ¶
func (in *ResourceSet) DeepCopyInto(out *ResourceSet)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ResourceSet) DeepCopyObject ¶
func (in *ResourceSet) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ResourceSet) GetCondition ¶
func (mg *ResourceSet) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ResourceSet.
func (*ResourceSet) GetConnectionDetailsMapping ¶
func (tr *ResourceSet) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this ResourceSet
func (*ResourceSet) GetDeletionPolicy ¶
func (mg *ResourceSet) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ResourceSet.
func (*ResourceSet) GetID ¶
func (tr *ResourceSet) GetID() string
GetID returns ID of underlying Terraform resource of this ResourceSet
func (*ResourceSet) GetInitParameters ¶
func (tr *ResourceSet) GetInitParameters() (map[string]any, error)
GetInitParameters of this ResourceSet
func (*ResourceSet) GetManagementPolicies ¶
func (mg *ResourceSet) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this ResourceSet.
func (*ResourceSet) GetMergedParameters ¶
func (tr *ResourceSet) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this ResourceSet
func (*ResourceSet) GetObservation ¶
func (tr *ResourceSet) GetObservation() (map[string]any, error)
GetObservation of this ResourceSet
func (*ResourceSet) GetParameters ¶
func (tr *ResourceSet) GetParameters() (map[string]any, error)
GetParameters of this ResourceSet
func (*ResourceSet) GetProviderConfigReference ¶
func (mg *ResourceSet) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ResourceSet.
func (*ResourceSet) GetPublishConnectionDetailsTo ¶
func (mg *ResourceSet) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ResourceSet.
func (*ResourceSet) GetTerraformResourceType ¶
func (mg *ResourceSet) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this ResourceSet
func (*ResourceSet) GetTerraformSchemaVersion ¶
func (tr *ResourceSet) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ResourceSet) GetWriteConnectionSecretToReference ¶
func (mg *ResourceSet) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ResourceSet.
func (*ResourceSet) LateInitialize ¶
func (tr *ResourceSet) LateInitialize(attrs []byte) (bool, error)
LateInitialize this ResourceSet using its observed tfState. returns True if there are any spec changes for the resource.
func (*ResourceSet) ResolveReferences ¶
func (*ResourceSet) SetConditions ¶
func (mg *ResourceSet) SetConditions(c ...xpv1.Condition)
SetConditions of this ResourceSet.
func (*ResourceSet) SetDeletionPolicy ¶
func (mg *ResourceSet) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ResourceSet.
func (*ResourceSet) SetManagementPolicies ¶
func (mg *ResourceSet) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this ResourceSet.
func (*ResourceSet) SetObservation ¶
func (tr *ResourceSet) SetObservation(obs map[string]any) error
SetObservation for this ResourceSet
func (*ResourceSet) SetParameters ¶
func (tr *ResourceSet) SetParameters(params map[string]any) error
SetParameters for this ResourceSet
func (*ResourceSet) SetProviderConfigReference ¶
func (mg *ResourceSet) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ResourceSet.
func (*ResourceSet) SetPublishConnectionDetailsTo ¶
func (mg *ResourceSet) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ResourceSet.
func (*ResourceSet) SetWriteConnectionSecretToReference ¶
func (mg *ResourceSet) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ResourceSet.
type ResourceSetInitParameters ¶
type ResourceSetInitParameters struct { // Type of the resources in the resource set. ResourceSetType *string `json:"resourceSetType,omitempty" tf:"resource_set_type,omitempty"` // List of resources to add to this resource set. See below. Resources []ResourcesInitParameters `json:"resources,omitempty" tf:"resources,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ResourceSetInitParameters) DeepCopy ¶
func (in *ResourceSetInitParameters) DeepCopy() *ResourceSetInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetInitParameters.
func (*ResourceSetInitParameters) DeepCopyInto ¶
func (in *ResourceSetInitParameters) DeepCopyInto(out *ResourceSetInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourceSetList ¶
type ResourceSetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ResourceSet `json:"items"` }
ResourceSetList contains a list of ResourceSets
func (*ResourceSetList) DeepCopy ¶
func (in *ResourceSetList) DeepCopy() *ResourceSetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetList.
func (*ResourceSetList) DeepCopyInto ¶
func (in *ResourceSetList) DeepCopyInto(out *ResourceSetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ResourceSetList) DeepCopyObject ¶
func (in *ResourceSetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ResourceSetList) GetItems ¶
func (l *ResourceSetList) GetItems() []resource.Managed
GetItems of this ResourceSetList.
type ResourceSetObservation ¶
type ResourceSetObservation struct { // ARN of the resource set Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // Type of the resources in the resource set. ResourceSetType *string `json:"resourceSetType,omitempty" tf:"resource_set_type,omitempty"` // List of resources to add to this resource set. See below. Resources []ResourcesObservation `json:"resources,omitempty" tf:"resources,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. // +mapType=granular TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` }
func (*ResourceSetObservation) DeepCopy ¶
func (in *ResourceSetObservation) DeepCopy() *ResourceSetObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetObservation.
func (*ResourceSetObservation) DeepCopyInto ¶
func (in *ResourceSetObservation) DeepCopyInto(out *ResourceSetObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourceSetParameters ¶
type ResourceSetParameters struct { // 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:"-"` // Type of the resources in the resource set. // +kubebuilder:validation:Optional ResourceSetType *string `json:"resourceSetType,omitempty" tf:"resource_set_type,omitempty"` // List of resources to add to this resource set. See below. // +kubebuilder:validation:Optional Resources []ResourcesParameters `json:"resources,omitempty" tf:"resources,omitempty"` // Key-value map of resource tags. // +kubebuilder:validation:Optional // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ResourceSetParameters) DeepCopy ¶
func (in *ResourceSetParameters) DeepCopy() *ResourceSetParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetParameters.
func (*ResourceSetParameters) DeepCopyInto ¶
func (in *ResourceSetParameters) DeepCopyInto(out *ResourceSetParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourceSetSpec ¶
type ResourceSetSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ResourceSetParameters `json:"forProvider"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider ResourceSetInitParameters `json:"initProvider,omitempty"` }
ResourceSetSpec defines the desired state of ResourceSet
func (*ResourceSetSpec) DeepCopy ¶
func (in *ResourceSetSpec) DeepCopy() *ResourceSetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetSpec.
func (*ResourceSetSpec) DeepCopyInto ¶
func (in *ResourceSetSpec) DeepCopyInto(out *ResourceSetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourceSetStatus ¶
type ResourceSetStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ResourceSetObservation `json:"atProvider,omitempty"` }
ResourceSetStatus defines the observed state of ResourceSet.
func (*ResourceSetStatus) DeepCopy ¶
func (in *ResourceSetStatus) DeepCopy() *ResourceSetStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceSetStatus.
func (*ResourceSetStatus) DeepCopyInto ¶
func (in *ResourceSetStatus) DeepCopyInto(out *ResourceSetStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesInitParameters ¶
type ResourcesInitParameters struct { // Component for DNS/Routing Control Readiness Checks. DNSTargetResource *DNSTargetResourceInitParameters `json:"dnsTargetResource,omitempty" tf:"dns_target_resource,omitempty"` // Recovery group ARN or cell ARN that contains this resource set. ReadinessScopes []*string `json:"readinessScopes,omitempty" tf:"readiness_scopes,omitempty"` // ARN of the resource. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/cloudwatch/v1beta2.MetricAlarm // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("arn",true) ResourceArn *string `json:"resourceArn,omitempty" tf:"resource_arn,omitempty"` // Reference to a MetricAlarm in cloudwatch to populate resourceArn. // +kubebuilder:validation:Optional ResourceArnRef *v1.Reference `json:"resourceArnRef,omitempty" tf:"-"` // Selector for a MetricAlarm in cloudwatch to populate resourceArn. // +kubebuilder:validation:Optional ResourceArnSelector *v1.Selector `json:"resourceArnSelector,omitempty" tf:"-"` }
func (*ResourcesInitParameters) DeepCopy ¶
func (in *ResourcesInitParameters) DeepCopy() *ResourcesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesInitParameters.
func (*ResourcesInitParameters) DeepCopyInto ¶
func (in *ResourcesInitParameters) DeepCopyInto(out *ResourcesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesObservation ¶
type ResourcesObservation struct { // Unique identified for DNS Target Resources, use for readiness checks. ComponentID *string `json:"componentId,omitempty" tf:"component_id,omitempty"` // Component for DNS/Routing Control Readiness Checks. DNSTargetResource *DNSTargetResourceObservation `json:"dnsTargetResource,omitempty" tf:"dns_target_resource,omitempty"` // Recovery group ARN or cell ARN that contains this resource set. ReadinessScopes []*string `json:"readinessScopes,omitempty" tf:"readiness_scopes,omitempty"` // ARN of the resource. ResourceArn *string `json:"resourceArn,omitempty" tf:"resource_arn,omitempty"` }
func (*ResourcesObservation) DeepCopy ¶
func (in *ResourcesObservation) DeepCopy() *ResourcesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesObservation.
func (*ResourcesObservation) DeepCopyInto ¶
func (in *ResourcesObservation) DeepCopyInto(out *ResourcesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesParameters ¶
type ResourcesParameters struct { // Component for DNS/Routing Control Readiness Checks. // +kubebuilder:validation:Optional DNSTargetResource *DNSTargetResourceParameters `json:"dnsTargetResource,omitempty" tf:"dns_target_resource,omitempty"` // Recovery group ARN or cell ARN that contains this resource set. // +kubebuilder:validation:Optional ReadinessScopes []*string `json:"readinessScopes,omitempty" tf:"readiness_scopes,omitempty"` // ARN of the resource. // +crossplane:generate:reference:type=github.com/upbound/provider-aws/apis/cloudwatch/v1beta2.MetricAlarm // +crossplane:generate:reference:extractor=github.com/crossplane/upjet/pkg/resource.ExtractParamPath("arn",true) // +kubebuilder:validation:Optional ResourceArn *string `json:"resourceArn,omitempty" tf:"resource_arn,omitempty"` // Reference to a MetricAlarm in cloudwatch to populate resourceArn. // +kubebuilder:validation:Optional ResourceArnRef *v1.Reference `json:"resourceArnRef,omitempty" tf:"-"` // Selector for a MetricAlarm in cloudwatch to populate resourceArn. // +kubebuilder:validation:Optional ResourceArnSelector *v1.Selector `json:"resourceArnSelector,omitempty" tf:"-"` }
func (*ResourcesParameters) DeepCopy ¶
func (in *ResourcesParameters) DeepCopy() *ResourcesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesParameters.
func (*ResourcesParameters) DeepCopyInto ¶
func (in *ResourcesParameters) DeepCopyInto(out *ResourcesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TargetResourceInitParameters ¶
type TargetResourceInitParameters struct { // NLB resource a DNS Target Resource points to. Required if r53_resource is not set. NlbResource *NlbResourceInitParameters `json:"nlbResource,omitempty" tf:"nlb_resource,omitempty"` // Route53 resource a DNS Target Resource record points to. R53Resource *R53ResourceInitParameters `json:"r53Resource,omitempty" tf:"r53_resource,omitempty"` }
func (*TargetResourceInitParameters) DeepCopy ¶
func (in *TargetResourceInitParameters) DeepCopy() *TargetResourceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetResourceInitParameters.
func (*TargetResourceInitParameters) DeepCopyInto ¶
func (in *TargetResourceInitParameters) DeepCopyInto(out *TargetResourceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TargetResourceObservation ¶
type TargetResourceObservation struct { // NLB resource a DNS Target Resource points to. Required if r53_resource is not set. NlbResource *NlbResourceObservation `json:"nlbResource,omitempty" tf:"nlb_resource,omitempty"` // Route53 resource a DNS Target Resource record points to. R53Resource *R53ResourceObservation `json:"r53Resource,omitempty" tf:"r53_resource,omitempty"` }
func (*TargetResourceObservation) DeepCopy ¶
func (in *TargetResourceObservation) DeepCopy() *TargetResourceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetResourceObservation.
func (*TargetResourceObservation) DeepCopyInto ¶
func (in *TargetResourceObservation) DeepCopyInto(out *TargetResourceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TargetResourceParameters ¶
type TargetResourceParameters struct { // NLB resource a DNS Target Resource points to. Required if r53_resource is not set. // +kubebuilder:validation:Optional NlbResource *NlbResourceParameters `json:"nlbResource,omitempty" tf:"nlb_resource,omitempty"` // Route53 resource a DNS Target Resource record points to. // +kubebuilder:validation:Optional R53Resource *R53ResourceParameters `json:"r53Resource,omitempty" tf:"r53_resource,omitempty"` }
func (*TargetResourceParameters) DeepCopy ¶
func (in *TargetResourceParameters) DeepCopy() *TargetResourceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TargetResourceParameters.
func (*TargetResourceParameters) DeepCopyInto ¶
func (in *TargetResourceParameters) DeepCopyInto(out *TargetResourceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.