From f118d8791870a77bd9003c26866537d7b00184c4 Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Sun, 21 Jul 2024 12:54:32 -0400 Subject: [PATCH] chore: regenerate apis with explicit KnownReferencer fields Signed-off-by: Marques Johansson --- apis/metal/v1alpha1/zz_bgpsession_types.go | 12 ++-- apis/metal/v1alpha1/zz_connection_types.go | 24 ++++---- apis/metal/v1alpha1/zz_device_types.go | 12 ++-- .../v1alpha1/zz_devicenetworktype_types.go | 12 ++-- apis/metal/v1alpha1/zz_gateway_types.go | 36 +++++------ apis/metal/v1alpha1/zz_ipattachment_types.go | 12 ++-- .../v1alpha1/zz_organizationmember_types.go | 12 ++-- apis/metal/v1alpha1/zz_port_types.go | 12 ++-- .../v1alpha1/zz_portvlanattachment_types.go | 12 ++-- apis/metal/v1alpha1/zz_project_types.go | 12 ++-- apis/metal/v1alpha1/zz_projectapikey_types.go | 12 ++-- apis/metal/v1alpha1/zz_projectsshkey_types.go | 12 ++-- .../v1alpha1/zz_reservedipblock_types.go | 24 ++++---- .../v1alpha1/zz_spotmarketrequest_types.go | 12 ++-- .../metal/v1alpha1/zz_virtualcircuit_types.go | 60 +++++++++---------- apis/metal/v1alpha1/zz_vlan_types.go | 12 ++-- apis/metal/v1alpha1/zz_vrf_types.go | 12 ++-- ...equinix.jet.crossplane.io_bgpsessions.yaml | 8 +-- ...equinix.jet.crossplane.io_connections.yaml | 20 ++++--- ....jet.crossplane.io_devicenetworktypes.yaml | 8 +-- ...tal.equinix.jet.crossplane.io_devices.yaml | 8 +-- ...al.equinix.jet.crossplane.io_gateways.yaml | 28 +++++---- ...uinix.jet.crossplane.io_ipattachments.yaml | 8 +-- ...jet.crossplane.io_organizationmembers.yaml | 12 ++-- ...metal.equinix.jet.crossplane.io_ports.yaml | 8 +-- ...jet.crossplane.io_portvlanattachments.yaml | 8 +-- ...inix.jet.crossplane.io_projectapikeys.yaml | 8 +-- ...al.equinix.jet.crossplane.io_projects.yaml | 12 ++-- ...inix.jet.crossplane.io_projectsshkeys.yaml | 8 +-- ...ix.jet.crossplane.io_reservedipblocks.yaml | 16 ++--- ....jet.crossplane.io_spotmarketrequests.yaml | 8 +-- ...nix.jet.crossplane.io_virtualcircuits.yaml | 44 +++++++------- ...metal.equinix.jet.crossplane.io_vlans.yaml | 8 +-- ...metal.equinix.jet.crossplane.io_vrves.yaml | 8 +-- 34 files changed, 270 insertions(+), 250 deletions(-) diff --git a/apis/metal/v1alpha1/zz_bgpsession_types.go b/apis/metal/v1alpha1/zz_bgpsession_types.go index 99dc601..3e9a8fc 100755 --- a/apis/metal/v1alpha1/zz_bgpsession_types.go +++ b/apis/metal/v1alpha1/zz_bgpsession_types.go @@ -37,14 +37,14 @@ type BGPSessionInitParameters struct { // ID of device. // ID of device - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` } @@ -84,15 +84,15 @@ type BGPSessionParameters struct { // ID of device. // ID of device - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device // +kubebuilder:validation:Optional DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` } diff --git a/apis/metal/v1alpha1/zz_connection_types.go b/apis/metal/v1alpha1/zz_connection_types.go index 3b84e3c..45c5df2 100755 --- a/apis/metal/v1alpha1/zz_connection_types.go +++ b/apis/metal/v1alpha1/zz_connection_types.go @@ -53,27 +53,27 @@ type ConnectionInitParameters struct { // ID of the organization where the connection is scoped to. // ID of the organization responsible for the connection. Applicable with type "dedicated" - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` // ID of the project where the connection is scoped to, must be set for. // ID of the project where the connection is scoped to. Required with type "shared" - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -220,29 +220,29 @@ type ConnectionParameters struct { // ID of the organization where the connection is scoped to. // ID of the organization responsible for the connection. Applicable with type "dedicated" - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization // +kubebuilder:validation:Optional OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` // ID of the project where the connection is scoped to, must be set for. // ID of the project where the connection is scoped to. Required with type "shared" - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_device_types.go b/apis/metal/v1alpha1/zz_device_types.go index 09a5ebe..821730b 100755 --- a/apis/metal/v1alpha1/zz_device_types.go +++ b/apis/metal/v1alpha1/zz_device_types.go @@ -110,14 +110,14 @@ type DeviceInitParameters struct { // (String) The ID of the project in which to create the device // The ID of the project in which to create the device - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -375,15 +375,15 @@ type DeviceParameters struct { // (String) The ID of the project in which to create the device // The ID of the project in which to create the device - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_devicenetworktype_types.go b/apis/metal/v1alpha1/zz_devicenetworktype_types.go index 9e7920c..9c304fd 100755 --- a/apis/metal/v1alpha1/zz_devicenetworktype_types.go +++ b/apis/metal/v1alpha1/zz_devicenetworktype_types.go @@ -28,14 +28,14 @@ import ( type DeviceNetworkTypeInitParameters struct { // The ID of the device on which the network type should be set - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` @@ -57,15 +57,15 @@ type DeviceNetworkTypeObservation struct { type DeviceNetworkTypeParameters struct { // The ID of the device on which the network type should be set - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device // +kubebuilder:validation:Optional DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_gateway_types.go b/apis/metal/v1alpha1/zz_gateway_types.go index 4bd7f7f..8207226 100755 --- a/apis/metal/v1alpha1/zz_gateway_types.go +++ b/apis/metal/v1alpha1/zz_gateway_types.go @@ -29,14 +29,14 @@ type GatewayInitParameters struct { // UUID of Public or VRF IP Reservation to associate with the gateway, the reservation must be in the same metro as the VLAN, conflicts with private_ipv4_subnet_size. // UUID of the Public or VRF IP Reservation to associate - // +crossplane:generate:reference:type=ReservedIPBlock + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.ReservedIPBlock IPReservationID *string `json:"ipReservationId,omitempty" tf:"ip_reservation_id,omitempty"` - // Reference to a ReservedIPBlock to populate ipReservationId. + // Reference to a ReservedIPBlock in metal to populate ipReservationId. // +kubebuilder:validation:Optional IPReservationIDRef *v1.Reference `json:"ipReservationIdRef,omitempty" tf:"-"` - // Selector for a ReservedIPBlock to populate ipReservationId. + // Selector for a ReservedIPBlock in metal to populate ipReservationId. // +kubebuilder:validation:Optional IPReservationIDSelector *v1.Selector `json:"ipReservationIdSelector,omitempty" tf:"-"` @@ -46,27 +46,27 @@ type GatewayInitParameters struct { // UUID of the project where the gateway is scoped to. // UUID of the Project where the Gateway is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` // UUID of the VLAN where the gateway is scoped to. // UUID of the VLAN to associate - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan VlanID *string `json:"vlanId,omitempty" tf:"vlan_id,omitempty"` - // Reference to a Vlan to populate vlanId. + // Reference to a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDRef *v1.Reference `json:"vlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate vlanId. + // Selector for a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDSelector *v1.Selector `json:"vlanIdSelector,omitempty" tf:"-"` } @@ -103,15 +103,15 @@ type GatewayParameters struct { // UUID of Public or VRF IP Reservation to associate with the gateway, the reservation must be in the same metro as the VLAN, conflicts with private_ipv4_subnet_size. // UUID of the Public or VRF IP Reservation to associate - // +crossplane:generate:reference:type=ReservedIPBlock + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.ReservedIPBlock // +kubebuilder:validation:Optional IPReservationID *string `json:"ipReservationId,omitempty" tf:"ip_reservation_id,omitempty"` - // Reference to a ReservedIPBlock to populate ipReservationId. + // Reference to a ReservedIPBlock in metal to populate ipReservationId. // +kubebuilder:validation:Optional IPReservationIDRef *v1.Reference `json:"ipReservationIdRef,omitempty" tf:"-"` - // Selector for a ReservedIPBlock to populate ipReservationId. + // Selector for a ReservedIPBlock in metal to populate ipReservationId. // +kubebuilder:validation:Optional IPReservationIDSelector *v1.Selector `json:"ipReservationIdSelector,omitempty" tf:"-"` @@ -122,29 +122,29 @@ type GatewayParameters struct { // UUID of the project where the gateway is scoped to. // UUID of the Project where the Gateway is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` // UUID of the VLAN where the gateway is scoped to. // UUID of the VLAN to associate - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan // +kubebuilder:validation:Optional VlanID *string `json:"vlanId,omitempty" tf:"vlan_id,omitempty"` - // Reference to a Vlan to populate vlanId. + // Reference to a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDRef *v1.Reference `json:"vlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate vlanId. + // Selector for a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDSelector *v1.Selector `json:"vlanIdSelector,omitempty" tf:"-"` } diff --git a/apis/metal/v1alpha1/zz_ipattachment_types.go b/apis/metal/v1alpha1/zz_ipattachment_types.go index 4a5abe4..1603140 100755 --- a/apis/metal/v1alpha1/zz_ipattachment_types.go +++ b/apis/metal/v1alpha1/zz_ipattachment_types.go @@ -31,14 +31,14 @@ type IPAttachmentInitParameters struct { CidrNotation *string `json:"cidrNotation,omitempty" tf:"cidr_notation,omitempty"` // ID of device to which to assign the subnet. - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` } @@ -96,15 +96,15 @@ type IPAttachmentParameters struct { CidrNotation *string `json:"cidrNotation,omitempty" tf:"cidr_notation,omitempty"` // ID of device to which to assign the subnet. - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device // +kubebuilder:validation:Optional DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` } diff --git a/apis/metal/v1alpha1/zz_organizationmember_types.go b/apis/metal/v1alpha1/zz_organizationmember_types.go index 958483c..8d73e96 100755 --- a/apis/metal/v1alpha1/zz_organizationmember_types.go +++ b/apis/metal/v1alpha1/zz_organizationmember_types.go @@ -37,14 +37,14 @@ type OrganizationMemberInitParameters struct { // The organization to invite the user to // The organization to invite the user to - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` @@ -121,15 +121,15 @@ type OrganizationMemberParameters struct { // The organization to invite the user to // The organization to invite the user to - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization // +kubebuilder:validation:Optional OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_port_types.go b/apis/metal/v1alpha1/zz_port_types.go index acd1ec5..e0d079e 100755 --- a/apis/metal/v1alpha1/zz_port_types.go +++ b/apis/metal/v1alpha1/zz_port_types.go @@ -34,14 +34,14 @@ type PortInitParameters struct { Layer2 *bool `json:"layer2,omitempty" tf:"layer2,omitempty"` // UUID of native VLAN of the port - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan NativeVlanID *string `json:"nativeVlanId,omitempty" tf:"native_vlan_id,omitempty"` - // Reference to a Vlan to populate nativeVlanId. + // Reference to a Vlan in metal to populate nativeVlanId. // +kubebuilder:validation:Optional NativeVlanIDRef *v1.Reference `json:"nativeVlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate nativeVlanId. + // Selector for a Vlan in metal to populate nativeVlanId. // +kubebuilder:validation:Optional NativeVlanIDSelector *v1.Selector `json:"nativeVlanIdSelector,omitempty" tf:"-"` @@ -120,15 +120,15 @@ type PortParameters struct { Layer2 *bool `json:"layer2,omitempty" tf:"layer2,omitempty"` // UUID of native VLAN of the port - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan // +kubebuilder:validation:Optional NativeVlanID *string `json:"nativeVlanId,omitempty" tf:"native_vlan_id,omitempty"` - // Reference to a Vlan to populate nativeVlanId. + // Reference to a Vlan in metal to populate nativeVlanId. // +kubebuilder:validation:Optional NativeVlanIDRef *v1.Reference `json:"nativeVlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate nativeVlanId. + // Selector for a Vlan in metal to populate nativeVlanId. // +kubebuilder:validation:Optional NativeVlanIDSelector *v1.Selector `json:"nativeVlanIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_portvlanattachment_types.go b/apis/metal/v1alpha1/zz_portvlanattachment_types.go index 5beeda2..0842be9 100755 --- a/apis/metal/v1alpha1/zz_portvlanattachment_types.go +++ b/apis/metal/v1alpha1/zz_portvlanattachment_types.go @@ -28,14 +28,14 @@ import ( type PortVlanAttachmentInitParameters struct { // ID of device to be assigned to the VLAN - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` @@ -81,15 +81,15 @@ type PortVlanAttachmentObservation struct { type PortVlanAttachmentParameters struct { // ID of device to be assigned to the VLAN - // +crossplane:generate:reference:type=Device + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Device // +kubebuilder:validation:Optional DeviceID *string `json:"deviceId,omitempty" tf:"device_id,omitempty"` - // Reference to a Device to populate deviceId. + // Reference to a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDRef *v1.Reference `json:"deviceIdRef,omitempty" tf:"-"` - // Selector for a Device to populate deviceId. + // Selector for a Device in metal to populate deviceId. // +kubebuilder:validation:Optional DeviceIDSelector *v1.Selector `json:"deviceIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_project_types.go b/apis/metal/v1alpha1/zz_project_types.go index 798fb2c..a7b664d 100755 --- a/apis/metal/v1alpha1/zz_project_types.go +++ b/apis/metal/v1alpha1/zz_project_types.go @@ -93,14 +93,14 @@ type ProjectInitParameters struct { // The UUID of organization under which you want to create the project. If you leave it out, the project will be created under your the default organization of your account. // The UUID of organization under which the project is created - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` @@ -162,15 +162,15 @@ type ProjectParameters struct { // The UUID of organization under which you want to create the project. If you leave it out, the project will be created under your the default organization of your account. // The UUID of organization under which the project is created - // +crossplane:generate:reference:type=Organization + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Organization // +kubebuilder:validation:Optional OrganizationID *string `json:"organizationId,omitempty" tf:"organization_id,omitempty"` - // Reference to a Organization to populate organizationId. + // Reference to a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDRef *v1.Reference `json:"organizationIdRef,omitempty" tf:"-"` - // Selector for a Organization to populate organizationId. + // Selector for a Organization in metal to populate organizationId. // +kubebuilder:validation:Optional OrganizationIDSelector *v1.Selector `json:"organizationIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_projectapikey_types.go b/apis/metal/v1alpha1/zz_projectapikey_types.go index b9886aa..a315af2 100755 --- a/apis/metal/v1alpha1/zz_projectapikey_types.go +++ b/apis/metal/v1alpha1/zz_projectapikey_types.go @@ -33,14 +33,14 @@ type ProjectAPIKeyInitParameters struct { // UUID of the project where the API key is scoped to. // UUID of project which the new API key is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -73,15 +73,15 @@ type ProjectAPIKeyParameters struct { // UUID of the project where the API key is scoped to. // UUID of project which the new API key is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_projectsshkey_types.go b/apis/metal/v1alpha1/zz_projectsshkey_types.go index 9a91f26..97ed2cc 100755 --- a/apis/metal/v1alpha1/zz_projectsshkey_types.go +++ b/apis/metal/v1alpha1/zz_projectsshkey_types.go @@ -33,14 +33,14 @@ type ProjectSSHKeyInitParameters struct { // The ID of parent project. // The ID of parent project - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -92,15 +92,15 @@ type ProjectSSHKeyParameters struct { // The ID of parent project. // The ID of parent project - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_reservedipblock_types.go b/apis/metal/v1alpha1/zz_reservedipblock_types.go index 79ec9cb..c59a602 100755 --- a/apis/metal/v1alpha1/zz_reservedipblock_types.go +++ b/apis/metal/v1alpha1/zz_reservedipblock_types.go @@ -52,14 +52,14 @@ type ReservedIPBlockInitParameters struct { // The metal project ID where to allocate the address block. // The metal project ID where to allocate the address block - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -78,14 +78,14 @@ type ReservedIPBlockInitParameters struct { // Only valid and required when type is vrf. VRF ID for type=vrf reservations. // VRF ID for type=vrf reservations - // +crossplane:generate:reference:type=Vrf + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vrf VrfID *string `json:"vrfId,omitempty" tf:"vrf_id,omitempty"` - // Reference to a Vrf to populate vrfId. + // Reference to a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDRef *v1.Reference `json:"vrfIdRef,omitempty" tf:"-"` - // Selector for a Vrf to populate vrfId. + // Selector for a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDSelector *v1.Selector `json:"vrfIdSelector,omitempty" tf:"-"` @@ -207,15 +207,15 @@ type ReservedIPBlockParameters struct { // The metal project ID where to allocate the address block. // The metal project ID where to allocate the address block - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -237,15 +237,15 @@ type ReservedIPBlockParameters struct { // Only valid and required when type is vrf. VRF ID for type=vrf reservations. // VRF ID for type=vrf reservations - // +crossplane:generate:reference:type=Vrf + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vrf // +kubebuilder:validation:Optional VrfID *string `json:"vrfId,omitempty" tf:"vrf_id,omitempty"` - // Reference to a Vrf to populate vrfId. + // Reference to a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDRef *v1.Reference `json:"vrfIdRef,omitempty" tf:"-"` - // Selector for a Vrf to populate vrfId. + // Selector for a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDSelector *v1.Selector `json:"vrfIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_spotmarketrequest_types.go b/apis/metal/v1alpha1/zz_spotmarketrequest_types.go index aa4ca33..b590188 100755 --- a/apis/metal/v1alpha1/zz_spotmarketrequest_types.go +++ b/apis/metal/v1alpha1/zz_spotmarketrequest_types.go @@ -165,14 +165,14 @@ type SpotMarketRequestInitParameters struct { // Project ID. // Project ID - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -253,15 +253,15 @@ type SpotMarketRequestParameters struct { // Project ID. // Project ID - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_virtualcircuit_types.go b/apis/metal/v1alpha1/zz_virtualcircuit_types.go index f72fc52..2286c2d 100755 --- a/apis/metal/v1alpha1/zz_virtualcircuit_types.go +++ b/apis/metal/v1alpha1/zz_virtualcircuit_types.go @@ -29,14 +29,14 @@ type VirtualCircuitInitParameters struct { // (String) UUID of Connection where the VC is scoped to. Only used for dedicated connections // UUID of Connection where the VC is scoped to. Only used for dedicated connections - // +crossplane:generate:reference:type=Connection + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Connection ConnectionID *string `json:"connectionId,omitempty" tf:"connection_id,omitempty"` - // Reference to a Connection to populate connectionId. + // Reference to a Connection in metal to populate connectionId. // +kubebuilder:validation:Optional ConnectionIDRef *v1.Reference `json:"connectionIdRef,omitempty" tf:"-"` - // Selector for a Connection to populate connectionId. + // Selector for a Connection in metal to populate connectionId. // +kubebuilder:validation:Optional ConnectionIDSelector *v1.Selector `json:"connectionIdSelector,omitempty" tf:"-"` @@ -82,14 +82,14 @@ type VirtualCircuitInitParameters struct { // (String) UUID of the Project where the VC is scoped to // UUID of the Project where the VC is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -119,40 +119,40 @@ type VirtualCircuitInitParameters struct { // (String) UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. // UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. - // +crossplane:generate:reference:type=VirtualCircuit + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.VirtualCircuit VirtualCircuitID *string `json:"virtualCircuitId,omitempty" tf:"virtual_circuit_id,omitempty"` - // Reference to a VirtualCircuit to populate virtualCircuitId. + // Reference to a VirtualCircuit in metal to populate virtualCircuitId. // +kubebuilder:validation:Optional VirtualCircuitIDRef *v1.Reference `json:"virtualCircuitIdRef,omitempty" tf:"-"` - // Selector for a VirtualCircuit to populate virtualCircuitId. + // Selector for a VirtualCircuit in metal to populate virtualCircuitId. // +kubebuilder:validation:Optional VirtualCircuitIDSelector *v1.Selector `json:"virtualCircuitIdSelector,omitempty" tf:"-"` // (String) UUID of the VLAN to associate // UUID of the VLAN to associate - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan VlanID *string `json:"vlanId,omitempty" tf:"vlan_id,omitempty"` - // Reference to a Vlan to populate vlanId. + // Reference to a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDRef *v1.Reference `json:"vlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate vlanId. + // Selector for a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDSelector *v1.Selector `json:"vlanIdSelector,omitempty" tf:"-"` // (String) UUID of the VRF to associate // UUID of the VRF to associate - // +crossplane:generate:reference:type=Vrf + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vrf VrfID *string `json:"vrfId,omitempty" tf:"vrf_id,omitempty"` - // Reference to a Vrf to populate vrfId. + // Reference to a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDRef *v1.Reference `json:"vrfIdRef,omitempty" tf:"-"` - // Selector for a Vrf to populate vrfId. + // Selector for a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDSelector *v1.Selector `json:"vrfIdSelector,omitempty" tf:"-"` } @@ -259,15 +259,15 @@ type VirtualCircuitParameters struct { // (String) UUID of Connection where the VC is scoped to. Only used for dedicated connections // UUID of Connection where the VC is scoped to. Only used for dedicated connections - // +crossplane:generate:reference:type=Connection + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Connection // +kubebuilder:validation:Optional ConnectionID *string `json:"connectionId,omitempty" tf:"connection_id,omitempty"` - // Reference to a Connection to populate connectionId. + // Reference to a Connection in metal to populate connectionId. // +kubebuilder:validation:Optional ConnectionIDRef *v1.Reference `json:"connectionIdRef,omitempty" tf:"-"` - // Selector for a Connection to populate connectionId. + // Selector for a Connection in metal to populate connectionId. // +kubebuilder:validation:Optional ConnectionIDSelector *v1.Selector `json:"connectionIdSelector,omitempty" tf:"-"` @@ -323,15 +323,15 @@ type VirtualCircuitParameters struct { // (String) UUID of the Project where the VC is scoped to // UUID of the Project where the VC is scoped to - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -365,43 +365,43 @@ type VirtualCircuitParameters struct { // (String) UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. // UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. - // +crossplane:generate:reference:type=VirtualCircuit + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.VirtualCircuit // +kubebuilder:validation:Optional VirtualCircuitID *string `json:"virtualCircuitId,omitempty" tf:"virtual_circuit_id,omitempty"` - // Reference to a VirtualCircuit to populate virtualCircuitId. + // Reference to a VirtualCircuit in metal to populate virtualCircuitId. // +kubebuilder:validation:Optional VirtualCircuitIDRef *v1.Reference `json:"virtualCircuitIdRef,omitempty" tf:"-"` - // Selector for a VirtualCircuit to populate virtualCircuitId. + // Selector for a VirtualCircuit in metal to populate virtualCircuitId. // +kubebuilder:validation:Optional VirtualCircuitIDSelector *v1.Selector `json:"virtualCircuitIdSelector,omitempty" tf:"-"` // (String) UUID of the VLAN to associate // UUID of the VLAN to associate - // +crossplane:generate:reference:type=Vlan + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vlan // +kubebuilder:validation:Optional VlanID *string `json:"vlanId,omitempty" tf:"vlan_id,omitempty"` - // Reference to a Vlan to populate vlanId. + // Reference to a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDRef *v1.Reference `json:"vlanIdRef,omitempty" tf:"-"` - // Selector for a Vlan to populate vlanId. + // Selector for a Vlan in metal to populate vlanId. // +kubebuilder:validation:Optional VlanIDSelector *v1.Selector `json:"vlanIdSelector,omitempty" tf:"-"` // (String) UUID of the VRF to associate // UUID of the VRF to associate - // +crossplane:generate:reference:type=Vrf + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Vrf // +kubebuilder:validation:Optional VrfID *string `json:"vrfId,omitempty" tf:"vrf_id,omitempty"` - // Reference to a Vrf to populate vrfId. + // Reference to a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDRef *v1.Reference `json:"vrfIdRef,omitempty" tf:"-"` - // Selector for a Vrf to populate vrfId. + // Selector for a Vrf in metal to populate vrfId. // +kubebuilder:validation:Optional VrfIDSelector *v1.Selector `json:"vrfIdSelector,omitempty" tf:"-"` } diff --git a/apis/metal/v1alpha1/zz_vlan_types.go b/apis/metal/v1alpha1/zz_vlan_types.go index 5175398..37f1b20 100755 --- a/apis/metal/v1alpha1/zz_vlan_types.go +++ b/apis/metal/v1alpha1/zz_vlan_types.go @@ -41,14 +41,14 @@ type VlanInitParameters struct { // ID of parent project. // ID of parent project - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` @@ -102,15 +102,15 @@ type VlanParameters struct { // ID of parent project. // ID of parent project - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` diff --git a/apis/metal/v1alpha1/zz_vrf_types.go b/apis/metal/v1alpha1/zz_vrf_types.go index 8da1e8b..1afb28a 100755 --- a/apis/metal/v1alpha1/zz_vrf_types.go +++ b/apis/metal/v1alpha1/zz_vrf_types.go @@ -50,14 +50,14 @@ type VrfInitParameters struct { // Project ID where the VRF will be deployed. // Project ID - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` } @@ -122,15 +122,15 @@ type VrfParameters struct { // Project ID where the VRF will be deployed. // Project ID - // +crossplane:generate:reference:type=Project + // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-equinix/apis/metal/v1alpha1.Project // +kubebuilder:validation:Optional ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"` - // Reference to a Project to populate projectId. + // Reference to a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"` - // Selector for a Project to populate projectId. + // Selector for a Project in metal to populate projectId. // +kubebuilder:validation:Optional ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"` } diff --git a/package/crds/metal.equinix.jet.crossplane.io_bgpsessions.yaml b/package/crds/metal.equinix.jet.crossplane.io_bgpsessions.yaml index d5e2a74..3ce8e16 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_bgpsessions.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_bgpsessions.yaml @@ -88,7 +88,7 @@ spec: ID of device type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -122,7 +122,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- @@ -191,7 +191,7 @@ spec: ID of device type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -225,7 +225,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_connections.yaml b/package/crds/metal.equinix.jet.crossplane.io_connections.yaml index c164b40..91eb222 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_connections.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_connections.yaml @@ -108,7 +108,8 @@ spec: ID of the organization responsible for the connection. Applicable with type "dedicated" type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -142,7 +143,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- @@ -187,7 +189,7 @@ spec: ID of the project where the connection is scoped to. Required with type "shared" type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -221,7 +223,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -351,7 +353,8 @@ spec: ID of the organization responsible for the connection. Applicable with type "dedicated" type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -385,7 +388,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- @@ -430,7 +434,7 @@ spec: ID of the project where the connection is scoped to. Required with type "shared" type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -464,7 +468,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_devicenetworktypes.yaml b/package/crds/metal.equinix.jet.crossplane.io_devicenetworktypes.yaml index f68cc9e..605f999 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_devicenetworktypes.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_devicenetworktypes.yaml @@ -78,7 +78,7 @@ spec: be set type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -112,7 +112,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- @@ -174,7 +174,7 @@ spec: be set type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -208,7 +208,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_devices.yaml b/package/crds/metal.equinix.jet.crossplane.io_devices.yaml index 4737a1c..6d413c1 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_devices.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_devices.yaml @@ -195,7 +195,7 @@ spec: The ID of the project in which to create the device type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -229,7 +229,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -479,7 +479,7 @@ spec: The ID of the project in which to create the device type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -513,7 +513,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_gateways.yaml b/package/crds/metal.equinix.jet.crossplane.io_gateways.yaml index e721c4c..58b7657 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_gateways.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_gateways.yaml @@ -78,7 +78,8 @@ spec: UUID of the Public or VRF IP Reservation to associate type: string ipReservationIdRef: - description: Reference to a ReservedIPBlock to populate ipReservationId. + description: Reference to a ReservedIPBlock in metal to populate + ipReservationId. properties: name: description: Name of the referenced object. @@ -112,7 +113,8 @@ spec: - name type: object ipReservationIdSelector: - description: Selector for a ReservedIPBlock to populate ipReservationId. + description: Selector for a ReservedIPBlock in metal to populate + ipReservationId. properties: matchControllerRef: description: |- @@ -162,7 +164,7 @@ spec: UUID of the Project where the Gateway is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -196,7 +198,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -241,7 +243,7 @@ spec: UUID of the VLAN to associate type: string vlanIdRef: - description: Reference to a Vlan to populate vlanId. + description: Reference to a Vlan in metal to populate vlanId. properties: name: description: Name of the referenced object. @@ -275,7 +277,7 @@ spec: - name type: object vlanIdSelector: - description: Selector for a Vlan to populate vlanId. + description: Selector for a Vlan in metal to populate vlanId. properties: matchControllerRef: description: |- @@ -334,7 +336,8 @@ spec: UUID of the Public or VRF IP Reservation to associate type: string ipReservationIdRef: - description: Reference to a ReservedIPBlock to populate ipReservationId. + description: Reference to a ReservedIPBlock in metal to populate + ipReservationId. properties: name: description: Name of the referenced object. @@ -368,7 +371,8 @@ spec: - name type: object ipReservationIdSelector: - description: Selector for a ReservedIPBlock to populate ipReservationId. + description: Selector for a ReservedIPBlock in metal to populate + ipReservationId. properties: matchControllerRef: description: |- @@ -418,7 +422,7 @@ spec: UUID of the Project where the Gateway is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -452,7 +456,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -497,7 +501,7 @@ spec: UUID of the VLAN to associate type: string vlanIdRef: - description: Reference to a Vlan to populate vlanId. + description: Reference to a Vlan in metal to populate vlanId. properties: name: description: Name of the referenced object. @@ -531,7 +535,7 @@ spec: - name type: object vlanIdSelector: - description: Selector for a Vlan to populate vlanId. + description: Selector for a Vlan in metal to populate vlanId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_ipattachments.yaml b/package/crds/metal.equinix.jet.crossplane.io_ipattachments.yaml index 339f114..04aeb81 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_ipattachments.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_ipattachments.yaml @@ -80,7 +80,7 @@ spec: description: ID of device to which to assign the subnet. type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -114,7 +114,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- @@ -175,7 +175,7 @@ spec: description: ID of device to which to assign the subnet. type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -209,7 +209,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_organizationmembers.yaml b/package/crds/metal.equinix.jet.crossplane.io_organizationmembers.yaml index 46b783f..03b764e 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_organizationmembers.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_organizationmembers.yaml @@ -89,7 +89,8 @@ spec: The organization to invite the user to type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -123,7 +124,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- @@ -208,7 +210,8 @@ spec: The organization to invite the user to type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -242,7 +245,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_ports.yaml b/package/crds/metal.equinix.jet.crossplane.io_ports.yaml index 60609e1..cc4a891 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_ports.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_ports.yaml @@ -83,7 +83,7 @@ spec: description: UUID of native VLAN of the port type: string nativeVlanIdRef: - description: Reference to a Vlan to populate nativeVlanId. + description: Reference to a Vlan in metal to populate nativeVlanId. properties: name: description: Name of the referenced object. @@ -117,7 +117,7 @@ spec: - name type: object nativeVlanIdSelector: - description: Selector for a Vlan to populate nativeVlanId. + description: Selector for a Vlan in metal to populate nativeVlanId. properties: matchControllerRef: description: |- @@ -201,7 +201,7 @@ spec: description: UUID of native VLAN of the port type: string nativeVlanIdRef: - description: Reference to a Vlan to populate nativeVlanId. + description: Reference to a Vlan in metal to populate nativeVlanId. properties: name: description: Name of the referenced object. @@ -235,7 +235,7 @@ spec: - name type: object nativeVlanIdSelector: - description: Selector for a Vlan to populate nativeVlanId. + description: Selector for a Vlan in metal to populate nativeVlanId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_portvlanattachments.yaml b/package/crds/metal.equinix.jet.crossplane.io_portvlanattachments.yaml index 26506e4..a399c6e 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_portvlanattachments.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_portvlanattachments.yaml @@ -77,7 +77,7 @@ spec: description: ID of device to be assigned to the VLAN type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -111,7 +111,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- @@ -185,7 +185,7 @@ spec: description: ID of device to be assigned to the VLAN type: string deviceIdRef: - description: Reference to a Device to populate deviceId. + description: Reference to a Device in metal to populate deviceId. properties: name: description: Name of the referenced object. @@ -219,7 +219,7 @@ spec: - name type: object deviceIdSelector: - description: Selector for a Device to populate deviceId. + description: Selector for a Device in metal to populate deviceId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_projectapikeys.yaml b/package/crds/metal.equinix.jet.crossplane.io_projectapikeys.yaml index 0700925..9f6e773 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_projectapikeys.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_projectapikeys.yaml @@ -83,7 +83,7 @@ spec: UUID of project which the new API key is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -117,7 +117,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -184,7 +184,7 @@ spec: UUID of project which the new API key is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -218,7 +218,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_projects.yaml b/package/crds/metal.equinix.jet.crossplane.io_projects.yaml index c9ec1af..2e330ad 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_projects.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_projects.yaml @@ -125,7 +125,8 @@ spec: The UUID of organization under which the project is created type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -159,7 +160,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- @@ -270,7 +272,8 @@ spec: The UUID of organization under which the project is created type: string organizationIdRef: - description: Reference to a Organization to populate organizationId. + description: Reference to a Organization in metal to populate + organizationId. properties: name: description: Name of the referenced object. @@ -304,7 +307,8 @@ spec: - name type: object organizationIdSelector: - description: Selector for a Organization to populate organizationId. + description: Selector for a Organization in metal to populate + organizationId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_projectsshkeys.yaml b/package/crds/metal.equinix.jet.crossplane.io_projectsshkeys.yaml index 2d618e9..3bf929e 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_projectsshkeys.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_projectsshkeys.yaml @@ -83,7 +83,7 @@ spec: The ID of parent project type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -117,7 +117,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -186,7 +186,7 @@ spec: The ID of parent project type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -220,7 +220,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_reservedipblocks.yaml b/package/crds/metal.equinix.jet.crossplane.io_reservedipblocks.yaml index ad34214..310e387 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_reservedipblocks.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_reservedipblocks.yaml @@ -108,7 +108,7 @@ spec: The metal project ID where to allocate the address block type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -142,7 +142,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -205,7 +205,7 @@ spec: VRF ID for type=vrf reservations type: string vrfIdRef: - description: Reference to a Vrf to populate vrfId. + description: Reference to a Vrf in metal to populate vrfId. properties: name: description: Name of the referenced object. @@ -239,7 +239,7 @@ spec: - name type: object vrfIdSelector: - description: Selector for a Vrf to populate vrfId. + description: Selector for a Vrf in metal to populate vrfId. properties: matchControllerRef: description: |- @@ -333,7 +333,7 @@ spec: The metal project ID where to allocate the address block type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -367,7 +367,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -430,7 +430,7 @@ spec: VRF ID for type=vrf reservations type: string vrfIdRef: - description: Reference to a Vrf to populate vrfId. + description: Reference to a Vrf in metal to populate vrfId. properties: name: description: Name of the referenced object. @@ -464,7 +464,7 @@ spec: - name type: object vrfIdSelector: - description: Selector for a Vrf to populate vrfId. + description: Selector for a Vrf in metal to populate vrfId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_spotmarketrequests.yaml b/package/crds/metal.equinix.jet.crossplane.io_spotmarketrequests.yaml index e238c2b..bfa70f9 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_spotmarketrequests.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_spotmarketrequests.yaml @@ -149,7 +149,7 @@ spec: Project ID type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -183,7 +183,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -318,7 +318,7 @@ spec: Project ID type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -352,7 +352,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_virtualcircuits.yaml b/package/crds/metal.equinix.jet.crossplane.io_virtualcircuits.yaml index 879c0df..1cce1fc 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_virtualcircuits.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_virtualcircuits.yaml @@ -78,7 +78,7 @@ spec: UUID of Connection where the VC is scoped to. Only used for dedicated connections type: string connectionIdRef: - description: Reference to a Connection to populate connectionId. + description: Reference to a Connection in metal to populate connectionId. properties: name: description: Name of the referenced object. @@ -112,7 +112,7 @@ spec: - name type: object connectionIdSelector: - description: Selector for a Connection to populate connectionId. + description: Selector for a Connection in metal to populate connectionId. properties: matchControllerRef: description: |- @@ -221,7 +221,7 @@ spec: UUID of the Project where the VC is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -255,7 +255,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -330,7 +330,8 @@ spec: UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. type: string virtualCircuitIdRef: - description: Reference to a VirtualCircuit to populate virtualCircuitId. + description: Reference to a VirtualCircuit in metal to populate + virtualCircuitId. properties: name: description: Name of the referenced object. @@ -364,7 +365,8 @@ spec: - name type: object virtualCircuitIdSelector: - description: Selector for a VirtualCircuit to populate virtualCircuitId. + description: Selector for a VirtualCircuit in metal to populate + virtualCircuitId. properties: matchControllerRef: description: |- @@ -409,7 +411,7 @@ spec: UUID of the VLAN to associate type: string vlanIdRef: - description: Reference to a Vlan to populate vlanId. + description: Reference to a Vlan in metal to populate vlanId. properties: name: description: Name of the referenced object. @@ -443,7 +445,7 @@ spec: - name type: object vlanIdSelector: - description: Selector for a Vlan to populate vlanId. + description: Selector for a Vlan in metal to populate vlanId. properties: matchControllerRef: description: |- @@ -488,7 +490,7 @@ spec: UUID of the VRF to associate type: string vrfIdRef: - description: Reference to a Vrf to populate vrfId. + description: Reference to a Vrf in metal to populate vrfId. properties: name: description: Name of the referenced object. @@ -522,7 +524,7 @@ spec: - name type: object vrfIdSelector: - description: Selector for a Vrf to populate vrfId. + description: Selector for a Vrf in metal to populate vrfId. properties: matchControllerRef: description: |- @@ -581,7 +583,7 @@ spec: UUID of Connection where the VC is scoped to. Only used for dedicated connections type: string connectionIdRef: - description: Reference to a Connection to populate connectionId. + description: Reference to a Connection in metal to populate connectionId. properties: name: description: Name of the referenced object. @@ -615,7 +617,7 @@ spec: - name type: object connectionIdSelector: - description: Selector for a Connection to populate connectionId. + description: Selector for a Connection in metal to populate connectionId. properties: matchControllerRef: description: |- @@ -724,7 +726,7 @@ spec: UUID of the Project where the VC is scoped to type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -758,7 +760,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -833,7 +835,8 @@ spec: UUID of an existing VC to configure. Used in the case of shared interconnections where the VC has already been created. type: string virtualCircuitIdRef: - description: Reference to a VirtualCircuit to populate virtualCircuitId. + description: Reference to a VirtualCircuit in metal to populate + virtualCircuitId. properties: name: description: Name of the referenced object. @@ -867,7 +870,8 @@ spec: - name type: object virtualCircuitIdSelector: - description: Selector for a VirtualCircuit to populate virtualCircuitId. + description: Selector for a VirtualCircuit in metal to populate + virtualCircuitId. properties: matchControllerRef: description: |- @@ -912,7 +916,7 @@ spec: UUID of the VLAN to associate type: string vlanIdRef: - description: Reference to a Vlan to populate vlanId. + description: Reference to a Vlan in metal to populate vlanId. properties: name: description: Name of the referenced object. @@ -946,7 +950,7 @@ spec: - name type: object vlanIdSelector: - description: Selector for a Vlan to populate vlanId. + description: Selector for a Vlan in metal to populate vlanId. properties: matchControllerRef: description: |- @@ -991,7 +995,7 @@ spec: UUID of the VRF to associate type: string vrfIdRef: - description: Reference to a Vrf to populate vrfId. + description: Reference to a Vrf in metal to populate vrfId. properties: name: description: Name of the referenced object. @@ -1025,7 +1029,7 @@ spec: - name type: object vrfIdSelector: - description: Selector for a Vrf to populate vrfId. + description: Selector for a Vrf in metal to populate vrfId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_vlans.yaml b/package/crds/metal.equinix.jet.crossplane.io_vlans.yaml index 6139bff..63ce5db 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_vlans.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_vlans.yaml @@ -93,7 +93,7 @@ spec: ID of parent project type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -127,7 +127,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -206,7 +206,7 @@ spec: ID of parent project type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -240,7 +240,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- diff --git a/package/crds/metal.equinix.jet.crossplane.io_vrves.yaml b/package/crds/metal.equinix.jet.crossplane.io_vrves.yaml index c0fb039..6f657f6 100644 --- a/package/crds/metal.equinix.jet.crossplane.io_vrves.yaml +++ b/package/crds/metal.equinix.jet.crossplane.io_vrves.yaml @@ -106,7 +106,7 @@ spec: Project ID type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -140,7 +140,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |- @@ -227,7 +227,7 @@ spec: Project ID type: string projectIdRef: - description: Reference to a Project to populate projectId. + description: Reference to a Project in metal to populate projectId. properties: name: description: Name of the referenced object. @@ -261,7 +261,7 @@ spec: - name type: object projectIdSelector: - description: Selector for a Project to populate projectId. + description: Selector for a Project in metal to populate projectId. properties: matchControllerRef: description: |-