v1beta1

package
v0.0.0-...-274ce61 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 9, 2023 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=servicediscovery.aws.upbound.io +versionName=v1beta1

Index

Constants

View Source
const (
	CRDGroup   = "servicediscovery.aws.upbound.io"
	CRDVersion = "v1beta1"
)

Package type metadata.

Variables

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
)
View Source
var (
	HTTPNamespace_Kind             = "HTTPNamespace"
	HTTPNamespace_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: HTTPNamespace_Kind}.String()
	HTTPNamespace_KindAPIVersion   = HTTPNamespace_Kind + "." + CRDGroupVersion.String()
	HTTPNamespace_GroupVersionKind = CRDGroupVersion.WithKind(HTTPNamespace_Kind)
)

Repository type metadata.

View Source
var (
	PrivateDNSNamespace_Kind             = "PrivateDNSNamespace"
	PrivateDNSNamespace_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: PrivateDNSNamespace_Kind}.String()
	PrivateDNSNamespace_KindAPIVersion   = PrivateDNSNamespace_Kind + "." + CRDGroupVersion.String()
	PrivateDNSNamespace_GroupVersionKind = CRDGroupVersion.WithKind(PrivateDNSNamespace_Kind)
)

Repository type metadata.

View Source
var (
	PublicDNSNamespace_Kind             = "PublicDNSNamespace"
	PublicDNSNamespace_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: PublicDNSNamespace_Kind}.String()
	PublicDNSNamespace_KindAPIVersion   = PublicDNSNamespace_Kind + "." + CRDGroupVersion.String()
	PublicDNSNamespace_GroupVersionKind = CRDGroupVersion.WithKind(PublicDNSNamespace_Kind)
)

Repository type metadata.

View Source
var (
	Service_Kind             = "Service"
	Service_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: Service_Kind}.String()
	Service_KindAPIVersion   = Service_Kind + "." + CRDGroupVersion.String()
	Service_GroupVersionKind = CRDGroupVersion.WithKind(Service_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type DNSConfigObservation

type DNSConfigObservation struct {

	// An array that contains one DnsRecord object for each resource record set.
	DNSRecords []DNSRecordsObservation `json:"dnsRecords,omitempty" tf:"dns_records,omitempty"`

	// The ID of the namespace to use for DNS configuration.
	NamespaceID *string `json:"namespaceId,omitempty" tf:"namespace_id,omitempty"`

	// The routing policy that you want to apply to all records that Route 53 creates when you register an instance and specify the service. Valid Values: MULTIVALUE, WEIGHTED
	RoutingPolicy *string `json:"routingPolicy,omitempty" tf:"routing_policy,omitempty"`
}

func (*DNSConfigObservation) DeepCopy

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

func (*DNSConfigObservation) DeepCopyInto

func (in *DNSConfigObservation) DeepCopyInto(out *DNSConfigObservation)

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

type DNSConfigParameters

type DNSConfigParameters struct {

	// An array that contains one DnsRecord object for each resource record set.
	// +kubebuilder:validation:Required
	DNSRecords []DNSRecordsParameters `json:"dnsRecords" tf:"dns_records,omitempty"`

	// The ID of the namespace to use for DNS configuration.
	// +crossplane:generate:reference:type=github.com/spirosco/upbound-provider-aws/apis/servicediscovery/v1beta1.PrivateDNSNamespace
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractResourceID()
	// +kubebuilder:validation:Optional
	NamespaceID *string `json:"namespaceId,omitempty" tf:"namespace_id,omitempty"`

	// Reference to a PrivateDNSNamespace in servicediscovery to populate namespaceId.
	// +kubebuilder:validation:Optional
	NamespaceIDRef *v1.Reference `json:"namespaceIdRef,omitempty" tf:"-"`

	// Selector for a PrivateDNSNamespace in servicediscovery to populate namespaceId.
	// +kubebuilder:validation:Optional
	NamespaceIDSelector *v1.Selector `json:"namespaceIdSelector,omitempty" tf:"-"`

	// The routing policy that you want to apply to all records that Route 53 creates when you register an instance and specify the service. Valid Values: MULTIVALUE, WEIGHTED
	// +kubebuilder:validation:Optional
	RoutingPolicy *string `json:"routingPolicy,omitempty" tf:"routing_policy,omitempty"`
}

func (*DNSConfigParameters) DeepCopy

func (in *DNSConfigParameters) DeepCopy() *DNSConfigParameters

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

func (*DNSConfigParameters) DeepCopyInto

func (in *DNSConfigParameters) DeepCopyInto(out *DNSConfigParameters)

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

type DNSRecordsObservation

type DNSRecordsObservation struct {

	// The amount of time, in seconds, that you want DNS resolvers to cache the settings for this resource record set.
	TTL *float64 `json:"ttl,omitempty" tf:"ttl,omitempty"`

	// The type of the resource, which indicates the value that Amazon Route 53 returns in response to DNS queries. Valid Values: A, AAAA, SRV, CNAME
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*DNSRecordsObservation) DeepCopy

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

func (*DNSRecordsObservation) DeepCopyInto

func (in *DNSRecordsObservation) DeepCopyInto(out *DNSRecordsObservation)

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

type DNSRecordsParameters

type DNSRecordsParameters struct {

	// The amount of time, in seconds, that you want DNS resolvers to cache the settings for this resource record set.
	// +kubebuilder:validation:Required
	TTL *float64 `json:"ttl" tf:"ttl,omitempty"`

	// The type of the resource, which indicates the value that Amazon Route 53 returns in response to DNS queries. Valid Values: A, AAAA, SRV, CNAME
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*DNSRecordsParameters) DeepCopy

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

func (*DNSRecordsParameters) DeepCopyInto

func (in *DNSRecordsParameters) DeepCopyInto(out *DNSRecordsParameters)

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

type HTTPNamespace

type HTTPNamespace struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.name)",message="name is a required parameter"
	Spec   HTTPNamespaceSpec   `json:"spec"`
	Status HTTPNamespaceStatus `json:"status,omitempty"`
}

HTTPNamespace is the Schema for the HTTPNamespaces API. Provides a Service Discovery HTTP Namespace 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 (*HTTPNamespace) DeepCopy

func (in *HTTPNamespace) DeepCopy() *HTTPNamespace

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

func (*HTTPNamespace) DeepCopyInto

func (in *HTTPNamespace) DeepCopyInto(out *HTTPNamespace)

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

func (*HTTPNamespace) DeepCopyObject

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

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

func (*HTTPNamespace) GetCondition

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

GetCondition of this HTTPNamespace.

func (*HTTPNamespace) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this HTTPNamespace

func (*HTTPNamespace) GetDeletionPolicy

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

GetDeletionPolicy of this HTTPNamespace.

func (*HTTPNamespace) GetID

func (tr *HTTPNamespace) GetID() string

GetID returns ID of underlying Terraform resource of this HTTPNamespace

func (*HTTPNamespace) GetManagementPolicy

func (mg *HTTPNamespace) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this HTTPNamespace.

func (*HTTPNamespace) GetObservation

func (tr *HTTPNamespace) GetObservation() (map[string]any, error)

GetObservation of this HTTPNamespace

func (*HTTPNamespace) GetParameters

func (tr *HTTPNamespace) GetParameters() (map[string]any, error)

GetParameters of this HTTPNamespace

func (*HTTPNamespace) GetProviderConfigReference

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

GetProviderConfigReference of this HTTPNamespace.

func (*HTTPNamespace) GetProviderReference

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

GetProviderReference of this HTTPNamespace. Deprecated: Use GetProviderConfigReference.

func (*HTTPNamespace) GetPublishConnectionDetailsTo

func (mg *HTTPNamespace) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this HTTPNamespace.

func (*HTTPNamespace) GetTerraformResourceType

func (mg *HTTPNamespace) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this HTTPNamespace

func (*HTTPNamespace) GetTerraformSchemaVersion

func (tr *HTTPNamespace) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*HTTPNamespace) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this HTTPNamespace.

func (*HTTPNamespace) LateInitialize

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

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

func (*HTTPNamespace) SetConditions

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

SetConditions of this HTTPNamespace.

func (*HTTPNamespace) SetDeletionPolicy

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

SetDeletionPolicy of this HTTPNamespace.

func (*HTTPNamespace) SetManagementPolicy

func (mg *HTTPNamespace) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this HTTPNamespace.

func (*HTTPNamespace) SetObservation

func (tr *HTTPNamespace) SetObservation(obs map[string]any) error

SetObservation for this HTTPNamespace

func (*HTTPNamespace) SetParameters

func (tr *HTTPNamespace) SetParameters(params map[string]any) error

SetParameters for this HTTPNamespace

func (*HTTPNamespace) SetProviderConfigReference

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

SetProviderConfigReference of this HTTPNamespace.

func (*HTTPNamespace) SetProviderReference

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

SetProviderReference of this HTTPNamespace. Deprecated: Use SetProviderConfigReference.

func (*HTTPNamespace) SetPublishConnectionDetailsTo

func (mg *HTTPNamespace) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this HTTPNamespace.

func (*HTTPNamespace) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this HTTPNamespace.

type HTTPNamespaceList

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

HTTPNamespaceList contains a list of HTTPNamespaces

func (*HTTPNamespaceList) DeepCopy

func (in *HTTPNamespaceList) DeepCopy() *HTTPNamespaceList

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

func (*HTTPNamespaceList) DeepCopyInto

func (in *HTTPNamespaceList) DeepCopyInto(out *HTTPNamespaceList)

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

func (*HTTPNamespaceList) DeepCopyObject

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

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

func (*HTTPNamespaceList) GetItems

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

GetItems of this HTTPNamespaceList.

type HTTPNamespaceObservation

type HTTPNamespaceObservation struct {

	// The ARN that Amazon Route 53 assigns to the namespace when you create it.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// The description that you specify for the namespace when you create it.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The name of an HTTP namespace.
	HTTPName *string `json:"httpName,omitempty" tf:"http_name,omitempty"`

	// The ID of a namespace.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the http namespace.
	Name *string `json:"name,omitempty" tf:"name,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 (*HTTPNamespaceObservation) DeepCopy

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

func (*HTTPNamespaceObservation) DeepCopyInto

func (in *HTTPNamespaceObservation) DeepCopyInto(out *HTTPNamespaceObservation)

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

type HTTPNamespaceParameters

type HTTPNamespaceParameters struct {

	// The description that you specify for the namespace when you create it.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The name of the http namespace.
	// +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 (*HTTPNamespaceParameters) DeepCopy

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

func (*HTTPNamespaceParameters) DeepCopyInto

func (in *HTTPNamespaceParameters) DeepCopyInto(out *HTTPNamespaceParameters)

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

type HTTPNamespaceSpec

type HTTPNamespaceSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     HTTPNamespaceParameters `json:"forProvider"`
}

HTTPNamespaceSpec defines the desired state of HTTPNamespace

func (*HTTPNamespaceSpec) DeepCopy

func (in *HTTPNamespaceSpec) DeepCopy() *HTTPNamespaceSpec

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

func (*HTTPNamespaceSpec) DeepCopyInto

func (in *HTTPNamespaceSpec) DeepCopyInto(out *HTTPNamespaceSpec)

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

type HTTPNamespaceStatus

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

HTTPNamespaceStatus defines the observed state of HTTPNamespace.

func (*HTTPNamespaceStatus) DeepCopy

func (in *HTTPNamespaceStatus) DeepCopy() *HTTPNamespaceStatus

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

func (*HTTPNamespaceStatus) DeepCopyInto

func (in *HTTPNamespaceStatus) DeepCopyInto(out *HTTPNamespaceStatus)

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

type HealthCheckConfigObservation

type HealthCheckConfigObservation struct {

	// The number of consecutive health checks. Maximum value of 10.
	FailureThreshold *float64 `json:"failureThreshold,omitempty" tf:"failure_threshold,omitempty"`

	// The path that you want Route 53 to request when performing health checks. Route 53 automatically adds the DNS name for the service. If you don't specify a value, the default value is /.
	ResourcePath *string `json:"resourcePath,omitempty" tf:"resource_path,omitempty"`

	// The type of health check that you want to create, which indicates how Route 53 determines whether an endpoint is healthy. Valid Values: HTTP, HTTPS, TCP
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*HealthCheckConfigObservation) DeepCopy

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

func (*HealthCheckConfigObservation) DeepCopyInto

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

type HealthCheckConfigParameters

type HealthCheckConfigParameters struct {

	// The number of consecutive health checks. Maximum value of 10.
	// +kubebuilder:validation:Optional
	FailureThreshold *float64 `json:"failureThreshold,omitempty" tf:"failure_threshold,omitempty"`

	// The path that you want Route 53 to request when performing health checks. Route 53 automatically adds the DNS name for the service. If you don't specify a value, the default value is /.
	// +kubebuilder:validation:Optional
	ResourcePath *string `json:"resourcePath,omitempty" tf:"resource_path,omitempty"`

	// The type of health check that you want to create, which indicates how Route 53 determines whether an endpoint is healthy. Valid Values: HTTP, HTTPS, TCP
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*HealthCheckConfigParameters) DeepCopy

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

func (*HealthCheckConfigParameters) DeepCopyInto

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

type HealthCheckCustomConfigObservation

type HealthCheckCustomConfigObservation struct {

	// The number of 30-second intervals that you want service discovery to wait before it changes the health status of a service instance.  Maximum value of 10.
	FailureThreshold *float64 `json:"failureThreshold,omitempty" tf:"failure_threshold,omitempty"`
}

func (*HealthCheckCustomConfigObservation) DeepCopy

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

func (*HealthCheckCustomConfigObservation) DeepCopyInto

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

type HealthCheckCustomConfigParameters

type HealthCheckCustomConfigParameters struct {

	// The number of 30-second intervals that you want service discovery to wait before it changes the health status of a service instance.  Maximum value of 10.
	// +kubebuilder:validation:Optional
	FailureThreshold *float64 `json:"failureThreshold,omitempty" tf:"failure_threshold,omitempty"`
}

func (*HealthCheckCustomConfigParameters) DeepCopy

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

func (*HealthCheckCustomConfigParameters) DeepCopyInto

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

type PrivateDNSNamespace

type PrivateDNSNamespace struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.name)",message="name is a required parameter"
	Spec   PrivateDNSNamespaceSpec   `json:"spec"`
	Status PrivateDNSNamespaceStatus `json:"status,omitempty"`
}

PrivateDNSNamespace is the Schema for the PrivateDNSNamespaces API. Provides a Service Discovery Private DNS Namespace 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 (*PrivateDNSNamespace) DeepCopy

func (in *PrivateDNSNamespace) DeepCopy() *PrivateDNSNamespace

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

func (*PrivateDNSNamespace) DeepCopyInto

func (in *PrivateDNSNamespace) DeepCopyInto(out *PrivateDNSNamespace)

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

func (*PrivateDNSNamespace) DeepCopyObject

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

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

func (*PrivateDNSNamespace) GetCondition

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

GetCondition of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this PrivateDNSNamespace

func (*PrivateDNSNamespace) GetDeletionPolicy

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

GetDeletionPolicy of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) GetID

func (tr *PrivateDNSNamespace) GetID() string

GetID returns ID of underlying Terraform resource of this PrivateDNSNamespace

func (*PrivateDNSNamespace) GetManagementPolicy

func (mg *PrivateDNSNamespace) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) GetObservation

func (tr *PrivateDNSNamespace) GetObservation() (map[string]any, error)

GetObservation of this PrivateDNSNamespace

func (*PrivateDNSNamespace) GetParameters

func (tr *PrivateDNSNamespace) GetParameters() (map[string]any, error)

GetParameters of this PrivateDNSNamespace

func (*PrivateDNSNamespace) GetProviderConfigReference

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

GetProviderConfigReference of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) GetProviderReference

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

GetProviderReference of this PrivateDNSNamespace. Deprecated: Use GetProviderConfigReference.

func (*PrivateDNSNamespace) GetPublishConnectionDetailsTo

func (mg *PrivateDNSNamespace) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) GetTerraformResourceType

func (mg *PrivateDNSNamespace) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this PrivateDNSNamespace

func (*PrivateDNSNamespace) GetTerraformSchemaVersion

func (tr *PrivateDNSNamespace) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*PrivateDNSNamespace) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) LateInitialize

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

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

func (*PrivateDNSNamespace) ResolveReferences

func (mg *PrivateDNSNamespace) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetConditions

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

SetConditions of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetDeletionPolicy

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

SetDeletionPolicy of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetManagementPolicy

func (mg *PrivateDNSNamespace) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetObservation

func (tr *PrivateDNSNamespace) SetObservation(obs map[string]any) error

SetObservation for this PrivateDNSNamespace

func (*PrivateDNSNamespace) SetParameters

func (tr *PrivateDNSNamespace) SetParameters(params map[string]any) error

SetParameters for this PrivateDNSNamespace

func (*PrivateDNSNamespace) SetProviderConfigReference

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

SetProviderConfigReference of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetProviderReference

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

SetProviderReference of this PrivateDNSNamespace. Deprecated: Use SetProviderConfigReference.

func (*PrivateDNSNamespace) SetPublishConnectionDetailsTo

func (mg *PrivateDNSNamespace) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this PrivateDNSNamespace.

func (*PrivateDNSNamespace) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this PrivateDNSNamespace.

type PrivateDNSNamespaceList

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

PrivateDNSNamespaceList contains a list of PrivateDNSNamespaces

func (*PrivateDNSNamespaceList) DeepCopy

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

func (*PrivateDNSNamespaceList) DeepCopyInto

func (in *PrivateDNSNamespaceList) DeepCopyInto(out *PrivateDNSNamespaceList)

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

func (*PrivateDNSNamespaceList) DeepCopyObject

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

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

func (*PrivateDNSNamespaceList) GetItems

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

GetItems of this PrivateDNSNamespaceList.

type PrivateDNSNamespaceObservation

type PrivateDNSNamespaceObservation struct {

	// The ARN that Amazon Route 53 assigns to the namespace when you create it.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// The description that you specify for the namespace when you create it.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The ID for the hosted zone that Amazon Route 53 creates when you create a namespace.
	HostedZone *string `json:"hostedZone,omitempty" tf:"hosted_zone,omitempty"`

	// The ID of a namespace.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the namespace.
	Name *string `json:"name,omitempty" tf:"name,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"`

	// The ID of VPC that you want to associate the namespace with.
	VPC *string `json:"vpc,omitempty" tf:"vpc,omitempty"`
}

func (*PrivateDNSNamespaceObservation) DeepCopy

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

func (*PrivateDNSNamespaceObservation) DeepCopyInto

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

type PrivateDNSNamespaceParameters

type PrivateDNSNamespaceParameters struct {

	// The description that you specify for the namespace when you create it.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The name of the namespace.
	// +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"`

	// The ID of VPC that you want to associate the namespace with.
	// +crossplane:generate:reference:type=github.com/spirosco/upbound-provider-aws/apis/ec2/v1beta1.VPC
	// +kubebuilder:validation:Optional
	VPC *string `json:"vpc,omitempty" tf:"vpc,omitempty"`

	// Reference to a VPC in ec2 to populate vpc.
	// +kubebuilder:validation:Optional
	VPCRef *v1.Reference `json:"vpcRef,omitempty" tf:"-"`

	// Selector for a VPC in ec2 to populate vpc.
	// +kubebuilder:validation:Optional
	VPCSelector *v1.Selector `json:"vpcSelector,omitempty" tf:"-"`
}

func (*PrivateDNSNamespaceParameters) DeepCopy

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

func (*PrivateDNSNamespaceParameters) DeepCopyInto

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

type PrivateDNSNamespaceSpec

type PrivateDNSNamespaceSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     PrivateDNSNamespaceParameters `json:"forProvider"`
}

PrivateDNSNamespaceSpec defines the desired state of PrivateDNSNamespace

func (*PrivateDNSNamespaceSpec) DeepCopy

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

func (*PrivateDNSNamespaceSpec) DeepCopyInto

func (in *PrivateDNSNamespaceSpec) DeepCopyInto(out *PrivateDNSNamespaceSpec)

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

type PrivateDNSNamespaceStatus

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

PrivateDNSNamespaceStatus defines the observed state of PrivateDNSNamespace.

func (*PrivateDNSNamespaceStatus) DeepCopy

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

func (*PrivateDNSNamespaceStatus) DeepCopyInto

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

type PublicDNSNamespace

type PublicDNSNamespace struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.name)",message="name is a required parameter"
	Spec   PublicDNSNamespaceSpec   `json:"spec"`
	Status PublicDNSNamespaceStatus `json:"status,omitempty"`
}

PublicDNSNamespace is the Schema for the PublicDNSNamespaces API. Provides a Service Discovery Public DNS Namespace 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 (*PublicDNSNamespace) DeepCopy

func (in *PublicDNSNamespace) DeepCopy() *PublicDNSNamespace

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

func (*PublicDNSNamespace) DeepCopyInto

func (in *PublicDNSNamespace) DeepCopyInto(out *PublicDNSNamespace)

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

func (*PublicDNSNamespace) DeepCopyObject

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

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

func (*PublicDNSNamespace) GetCondition

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

GetCondition of this PublicDNSNamespace.

func (*PublicDNSNamespace) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this PublicDNSNamespace

func (*PublicDNSNamespace) GetDeletionPolicy

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

GetDeletionPolicy of this PublicDNSNamespace.

func (*PublicDNSNamespace) GetID

func (tr *PublicDNSNamespace) GetID() string

GetID returns ID of underlying Terraform resource of this PublicDNSNamespace

func (*PublicDNSNamespace) GetManagementPolicy

func (mg *PublicDNSNamespace) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this PublicDNSNamespace.

func (*PublicDNSNamespace) GetObservation

func (tr *PublicDNSNamespace) GetObservation() (map[string]any, error)

GetObservation of this PublicDNSNamespace

func (*PublicDNSNamespace) GetParameters

func (tr *PublicDNSNamespace) GetParameters() (map[string]any, error)

GetParameters of this PublicDNSNamespace

func (*PublicDNSNamespace) GetProviderConfigReference

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

GetProviderConfigReference of this PublicDNSNamespace.

func (*PublicDNSNamespace) GetProviderReference

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

GetProviderReference of this PublicDNSNamespace. Deprecated: Use GetProviderConfigReference.

func (*PublicDNSNamespace) GetPublishConnectionDetailsTo

func (mg *PublicDNSNamespace) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this PublicDNSNamespace.

func (*PublicDNSNamespace) GetTerraformResourceType

func (mg *PublicDNSNamespace) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this PublicDNSNamespace

func (*PublicDNSNamespace) GetTerraformSchemaVersion

func (tr *PublicDNSNamespace) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*PublicDNSNamespace) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this PublicDNSNamespace.

func (*PublicDNSNamespace) LateInitialize

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

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

func (*PublicDNSNamespace) SetConditions

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

SetConditions of this PublicDNSNamespace.

func (*PublicDNSNamespace) SetDeletionPolicy

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

SetDeletionPolicy of this PublicDNSNamespace.

func (*PublicDNSNamespace) SetManagementPolicy

func (mg *PublicDNSNamespace) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this PublicDNSNamespace.

func (*PublicDNSNamespace) SetObservation

func (tr *PublicDNSNamespace) SetObservation(obs map[string]any) error

SetObservation for this PublicDNSNamespace

func (*PublicDNSNamespace) SetParameters

func (tr *PublicDNSNamespace) SetParameters(params map[string]any) error

SetParameters for this PublicDNSNamespace

func (*PublicDNSNamespace) SetProviderConfigReference

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

SetProviderConfigReference of this PublicDNSNamespace.

func (*PublicDNSNamespace) SetProviderReference

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

SetProviderReference of this PublicDNSNamespace. Deprecated: Use SetProviderConfigReference.

func (*PublicDNSNamespace) SetPublishConnectionDetailsTo

func (mg *PublicDNSNamespace) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this PublicDNSNamespace.

func (*PublicDNSNamespace) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this PublicDNSNamespace.

type PublicDNSNamespaceList

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

PublicDNSNamespaceList contains a list of PublicDNSNamespaces

func (*PublicDNSNamespaceList) DeepCopy

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

func (*PublicDNSNamespaceList) DeepCopyInto

func (in *PublicDNSNamespaceList) DeepCopyInto(out *PublicDNSNamespaceList)

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

func (*PublicDNSNamespaceList) DeepCopyObject

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

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

func (*PublicDNSNamespaceList) GetItems

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

GetItems of this PublicDNSNamespaceList.

type PublicDNSNamespaceObservation

type PublicDNSNamespaceObservation struct {

	// The ARN that Amazon Route 53 assigns to the namespace when you create it.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// The description that you specify for the namespace when you create it.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The ID for the hosted zone that Amazon Route 53 creates when you create a namespace.
	HostedZone *string `json:"hostedZone,omitempty" tf:"hosted_zone,omitempty"`

	// The ID of a namespace.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the namespace.
	Name *string `json:"name,omitempty" tf:"name,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 (*PublicDNSNamespaceObservation) DeepCopy

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

func (*PublicDNSNamespaceObservation) DeepCopyInto

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

type PublicDNSNamespaceParameters

type PublicDNSNamespaceParameters struct {

	// The description that you specify for the namespace when you create it.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The name of the namespace.
	// +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 (*PublicDNSNamespaceParameters) DeepCopy

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

func (*PublicDNSNamespaceParameters) DeepCopyInto

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

type PublicDNSNamespaceSpec

type PublicDNSNamespaceSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     PublicDNSNamespaceParameters `json:"forProvider"`
}

PublicDNSNamespaceSpec defines the desired state of PublicDNSNamespace

func (*PublicDNSNamespaceSpec) DeepCopy

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

func (*PublicDNSNamespaceSpec) DeepCopyInto

func (in *PublicDNSNamespaceSpec) DeepCopyInto(out *PublicDNSNamespaceSpec)

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

type PublicDNSNamespaceStatus

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

PublicDNSNamespaceStatus defines the observed state of PublicDNSNamespace.

func (*PublicDNSNamespaceStatus) DeepCopy

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

func (*PublicDNSNamespaceStatus) DeepCopyInto

func (in *PublicDNSNamespaceStatus) DeepCopyInto(out *PublicDNSNamespaceStatus)

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

type Service

type Service struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="self.managementPolicy == 'ObserveOnly' || has(self.forProvider.name)",message="name is a required parameter"
	Spec   ServiceSpec   `json:"spec"`
	Status ServiceStatus `json:"status,omitempty"`
}

Service is the Schema for the Services API. Provides a Service Discovery Service 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 (*Service) DeepCopy

func (in *Service) DeepCopy() *Service

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

func (*Service) DeepCopyInto

func (in *Service) DeepCopyInto(out *Service)

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

func (*Service) DeepCopyObject

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

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

func (*Service) GetCondition

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

GetCondition of this Service.

func (*Service) GetConnectionDetailsMapping

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

GetConnectionDetailsMapping for this Service

func (*Service) GetDeletionPolicy

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

GetDeletionPolicy of this Service.

func (*Service) GetID

func (tr *Service) GetID() string

GetID returns ID of underlying Terraform resource of this Service

func (*Service) GetManagementPolicy

func (mg *Service) GetManagementPolicy() xpv1.ManagementPolicy

GetManagementPolicy of this Service.

func (*Service) GetObservation

func (tr *Service) GetObservation() (map[string]any, error)

GetObservation of this Service

func (*Service) GetParameters

func (tr *Service) GetParameters() (map[string]any, error)

GetParameters of this Service

func (*Service) GetProviderConfigReference

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

GetProviderConfigReference of this Service.

func (*Service) GetProviderReference

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

GetProviderReference of this Service. Deprecated: Use GetProviderConfigReference.

func (*Service) GetPublishConnectionDetailsTo

func (mg *Service) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this Service.

func (*Service) GetTerraformResourceType

func (mg *Service) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this Service

func (*Service) GetTerraformSchemaVersion

func (tr *Service) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*Service) GetWriteConnectionSecretToReference

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

GetWriteConnectionSecretToReference of this Service.

func (*Service) LateInitialize

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

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

func (*Service) ResolveReferences

func (mg *Service) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this Service.

func (*Service) SetConditions

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

SetConditions of this Service.

func (*Service) SetDeletionPolicy

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

SetDeletionPolicy of this Service.

func (*Service) SetManagementPolicy

func (mg *Service) SetManagementPolicy(r xpv1.ManagementPolicy)

SetManagementPolicy of this Service.

func (*Service) SetObservation

func (tr *Service) SetObservation(obs map[string]any) error

SetObservation for this Service

func (*Service) SetParameters

func (tr *Service) SetParameters(params map[string]any) error

SetParameters for this Service

func (*Service) SetProviderConfigReference

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

SetProviderConfigReference of this Service.

func (*Service) SetProviderReference

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

SetProviderReference of this Service. Deprecated: Use SetProviderConfigReference.

func (*Service) SetPublishConnectionDetailsTo

func (mg *Service) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this Service.

func (*Service) SetWriteConnectionSecretToReference

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

SetWriteConnectionSecretToReference of this Service.

type ServiceList

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

ServiceList contains a list of Services

func (*ServiceList) DeepCopy

func (in *ServiceList) DeepCopy() *ServiceList

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

func (*ServiceList) DeepCopyInto

func (in *ServiceList) DeepCopyInto(out *ServiceList)

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

func (*ServiceList) DeepCopyObject

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

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

func (*ServiceList) GetItems

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

GetItems of this ServiceList.

type ServiceObservation

type ServiceObservation struct {

	// The ARN of the service.
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// A complex type that contains information about the resource record sets that you want Amazon Route 53 to create when you register an instance.
	DNSConfig []DNSConfigObservation `json:"dnsConfig,omitempty" tf:"dns_config,omitempty"`

	// The description of the service.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// A boolean that indicates all instances should be deleted from the service so that the service can be destroyed without error. These instances are not recoverable.
	ForceDestroy *bool `json:"forceDestroy,omitempty" tf:"force_destroy,omitempty"`

	// A complex type that contains settings for an optional health check. Only for Public DNS namespaces.
	HealthCheckConfig []HealthCheckConfigObservation `json:"healthCheckConfig,omitempty" tf:"health_check_config,omitempty"`

	// A complex type that contains settings for ECS managed health checks.
	HealthCheckCustomConfig []HealthCheckCustomConfigObservation `json:"healthCheckCustomConfig,omitempty" tf:"health_check_custom_config,omitempty"`

	// The ID of the service.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the service.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The ID of the namespace that you want to use to create the service.
	NamespaceID *string `json:"namespaceId,omitempty" tf:"namespace_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"`

	// If present, specifies that the service instances are only discoverable using the DiscoverInstances API operation. No DNS records is registered for the service instances. The only valid value is HTTP.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ServiceObservation) DeepCopy

func (in *ServiceObservation) DeepCopy() *ServiceObservation

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

func (*ServiceObservation) DeepCopyInto

func (in *ServiceObservation) DeepCopyInto(out *ServiceObservation)

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

type ServiceParameters

type ServiceParameters struct {

	// A complex type that contains information about the resource record sets that you want Amazon Route 53 to create when you register an instance.
	// +kubebuilder:validation:Optional
	DNSConfig []DNSConfigParameters `json:"dnsConfig,omitempty" tf:"dns_config,omitempty"`

	// The description of the service.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// A boolean that indicates all instances should be deleted from the service so that the service can be destroyed without error. These instances are not recoverable.
	// +kubebuilder:validation:Optional
	ForceDestroy *bool `json:"forceDestroy,omitempty" tf:"force_destroy,omitempty"`

	// A complex type that contains settings for an optional health check. Only for Public DNS namespaces.
	// +kubebuilder:validation:Optional
	HealthCheckConfig []HealthCheckConfigParameters `json:"healthCheckConfig,omitempty" tf:"health_check_config,omitempty"`

	// A complex type that contains settings for ECS managed health checks.
	// +kubebuilder:validation:Optional
	HealthCheckCustomConfig []HealthCheckCustomConfigParameters `json:"healthCheckCustomConfig,omitempty" tf:"health_check_custom_config,omitempty"`

	// The name of the service.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The ID of the namespace that you want to use to create the service.
	// +kubebuilder:validation:Optional
	NamespaceID *string `json:"namespaceId,omitempty" tf:"namespace_id,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"`

	// If present, specifies that the service instances are only discoverable using the DiscoverInstances API operation. No DNS records is registered for the service instances. The only valid value is HTTP.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ServiceParameters) DeepCopy

func (in *ServiceParameters) DeepCopy() *ServiceParameters

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

func (*ServiceParameters) DeepCopyInto

func (in *ServiceParameters) DeepCopyInto(out *ServiceParameters)

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

type ServiceSpec

type ServiceSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ServiceParameters `json:"forProvider"`
}

ServiceSpec defines the desired state of Service

func (*ServiceSpec) DeepCopy

func (in *ServiceSpec) DeepCopy() *ServiceSpec

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

func (*ServiceSpec) DeepCopyInto

func (in *ServiceSpec) DeepCopyInto(out *ServiceSpec)

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

type ServiceStatus

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

ServiceStatus defines the observed state of Service.

func (*ServiceStatus) DeepCopy

func (in *ServiceStatus) DeepCopy() *ServiceStatus

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

func (*ServiceStatus) DeepCopyInto

func (in *ServiceStatus) DeepCopyInto(out *ServiceStatus)

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