Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=spectrum.upbound.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Application
- func (in *Application) DeepCopy() *Application
- func (in *Application) DeepCopyInto(out *Application)
- func (in *Application) DeepCopyObject() runtime.Object
- func (mg *Application) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Application) GetConnectionDetailsMapping() map[string]string
- func (mg *Application) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Application) GetID() string
- func (tr *Application) GetInitParameters() (map[string]any, error)
- func (mg *Application) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Application) GetObservation() (map[string]any, error)
- func (tr *Application) GetParameters() (map[string]any, error)
- func (mg *Application) GetProviderConfigReference() *xpv1.Reference
- func (mg *Application) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Application) GetTerraformResourceType() string
- func (tr *Application) GetTerraformSchemaVersion() int
- func (mg *Application) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Application) LateInitialize(attrs []byte) (bool, error)
- func (mg *Application) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Application) SetConditions(c ...xpv1.Condition)
- func (mg *Application) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Application) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Application) SetObservation(obs map[string]any) error
- func (tr *Application) SetParameters(params map[string]any) error
- func (mg *Application) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Application) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Application) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ApplicationInitParameters
- type ApplicationList
- type ApplicationObservation
- type ApplicationParameters
- type ApplicationSpec
- type ApplicationStatus
- type DNSInitParameters
- type DNSObservation
- type DNSParameters
- type EdgeIpsInitParameters
- type EdgeIpsObservation
- type EdgeIpsParameters
- type OriginDNSInitParameters
- type OriginDNSObservation
- type OriginDNSParameters
- type OriginPortRangeInitParameters
- type OriginPortRangeObservation
- type OriginPortRangeParameters
Constants ¶
const ( CRDGroup = "spectrum.upbound.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Application_Kind = "Application" Application_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Application_Kind}.String() Application_KindAPIVersion = Application_Kind + "." + CRDGroupVersion.String() Application_GroupVersionKind = CRDGroupVersion.WithKind(Application_Kind) )
Repository type metadata.
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type Application ¶
type Application 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.dns) || (has(self.initProvider) && has(self.initProvider.dns))",message="spec.forProvider.dns is a required parameter" // +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.protocol) || (has(self.initProvider) && has(self.initProvider.protocol))",message="spec.forProvider.protocol is a required parameter" Spec ApplicationSpec `json:"spec"` Status ApplicationStatus `json:"status,omitempty"` }
Application is the Schema for the Applications API. Provides a Cloudflare Spectrum Application. You can extend the power of Cloudflare's DDoS, TLS, and IP Firewall to your other TCP-based services. +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,cloudflare}
func (*Application) DeepCopy ¶
func (in *Application) DeepCopy() *Application
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application.
func (*Application) DeepCopyInto ¶
func (in *Application) DeepCopyInto(out *Application)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Application) DeepCopyObject ¶
func (in *Application) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Application) GetCondition ¶
func (mg *Application) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Application.
func (*Application) GetConnectionDetailsMapping ¶
func (tr *Application) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this Application
func (*Application) GetDeletionPolicy ¶
func (mg *Application) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Application.
func (*Application) GetID ¶
func (tr *Application) GetID() string
GetID returns ID of underlying Terraform resource of this Application
func (*Application) GetInitParameters ¶
func (tr *Application) GetInitParameters() (map[string]any, error)
GetInitParameters of this Application
func (*Application) GetManagementPolicies ¶
func (mg *Application) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Application.
func (*Application) GetObservation ¶
func (tr *Application) GetObservation() (map[string]any, error)
GetObservation of this Application
func (*Application) GetParameters ¶
func (tr *Application) GetParameters() (map[string]any, error)
GetParameters of this Application
func (*Application) GetProviderConfigReference ¶
func (mg *Application) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this Application.
func (*Application) GetPublishConnectionDetailsTo ¶
func (mg *Application) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Application.
func (*Application) GetTerraformResourceType ¶
func (mg *Application) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this Application
func (*Application) GetTerraformSchemaVersion ¶
func (tr *Application) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Application) GetWriteConnectionSecretToReference ¶
func (mg *Application) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Application.
func (*Application) LateInitialize ¶
func (tr *Application) LateInitialize(attrs []byte) (bool, error)
LateInitialize this Application using its observed tfState. returns True if there are any spec changes for the resource.
func (*Application) ResolveReferences ¶
ResolveReferences of this Application.
func (*Application) SetConditions ¶
func (mg *Application) SetConditions(c ...xpv1.Condition)
SetConditions of this Application.
func (*Application) SetDeletionPolicy ¶
func (mg *Application) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Application.
func (*Application) SetManagementPolicies ¶
func (mg *Application) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Application.
func (*Application) SetObservation ¶
func (tr *Application) SetObservation(obs map[string]any) error
SetObservation for this Application
func (*Application) SetParameters ¶
func (tr *Application) SetParameters(params map[string]any) error
SetParameters for this Application
func (*Application) SetProviderConfigReference ¶
func (mg *Application) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this Application.
func (*Application) SetPublishConnectionDetailsTo ¶
func (mg *Application) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Application.
func (*Application) SetWriteConnectionSecretToReference ¶
func (mg *Application) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Application.
type ApplicationInitParameters ¶
type ApplicationInitParameters struct { // (Boolean) Enables Argo Smart Routing. // Enables Argo Smart Routing. ArgoSmartRouting *bool `json:"argoSmartRouting,omitempty" tf:"argo_smart_routing,omitempty"` // (Block List, Min: 1, Max: 1) The name and type of DNS record for the Spectrum application. (see below for nested schema) // The name and type of DNS record for the Spectrum application. DNS []DNSInitParameters `json:"dns,omitempty" tf:"dns,omitempty"` // (Block List, Max: 1) The anycast edge IP configuration for the hostname of this application. (see below for nested schema) // The anycast edge IP configuration for the hostname of this application. EdgeIps []EdgeIpsInitParameters `json:"edgeIps,omitempty" tf:"edge_ips,omitempty"` // (Boolean) Enables the IP Firewall for this application. // Enables the IP Firewall for this application. IPFirewall *bool `json:"ipFirewall,omitempty" tf:"ip_firewall,omitempty"` // (Block List, Max: 1) A destination DNS addresses to the origin. (see below for nested schema) // A destination DNS addresses to the origin. OriginDNS []OriginDNSInitParameters `json:"originDns,omitempty" tf:"origin_dns,omitempty"` // (List of String) A list of destination addresses to the origin. e.g. tcp://192.0.2.1:22. // A list of destination addresses to the origin. e.g. `tcp://192.0.2.1:22`. OriginDirect []*string `json:"originDirect,omitempty" tf:"origin_direct,omitempty"` // (Number) Origin port to proxy traffice to. Conflicts with origin_port_range. // Origin port to proxy traffice to. Conflicts with `origin_port_range`. OriginPort *float64 `json:"originPort,omitempty" tf:"origin_port,omitempty"` // 23. Conflicts with origin_port. (see below for nested schema) // Origin port range to proxy traffice to. When using a range, the protocol field must also specify a range, e.g. `tcp/22-23`. Conflicts with `origin_port`. OriginPortRange []OriginPortRangeInitParameters `json:"originPortRange,omitempty" tf:"origin_port_range,omitempty"` // (String) The port configuration at Cloudflare's edge. e.g. tcp/22. // The port configuration at Cloudflare's edge. e.g. `tcp/22`. Protocol *string `json:"protocol,omitempty" tf:"protocol,omitempty"` // (String) Enables a proxy protocol to the origin. Available values: off, v1, v2, simple. // Enables a proxy protocol to the origin. Available values: `off`, `v1`, `v2`, `simple`. ProxyProtocol *string `json:"proxyProtocol,omitempty" tf:"proxy_protocol,omitempty"` // (String) TLS configuration option for Cloudflare to connect to your origin. Available values: off, flexible, full, strict. // TLS configuration option for Cloudflare to connect to your origin. Available values: `off`, `flexible`, `full`, `strict`. TLS *string `json:"tls,omitempty" tf:"tls,omitempty"` // (String) Sets application type. Available values: direct, http, https. // Sets application type. Available values: `direct`, `http`, `https`. TrafficType *string `json:"trafficType,omitempty" tf:"traffic_type,omitempty"` }
func (*ApplicationInitParameters) DeepCopy ¶
func (in *ApplicationInitParameters) DeepCopy() *ApplicationInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationInitParameters.
func (*ApplicationInitParameters) DeepCopyInto ¶
func (in *ApplicationInitParameters) DeepCopyInto(out *ApplicationInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApplicationList ¶
type ApplicationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Application `json:"items"` }
ApplicationList contains a list of Applications
func (*ApplicationList) DeepCopy ¶
func (in *ApplicationList) DeepCopy() *ApplicationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationList.
func (*ApplicationList) DeepCopyInto ¶
func (in *ApplicationList) DeepCopyInto(out *ApplicationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ApplicationList) DeepCopyObject ¶
func (in *ApplicationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ApplicationList) GetItems ¶
func (l *ApplicationList) GetItems() []resource.Managed
GetItems of this ApplicationList.
type ApplicationObservation ¶
type ApplicationObservation struct { // (Boolean) Enables Argo Smart Routing. // Enables Argo Smart Routing. ArgoSmartRouting *bool `json:"argoSmartRouting,omitempty" tf:"argo_smart_routing,omitempty"` // (Block List, Min: 1, Max: 1) The name and type of DNS record for the Spectrum application. (see below for nested schema) // The name and type of DNS record for the Spectrum application. DNS []DNSObservation `json:"dns,omitempty" tf:"dns,omitempty"` // (Block List, Max: 1) The anycast edge IP configuration for the hostname of this application. (see below for nested schema) // The anycast edge IP configuration for the hostname of this application. EdgeIps []EdgeIpsObservation `json:"edgeIps,omitempty" tf:"edge_ips,omitempty"` // (String) The ID of this resource. ID *string `json:"id,omitempty" tf:"id,omitempty"` // (Boolean) Enables the IP Firewall for this application. // Enables the IP Firewall for this application. IPFirewall *bool `json:"ipFirewall,omitempty" tf:"ip_firewall,omitempty"` // (Block List, Max: 1) A destination DNS addresses to the origin. (see below for nested schema) // A destination DNS addresses to the origin. OriginDNS []OriginDNSObservation `json:"originDns,omitempty" tf:"origin_dns,omitempty"` // (List of String) A list of destination addresses to the origin. e.g. tcp://192.0.2.1:22. // A list of destination addresses to the origin. e.g. `tcp://192.0.2.1:22`. OriginDirect []*string `json:"originDirect,omitempty" tf:"origin_direct,omitempty"` // (Number) Origin port to proxy traffice to. Conflicts with origin_port_range. // Origin port to proxy traffice to. Conflicts with `origin_port_range`. OriginPort *float64 `json:"originPort,omitempty" tf:"origin_port,omitempty"` // 23. Conflicts with origin_port. (see below for nested schema) // Origin port range to proxy traffice to. When using a range, the protocol field must also specify a range, e.g. `tcp/22-23`. Conflicts with `origin_port`. OriginPortRange []OriginPortRangeObservation `json:"originPortRange,omitempty" tf:"origin_port_range,omitempty"` // (String) The port configuration at Cloudflare's edge. e.g. tcp/22. // The port configuration at Cloudflare's edge. e.g. `tcp/22`. Protocol *string `json:"protocol,omitempty" tf:"protocol,omitempty"` // (String) Enables a proxy protocol to the origin. Available values: off, v1, v2, simple. // Enables a proxy protocol to the origin. Available values: `off`, `v1`, `v2`, `simple`. ProxyProtocol *string `json:"proxyProtocol,omitempty" tf:"proxy_protocol,omitempty"` // (String) TLS configuration option for Cloudflare to connect to your origin. Available values: off, flexible, full, strict. // TLS configuration option for Cloudflare to connect to your origin. Available values: `off`, `flexible`, `full`, `strict`. TLS *string `json:"tls,omitempty" tf:"tls,omitempty"` // (String) Sets application type. Available values: direct, http, https. // Sets application type. Available values: `direct`, `http`, `https`. TrafficType *string `json:"trafficType,omitempty" tf:"traffic_type,omitempty"` // (String) The zone identifier to target for the resource. // The zone identifier to target for the resource. ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ApplicationObservation) DeepCopy ¶
func (in *ApplicationObservation) DeepCopy() *ApplicationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationObservation.
func (*ApplicationObservation) DeepCopyInto ¶
func (in *ApplicationObservation) DeepCopyInto(out *ApplicationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApplicationParameters ¶
type ApplicationParameters struct { // (Boolean) Enables Argo Smart Routing. // Enables Argo Smart Routing. // +kubebuilder:validation:Optional ArgoSmartRouting *bool `json:"argoSmartRouting,omitempty" tf:"argo_smart_routing,omitempty"` // (Block List, Min: 1, Max: 1) The name and type of DNS record for the Spectrum application. (see below for nested schema) // The name and type of DNS record for the Spectrum application. // +kubebuilder:validation:Optional DNS []DNSParameters `json:"dns,omitempty" tf:"dns,omitempty"` // (Block List, Max: 1) The anycast edge IP configuration for the hostname of this application. (see below for nested schema) // The anycast edge IP configuration for the hostname of this application. // +kubebuilder:validation:Optional EdgeIps []EdgeIpsParameters `json:"edgeIps,omitempty" tf:"edge_ips,omitempty"` // (Boolean) Enables the IP Firewall for this application. // Enables the IP Firewall for this application. // +kubebuilder:validation:Optional IPFirewall *bool `json:"ipFirewall,omitempty" tf:"ip_firewall,omitempty"` // (Block List, Max: 1) A destination DNS addresses to the origin. (see below for nested schema) // A destination DNS addresses to the origin. // +kubebuilder:validation:Optional OriginDNS []OriginDNSParameters `json:"originDns,omitempty" tf:"origin_dns,omitempty"` // (List of String) A list of destination addresses to the origin. e.g. tcp://192.0.2.1:22. // A list of destination addresses to the origin. e.g. `tcp://192.0.2.1:22`. // +kubebuilder:validation:Optional OriginDirect []*string `json:"originDirect,omitempty" tf:"origin_direct,omitempty"` // (Number) Origin port to proxy traffice to. Conflicts with origin_port_range. // Origin port to proxy traffice to. Conflicts with `origin_port_range`. // +kubebuilder:validation:Optional OriginPort *float64 `json:"originPort,omitempty" tf:"origin_port,omitempty"` // 23. Conflicts with origin_port. (see below for nested schema) // Origin port range to proxy traffice to. When using a range, the protocol field must also specify a range, e.g. `tcp/22-23`. Conflicts with `origin_port`. // +kubebuilder:validation:Optional OriginPortRange []OriginPortRangeParameters `json:"originPortRange,omitempty" tf:"origin_port_range,omitempty"` // (String) The port configuration at Cloudflare's edge. e.g. tcp/22. // The port configuration at Cloudflare's edge. e.g. `tcp/22`. // +kubebuilder:validation:Optional Protocol *string `json:"protocol,omitempty" tf:"protocol,omitempty"` // (String) Enables a proxy protocol to the origin. Available values: off, v1, v2, simple. // Enables a proxy protocol to the origin. Available values: `off`, `v1`, `v2`, `simple`. // +kubebuilder:validation:Optional ProxyProtocol *string `json:"proxyProtocol,omitempty" tf:"proxy_protocol,omitempty"` // (String) TLS configuration option for Cloudflare to connect to your origin. Available values: off, flexible, full, strict. // TLS configuration option for Cloudflare to connect to your origin. Available values: `off`, `flexible`, `full`, `strict`. // +kubebuilder:validation:Optional TLS *string `json:"tls,omitempty" tf:"tls,omitempty"` // (String) Sets application type. Available values: direct, http, https. // Sets application type. Available values: `direct`, `http`, `https`. // +kubebuilder:validation:Optional TrafficType *string `json:"trafficType,omitempty" tf:"traffic_type,omitempty"` // (String) The zone identifier to target for the resource. // The zone identifier to target for the resource. // +crossplane:generate:reference:type=github.com/milkpirate/provider-cloudflare/apis/zone/v1alpha1.Zone // +kubebuilder:validation:Optional ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` // Reference to a Zone in zone to populate zoneId. // +kubebuilder:validation:Optional ZoneIDRef *v1.Reference `json:"zoneIdRef,omitempty" tf:"-"` // Selector for a Zone in zone to populate zoneId. // +kubebuilder:validation:Optional ZoneIDSelector *v1.Selector `json:"zoneIdSelector,omitempty" tf:"-"` }
func (*ApplicationParameters) DeepCopy ¶
func (in *ApplicationParameters) DeepCopy() *ApplicationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationParameters.
func (*ApplicationParameters) DeepCopyInto ¶
func (in *ApplicationParameters) DeepCopyInto(out *ApplicationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApplicationSpec ¶
type ApplicationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ApplicationParameters `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 ApplicationInitParameters `json:"initProvider,omitempty"` }
ApplicationSpec defines the desired state of Application
func (*ApplicationSpec) DeepCopy ¶
func (in *ApplicationSpec) DeepCopy() *ApplicationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationSpec.
func (*ApplicationSpec) DeepCopyInto ¶
func (in *ApplicationSpec) DeepCopyInto(out *ApplicationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ApplicationStatus ¶
type ApplicationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ApplicationObservation `json:"atProvider,omitempty"` }
ApplicationStatus defines the observed state of Application.
func (*ApplicationStatus) DeepCopy ¶
func (in *ApplicationStatus) DeepCopy() *ApplicationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationStatus.
func (*ApplicationStatus) DeepCopyInto ¶
func (in *ApplicationStatus) DeepCopyInto(out *ApplicationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSInitParameters ¶
type DNSInitParameters struct { // (String) The name of the DNS record associated with the application. // The name of the DNS record associated with the application. Name *string `json:"name,omitempty" tf:"name,omitempty"` // (String) The type of DNS record associated with the application. // The type of DNS record associated with the application. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*DNSInitParameters) DeepCopy ¶
func (in *DNSInitParameters) DeepCopy() *DNSInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSInitParameters.
func (*DNSInitParameters) DeepCopyInto ¶
func (in *DNSInitParameters) DeepCopyInto(out *DNSInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSObservation ¶
type DNSObservation struct { // (String) The name of the DNS record associated with the application. // The name of the DNS record associated with the application. Name *string `json:"name,omitempty" tf:"name,omitempty"` // (String) The type of DNS record associated with the application. // The type of DNS record associated with the application. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*DNSObservation) DeepCopy ¶
func (in *DNSObservation) DeepCopy() *DNSObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSObservation.
func (*DNSObservation) DeepCopyInto ¶
func (in *DNSObservation) DeepCopyInto(out *DNSObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DNSParameters ¶
type DNSParameters struct { // (String) The name of the DNS record associated with the application. // The name of the DNS record associated with the application. // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` // (String) The type of DNS record associated with the application. // The type of DNS record associated with the application. // +kubebuilder:validation:Optional Type *string `json:"type" tf:"type,omitempty"` }
func (*DNSParameters) DeepCopy ¶
func (in *DNSParameters) DeepCopy() *DNSParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DNSParameters.
func (*DNSParameters) DeepCopyInto ¶
func (in *DNSParameters) DeepCopyInto(out *DNSParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EdgeIpsInitParameters ¶
type EdgeIpsInitParameters struct { // (String) The IP versions supported for inbound connections on Spectrum anycast IPs. Required when type is not static. Available values: all, ipv4, ipv6. // The IP versions supported for inbound connections on Spectrum anycast IPs. Required when `type` is not `static`. Available values: `all`, `ipv4`, `ipv6`. Connectivity *string `json:"connectivity,omitempty" tf:"connectivity,omitempty"` // (Set of String) The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires Bring Your Own IP provisioned. // The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires [Bring Your Own IP](https://developers.cloudflare.com/spectrum/getting-started/byoip/) provisioned. Ips []*string `json:"ips,omitempty" tf:"ips,omitempty"` // (String) The type of DNS record associated with the application. // The type of edge IP configuration specified. Available values: `dynamic`, `static`. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*EdgeIpsInitParameters) DeepCopy ¶
func (in *EdgeIpsInitParameters) DeepCopy() *EdgeIpsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EdgeIpsInitParameters.
func (*EdgeIpsInitParameters) DeepCopyInto ¶
func (in *EdgeIpsInitParameters) DeepCopyInto(out *EdgeIpsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EdgeIpsObservation ¶
type EdgeIpsObservation struct { // (String) The IP versions supported for inbound connections on Spectrum anycast IPs. Required when type is not static. Available values: all, ipv4, ipv6. // The IP versions supported for inbound connections on Spectrum anycast IPs. Required when `type` is not `static`. Available values: `all`, `ipv4`, `ipv6`. Connectivity *string `json:"connectivity,omitempty" tf:"connectivity,omitempty"` // (Set of String) The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires Bring Your Own IP provisioned. // The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires [Bring Your Own IP](https://developers.cloudflare.com/spectrum/getting-started/byoip/) provisioned. Ips []*string `json:"ips,omitempty" tf:"ips,omitempty"` // (String) The type of DNS record associated with the application. // The type of edge IP configuration specified. Available values: `dynamic`, `static`. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*EdgeIpsObservation) DeepCopy ¶
func (in *EdgeIpsObservation) DeepCopy() *EdgeIpsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EdgeIpsObservation.
func (*EdgeIpsObservation) DeepCopyInto ¶
func (in *EdgeIpsObservation) DeepCopyInto(out *EdgeIpsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type EdgeIpsParameters ¶
type EdgeIpsParameters struct { // (String) The IP versions supported for inbound connections on Spectrum anycast IPs. Required when type is not static. Available values: all, ipv4, ipv6. // The IP versions supported for inbound connections on Spectrum anycast IPs. Required when `type` is not `static`. Available values: `all`, `ipv4`, `ipv6`. // +kubebuilder:validation:Optional Connectivity *string `json:"connectivity,omitempty" tf:"connectivity,omitempty"` // (Set of String) The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires Bring Your Own IP provisioned. // The collection of customer owned IPs to broadcast via anycast for this hostname and application. Requires [Bring Your Own IP](https://developers.cloudflare.com/spectrum/getting-started/byoip/) provisioned. // +kubebuilder:validation:Optional Ips []*string `json:"ips,omitempty" tf:"ips,omitempty"` // (String) The type of DNS record associated with the application. // The type of edge IP configuration specified. Available values: `dynamic`, `static`. // +kubebuilder:validation:Optional Type *string `json:"type" tf:"type,omitempty"` }
func (*EdgeIpsParameters) DeepCopy ¶
func (in *EdgeIpsParameters) DeepCopy() *EdgeIpsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EdgeIpsParameters.
func (*EdgeIpsParameters) DeepCopyInto ¶
func (in *EdgeIpsParameters) DeepCopyInto(out *EdgeIpsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginDNSInitParameters ¶
type OriginDNSInitParameters struct { // (String) The name of the DNS record associated with the application. // Fully qualified domain name of the origin. Name *string `json:"name,omitempty" tf:"name,omitempty"` }
func (*OriginDNSInitParameters) DeepCopy ¶
func (in *OriginDNSInitParameters) DeepCopy() *OriginDNSInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginDNSInitParameters.
func (*OriginDNSInitParameters) DeepCopyInto ¶
func (in *OriginDNSInitParameters) DeepCopyInto(out *OriginDNSInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginDNSObservation ¶
type OriginDNSObservation struct { // (String) The name of the DNS record associated with the application. // Fully qualified domain name of the origin. Name *string `json:"name,omitempty" tf:"name,omitempty"` }
func (*OriginDNSObservation) DeepCopy ¶
func (in *OriginDNSObservation) DeepCopy() *OriginDNSObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginDNSObservation.
func (*OriginDNSObservation) DeepCopyInto ¶
func (in *OriginDNSObservation) DeepCopyInto(out *OriginDNSObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginDNSParameters ¶
type OriginDNSParameters struct { // (String) The name of the DNS record associated with the application. // Fully qualified domain name of the origin. // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` }
func (*OriginDNSParameters) DeepCopy ¶
func (in *OriginDNSParameters) DeepCopy() *OriginDNSParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginDNSParameters.
func (*OriginDNSParameters) DeepCopyInto ¶
func (in *OriginDNSParameters) DeepCopyInto(out *OriginDNSParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginPortRangeInitParameters ¶
type OriginPortRangeInitParameters struct { // (Number) Upper bound of the origin port range. // Upper bound of the origin port range. End *float64 `json:"end,omitempty" tf:"end,omitempty"` // (Number) Lower bound of the origin port range. // Lower bound of the origin port range. Start *float64 `json:"start,omitempty" tf:"start,omitempty"` }
func (*OriginPortRangeInitParameters) DeepCopy ¶
func (in *OriginPortRangeInitParameters) DeepCopy() *OriginPortRangeInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginPortRangeInitParameters.
func (*OriginPortRangeInitParameters) DeepCopyInto ¶
func (in *OriginPortRangeInitParameters) DeepCopyInto(out *OriginPortRangeInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginPortRangeObservation ¶
type OriginPortRangeObservation struct { // (Number) Upper bound of the origin port range. // Upper bound of the origin port range. End *float64 `json:"end,omitempty" tf:"end,omitempty"` // (Number) Lower bound of the origin port range. // Lower bound of the origin port range. Start *float64 `json:"start,omitempty" tf:"start,omitempty"` }
func (*OriginPortRangeObservation) DeepCopy ¶
func (in *OriginPortRangeObservation) DeepCopy() *OriginPortRangeObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginPortRangeObservation.
func (*OriginPortRangeObservation) DeepCopyInto ¶
func (in *OriginPortRangeObservation) DeepCopyInto(out *OriginPortRangeObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type OriginPortRangeParameters ¶
type OriginPortRangeParameters struct { // (Number) Upper bound of the origin port range. // Upper bound of the origin port range. // +kubebuilder:validation:Optional End *float64 `json:"end" tf:"end,omitempty"` // (Number) Lower bound of the origin port range. // Lower bound of the origin port range. // +kubebuilder:validation:Optional Start *float64 `json:"start" tf:"start,omitempty"` }
func (*OriginPortRangeParameters) DeepCopy ¶
func (in *OriginPortRangeParameters) DeepCopy() *OriginPortRangeParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OriginPortRangeParameters.
func (*OriginPortRangeParameters) DeepCopyInto ¶
func (in *OriginPortRangeParameters) DeepCopyInto(out *OriginPortRangeParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.