Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=nsxtswitchsecurityswitchingprofile.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type RateLimitsObservation
- type RateLimitsParameters
- type SwitchSecuritySwitchingProfile
- func (in *SwitchSecuritySwitchingProfile) DeepCopy() *SwitchSecuritySwitchingProfile
- func (in *SwitchSecuritySwitchingProfile) DeepCopyInto(out *SwitchSecuritySwitchingProfile)
- func (in *SwitchSecuritySwitchingProfile) DeepCopyObject() runtime.Object
- func (mg *SwitchSecuritySwitchingProfile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *SwitchSecuritySwitchingProfile) GetConnectionDetailsMapping() map[string]string
- func (mg *SwitchSecuritySwitchingProfile) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *SwitchSecuritySwitchingProfile) GetID() string
- func (mg *SwitchSecuritySwitchingProfile) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *SwitchSecuritySwitchingProfile) GetObservation() (map[string]any, error)
- func (tr *SwitchSecuritySwitchingProfile) GetParameters() (map[string]any, error)
- func (mg *SwitchSecuritySwitchingProfile) GetProviderConfigReference() *xpv1.Reference
- func (mg *SwitchSecuritySwitchingProfile) GetProviderReference() *xpv1.Reference
- func (mg *SwitchSecuritySwitchingProfile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *SwitchSecuritySwitchingProfile) GetTerraformResourceType() string
- func (tr *SwitchSecuritySwitchingProfile) GetTerraformSchemaVersion() int
- func (mg *SwitchSecuritySwitchingProfile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *SwitchSecuritySwitchingProfile) LateInitialize(attrs []byte) (bool, error)
- func (mg *SwitchSecuritySwitchingProfile) SetConditions(c ...xpv1.Condition)
- func (mg *SwitchSecuritySwitchingProfile) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *SwitchSecuritySwitchingProfile) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *SwitchSecuritySwitchingProfile) SetObservation(obs map[string]any) error
- func (tr *SwitchSecuritySwitchingProfile) SetParameters(params map[string]any) error
- func (mg *SwitchSecuritySwitchingProfile) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *SwitchSecuritySwitchingProfile) SetProviderReference(r *xpv1.Reference)
- func (mg *SwitchSecuritySwitchingProfile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *SwitchSecuritySwitchingProfile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type SwitchSecuritySwitchingProfileList
- func (in *SwitchSecuritySwitchingProfileList) DeepCopy() *SwitchSecuritySwitchingProfileList
- func (in *SwitchSecuritySwitchingProfileList) DeepCopyInto(out *SwitchSecuritySwitchingProfileList)
- func (in *SwitchSecuritySwitchingProfileList) DeepCopyObject() runtime.Object
- func (l *SwitchSecuritySwitchingProfileList) GetItems() []resource.Managed
- type SwitchSecuritySwitchingProfileObservation
- type SwitchSecuritySwitchingProfileParameters
- type SwitchSecuritySwitchingProfileSpec
- type SwitchSecuritySwitchingProfileStatus
- type TagObservation
- type TagParameters
Constants ¶
const ( CRDGroup = "nsxtswitchsecurityswitchingprofile.crossplane.io" CRDVersion = "v1alpha1" )
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 ( SwitchSecuritySwitchingProfile_Kind = "SwitchSecuritySwitchingProfile" SwitchSecuritySwitchingProfile_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: SwitchSecuritySwitchingProfile_Kind}.String() SwitchSecuritySwitchingProfile_KindAPIVersion = SwitchSecuritySwitchingProfile_Kind + "." + CRDGroupVersion.String() SwitchSecuritySwitchingProfile_GroupVersionKind = CRDGroupVersion.WithKind(SwitchSecuritySwitchingProfile_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type RateLimitsObservation ¶
type RateLimitsObservation struct { // Whether rate limiting is enabled Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // Incoming broadcast traffic limit in packets per second RxBroadcast *float64 `json:"rxBroadcast,omitempty" tf:"rx_broadcast,omitempty"` // Incoming multicast traffic limit in packets per second RxMulticast *float64 `json:"rxMulticast,omitempty" tf:"rx_multicast,omitempty"` // Outgoing broadcast traffic limit in packets per second TxBroadcast *float64 `json:"txBroadcast,omitempty" tf:"tx_broadcast,omitempty"` // Outgoing multicast traffic limit in packets per second TxMulticast *float64 `json:"txMulticast,omitempty" tf:"tx_multicast,omitempty"` }
func (*RateLimitsObservation) DeepCopy ¶
func (in *RateLimitsObservation) DeepCopy() *RateLimitsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RateLimitsObservation.
func (*RateLimitsObservation) DeepCopyInto ¶
func (in *RateLimitsObservation) DeepCopyInto(out *RateLimitsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RateLimitsParameters ¶
type RateLimitsParameters struct { // Whether rate limiting is enabled // +kubebuilder:validation:Optional Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // Incoming broadcast traffic limit in packets per second // +kubebuilder:validation:Optional RxBroadcast *float64 `json:"rxBroadcast,omitempty" tf:"rx_broadcast,omitempty"` // Incoming multicast traffic limit in packets per second // +kubebuilder:validation:Optional RxMulticast *float64 `json:"rxMulticast,omitempty" tf:"rx_multicast,omitempty"` // Outgoing broadcast traffic limit in packets per second // +kubebuilder:validation:Optional TxBroadcast *float64 `json:"txBroadcast,omitempty" tf:"tx_broadcast,omitempty"` // Outgoing multicast traffic limit in packets per second // +kubebuilder:validation:Optional TxMulticast *float64 `json:"txMulticast,omitempty" tf:"tx_multicast,omitempty"` }
func (*RateLimitsParameters) DeepCopy ¶
func (in *RateLimitsParameters) DeepCopy() *RateLimitsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RateLimitsParameters.
func (*RateLimitsParameters) DeepCopyInto ¶
func (in *RateLimitsParameters) DeepCopyInto(out *RateLimitsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SwitchSecuritySwitchingProfile ¶
type SwitchSecuritySwitchingProfile struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec SwitchSecuritySwitchingProfileSpec `json:"spec"` Status SwitchSecuritySwitchingProfileStatus `json:"status,omitempty"` }
SwitchSecuritySwitchingProfile is the Schema for the SwitchSecuritySwitchingProfiles API. <no value> +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,nsxt}
func (*SwitchSecuritySwitchingProfile) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfile) DeepCopy() *SwitchSecuritySwitchingProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfile) DeepCopyInto(out *SwitchSecuritySwitchingProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SwitchSecuritySwitchingProfile) DeepCopyObject ¶
func (in *SwitchSecuritySwitchingProfile) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SwitchSecuritySwitchingProfile) GetCondition ¶
func (mg *SwitchSecuritySwitchingProfile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) GetConnectionDetailsMapping ¶
func (tr *SwitchSecuritySwitchingProfile) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) GetDeletionPolicy ¶
func (mg *SwitchSecuritySwitchingProfile) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) GetID ¶
func (tr *SwitchSecuritySwitchingProfile) GetID() string
GetID returns ID of underlying Terraform resource of this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) GetManagementPolicy ¶
func (mg *SwitchSecuritySwitchingProfile) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) GetObservation ¶
func (tr *SwitchSecuritySwitchingProfile) GetObservation() (map[string]any, error)
GetObservation of this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) GetParameters ¶
func (tr *SwitchSecuritySwitchingProfile) GetParameters() (map[string]any, error)
GetParameters of this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) GetProviderConfigReference ¶
func (mg *SwitchSecuritySwitchingProfile) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) GetProviderReference ¶
func (mg *SwitchSecuritySwitchingProfile) GetProviderReference() *xpv1.Reference
GetProviderReference of this SwitchSecuritySwitchingProfile. Deprecated: Use GetProviderConfigReference.
func (*SwitchSecuritySwitchingProfile) GetPublishConnectionDetailsTo ¶
func (mg *SwitchSecuritySwitchingProfile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) GetTerraformResourceType ¶
func (mg *SwitchSecuritySwitchingProfile) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) GetTerraformSchemaVersion ¶
func (tr *SwitchSecuritySwitchingProfile) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*SwitchSecuritySwitchingProfile) GetWriteConnectionSecretToReference ¶
func (mg *SwitchSecuritySwitchingProfile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) LateInitialize ¶
func (tr *SwitchSecuritySwitchingProfile) LateInitialize(attrs []byte) (bool, error)
LateInitialize this SwitchSecuritySwitchingProfile using its observed tfState. returns True if there are any spec changes for the resource.
func (*SwitchSecuritySwitchingProfile) SetConditions ¶
func (mg *SwitchSecuritySwitchingProfile) SetConditions(c ...xpv1.Condition)
SetConditions of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) SetDeletionPolicy ¶
func (mg *SwitchSecuritySwitchingProfile) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) SetManagementPolicy ¶
func (mg *SwitchSecuritySwitchingProfile) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) SetObservation ¶
func (tr *SwitchSecuritySwitchingProfile) SetObservation(obs map[string]any) error
SetObservation for this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) SetParameters ¶
func (tr *SwitchSecuritySwitchingProfile) SetParameters(params map[string]any) error
SetParameters for this SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfile) SetProviderConfigReference ¶
func (mg *SwitchSecuritySwitchingProfile) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) SetProviderReference ¶
func (mg *SwitchSecuritySwitchingProfile) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this SwitchSecuritySwitchingProfile. Deprecated: Use SetProviderConfigReference.
func (*SwitchSecuritySwitchingProfile) SetPublishConnectionDetailsTo ¶
func (mg *SwitchSecuritySwitchingProfile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfile) SetWriteConnectionSecretToReference ¶
func (mg *SwitchSecuritySwitchingProfile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this SwitchSecuritySwitchingProfile.
type SwitchSecuritySwitchingProfileList ¶
type SwitchSecuritySwitchingProfileList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []SwitchSecuritySwitchingProfile `json:"items"` }
SwitchSecuritySwitchingProfileList contains a list of SwitchSecuritySwitchingProfiles
func (*SwitchSecuritySwitchingProfileList) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfileList) DeepCopy() *SwitchSecuritySwitchingProfileList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfileList.
func (*SwitchSecuritySwitchingProfileList) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfileList) DeepCopyInto(out *SwitchSecuritySwitchingProfileList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SwitchSecuritySwitchingProfileList) DeepCopyObject ¶
func (in *SwitchSecuritySwitchingProfileList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SwitchSecuritySwitchingProfileList) GetItems ¶
func (l *SwitchSecuritySwitchingProfileList) GetItems() []resource.Managed
GetItems of this SwitchSecuritySwitchingProfileList.
type SwitchSecuritySwitchingProfileObservation ¶
type SwitchSecuritySwitchingProfileObservation struct { // Indicates whether DHCP client blocking is enabled BlockClientDHCP *bool `json:"blockClientDhcp,omitempty" tf:"block_client_dhcp,omitempty"` // Block all traffic except IP/(G)ARP/BPDU BlockNonIP *bool `json:"blockNonIp,omitempty" tf:"block_non_ip,omitempty"` // Indicates whether DHCP server blocking is enabled BlockServerDHCP *bool `json:"blockServerDhcp,omitempty" tf:"block_server_dhcp,omitempty"` // Indicates whether BPDU filter is enabled BpduFilterEnabled *bool `json:"bpduFilterEnabled,omitempty" tf:"bpdu_filter_enabled,omitempty"` // Set of allowed MAC addresses to be excluded from BPDU filtering BpduFilterWhitelist []*string `json:"bpduFilterWhitelist,omitempty" tf:"bpdu_filter_whitelist,omitempty"` // Description of this resource Description *string `json:"description,omitempty" tf:"description,omitempty"` // The display name of this resource. Defaults to ID if not set DisplayName *string `json:"displayName,omitempty" tf:"display_name,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` RateLimits []RateLimitsObservation `json:"rateLimits,omitempty" tf:"rate_limits,omitempty"` // The _revision property describes the current revision of the resource. To prevent clients from overwriting each other's changes, PUT operations must include the current _revision of the resource, which clients should obtain by issuing a GET operation. If the _revision provided in a PUT request is missing or stale, the operation will be rejected Revision *float64 `json:"revision,omitempty" tf:"revision,omitempty"` // Set of opaque identifiers meaningful to the user Tag []TagObservation `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*SwitchSecuritySwitchingProfileObservation) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfileObservation) DeepCopy() *SwitchSecuritySwitchingProfileObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfileObservation.
func (*SwitchSecuritySwitchingProfileObservation) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfileObservation) DeepCopyInto(out *SwitchSecuritySwitchingProfileObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SwitchSecuritySwitchingProfileParameters ¶
type SwitchSecuritySwitchingProfileParameters struct { // Indicates whether DHCP client blocking is enabled // +kubebuilder:validation:Optional BlockClientDHCP *bool `json:"blockClientDhcp,omitempty" tf:"block_client_dhcp,omitempty"` // Block all traffic except IP/(G)ARP/BPDU // +kubebuilder:validation:Optional BlockNonIP *bool `json:"blockNonIp,omitempty" tf:"block_non_ip,omitempty"` // Indicates whether DHCP server blocking is enabled // +kubebuilder:validation:Optional BlockServerDHCP *bool `json:"blockServerDhcp,omitempty" tf:"block_server_dhcp,omitempty"` // Indicates whether BPDU filter is enabled // +kubebuilder:validation:Optional BpduFilterEnabled *bool `json:"bpduFilterEnabled,omitempty" tf:"bpdu_filter_enabled,omitempty"` // Set of allowed MAC addresses to be excluded from BPDU filtering // +kubebuilder:validation:Optional BpduFilterWhitelist []*string `json:"bpduFilterWhitelist,omitempty" tf:"bpdu_filter_whitelist,omitempty"` // Description of this resource // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // The display name of this resource. Defaults to ID if not set // +kubebuilder:validation:Optional DisplayName *string `json:"displayName,omitempty" tf:"display_name,omitempty"` // +kubebuilder:validation:Optional RateLimits []RateLimitsParameters `json:"rateLimits,omitempty" tf:"rate_limits,omitempty"` // Set of opaque identifiers meaningful to the user // +kubebuilder:validation:Optional Tag []TagParameters `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*SwitchSecuritySwitchingProfileParameters) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfileParameters) DeepCopy() *SwitchSecuritySwitchingProfileParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfileParameters.
func (*SwitchSecuritySwitchingProfileParameters) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfileParameters) DeepCopyInto(out *SwitchSecuritySwitchingProfileParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SwitchSecuritySwitchingProfileSpec ¶
type SwitchSecuritySwitchingProfileSpec struct { v1.ResourceSpec `json:",inline"` ForProvider SwitchSecuritySwitchingProfileParameters `json:"forProvider"` }
SwitchSecuritySwitchingProfileSpec defines the desired state of SwitchSecuritySwitchingProfile
func (*SwitchSecuritySwitchingProfileSpec) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfileSpec) DeepCopy() *SwitchSecuritySwitchingProfileSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfileSpec.
func (*SwitchSecuritySwitchingProfileSpec) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfileSpec) DeepCopyInto(out *SwitchSecuritySwitchingProfileSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SwitchSecuritySwitchingProfileStatus ¶
type SwitchSecuritySwitchingProfileStatus struct { v1.ResourceStatus `json:",inline"` AtProvider SwitchSecuritySwitchingProfileObservation `json:"atProvider,omitempty"` }
SwitchSecuritySwitchingProfileStatus defines the observed state of SwitchSecuritySwitchingProfile.
func (*SwitchSecuritySwitchingProfileStatus) DeepCopy ¶
func (in *SwitchSecuritySwitchingProfileStatus) DeepCopy() *SwitchSecuritySwitchingProfileStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SwitchSecuritySwitchingProfileStatus.
func (*SwitchSecuritySwitchingProfileStatus) DeepCopyInto ¶
func (in *SwitchSecuritySwitchingProfileStatus) DeepCopyInto(out *SwitchSecuritySwitchingProfileStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TagObservation ¶
type TagObservation struct { Scope *string `json:"scope,omitempty" tf:"scope,omitempty"` Tag *string `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*TagObservation) DeepCopy ¶
func (in *TagObservation) DeepCopy() *TagObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagObservation.
func (*TagObservation) DeepCopyInto ¶
func (in *TagObservation) DeepCopyInto(out *TagObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TagParameters ¶
type TagParameters struct { // +kubebuilder:validation:Optional Scope *string `json:"scope,omitempty" tf:"scope,omitempty"` // +kubebuilder:validation:Optional Tag *string `json:"tag,omitempty" tf:"tag,omitempty"` }
func (*TagParameters) DeepCopy ¶
func (in *TagParameters) DeepCopy() *TagParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TagParameters.
func (*TagParameters) DeepCopyInto ¶
func (in *TagParameters) DeepCopyInto(out *TagParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.