Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=nsxtipdiscoveryswitchingprofile.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type IpDiscoverySwitchingProfile
- func (in *IpDiscoverySwitchingProfile) DeepCopy() *IpDiscoverySwitchingProfile
- func (in *IpDiscoverySwitchingProfile) DeepCopyInto(out *IpDiscoverySwitchingProfile)
- func (in *IpDiscoverySwitchingProfile) DeepCopyObject() runtime.Object
- func (mg *IpDiscoverySwitchingProfile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *IpDiscoverySwitchingProfile) GetConnectionDetailsMapping() map[string]string
- func (mg *IpDiscoverySwitchingProfile) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *IpDiscoverySwitchingProfile) GetID() string
- func (mg *IpDiscoverySwitchingProfile) GetManagementPolicy() xpv1.ManagementPolicy
- func (tr *IpDiscoverySwitchingProfile) GetObservation() (map[string]any, error)
- func (tr *IpDiscoverySwitchingProfile) GetParameters() (map[string]any, error)
- func (mg *IpDiscoverySwitchingProfile) GetProviderConfigReference() *xpv1.Reference
- func (mg *IpDiscoverySwitchingProfile) GetProviderReference() *xpv1.Reference
- func (mg *IpDiscoverySwitchingProfile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *IpDiscoverySwitchingProfile) GetTerraformResourceType() string
- func (tr *IpDiscoverySwitchingProfile) GetTerraformSchemaVersion() int
- func (mg *IpDiscoverySwitchingProfile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *IpDiscoverySwitchingProfile) LateInitialize(attrs []byte) (bool, error)
- func (mg *IpDiscoverySwitchingProfile) SetConditions(c ...xpv1.Condition)
- func (mg *IpDiscoverySwitchingProfile) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *IpDiscoverySwitchingProfile) SetManagementPolicy(r xpv1.ManagementPolicy)
- func (tr *IpDiscoverySwitchingProfile) SetObservation(obs map[string]any) error
- func (tr *IpDiscoverySwitchingProfile) SetParameters(params map[string]any) error
- func (mg *IpDiscoverySwitchingProfile) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *IpDiscoverySwitchingProfile) SetProviderReference(r *xpv1.Reference)
- func (mg *IpDiscoverySwitchingProfile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *IpDiscoverySwitchingProfile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type IpDiscoverySwitchingProfileList
- func (in *IpDiscoverySwitchingProfileList) DeepCopy() *IpDiscoverySwitchingProfileList
- func (in *IpDiscoverySwitchingProfileList) DeepCopyInto(out *IpDiscoverySwitchingProfileList)
- func (in *IpDiscoverySwitchingProfileList) DeepCopyObject() runtime.Object
- func (l *IpDiscoverySwitchingProfileList) GetItems() []resource.Managed
- type IpDiscoverySwitchingProfileObservation
- type IpDiscoverySwitchingProfileParameters
- type IpDiscoverySwitchingProfileSpec
- type IpDiscoverySwitchingProfileStatus
- type TagObservation
- type TagParameters
Constants ¶
const ( CRDGroup = "nsxtipdiscoveryswitchingprofile.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 ( IpDiscoverySwitchingProfile_Kind = "IpDiscoverySwitchingProfile" IpDiscoverySwitchingProfile_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: IpDiscoverySwitchingProfile_Kind}.String() IpDiscoverySwitchingProfile_KindAPIVersion = IpDiscoverySwitchingProfile_Kind + "." + CRDGroupVersion.String() IpDiscoverySwitchingProfile_GroupVersionKind = CRDGroupVersion.WithKind(IpDiscoverySwitchingProfile_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type IpDiscoverySwitchingProfile ¶
type IpDiscoverySwitchingProfile struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IpDiscoverySwitchingProfileSpec `json:"spec"` Status IpDiscoverySwitchingProfileStatus `json:"status,omitempty"` }
IpDiscoverySwitchingProfile is the Schema for the IpDiscoverySwitchingProfiles 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 (*IpDiscoverySwitchingProfile) DeepCopy ¶
func (in *IpDiscoverySwitchingProfile) DeepCopy() *IpDiscoverySwitchingProfile
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfile) DeepCopyInto(out *IpDiscoverySwitchingProfile)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IpDiscoverySwitchingProfile) DeepCopyObject ¶
func (in *IpDiscoverySwitchingProfile) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*IpDiscoverySwitchingProfile) GetCondition ¶
func (mg *IpDiscoverySwitchingProfile) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) GetConnectionDetailsMapping ¶
func (tr *IpDiscoverySwitchingProfile) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) GetDeletionPolicy ¶
func (mg *IpDiscoverySwitchingProfile) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) GetID ¶
func (tr *IpDiscoverySwitchingProfile) GetID() string
GetID returns ID of underlying Terraform resource of this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) GetManagementPolicy ¶
func (mg *IpDiscoverySwitchingProfile) GetManagementPolicy() xpv1.ManagementPolicy
GetManagementPolicy of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) GetObservation ¶
func (tr *IpDiscoverySwitchingProfile) GetObservation() (map[string]any, error)
GetObservation of this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) GetParameters ¶
func (tr *IpDiscoverySwitchingProfile) GetParameters() (map[string]any, error)
GetParameters of this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) GetProviderConfigReference ¶
func (mg *IpDiscoverySwitchingProfile) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) GetProviderReference ¶
func (mg *IpDiscoverySwitchingProfile) GetProviderReference() *xpv1.Reference
GetProviderReference of this IpDiscoverySwitchingProfile. Deprecated: Use GetProviderConfigReference.
func (*IpDiscoverySwitchingProfile) GetPublishConnectionDetailsTo ¶
func (mg *IpDiscoverySwitchingProfile) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) GetTerraformResourceType ¶
func (mg *IpDiscoverySwitchingProfile) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) GetTerraformSchemaVersion ¶
func (tr *IpDiscoverySwitchingProfile) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*IpDiscoverySwitchingProfile) GetWriteConnectionSecretToReference ¶
func (mg *IpDiscoverySwitchingProfile) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) LateInitialize ¶
func (tr *IpDiscoverySwitchingProfile) LateInitialize(attrs []byte) (bool, error)
LateInitialize this IpDiscoverySwitchingProfile using its observed tfState. returns True if there are any spec changes for the resource.
func (*IpDiscoverySwitchingProfile) SetConditions ¶
func (mg *IpDiscoverySwitchingProfile) SetConditions(c ...xpv1.Condition)
SetConditions of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) SetDeletionPolicy ¶
func (mg *IpDiscoverySwitchingProfile) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) SetManagementPolicy ¶
func (mg *IpDiscoverySwitchingProfile) SetManagementPolicy(r xpv1.ManagementPolicy)
SetManagementPolicy of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) SetObservation ¶
func (tr *IpDiscoverySwitchingProfile) SetObservation(obs map[string]any) error
SetObservation for this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) SetParameters ¶
func (tr *IpDiscoverySwitchingProfile) SetParameters(params map[string]any) error
SetParameters for this IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfile) SetProviderConfigReference ¶
func (mg *IpDiscoverySwitchingProfile) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) SetProviderReference ¶
func (mg *IpDiscoverySwitchingProfile) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this IpDiscoverySwitchingProfile. Deprecated: Use SetProviderConfigReference.
func (*IpDiscoverySwitchingProfile) SetPublishConnectionDetailsTo ¶
func (mg *IpDiscoverySwitchingProfile) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfile) SetWriteConnectionSecretToReference ¶
func (mg *IpDiscoverySwitchingProfile) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this IpDiscoverySwitchingProfile.
type IpDiscoverySwitchingProfileList ¶
type IpDiscoverySwitchingProfileList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []IpDiscoverySwitchingProfile `json:"items"` }
IpDiscoverySwitchingProfileList contains a list of IpDiscoverySwitchingProfiles
func (*IpDiscoverySwitchingProfileList) DeepCopy ¶
func (in *IpDiscoverySwitchingProfileList) DeepCopy() *IpDiscoverySwitchingProfileList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfileList.
func (*IpDiscoverySwitchingProfileList) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfileList) DeepCopyInto(out *IpDiscoverySwitchingProfileList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IpDiscoverySwitchingProfileList) DeepCopyObject ¶
func (in *IpDiscoverySwitchingProfileList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*IpDiscoverySwitchingProfileList) GetItems ¶
func (l *IpDiscoverySwitchingProfileList) GetItems() []resource.Managed
GetItems of this IpDiscoverySwitchingProfileList.
type IpDiscoverySwitchingProfileObservation ¶
type IpDiscoverySwitchingProfileObservation struct { // Limit for the amount of ARP bindings ArpBindingsLimit *float64 `json:"arpBindingsLimit,omitempty" tf:"arp_bindings_limit,omitempty"` // Indicates whether ARP snooping is enabled ArpSnoopingEnabled *bool `json:"arpSnoopingEnabled,omitempty" tf:"arp_snooping_enabled,omitempty"` // Indicates whether DHCP snooping is enabled DHCPSnoopingEnabled *bool `json:"dhcpSnoopingEnabled,omitempty" tf:"dhcp_snooping_enabled,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"` // 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"` // Indicating whether VM tools will be enabled. This option is only supported on ESX where vm-tools is installed VMToolsEnabled *bool `json:"vmToolsEnabled,omitempty" tf:"vm_tools_enabled,omitempty"` }
func (*IpDiscoverySwitchingProfileObservation) DeepCopy ¶
func (in *IpDiscoverySwitchingProfileObservation) DeepCopy() *IpDiscoverySwitchingProfileObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfileObservation.
func (*IpDiscoverySwitchingProfileObservation) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfileObservation) DeepCopyInto(out *IpDiscoverySwitchingProfileObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IpDiscoverySwitchingProfileParameters ¶
type IpDiscoverySwitchingProfileParameters struct { // Limit for the amount of ARP bindings // +kubebuilder:validation:Optional ArpBindingsLimit *float64 `json:"arpBindingsLimit,omitempty" tf:"arp_bindings_limit,omitempty"` // Indicates whether ARP snooping is enabled // +kubebuilder:validation:Optional ArpSnoopingEnabled *bool `json:"arpSnoopingEnabled,omitempty" tf:"arp_snooping_enabled,omitempty"` // Indicates whether DHCP snooping is enabled // +kubebuilder:validation:Optional DHCPSnoopingEnabled *bool `json:"dhcpSnoopingEnabled,omitempty" tf:"dhcp_snooping_enabled,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"` // Set of opaque identifiers meaningful to the user // +kubebuilder:validation:Optional Tag []TagParameters `json:"tag,omitempty" tf:"tag,omitempty"` // Indicating whether VM tools will be enabled. This option is only supported on ESX where vm-tools is installed // +kubebuilder:validation:Optional VMToolsEnabled *bool `json:"vmToolsEnabled,omitempty" tf:"vm_tools_enabled,omitempty"` }
func (*IpDiscoverySwitchingProfileParameters) DeepCopy ¶
func (in *IpDiscoverySwitchingProfileParameters) DeepCopy() *IpDiscoverySwitchingProfileParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfileParameters.
func (*IpDiscoverySwitchingProfileParameters) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfileParameters) DeepCopyInto(out *IpDiscoverySwitchingProfileParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IpDiscoverySwitchingProfileSpec ¶
type IpDiscoverySwitchingProfileSpec struct { v1.ResourceSpec `json:",inline"` ForProvider IpDiscoverySwitchingProfileParameters `json:"forProvider"` }
IpDiscoverySwitchingProfileSpec defines the desired state of IpDiscoverySwitchingProfile
func (*IpDiscoverySwitchingProfileSpec) DeepCopy ¶
func (in *IpDiscoverySwitchingProfileSpec) DeepCopy() *IpDiscoverySwitchingProfileSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfileSpec.
func (*IpDiscoverySwitchingProfileSpec) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfileSpec) DeepCopyInto(out *IpDiscoverySwitchingProfileSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IpDiscoverySwitchingProfileStatus ¶
type IpDiscoverySwitchingProfileStatus struct { v1.ResourceStatus `json:",inline"` AtProvider IpDiscoverySwitchingProfileObservation `json:"atProvider,omitempty"` }
IpDiscoverySwitchingProfileStatus defines the observed state of IpDiscoverySwitchingProfile.
func (*IpDiscoverySwitchingProfileStatus) DeepCopy ¶
func (in *IpDiscoverySwitchingProfileStatus) DeepCopy() *IpDiscoverySwitchingProfileStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpDiscoverySwitchingProfileStatus.
func (*IpDiscoverySwitchingProfileStatus) DeepCopyInto ¶
func (in *IpDiscoverySwitchingProfileStatus) DeepCopyInto(out *IpDiscoverySwitchingProfileStatus)
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.