diff --git a/AGENTS.md b/AGENTS.md index 7795e08f0..8a0dbcce4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -231,7 +231,7 @@ type FlavorResourceStatus struct { ## Logging Levels ```go -import "github.com/k-orc/openstack-resource-controller/v2/internal/logging" +import "github.com/k-orc/openstack-resource-controller/v3/internal/logging" log.V(logging.Status).Info("...") // Always shown: startup, shutdown log.V(logging.Info).Info("...") // Default: creation/deletion, reconcile complete diff --git a/Makefile b/Makefile index ea8d927de..cb027cfce 100644 --- a/Makefile +++ b/Makefile @@ -345,7 +345,7 @@ version: $(GOLANGCI_LINT_VERSION) name: golangci-kube-api-linter destination: $(LOCALBIN) plugins: -- module: 'github.com/k-orc/openstack-resource-controller/v2/tools/orc-api-linter' +- module: 'github.com/k-orc/openstack-resource-controller/v3/tools/orc-api-linter' path: ./tools/orc-api-linter endef export custom-gcl diff --git a/api_violations.report b/api_violations.report index 400f33c20..1b12529c2 100644 --- a/api_violations.report +++ b/api_violations.report @@ -1,7 +1,7 @@ -API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1,SubnetFilter,IPv6 -API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1,SubnetResourceSpec,IPv6 -API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1,SubnetResourceStatus,IPv6AddressMode -API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1,SubnetResourceStatus,IPv6RAMode +API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1,SubnetFilter,IPv6 +API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1,SubnetResourceSpec,IPv6 +API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1,SubnetResourceStatus,IPv6AddressMode +API rule violation: names_match,github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1,SubnetResourceStatus,IPv6RAMode API rule violation: names_match,k8s.io/api/core/v1,AzureDiskVolumeSource,DataDiskURI API rule violation: names_match,k8s.io/api/core/v1,ContainerStatus,LastTerminationState API rule violation: names_match,k8s.io/api/core/v1,DaemonEndpoint,Port diff --git a/cmd/manager/main.go b/cmd/manager/main.go index 9addc552d..06edb19b2 100644 --- a/cmd/manager/main.go +++ b/cmd/manager/main.go @@ -27,35 +27,35 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/log/zap" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/addressscope" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/applicationcredential" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/domain" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/endpoint" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/flavor" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/floatingip" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/group" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/image" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/keypair" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/network" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/port" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/project" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/role" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/router" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/routerinterface" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/securitygroup" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/server" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/servergroup" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/service" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/sharenetwork" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/subnet" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/trunk" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/user" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/volume" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/volumetype" - internalmanager "github.com/k-orc/openstack-resource-controller/v2/internal/manager" - "github.com/k-orc/openstack-resource-controller/v2/internal/scheme" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/addressscope" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/applicationcredential" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/domain" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/endpoint" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/flavor" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/floatingip" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/group" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/image" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/keypair" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/network" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/port" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/project" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/role" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/router" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/routerinterface" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/securitygroup" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/server" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/servergroup" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/service" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/sharenetwork" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/subnet" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/trunk" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/user" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/volume" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/volumetype" + internalmanager "github.com/k-orc/openstack-resource-controller/v3/internal/manager" + "github.com/k-orc/openstack-resource-controller/v3/internal/scheme" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" // +kubebuilder:scaffold:imports ) diff --git a/cmd/models-schema/zz_generated.openapi.go b/cmd/models-schema/zz_generated.openapi.go index 5601a14eb..36c64cf12 100644 --- a/cmd/models-schema/zz_generated.openapi.go +++ b/cmd/models-schema/zz_generated.openapi.go @@ -30,256 +30,256 @@ import ( func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition { return map[string]common.OpenAPIDefinition{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Address": schema_openstack_resource_controller_v2_api_v1alpha1_Address(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScope": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScope(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeFilter": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeImport": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeList": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeStatus": schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPool": schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPool(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPoolStatus": schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPoolStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPair": schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPair(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPairStatus": schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPairStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredential": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredential(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRule": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialAccessRule(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRuleStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialAccessRuleStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialImport": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialList": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialRoleStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialRoleStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference": schema_openstack_resource_controller_v2_api_v1alpha1_CloudCredentialsReference(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Domain": schema_openstack_resource_controller_v2_api_v1alpha1_Domain(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainFilter": schema_openstack_resource_controller_v2_api_v1alpha1_DomainFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainImport": schema_openstack_resource_controller_v2_api_v1alpha1_DomainImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainList": schema_openstack_resource_controller_v2_api_v1alpha1_DomainList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainSpec": schema_openstack_resource_controller_v2_api_v1alpha1_DomainSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainStatus": schema_openstack_resource_controller_v2_api_v1alpha1_DomainStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Endpoint": schema_openstack_resource_controller_v2_api_v1alpha1_Endpoint(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointFilter": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointImport": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointList": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointSpec": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointStatus": schema_openstack_resource_controller_v2_api_v1alpha1_EndpointStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGateway": schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGateway(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGatewayStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGatewayStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FilterByKeystoneTags": schema_openstack_resource_controller_v2_api_v1alpha1_FilterByKeystoneTags(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FilterByNeutronTags": schema_openstack_resource_controller_v2_api_v1alpha1_FilterByNeutronTags(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FilterByServerTags": schema_openstack_resource_controller_v2_api_v1alpha1_FilterByServerTags(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FixedIPStatus": schema_openstack_resource_controller_v2_api_v1alpha1_FixedIPStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Flavor": schema_openstack_resource_controller_v2_api_v1alpha1_Flavor(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorFilter": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorImport": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorList": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorSpec": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorStatus": schema_openstack_resource_controller_v2_api_v1alpha1_FlavorStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIP": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIP(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPFilter": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPImport": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPList": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPSpec": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPStatus": schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Group": schema_openstack_resource_controller_v2_api_v1alpha1_Group(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupFilter": schema_openstack_resource_controller_v2_api_v1alpha1_GroupFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupImport": schema_openstack_resource_controller_v2_api_v1alpha1_GroupImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupList": schema_openstack_resource_controller_v2_api_v1alpha1_GroupList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupSpec": schema_openstack_resource_controller_v2_api_v1alpha1_GroupSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupStatus": schema_openstack_resource_controller_v2_api_v1alpha1_GroupStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostID": schema_openstack_resource_controller_v2_api_v1alpha1_HostID(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRoute": schema_openstack_resource_controller_v2_api_v1alpha1_HostRoute(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRouteStatus": schema_openstack_resource_controller_v2_api_v1alpha1_HostRouteStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.IPv6Options": schema_openstack_resource_controller_v2_api_v1alpha1_IPv6Options(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Image": schema_openstack_resource_controller_v2_api_v1alpha1_Image(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContent": schema_openstack_resource_controller_v2_api_v1alpha1_ImageContent(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContentSourceDownload": schema_openstack_resource_controller_v2_api_v1alpha1_ImageContentSourceDownload(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ImageFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageHash": schema_openstack_resource_controller_v2_api_v1alpha1_ImageHash(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageImport": schema_openstack_resource_controller_v2_api_v1alpha1_ImageImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageList": schema_openstack_resource_controller_v2_api_v1alpha1_ImageList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageProperties": schema_openstack_resource_controller_v2_api_v1alpha1_ImageProperties(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesHardware": schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesHardware(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesOperatingSystem": schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesOperatingSystem(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ImageSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageStatusExtra": schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatusExtra(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPair": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPair(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairFilter": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairImport": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairList": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairSpec": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairStatus": schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions": schema_openstack_resource_controller_v2_api_v1alpha1_ManagedOptions(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Network": schema_openstack_resource_controller_v2_api_v1alpha1_Network(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkFilter": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkImport": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkList": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkSpec": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkStatus": schema_openstack_resource_controller_v2_api_v1alpha1_NetworkStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NeutronStatusMetadata": schema_openstack_resource_controller_v2_api_v1alpha1_NeutronStatusMetadata(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Port": schema_openstack_resource_controller_v2_api_v1alpha1_Port(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortFilter": schema_openstack_resource_controller_v2_api_v1alpha1_PortFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortImport": schema_openstack_resource_controller_v2_api_v1alpha1_PortImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortList": schema_openstack_resource_controller_v2_api_v1alpha1_PortList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeStatus": schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortSpec": schema_openstack_resource_controller_v2_api_v1alpha1_PortSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortStatus": schema_openstack_resource_controller_v2_api_v1alpha1_PortStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortValueSpec": schema_openstack_resource_controller_v2_api_v1alpha1_PortValueSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Project": schema_openstack_resource_controller_v2_api_v1alpha1_Project(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectImport": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectList": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ProjectStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProviderPropertiesStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ProviderPropertiesStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Role": schema_openstack_resource_controller_v2_api_v1alpha1_Role(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleFilter": schema_openstack_resource_controller_v2_api_v1alpha1_RoleFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleImport": schema_openstack_resource_controller_v2_api_v1alpha1_RoleImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleList": schema_openstack_resource_controller_v2_api_v1alpha1_RoleList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleSpec": schema_openstack_resource_controller_v2_api_v1alpha1_RoleSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleStatus": schema_openstack_resource_controller_v2_api_v1alpha1_RoleStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Router": schema_openstack_resource_controller_v2_api_v1alpha1_Router(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterFilter": schema_openstack_resource_controller_v2_api_v1alpha1_RouterFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterImport": schema_openstack_resource_controller_v2_api_v1alpha1_RouterImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterface": schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterface(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceList": schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterList": schema_openstack_resource_controller_v2_api_v1alpha1_RouterList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterSpec": schema_openstack_resource_controller_v2_api_v1alpha1_RouterSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterStatus": schema_openstack_resource_controller_v2_api_v1alpha1_RouterStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroup": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroup(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupFilter": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupImport": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupList": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRule": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRule(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRuleStatus": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRuleStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupSpec": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupStatus": schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Server": schema_openstack_resource_controller_v2_api_v1alpha1_Server(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerBootVolumeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerBootVolumeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ServerFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroup": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroup(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupImport": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupList": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRules": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRules(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRulesStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRulesStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerImport": schema_openstack_resource_controller_v2_api_v1alpha1_ServerImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceFixedIP": schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceFixedIP(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerList": schema_openstack_resource_controller_v2_api_v1alpha1_ServerList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadata": schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadata(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadataStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadataStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerPortSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerPortSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSchedulerHints": schema_openstack_resource_controller_v2_api_v1alpha1_ServerSchedulerHints(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Service": schema_openstack_resource_controller_v2_api_v1alpha1_Service(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceImport": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceList": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ServiceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetwork": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetwork(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkFilter": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkImport": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkList": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkSpec": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkStatus": schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Subnet": schema_openstack_resource_controller_v2_api_v1alpha1_Subnet(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetFilter": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetGateway": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetGateway(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetImport": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetList": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetSpec": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetStatus": schema_openstack_resource_controller_v2_api_v1alpha1_SubnetStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Trunk": schema_openstack_resource_controller_v2_api_v1alpha1_Trunk(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkFilter": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkImport": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkList": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSpec": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkStatus": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportSpec": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportStatus": schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.User": schema_openstack_resource_controller_v2_api_v1alpha1_User(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserDataSpec": schema_openstack_resource_controller_v2_api_v1alpha1_UserDataSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserFilter": schema_openstack_resource_controller_v2_api_v1alpha1_UserFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserImport": schema_openstack_resource_controller_v2_api_v1alpha1_UserImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserList": schema_openstack_resource_controller_v2_api_v1alpha1_UserList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserSpec": schema_openstack_resource_controller_v2_api_v1alpha1_UserSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserStatus": schema_openstack_resource_controller_v2_api_v1alpha1_UserStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Volume": schema_openstack_resource_controller_v2_api_v1alpha1_Volume(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeAttachmentStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeAttachmentStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeFilter": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeImport": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeList": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadata": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadata(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadataStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadataStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeType": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeType(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpec": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpecStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpecStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeFilter": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeFilter(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeImport": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeImport(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeList": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeList(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceSpec": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceStatus(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeSpec": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeSpec(ref), - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeStatus": schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Address": schema_openstack_resource_controller_v3_api_v1alpha1_Address(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScope": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScope(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeFilter": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeImport": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeList": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeStatus": schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPool": schema_openstack_resource_controller_v3_api_v1alpha1_AllocationPool(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPoolStatus": schema_openstack_resource_controller_v3_api_v1alpha1_AllocationPoolStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPair": schema_openstack_resource_controller_v3_api_v1alpha1_AllowedAddressPair(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPairStatus": schema_openstack_resource_controller_v3_api_v1alpha1_AllowedAddressPairStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredential": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredential(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRule": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialAccessRule(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRuleStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialAccessRuleStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialImport": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialList": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialRoleStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialRoleStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference": schema_openstack_resource_controller_v3_api_v1alpha1_CloudCredentialsReference(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Domain": schema_openstack_resource_controller_v3_api_v1alpha1_Domain(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainFilter": schema_openstack_resource_controller_v3_api_v1alpha1_DomainFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainImport": schema_openstack_resource_controller_v3_api_v1alpha1_DomainImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainList": schema_openstack_resource_controller_v3_api_v1alpha1_DomainList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_DomainResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_DomainResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainSpec": schema_openstack_resource_controller_v3_api_v1alpha1_DomainSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainStatus": schema_openstack_resource_controller_v3_api_v1alpha1_DomainStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Endpoint": schema_openstack_resource_controller_v3_api_v1alpha1_Endpoint(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointFilter": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointImport": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointList": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointSpec": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointStatus": schema_openstack_resource_controller_v3_api_v1alpha1_EndpointStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGateway": schema_openstack_resource_controller_v3_api_v1alpha1_ExternalGateway(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGatewayStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ExternalGatewayStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FilterByKeystoneTags": schema_openstack_resource_controller_v3_api_v1alpha1_FilterByKeystoneTags(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FilterByNeutronTags": schema_openstack_resource_controller_v3_api_v1alpha1_FilterByNeutronTags(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FilterByServerTags": schema_openstack_resource_controller_v3_api_v1alpha1_FilterByServerTags(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FixedIPStatus": schema_openstack_resource_controller_v3_api_v1alpha1_FixedIPStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Flavor": schema_openstack_resource_controller_v3_api_v1alpha1_Flavor(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorFilter": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorImport": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorList": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorSpec": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorStatus": schema_openstack_resource_controller_v3_api_v1alpha1_FlavorStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIP": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIP(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPFilter": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPImport": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPList": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPSpec": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPStatus": schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Group": schema_openstack_resource_controller_v3_api_v1alpha1_Group(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupFilter": schema_openstack_resource_controller_v3_api_v1alpha1_GroupFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupImport": schema_openstack_resource_controller_v3_api_v1alpha1_GroupImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupList": schema_openstack_resource_controller_v3_api_v1alpha1_GroupList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_GroupResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_GroupResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupSpec": schema_openstack_resource_controller_v3_api_v1alpha1_GroupSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupStatus": schema_openstack_resource_controller_v3_api_v1alpha1_GroupStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostID": schema_openstack_resource_controller_v3_api_v1alpha1_HostID(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRoute": schema_openstack_resource_controller_v3_api_v1alpha1_HostRoute(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRouteStatus": schema_openstack_resource_controller_v3_api_v1alpha1_HostRouteStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.IPv6Options": schema_openstack_resource_controller_v3_api_v1alpha1_IPv6Options(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Image": schema_openstack_resource_controller_v3_api_v1alpha1_Image(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContent": schema_openstack_resource_controller_v3_api_v1alpha1_ImageContent(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContentSourceDownload": schema_openstack_resource_controller_v3_api_v1alpha1_ImageContentSourceDownload(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ImageFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageHash": schema_openstack_resource_controller_v3_api_v1alpha1_ImageHash(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageImport": schema_openstack_resource_controller_v3_api_v1alpha1_ImageImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageList": schema_openstack_resource_controller_v3_api_v1alpha1_ImageList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageProperties": schema_openstack_resource_controller_v3_api_v1alpha1_ImageProperties(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesHardware": schema_openstack_resource_controller_v3_api_v1alpha1_ImagePropertiesHardware(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesOperatingSystem": schema_openstack_resource_controller_v3_api_v1alpha1_ImagePropertiesOperatingSystem(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ImageResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ImageResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ImageSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ImageStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageStatusExtra": schema_openstack_resource_controller_v3_api_v1alpha1_ImageStatusExtra(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPair": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPair(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairFilter": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairImport": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairList": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairSpec": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairStatus": schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions": schema_openstack_resource_controller_v3_api_v1alpha1_ManagedOptions(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Network": schema_openstack_resource_controller_v3_api_v1alpha1_Network(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkFilter": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkImport": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkList": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkSpec": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkStatus": schema_openstack_resource_controller_v3_api_v1alpha1_NetworkStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NeutronStatusMetadata": schema_openstack_resource_controller_v3_api_v1alpha1_NeutronStatusMetadata(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Port": schema_openstack_resource_controller_v3_api_v1alpha1_Port(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortFilter": schema_openstack_resource_controller_v3_api_v1alpha1_PortFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortImport": schema_openstack_resource_controller_v3_api_v1alpha1_PortImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortList": schema_openstack_resource_controller_v3_api_v1alpha1_PortList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_PortRangeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeStatus": schema_openstack_resource_controller_v3_api_v1alpha1_PortRangeStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_PortResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_PortResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortSpec": schema_openstack_resource_controller_v3_api_v1alpha1_PortSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortStatus": schema_openstack_resource_controller_v3_api_v1alpha1_PortStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortValueSpec": schema_openstack_resource_controller_v3_api_v1alpha1_PortValueSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Project": schema_openstack_resource_controller_v3_api_v1alpha1_Project(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectImport": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectList": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ProjectStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProviderPropertiesStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ProviderPropertiesStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Role": schema_openstack_resource_controller_v3_api_v1alpha1_Role(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleFilter": schema_openstack_resource_controller_v3_api_v1alpha1_RoleFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleImport": schema_openstack_resource_controller_v3_api_v1alpha1_RoleImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleList": schema_openstack_resource_controller_v3_api_v1alpha1_RoleList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_RoleResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_RoleResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleSpec": schema_openstack_resource_controller_v3_api_v1alpha1_RoleSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleStatus": schema_openstack_resource_controller_v3_api_v1alpha1_RoleStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Router": schema_openstack_resource_controller_v3_api_v1alpha1_Router(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterFilter": schema_openstack_resource_controller_v3_api_v1alpha1_RouterFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterImport": schema_openstack_resource_controller_v3_api_v1alpha1_RouterImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterface": schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterface(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceList": schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterList": schema_openstack_resource_controller_v3_api_v1alpha1_RouterList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_RouterResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_RouterResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterSpec": schema_openstack_resource_controller_v3_api_v1alpha1_RouterSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterStatus": schema_openstack_resource_controller_v3_api_v1alpha1_RouterStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroup": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroup(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupFilter": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupImport": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupList": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRule": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupRule(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRuleStatus": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupRuleStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupSpec": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupStatus": schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Server": schema_openstack_resource_controller_v3_api_v1alpha1_Server(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerBootVolumeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerBootVolumeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ServerFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroup": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroup(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupImport": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupList": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRules": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupRules(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRulesStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupRulesStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerImport": schema_openstack_resource_controller_v3_api_v1alpha1_ServerImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceFixedIP": schema_openstack_resource_controller_v3_api_v1alpha1_ServerInterfaceFixedIP(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerInterfaceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerList": schema_openstack_resource_controller_v3_api_v1alpha1_ServerList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadata": schema_openstack_resource_controller_v3_api_v1alpha1_ServerMetadata(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadataStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerMetadataStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerPortSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerPortSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSchedulerHints": schema_openstack_resource_controller_v3_api_v1alpha1_ServerSchedulerHints(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServerVolumeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServerVolumeStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Service": schema_openstack_resource_controller_v3_api_v1alpha1_Service(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceImport": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceList": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ServiceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetwork": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetwork(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkFilter": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkImport": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkList": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkSpec": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkStatus": schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Subnet": schema_openstack_resource_controller_v3_api_v1alpha1_Subnet(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetFilter": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetGateway": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetGateway(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetImport": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetList": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetSpec": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetStatus": schema_openstack_resource_controller_v3_api_v1alpha1_SubnetStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Trunk": schema_openstack_resource_controller_v3_api_v1alpha1_Trunk(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkFilter": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkImport": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkList": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSpec": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkStatus": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportSpec": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSubportSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportStatus": schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSubportStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.User": schema_openstack_resource_controller_v3_api_v1alpha1_User(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserDataSpec": schema_openstack_resource_controller_v3_api_v1alpha1_UserDataSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserFilter": schema_openstack_resource_controller_v3_api_v1alpha1_UserFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserImport": schema_openstack_resource_controller_v3_api_v1alpha1_UserImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserList": schema_openstack_resource_controller_v3_api_v1alpha1_UserList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_UserResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_UserResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserSpec": schema_openstack_resource_controller_v3_api_v1alpha1_UserSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserStatus": schema_openstack_resource_controller_v3_api_v1alpha1_UserStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Volume": schema_openstack_resource_controller_v3_api_v1alpha1_Volume(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeAttachmentStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeAttachmentStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeFilter": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeImport": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeList": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadata": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeMetadata(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadataStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeMetadataStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeType": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeType(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpec": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeExtraSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpecStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeExtraSpecStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeFilter": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeFilter(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeImport": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeImport(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeList": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeList(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceSpec": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeResourceSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeResourceStatus(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeSpec": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeSpec(ref), + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeStatus": schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeStatus(ref), "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource": schema_k8sio_api_core_v1_AWSElasticBlockStoreVolumeSource(ref), "k8s.io/api/core/v1.Affinity": schema_k8sio_api_core_v1_Affinity(ref), "k8s.io/api/core/v1.AppArmorProfile": schema_k8sio_api_core_v1_AppArmorProfile(ref), @@ -572,7 +572,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Address(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Address(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -599,7 +599,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Address(ref common.Ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScope(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScope(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -631,14 +631,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScope(ref commo SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeStatus"), }, }, }, @@ -646,11 +646,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScope(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -691,7 +691,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeFilter(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -708,18 +708,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeImport(ref "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -755,7 +755,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeList(ref c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScope"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScope"), }, }, }, @@ -766,11 +766,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeList(ref c }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScope", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScope", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -813,7 +813,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceSp } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -854,7 +854,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeResourceSt } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -864,13 +864,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeSpec(ref c "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceSpec"), }, }, "managementPolicy": { @@ -883,14 +883,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeSpec(ref c "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -898,11 +898,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeSpec(ref c }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AddressScopeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -943,18 +943,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AddressScopeStatus(ref "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AddressScopeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AddressScopeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPool(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AllocationPool(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -981,7 +981,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPool(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPoolStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AllocationPoolStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1007,7 +1007,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AllocationPoolStatus(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPair(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AllowedAddressPair(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1034,7 +1034,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPair(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPairStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_AllowedAddressPairStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1060,7 +1060,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_AllowedAddressPairStat } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredential(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredential(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1092,14 +1092,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredential( SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialStatus"), }, }, }, @@ -1107,11 +1107,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredential( }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialAccessRule(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialAccessRule(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1145,7 +1145,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialA } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialAccessRuleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialAccessRuleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1185,7 +1185,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialA } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1220,7 +1220,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialF } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1237,18 +1237,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialI "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1284,7 +1284,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialL Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredential"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredential"), }, }, }, @@ -1295,11 +1295,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialL }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredential", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredential", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1374,7 +1374,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRule"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRule"), }, }, }, @@ -1391,11 +1391,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRule", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRule", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1443,7 +1443,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialRoleStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialRoleStatus"), }, }, }, @@ -1468,7 +1468,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRuleStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRuleStatus"), }, }, }, @@ -1478,11 +1478,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialAccessRuleStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialRoleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialAccessRuleStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialRoleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialRoleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialRoleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1515,7 +1515,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialR } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1525,13 +1525,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialS "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceSpec"), }, }, "managementPolicy": { @@ -1544,14 +1544,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialS "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -1559,11 +1559,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialS }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ApplicationCredentialStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1604,18 +1604,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ApplicationCredentialS "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ApplicationCredentialResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ApplicationCredentialResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_CloudCredentialsReference(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_CloudCredentialsReference(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1643,7 +1643,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_CloudCredentialsRefere } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Domain(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Domain(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1675,14 +1675,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Domain(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainStatus"), }, }, }, @@ -1690,11 +1690,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Domain(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1721,7 +1721,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainFilter(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1738,18 +1738,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1785,7 +1785,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Domain"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Domain"), }, }, }, @@ -1796,11 +1796,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Domain", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Domain", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1834,7 +1834,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceSpec(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1868,7 +1868,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainResourceStatus(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1878,13 +1878,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceSpec"), }, }, "managementPolicy": { @@ -1897,14 +1897,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -1912,11 +1912,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_DomainStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_DomainStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -1957,18 +1957,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_DomainStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.DomainResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.DomainResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Endpoint(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Endpoint(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2000,14 +2000,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Endpoint(ref common.Re SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointStatus"), }, }, }, @@ -2015,11 +2015,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Endpoint(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2053,7 +2053,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointFilter(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2070,18 +2070,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointImport(ref com "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2117,7 +2117,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointList(ref commo Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Endpoint"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Endpoint"), }, }, }, @@ -2128,11 +2128,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointList(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Endpoint", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Endpoint", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2182,7 +2182,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceSpec(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2230,7 +2230,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointResourceStatus } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2240,13 +2240,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointSpec(ref commo "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceSpec"), }, }, "managementPolicy": { @@ -2259,14 +2259,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointSpec(ref commo "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -2274,11 +2274,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointSpec(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_EndpointStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2319,18 +2319,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_EndpointStatus(ref com "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.EndpointResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.EndpointResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGateway(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ExternalGateway(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2350,7 +2350,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGateway(ref co } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGatewayStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ExternalGatewayStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2369,7 +2369,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ExternalGatewayStatus( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByKeystoneTags(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FilterByKeystoneTags(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2461,7 +2461,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByKeystoneTags(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByNeutronTags(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FilterByNeutronTags(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2553,7 +2553,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByNeutronTags(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByServerTags(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FilterByServerTags(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2645,7 +2645,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FilterByServerTags(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FixedIPStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FixedIPStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2671,7 +2671,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FixedIPStatus(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Flavor(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Flavor(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2703,14 +2703,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Flavor(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorStatus"), }, }, }, @@ -2718,11 +2718,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Flavor(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2763,7 +2763,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorFilter(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2780,18 +2780,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2827,7 +2827,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Flavor"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Flavor"), }, }, }, @@ -2838,11 +2838,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Flavor", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Flavor", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2920,7 +2920,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceSpec(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2989,7 +2989,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorResourceStatus(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -2999,13 +2999,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceSpec"), }, }, "managementPolicy": { @@ -3018,14 +3018,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -3033,11 +3033,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FlavorStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3078,18 +3078,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FlavorStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FlavorResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FlavorResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIP(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIP(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3121,14 +3121,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIP(ref common. SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPStatus"), }, }, }, @@ -3136,11 +3136,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIP(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3275,7 +3275,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPFilter(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3292,18 +3292,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPImport(ref c "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3339,7 +3339,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPList(ref com Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIP"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIP"), }, }, }, @@ -3350,11 +3350,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPList(ref com }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIP", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIP", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3436,7 +3436,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceSpec } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3552,7 +3552,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPResourceStat } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3562,13 +3562,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPSpec(ref com "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceSpec"), }, }, "managementPolicy": { @@ -3581,14 +3581,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPSpec(ref com "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -3596,11 +3596,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPSpec(ref com }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_FloatingIPStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3641,18 +3641,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_FloatingIPStatus(ref c "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FloatingIPResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FloatingIPResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Group(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Group(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3684,14 +3684,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Group(ref common.Refer SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupStatus"), }, }, }, @@ -3699,11 +3699,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Group(ref common.Refer }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3730,7 +3730,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupFilter(ref common } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3747,18 +3747,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupImport(ref common "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3794,7 +3794,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupList(ref common.R Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Group"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Group"), }, }, }, @@ -3805,11 +3805,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupList(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Group", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Group", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3843,7 +3843,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceSpec(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3877,7 +3877,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupResourceStatus(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3887,13 +3887,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupSpec(ref common.R "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceSpec"), }, }, "managementPolicy": { @@ -3906,14 +3906,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupSpec(ref common.R "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -3921,11 +3921,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupSpec(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_GroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_GroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -3966,18 +3966,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_GroupStatus(ref common "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.GroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.GroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_HostID(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_HostID(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4004,7 +4004,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_HostID(ref common.Refe } } -func schema_openstack_resource_controller_v2_api_v1alpha1_HostRoute(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_HostRoute(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4031,7 +4031,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_HostRoute(ref common.R } } -func schema_openstack_resource_controller_v2_api_v1alpha1_HostRouteStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_HostRouteStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4057,7 +4057,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_HostRouteStatus(ref co } } -func schema_openstack_resource_controller_v2_api_v1alpha1_IPv6Options(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_IPv6Options(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4083,7 +4083,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_IPv6Options(ref common } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Image(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Image(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4115,14 +4115,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Image(ref common.Refer SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageStatus"), }, }, }, @@ -4130,11 +4130,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Image(ref common.Refer }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContent(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageContent(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4157,7 +4157,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContent(ref commo "download": { SchemaProps: spec.SchemaProps{ Description: "download describes how to obtain image data by downloading it from a URL. Must be set when creating a managed image.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContentSourceDownload"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContentSourceDownload"), }, }, }, @@ -4165,11 +4165,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContent(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContentSourceDownload"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContentSourceDownload"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContentSourceDownload(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageContentSourceDownload(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4193,7 +4193,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContentSourceDown "hash": { SchemaProps: spec.SchemaProps{ Description: "hash is a hash which will be used to verify downloaded data, i.e. before any decompression. If not specified, no hash verification will be performed. Specifying a Hash will disable the use of Glance's web-download, as web-download cannot currently deterministically verify the hash of downloaded content.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageHash"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageHash"), }, }, }, @@ -4201,11 +4201,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageContentSourceDown }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageHash"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageHash"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4252,7 +4252,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageFilter(ref common } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageHash(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageHash(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4279,7 +4279,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageHash(ref common.R } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4296,18 +4296,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageImport(ref common "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4343,7 +4343,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageList(ref common.R Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Image"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Image"), }, }, }, @@ -4354,11 +4354,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageList(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Image", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Image", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageProperties(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageProperties(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4395,24 +4395,24 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageProperties(ref co "hardware": { SchemaProps: spec.SchemaProps{ Description: "hardware is a set of properties which control the virtual hardware created by Nova.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesHardware"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesHardware"), }, }, "operatingSystem": { SchemaProps: spec.SchemaProps{ Description: "operatingSystem is a set of properties that specify and influence the behavior of the operating system within the virtual machine.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesOperatingSystem"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesOperatingSystem"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesHardware", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImagePropertiesOperatingSystem"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesHardware", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImagePropertiesOperatingSystem"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesHardware(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImagePropertiesHardware(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4501,7 +4501,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesHardwar } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesOperatingSystem(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImagePropertiesOperatingSystem(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4527,7 +4527,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImagePropertiesOperati } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4578,24 +4578,24 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceSpec(ref "properties": { SchemaProps: spec.SchemaProps{ Description: "properties is metadata available to consumers of the image", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageProperties"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageProperties"), }, }, "content": { SchemaProps: spec.SchemaProps{ Description: "content specifies how to obtain the image content.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContent"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContent"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageContent", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageProperties"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageContent", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageProperties"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4633,7 +4633,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceStatus(re "hash": { SchemaProps: spec.SchemaProps{ Description: "hash is the hash of the image data published by Glance. Note that this is a hash of the data stored internally by Glance, which will have been decompressed and potentially format converted depending on server-side configuration which is not visible to clients. It is expected that this hash will usually differ from the download hash.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageHash"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageHash"), }, }, "sizeB": { @@ -4674,11 +4674,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageResourceStatus(re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageHash"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageHash"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4688,13 +4688,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageSpec(ref common.R "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceSpec"), }, }, "managementPolicy": { @@ -4707,14 +4707,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageSpec(ref common.R "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -4722,11 +4722,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageSpec(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4767,7 +4767,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatus(ref common "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceStatus"), }, }, "downloadAttempts": { @@ -4781,11 +4781,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatus(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ImageResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ImageResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatusExtra(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ImageStatusExtra(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4804,7 +4804,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ImageStatusExtra(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPair(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPair(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4836,14 +4836,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPair(ref common.Ref SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairStatus"), }, }, }, @@ -4851,11 +4851,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPair(ref common.Ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4875,7 +4875,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairFilter(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4892,18 +4892,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairImport(ref comm "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4939,7 +4939,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairList(ref common Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPair"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPair"), }, }, }, @@ -4950,11 +4950,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairList(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPair", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPair", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -4989,7 +4989,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5030,7 +5030,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairResourceStatus( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5040,13 +5040,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairSpec(ref common "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceSpec"), }, }, "managementPolicy": { @@ -5059,14 +5059,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairSpec(ref common "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -5074,11 +5074,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairSpec(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_KeyPairStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5119,18 +5119,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_KeyPairStatus(ref comm "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.KeyPairResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.KeyPairResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ManagedOptions(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ManagedOptions(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5149,7 +5149,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ManagedOptions(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Network(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Network(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5181,14 +5181,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Network(ref common.Ref SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkStatus"), }, }, }, @@ -5196,11 +5196,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Network(ref common.Ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5321,7 +5321,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkFilter(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5338,18 +5338,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkImport(ref comm "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5385,7 +5385,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkList(ref common Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Network"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Network"), }, }, }, @@ -5396,11 +5396,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkList(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Network", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Network", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5516,7 +5516,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5641,7 +5641,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceStatus( "provider": { SchemaProps: spec.SchemaProps{ Description: "provider contains provider-network properties.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProviderPropertiesStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProviderPropertiesStatus"), }, }, "external": { @@ -5682,11 +5682,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkResourceStatus( }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProviderPropertiesStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProviderPropertiesStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5696,13 +5696,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkSpec(ref common "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceSpec"), }, }, "managementPolicy": { @@ -5715,14 +5715,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkSpec(ref common "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -5730,11 +5730,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkSpec(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NetworkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5775,18 +5775,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NetworkStatus(ref comm "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.NetworkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.NetworkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_NeutronStatusMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_NeutronStatusMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5819,7 +5819,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_NeutronStatusMetadata( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Port(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Port(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -5851,14 +5851,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Port(ref common.Refere SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortStatus"), }, }, }, @@ -5866,11 +5866,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Port(ref common.Refere }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6006,7 +6006,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortFilter(ref common. } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6023,18 +6023,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortImport(ref common. "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6070,7 +6070,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortList(ref common.Re Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Port"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Port"), }, }, }, @@ -6081,11 +6081,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortList(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Port", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Port", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortRangeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6114,7 +6114,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeSpec(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortRangeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6142,7 +6142,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortRangeStatus(ref co } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6202,7 +6202,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPair"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPair"), }, }, }, @@ -6221,7 +6221,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Address"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Address"), }, }, }, @@ -6285,7 +6285,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref c "hostID": { SchemaProps: spec.SchemaProps{ Description: "hostID specifies the host where the port will be bound. Note that when the port is attached to a server, OpenStack may rebind the port to the server's actual compute host, which may differ from the specified hostID if no matching scheduler hint is used. In this case the port's status will reflect the actual binding host, not the value specified here.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostID"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostID"), }, }, "trustedVIF": { @@ -6311,7 +6311,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortValueSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortValueSpec"), }, }, }, @@ -6322,11 +6322,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceSpec(ref c }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Address", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPair", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostID", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortValueSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Address", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPair", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostID", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortValueSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6428,7 +6428,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceStatus(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPairStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPairStatus"), }, }, }, @@ -6447,7 +6447,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceStatus(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FixedIPStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FixedIPStatus"), }, }, }, @@ -6531,11 +6531,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortResourceStatus(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllowedAddressPairStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.FixedIPStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllowedAddressPairStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.FixedIPStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6545,13 +6545,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortSpec(ref common.Re "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceSpec"), }, }, "managementPolicy": { @@ -6564,14 +6564,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortSpec(ref common.Re "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -6579,11 +6579,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortSpec(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6624,18 +6624,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortStatus(ref common. "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_PortValueSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_PortValueSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6662,7 +6662,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_PortValueSpec(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Project(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Project(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6694,14 +6694,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Project(ref common.Ref SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectStatus"), }, }, }, @@ -6709,11 +6709,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Project(ref common.Ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6820,7 +6820,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectFilter(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6837,18 +6837,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectImport(ref comm "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6884,7 +6884,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectList(ref common Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Project"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Project"), }, }, }, @@ -6895,11 +6895,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectList(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Project", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Project", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -6960,7 +6960,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7021,7 +7021,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectResourceStatus( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7031,13 +7031,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectSpec(ref common "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceSpec"), }, }, "managementPolicy": { @@ -7050,14 +7050,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectSpec(ref common "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -7065,11 +7065,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectSpec(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProjectStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7110,18 +7110,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProjectStatus(ref comm "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ProjectResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ProjectResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ProviderPropertiesStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ProviderPropertiesStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7154,7 +7154,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ProviderPropertiesStat } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Role(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Role(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7186,14 +7186,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Role(ref common.Refere SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleStatus"), }, }, }, @@ -7201,11 +7201,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Role(ref common.Refere }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7232,7 +7232,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleFilter(ref common. } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7249,18 +7249,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleImport(ref common. "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7296,7 +7296,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleList(ref common.Re Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Role"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Role"), }, }, }, @@ -7307,11 +7307,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleList(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Role", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Role", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7345,7 +7345,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceSpec(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7379,7 +7379,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleResourceStatus(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7389,13 +7389,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleSpec(ref common.Re "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceSpec"), }, }, "managementPolicy": { @@ -7408,14 +7408,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleSpec(ref common.Re "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -7423,11 +7423,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleSpec(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RoleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RoleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7468,18 +7468,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RoleStatus(ref common. "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RoleResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RoleResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Router(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Router(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7511,14 +7511,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Router(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterStatus"), }, }, }, @@ -7526,11 +7526,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Router(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7644,7 +7644,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterFilter(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7661,18 +7661,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterface(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterface(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7704,14 +7704,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterface(ref co SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceStatus"), }, }, }, @@ -7719,11 +7719,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterface(ref co }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterfaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterfaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7759,7 +7759,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceList(re Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterface"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterface"), }, }, }, @@ -7770,11 +7770,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceList(re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterInterface", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterInterface", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7808,7 +7808,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterInterfaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7853,7 +7853,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterInterfaceStatus( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7889,7 +7889,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Router"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Router"), }, }, }, @@ -7900,11 +7900,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Router", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Router", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -7964,7 +7964,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGateway"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGateway"), }, }, }, @@ -8008,11 +8008,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGateway"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGateway"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8086,7 +8086,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGatewayStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGatewayStatus"), }, }, }, @@ -8116,11 +8116,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterResourceStatus(r }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ExternalGatewayStatus"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ExternalGatewayStatus"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8130,13 +8130,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceSpec"), }, }, "managementPolicy": { @@ -8149,14 +8149,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -8164,11 +8164,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_RouterStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_RouterStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8209,18 +8209,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_RouterStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.RouterResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.RouterResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroup(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroup(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8252,14 +8252,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroup(ref comm SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupStatus"), }, }, }, @@ -8267,11 +8267,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroup(ref comm }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8385,7 +8385,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupFilter(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8402,18 +8402,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupImport(re "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8449,7 +8449,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupList(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroup"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroup"), }, }, }, @@ -8460,11 +8460,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupList(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroup", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroup", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8525,7 +8525,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceS Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRule"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRule"), }, }, }, @@ -8542,11 +8542,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceS }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRule"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRule"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8614,7 +8614,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceS Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRuleStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRuleStatus"), }, }, }, @@ -8643,11 +8643,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupResourceS }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupRuleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupRuleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRule(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupRule(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8692,7 +8692,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRule(ref "portRange": { SchemaProps: spec.SchemaProps{ Description: "portRange sets the minimum and maximum ports range that the security group rule matches. If the protocol is [tcp, udp, dccp sctp,udplite] PortRange.Min must be less than or equal to the PortRange.Max attribute value. If the protocol is ICMP, this PortRamge.Min must be an ICMP code and PortRange.Max should be an ICMP type", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeSpec"), }, }, }, @@ -8700,11 +8700,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRule(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRuleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupRuleStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8762,18 +8762,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupRuleStatu "portRange": { SchemaProps: spec.SchemaProps{ Description: "portRange sets the minimum and maximum ports range that the security group rule matches. If the protocol is [tcp, udp, dccp sctp,udplite] PortRange.Min must be less than or equal to the PortRange.Max attribute value. If the protocol is ICMP, this PortRamge.Min must be an ICMP code and PortRange.Max should be an ICMP type", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.PortRangeStatus"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.PortRangeStatus"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8783,13 +8783,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupSpec(ref "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceSpec"), }, }, "managementPolicy": { @@ -8802,14 +8802,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupSpec(ref "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -8817,11 +8817,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SecurityGroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8862,18 +8862,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SecurityGroupStatus(re "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SecurityGroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SecurityGroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Server(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Server(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8905,14 +8905,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Server(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerStatus"), }, }, }, @@ -8920,11 +8920,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Server(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerBootVolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerBootVolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -8952,7 +8952,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerBootVolumeSpec(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9059,7 +9059,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerFilter(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroup(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroup(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9091,14 +9091,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroup(ref common SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupStatus"), }, }, }, @@ -9106,11 +9106,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroup(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9130,7 +9130,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupFilter(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9147,18 +9147,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupImport(ref "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9194,7 +9194,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupList(ref co Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroup"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroup"), }, }, }, @@ -9205,11 +9205,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupList(ref co }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroup", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroup", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9233,7 +9233,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceSpe "rules": { SchemaProps: spec.SchemaProps{ Description: "rules is the rules to use for the server group.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRules"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRules"), }, }, }, @@ -9241,11 +9241,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceSpe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRules"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRules"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9283,18 +9283,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupResourceSta "rules": { SchemaProps: spec.SchemaProps{ Description: "rules is the rules of the server group.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRulesStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRulesStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupRulesStatus"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupRulesStatus"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRules(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupRules(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9313,7 +9313,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRules(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRulesStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupRulesStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9332,7 +9332,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupRulesStatus } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9342,13 +9342,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupSpec(ref co "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceSpec"), }, }, "managementPolicy": { @@ -9361,14 +9361,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupSpec(ref co "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -9376,11 +9376,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupSpec(ref co }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerGroupStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9421,18 +9421,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerGroupStatus(ref "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerGroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerGroupResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9449,18 +9449,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceFixedIP(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerInterfaceFixedIP(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9486,7 +9486,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceFixedIP } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerInterfaceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9533,7 +9533,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceStatus( Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceFixedIP"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceFixedIP"), }, }, }, @@ -9543,11 +9543,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerInterfaceStatus( }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceFixedIP"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceFixedIP"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9583,7 +9583,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Server"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Server"), }, }, }, @@ -9594,11 +9594,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Server", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Server", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9626,7 +9626,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadata(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadataStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerMetadataStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9653,7 +9653,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerMetadataStatus(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerPortSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerPortSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9672,7 +9672,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerPortSpec(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9703,13 +9703,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref "bootVolume": { SchemaProps: spec.SchemaProps{ Description: "bootVolume specifies a volume to boot from instead of an image. When specified, imageRef must be omitted. The volume must be bootable (created from an image using imageRef in the Volume spec).", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerBootVolumeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerBootVolumeSpec"), }, }, "userData": { SchemaProps: spec.SchemaProps{ Description: "userData specifies data which will be made available to the server at boot time, either via the metadata service or a config drive. It is typically read by a configuration service such as cloud-init or ignition.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserDataSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserDataSpec"), }, }, "ports": { @@ -9725,7 +9725,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerPortSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerPortSpec"), }, }, }, @@ -9744,7 +9744,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeSpec"), }, }, }, @@ -9797,7 +9797,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadata"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadata"), }, }, }, @@ -9813,7 +9813,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref "schedulerHints": { SchemaProps: spec.SchemaProps{ Description: "schedulerHints provides hints to the Nova scheduler for server placement.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSchedulerHints"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSchedulerHints"), }, }, }, @@ -9821,11 +9821,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerBootVolumeSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadata", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerPortSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerSchedulerHints", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserDataSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerBootVolumeSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadata", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerPortSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerSchedulerHints", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserDataSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -9900,7 +9900,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeStatus"), }, }, }, @@ -9919,7 +9919,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceStatus"), }, }, }, @@ -9958,7 +9958,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadataStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadataStatus"), }, }, }, @@ -9975,11 +9975,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerResourceStatus(r }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerInterfaceStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerMetadataStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerVolumeStatus"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerInterfaceStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerMetadataStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerVolumeStatus"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSchedulerHints(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerSchedulerHints(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10096,7 +10096,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSchedulerHints(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10106,13 +10106,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceSpec"), }, }, "managementPolicy": { @@ -10125,14 +10125,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -10140,11 +10140,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10185,18 +10185,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServerResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServerResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerVolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10223,7 +10223,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeSpec(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServerVolumeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10242,7 +10242,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServerVolumeStatus(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Service(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Service(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10274,14 +10274,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Service(ref common.Ref SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceStatus"), }, }, }, @@ -10289,11 +10289,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Service(ref common.Ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10320,7 +10320,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceFilter(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10337,18 +10337,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceImport(ref comm "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10384,7 +10384,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceList(ref common Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Service"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Service"), }, }, }, @@ -10395,11 +10395,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceList(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Service", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Service", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10441,7 +10441,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10482,7 +10482,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceResourceStatus( } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10492,13 +10492,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceSpec(ref common "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceSpec"), }, }, "managementPolicy": { @@ -10511,14 +10511,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceSpec(ref common "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -10526,11 +10526,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceSpec(ref common }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ServiceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10571,18 +10571,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ServiceStatus(ref comm "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ServiceResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ServiceResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetwork(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetwork(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10614,14 +10614,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetwork(ref commo SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkStatus"), }, }, }, @@ -10629,11 +10629,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetwork(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10660,7 +10660,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkFilter(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10677,18 +10677,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkImport(ref "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10724,7 +10724,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkList(ref c Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetwork"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetwork"), }, }, }, @@ -10735,11 +10735,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkList(ref c }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetwork", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetwork", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10780,7 +10780,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceSp } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10871,7 +10871,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkResourceSt } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10881,13 +10881,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkSpec(ref c "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceSpec"), }, }, "managementPolicy": { @@ -10900,14 +10900,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkSpec(ref c "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -10915,11 +10915,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkSpec(ref c }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_ShareNetworkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -10960,18 +10960,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_ShareNetworkStatus(ref "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ShareNetworkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ShareNetworkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Subnet(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Subnet(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11003,14 +11003,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Subnet(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetStatus"), }, }, }, @@ -11018,11 +11018,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Subnet(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11067,7 +11067,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetFilter(ref commo "ipv6": { SchemaProps: spec.SchemaProps{ Description: "ipv6 options of the existing resource", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.IPv6Options"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.IPv6Options"), }, }, "networkRef": { @@ -11169,11 +11169,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetFilter(ref commo }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.IPv6Options"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.IPv6Options"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetGateway(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetGateway(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11200,7 +11200,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetGateway(ref comm } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11217,18 +11217,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11264,7 +11264,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Subnet"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Subnet"), }, }, }, @@ -11275,11 +11275,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Subnet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Subnet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11354,7 +11354,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPool"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPool"), }, }, }, @@ -11363,7 +11363,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref "gateway": { SchemaProps: spec.SchemaProps{ Description: "gateway specifies the default gateway of the subnet. If not specified, neutron will add one automatically. To disable this behaviour, specify a gateway with a type of None.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetGateway"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetGateway"), }, }, "enableDHCP": { @@ -11413,7 +11413,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRoute"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRoute"), }, }, }, @@ -11422,7 +11422,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref "ipv6": { SchemaProps: spec.SchemaProps{ Description: "ipv6 contains IPv6-specific options. It may only be set if IPVersion is 6.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.IPv6Options"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.IPv6Options"), }, }, "routerRef": { @@ -11444,11 +11444,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPool", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRoute", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.IPv6Options", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetGateway"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPool", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRoute", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.IPv6Options", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetGateway"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11529,7 +11529,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPoolStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPoolStatus"), }, }, }, @@ -11548,7 +11548,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRouteStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRouteStatus"), }, }, }, @@ -11639,11 +11639,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetResourceStatus(r }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.AllocationPoolStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.HostRouteStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.AllocationPoolStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.HostRouteStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11653,13 +11653,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceSpec"), }, }, "managementPolicy": { @@ -11672,14 +11672,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -11687,11 +11687,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_SubnetStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11732,18 +11732,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_SubnetStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.SubnetResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.SubnetResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Trunk(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Trunk(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11775,14 +11775,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Trunk(ref common.Refer SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkStatus"), }, }, }, @@ -11790,11 +11790,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Trunk(ref common.Refer }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11922,7 +11922,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkFilter(ref common } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11939,18 +11939,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkImport(ref common "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -11986,7 +11986,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkList(ref common.R Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Trunk"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Trunk"), }, }, }, @@ -11997,11 +11997,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkList(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Trunk", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Trunk", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12056,7 +12056,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportSpec"), }, }, }, @@ -12087,11 +12087,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12199,7 +12199,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceStatus(re Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportStatus"), }, }, }, @@ -12209,11 +12209,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkResourceStatus(re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkSubportStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkSubportStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12223,13 +12223,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSpec(ref common.R "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceSpec"), }, }, "managementPolicy": { @@ -12242,14 +12242,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSpec(ref common.R "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -12257,11 +12257,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSpec(ref common.R }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12302,18 +12302,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkStatus(ref common "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.TrunkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.TrunkResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSubportSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12348,7 +12348,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportSpec(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_TrunkSubportStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12382,7 +12382,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_TrunkSubportStatus(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_User(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_User(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12414,14 +12414,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_User(ref common.Refere SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserStatus"), }, }, }, @@ -12429,11 +12429,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_User(ref common.Refere }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserDataSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserDataSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12452,7 +12452,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserDataSpec(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12479,7 +12479,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserFilter(ref common. } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12496,18 +12496,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserImport(ref common. "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12543,7 +12543,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserList(ref common.Re Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.User"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.User"), }, }, }, @@ -12554,11 +12554,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserList(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.User", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.User", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12613,7 +12613,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceSpec(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12675,7 +12675,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserResourceStatus(ref } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12685,13 +12685,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserSpec(ref common.Re "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceSpec"), }, }, "managementPolicy": { @@ -12704,14 +12704,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserSpec(ref common.Re "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -12719,11 +12719,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserSpec(ref common.Re }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_UserStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_UserStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12764,18 +12764,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_UserStatus(ref common. "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.UserResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.UserResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_Volume(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_Volume(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12807,14 +12807,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Volume(ref common.Refe SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeStatus"), }, }, }, @@ -12822,11 +12822,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_Volume(ref common.Refe }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeAttachmentStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeAttachmentStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12870,7 +12870,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeAttachmentStatus } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12911,7 +12911,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeFilter(ref commo } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12928,18 +12928,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeImport(ref commo "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -12975,7 +12975,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeList(ref common. Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Volume"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Volume"), }, }, }, @@ -12986,11 +12986,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeList(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.Volume", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.Volume", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeMetadata(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13019,7 +13019,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadata(ref com } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadataStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeMetadataStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13045,7 +13045,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeMetadataStatus(r } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13100,7 +13100,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceSpec(ref Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadata"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadata"), }, }, }, @@ -13118,11 +13118,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceSpec(ref }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadata"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadata"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13177,7 +13177,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeAttachmentStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeAttachmentStatus"), }, }, }, @@ -13224,7 +13224,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceStatus(r Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadataStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadataStatus"), }, }, }, @@ -13309,11 +13309,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeResourceStatus(r }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeAttachmentStatus", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeMetadataStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeAttachmentStatus", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeMetadataStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13323,13 +13323,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeSpec(ref common. "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceSpec"), }, }, "managementPolicy": { @@ -13342,14 +13342,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeSpec(ref common. "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -13357,11 +13357,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeSpec(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13402,18 +13402,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeStatus(ref commo "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeType(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeType(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13445,14 +13445,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeType(ref common. SchemaProps: spec.SchemaProps{ Description: "spec specifies the desired state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeSpec"), }, }, "status": { SchemaProps: spec.SchemaProps{ Description: "status defines the observed state of the resource.", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeStatus"), }, }, }, @@ -13460,11 +13460,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeType(ref common. }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeSpec", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeSpec", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeExtraSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13493,7 +13493,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpec(re } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpecStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeExtraSpecStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13519,7 +13519,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeExtraSpecSta } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeFilter(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13553,7 +13553,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeFilter(ref c } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeImport(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13570,18 +13570,18 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeImport(ref c "filter": { SchemaProps: spec.SchemaProps{ Description: "filter contains a resource query which is expected to return a single result. The controller will continue to retry if filter returns no results. If filter returns multiple results the controller will set an error state and will not continue to retry.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeFilter"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeFilter"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeFilter"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeFilter"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeList(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeList(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13617,7 +13617,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeList(ref com Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeType"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeType"), }, }, }, @@ -13628,11 +13628,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeList(ref com }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeType", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeType", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeResourceSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13666,7 +13666,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceSpec Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpec"), }, }, }, @@ -13683,11 +13683,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceSpec }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeResourceStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13721,7 +13721,7 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceStat Schema: &spec.Schema{ SchemaProps: spec.SchemaProps{ Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpecStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpecStatus"), }, }, }, @@ -13738,11 +13738,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeResourceStat }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeExtraSpecStatus"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeExtraSpecStatus"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeSpec(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13752,13 +13752,13 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeSpec(ref com "import": { SchemaProps: spec.SchemaProps{ Description: "import refers to an existing OpenStack resource which will be imported instead of creating a new one.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeImport"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeImport"), }, }, "resource": { SchemaProps: spec.SchemaProps{ Description: "resource specifies the desired state of the resource.\n\nresource may not be specified if the management policy is `unmanaged`.\n\nresource must be specified if the management policy is `managed`.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceSpec"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceSpec"), }, }, "managementPolicy": { @@ -13771,14 +13771,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeSpec(ref com "managedOptions": { SchemaProps: spec.SchemaProps{ Description: "managedOptions specifies options which may be applied to managed objects.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions"), }, }, "cloudCredentialsRef": { SchemaProps: spec.SchemaProps{ Description: "cloudCredentialsRef points to a secret containing OpenStack credentials", Default: map[string]interface{}{}, - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference"), }, }, }, @@ -13786,11 +13786,11 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeSpec(ref com }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeImport", "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceSpec"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.CloudCredentialsReference", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.ManagedOptions", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeImport", "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceSpec"}, } } -func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { +func schema_openstack_resource_controller_v3_api_v1alpha1_VolumeTypeStatus(ref common.ReferenceCallback) common.OpenAPIDefinition { return common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ @@ -13831,14 +13831,14 @@ func schema_openstack_resource_controller_v2_api_v1alpha1_VolumeTypeStatus(ref c "resource": { SchemaProps: spec.SchemaProps{ Description: "resource contains the observed state of the OpenStack resource.", - Ref: ref("github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceStatus"), + Ref: ref("github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceStatus"), }, }, }, }, }, Dependencies: []string{ - "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1.VolumeTypeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, + "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1.VolumeTypeResourceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Condition"}, } } diff --git a/cmd/resource-generator/data/adapter.template b/cmd/resource-generator/data/adapter.template index 7bec457ee..fad36a99f 100644 --- a/cmd/resource-generator/data/adapter.template +++ b/cmd/resource-generator/data/adapter.template @@ -17,8 +17,8 @@ limitations under the License. package {{ .NameLower }} import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/cmd/resource-generator/data/controller.template b/cmd/resource-generator/data/controller.template index 6a57c273d..99bf4ccf6 100644 --- a/cmd/resource-generator/data/controller.template +++ b/cmd/resource-generator/data/controller.template @@ -19,8 +19,8 @@ package {{ .NameLower }} import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/cmd/scaffold-controller/data/apivalidation/apivalidation_test.go.template b/cmd/scaffold-controller/data/apivalidation/apivalidation_test.go.template index 7e565b450..481ddb1d6 100644 --- a/cmd/scaffold-controller/data/apivalidation/apivalidation_test.go.template +++ b/cmd/scaffold-controller/data/apivalidation/apivalidation_test.go.template @@ -28,8 +28,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/cmd/scaffold-controller/data/controller/actuator.go.template b/cmd/scaffold-controller/data/controller/actuator.go.template index 1eca3abf3..7f8ba5aef 100644 --- a/cmd/scaffold-controller/data/controller/actuator.go.template +++ b/cmd/scaffold-controller/data/controller/actuator.go.template @@ -29,15 +29,15 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" {{- if len .ImportDependencies }} - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" {{- end }} - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/cmd/scaffold-controller/data/controller/actuator_test.go.template b/cmd/scaffold-controller/data/controller/actuator_test.go.template index 59d7e9c31..d229b98c9 100644 --- a/cmd/scaffold-controller/data/controller/actuator_test.go.template +++ b/cmd/scaffold-controller/data/controller/actuator_test.go.template @@ -20,7 +20,7 @@ import ( "testing" "{{ .GophercloudModule }}" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/cmd/scaffold-controller/data/controller/controller.go.template b/cmd/scaffold-controller/data/controller/controller.go.template index 1fdc04434..b84cb7987 100644 --- a/cmd/scaffold-controller/data/controller/controller.go.template +++ b/cmd/scaffold-controller/data/controller/controller.go.template @@ -26,15 +26,15 @@ import ( {{- end }} "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" {{- if or (len .AllCreateDependencies) (len .ImportDependencies) }} - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" {{- end }} ) diff --git a/cmd/scaffold-controller/data/controller/status.go.template b/cmd/scaffold-controller/data/controller/status.go.template index 98bc23b94..f59b159c8 100644 --- a/cmd/scaffold-controller/data/controller/status.go.template +++ b/cmd/scaffold-controller/data/controller/status.go.template @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) {{- if ne .AvailablePollingPeriod 0}} diff --git a/go.mod b/go.mod index 8839cbb64..e801abf06 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/k-orc/openstack-resource-controller/v2 +module github.com/k-orc/openstack-resource-controller/v3 go 1.25.0 diff --git a/hack/update-codegen.sh b/hack/update-codegen.sh index 409c63d75..4cd9a629e 100755 --- a/hack/update-codegen.sh +++ b/hack/update-codegen.sh @@ -65,7 +65,7 @@ kube::codegen::gen_client \ --with-watch \ --applyconfig-openapi-schema "$openapi" \ --output-dir "${PROJECT_ROOT}/${GENERATED_PKG}" \ - --output-pkg github.com/k-orc/openstack-resource-controller/v2/${GENERATED_PKG} \ + --output-pkg github.com/k-orc/openstack-resource-controller/v3/${GENERATED_PKG} \ --versioned-name clientset \ --boilerplate "${SCRIPT_ROOT}/boilerplate.go.txt" \ --one-input-api "api" \ diff --git a/hack/version.sh b/hack/version.sh index 0fe37e586..c4ae5ba58 100755 --- a/hack/version.sh +++ b/hack/version.sh @@ -109,7 +109,7 @@ version::ldflags() { fi ldflags+=( - "-X 'github.com/k-orc/openstack-resource-controller/v2/internal/version.${key}=${val}'" + "-X 'github.com/k-orc/openstack-resource-controller/v3/internal/version.${key}=${val}'" ) } diff --git a/internal/controllers/addressscope/actuator.go b/internal/controllers/addressscope/actuator.go index 6c75a4829..8885bad7f 100644 --- a/internal/controllers/addressscope/actuator.go +++ b/internal/controllers/addressscope/actuator.go @@ -26,13 +26,13 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/addressscope/actuator_test.go b/internal/controllers/addressscope/actuator_test.go index 151595fb4..98affd22e 100644 --- a/internal/controllers/addressscope/actuator_test.go +++ b/internal/controllers/addressscope/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/addressscopes" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/addressscope/controller.go b/internal/controllers/addressscope/controller.go index daa8694e6..06ae026d3 100644 --- a/internal/controllers/addressscope/controller.go +++ b/internal/controllers/addressscope/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "addressscope" diff --git a/internal/controllers/addressscope/status.go b/internal/controllers/addressscope/status.go index 5065adfad..e0544483b 100644 --- a/internal/controllers/addressscope/status.go +++ b/internal/controllers/addressscope/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type addressscopeStatusWriter struct{} diff --git a/internal/controllers/addressscope/zz_generated.adapter.go b/internal/controllers/addressscope/zz_generated.adapter.go index 768861dbd..84521aecd 100644 --- a/internal/controllers/addressscope/zz_generated.adapter.go +++ b/internal/controllers/addressscope/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package addressscope import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/addressscope/zz_generated.controller.go b/internal/controllers/addressscope/zz_generated.controller.go index c17697f8c..fe3905619 100644 --- a/internal/controllers/addressscope/zz_generated.controller.go +++ b/internal/controllers/addressscope/zz_generated.controller.go @@ -20,8 +20,8 @@ package addressscope import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/applicationcredential/actuator.go b/internal/controllers/applicationcredential/actuator.go index 71989a676..e8a0f905d 100644 --- a/internal/controllers/applicationcredential/actuator.go +++ b/internal/controllers/applicationcredential/actuator.go @@ -27,12 +27,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/applicationcredential/controller.go b/internal/controllers/applicationcredential/controller.go index 4e41a989f..0a5210aec 100644 --- a/internal/controllers/applicationcredential/controller.go +++ b/internal/controllers/applicationcredential/controller.go @@ -25,14 +25,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "applicationcredential" diff --git a/internal/controllers/applicationcredential/status.go b/internal/controllers/applicationcredential/status.go index 2530a65e9..d895a05ee 100644 --- a/internal/controllers/applicationcredential/status.go +++ b/internal/controllers/applicationcredential/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type applicationcredentialStatusWriter struct{} diff --git a/internal/controllers/applicationcredential/zz_generated.adapter.go b/internal/controllers/applicationcredential/zz_generated.adapter.go index 55f0b5346..1b9499f16 100644 --- a/internal/controllers/applicationcredential/zz_generated.adapter.go +++ b/internal/controllers/applicationcredential/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package applicationcredential import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/applicationcredential/zz_generated.controller.go b/internal/controllers/applicationcredential/zz_generated.controller.go index 09ae74111..e76da9354 100644 --- a/internal/controllers/applicationcredential/zz_generated.controller.go +++ b/internal/controllers/applicationcredential/zz_generated.controller.go @@ -20,8 +20,8 @@ package applicationcredential import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/domain/actuator.go b/internal/controllers/domain/actuator.go index d9653bcf0..0c7e35df1 100644 --- a/internal/controllers/domain/actuator.go +++ b/internal/controllers/domain/actuator.go @@ -26,12 +26,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/domain/actuator_test.go b/internal/controllers/domain/actuator_test.go index 65a743cc8..619740b3a 100644 --- a/internal/controllers/domain/actuator_test.go +++ b/internal/controllers/domain/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/domains" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/domain/controller.go b/internal/controllers/domain/controller.go index 38c831aa2..654ed2a23 100644 --- a/internal/controllers/domain/controller.go +++ b/internal/controllers/domain/controller.go @@ -23,12 +23,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "domain" diff --git a/internal/controllers/domain/status.go b/internal/controllers/domain/status.go index c124f19a2..ee0556420 100644 --- a/internal/controllers/domain/status.go +++ b/internal/controllers/domain/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type domainStatusWriter struct{} diff --git a/internal/controllers/domain/zz_generated.adapter.go b/internal/controllers/domain/zz_generated.adapter.go index 6a386af72..48c1be7b0 100644 --- a/internal/controllers/domain/zz_generated.adapter.go +++ b/internal/controllers/domain/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package domain import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/domain/zz_generated.controller.go b/internal/controllers/domain/zz_generated.controller.go index 42194e684..a4e40e98a 100644 --- a/internal/controllers/domain/zz_generated.controller.go +++ b/internal/controllers/domain/zz_generated.controller.go @@ -20,8 +20,8 @@ package domain import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/endpoint/actuator.go b/internal/controllers/endpoint/actuator.go index 57d62f187..b7dc877f9 100644 --- a/internal/controllers/endpoint/actuator.go +++ b/internal/controllers/endpoint/actuator.go @@ -27,13 +27,13 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/endpoint/actuator_test.go b/internal/controllers/endpoint/actuator_test.go index e15f8ee50..573807710 100644 --- a/internal/controllers/endpoint/actuator_test.go +++ b/internal/controllers/endpoint/actuator_test.go @@ -21,7 +21,7 @@ import ( "github.com/gophercloud/gophercloud/v2" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/endpoints" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/endpoint/controller.go b/internal/controllers/endpoint/controller.go index f1939076e..95ddb695a 100644 --- a/internal/controllers/endpoint/controller.go +++ b/internal/controllers/endpoint/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "endpoint" diff --git a/internal/controllers/endpoint/status.go b/internal/controllers/endpoint/status.go index e3f285724..bdcc9653c 100644 --- a/internal/controllers/endpoint/status.go +++ b/internal/controllers/endpoint/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type endpointStatusWriter struct{} diff --git a/internal/controllers/endpoint/zz_generated.adapter.go b/internal/controllers/endpoint/zz_generated.adapter.go index fe95ab43f..69687680e 100644 --- a/internal/controllers/endpoint/zz_generated.adapter.go +++ b/internal/controllers/endpoint/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package endpoint import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/endpoint/zz_generated.controller.go b/internal/controllers/endpoint/zz_generated.controller.go index e0ccac2f9..dd6c14b5a 100644 --- a/internal/controllers/endpoint/zz_generated.controller.go +++ b/internal/controllers/endpoint/zz_generated.controller.go @@ -20,8 +20,8 @@ package endpoint import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/flavor/actuator.go b/internal/controllers/flavor/actuator.go index f80146268..e7f4a8d39 100644 --- a/internal/controllers/flavor/actuator.go +++ b/internal/controllers/flavor/actuator.go @@ -25,11 +25,11 @@ import ( "k8s.io/utils/ptr" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - generic "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + generic "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/flavor/actuator_test.go b/internal/controllers/flavor/actuator_test.go index 40be7dd4e..914053b11 100644 --- a/internal/controllers/flavor/actuator_test.go +++ b/internal/controllers/flavor/actuator_test.go @@ -11,8 +11,8 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" ) var ( diff --git a/internal/controllers/flavor/controller.go b/internal/controllers/flavor/controller.go index 3b3cd459d..07b9b057a 100644 --- a/internal/controllers/flavor/controller.go +++ b/internal/controllers/flavor/controller.go @@ -23,12 +23,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "flavor" diff --git a/internal/controllers/flavor/status.go b/internal/controllers/flavor/status.go index 697df64ef..fbc17ed24 100644 --- a/internal/controllers/flavor/status.go +++ b/internal/controllers/flavor/status.go @@ -21,10 +21,10 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/compute/v2/flavors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type flavorStatusWriter struct{} diff --git a/internal/controllers/flavor/zz_generated.adapter.go b/internal/controllers/flavor/zz_generated.adapter.go index 936fc6735..1f9ffeff5 100644 --- a/internal/controllers/flavor/zz_generated.adapter.go +++ b/internal/controllers/flavor/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package flavor import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/flavor/zz_generated.controller.go b/internal/controllers/flavor/zz_generated.controller.go index 675989cc0..3b3084fda 100644 --- a/internal/controllers/flavor/zz_generated.controller.go +++ b/internal/controllers/flavor/zz_generated.controller.go @@ -20,8 +20,8 @@ package flavor import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/floatingip/actuator.go b/internal/controllers/floatingip/actuator.go index e83148490..f3ee85c13 100644 --- a/internal/controllers/floatingip/actuator.go +++ b/internal/controllers/floatingip/actuator.go @@ -21,14 +21,14 @@ import ( "iter" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/floatingips" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" corev1 "k8s.io/api/core/v1" "k8s.io/utils/ptr" ctrl "sigs.k8s.io/controller-runtime" diff --git a/internal/controllers/floatingip/actuator_test.go b/internal/controllers/floatingip/actuator_test.go index 29faa0645..2591391a0 100644 --- a/internal/controllers/floatingip/actuator_test.go +++ b/internal/controllers/floatingip/actuator_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/floatingips" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/floatingip/controller.go b/internal/controllers/floatingip/controller.go index 6cf68e27b..25fa4c4b6 100644 --- a/internal/controllers/floatingip/controller.go +++ b/internal/controllers/floatingip/controller.go @@ -25,14 +25,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=floatingips,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/floatingip/status.go b/internal/controllers/floatingip/status.go index 5783a6d52..e8f702142 100644 --- a/internal/controllers/floatingip/status.go +++ b/internal/controllers/floatingip/status.go @@ -20,9 +20,9 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/floatingip/suite_test.go b/internal/controllers/floatingip/suite_test.go index f1a7eb8fa..e5c3cc27f 100644 --- a/internal/controllers/floatingip/suite_test.go +++ b/internal/controllers/floatingip/suite_test.go @@ -30,7 +30,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/envtest" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/floatingip/zz_generated.adapter.go b/internal/controllers/floatingip/zz_generated.adapter.go index c0ff372fb..92723244a 100644 --- a/internal/controllers/floatingip/zz_generated.adapter.go +++ b/internal/controllers/floatingip/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package floatingip import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/floatingip/zz_generated.controller.go b/internal/controllers/floatingip/zz_generated.controller.go index 9d3324464..ad0e6d4a4 100644 --- a/internal/controllers/floatingip/zz_generated.controller.go +++ b/internal/controllers/floatingip/zz_generated.controller.go @@ -20,8 +20,8 @@ package floatingip import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/generic/interfaces/actuator.go b/internal/controllers/generic/interfaces/actuator.go index e9c0b720d..a437af5c5 100644 --- a/internal/controllers/generic/interfaces/actuator.go +++ b/internal/controllers/generic/interfaces/actuator.go @@ -22,8 +22,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" ) // ResourceHelperFactory is an interface defining constructors for objects diff --git a/internal/controllers/generic/interfaces/adapter.go b/internal/controllers/generic/interfaces/adapter.go index 319e19c10..5c1276bcb 100644 --- a/internal/controllers/generic/interfaces/adapter.go +++ b/internal/controllers/generic/interfaces/adapter.go @@ -19,7 +19,7 @@ package interfaces import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) type APIObjectAdapter[orcObjectPT any, resourceSpecT any, filterT any] interface { diff --git a/internal/controllers/generic/interfaces/controller.go b/internal/controllers/generic/interfaces/controller.go index 87f81ccef..a0f002bca 100644 --- a/internal/controllers/generic/interfaces/controller.go +++ b/internal/controllers/generic/interfaces/controller.go @@ -23,7 +23,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/controller" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" ) type Controller interface { diff --git a/internal/controllers/generic/interfaces/status.go b/internal/controllers/generic/interfaces/status.go index b577a364f..932e1cdb5 100644 --- a/internal/controllers/generic/interfaces/status.go +++ b/internal/controllers/generic/interfaces/status.go @@ -22,8 +22,8 @@ import ( "k8s.io/apimachinery/pkg/types" applyconfigv1 "k8s.io/client-go/applyconfigurations/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" ) // ORCApplyConfig is an interface implemented by any apply configuration for an diff --git a/internal/controllers/generic/progress/reconcile_status.go b/internal/controllers/generic/progress/reconcile_status.go index 9b9b61c99..f3ea46fbd 100644 --- a/internal/controllers/generic/progress/reconcile_status.go +++ b/internal/controllers/generic/progress/reconcile_status.go @@ -24,8 +24,8 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "github.com/go-logr/logr" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // ReconcileStatus represents the status of the current reconcile. diff --git a/internal/controllers/generic/reconciler/controller.go b/internal/controllers/generic/reconciler/controller.go index 7571519cd..d13539692 100644 --- a/internal/controllers/generic/reconciler/controller.go +++ b/internal/controllers/generic/reconciler/controller.go @@ -26,12 +26,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/status" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/status" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" ) type ResourceController interface { diff --git a/internal/controllers/generic/reconciler/resource_actions.go b/internal/controllers/generic/reconciler/resource_actions.go index 49f4598b1..4eff20217 100644 --- a/internal/controllers/generic/reconciler/resource_actions.go +++ b/internal/controllers/generic/reconciler/resource_actions.go @@ -26,13 +26,13 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/controller/controllerutil" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/finalizers" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/finalizers" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) const ( diff --git a/internal/controllers/generic/status/conditions.go b/internal/controllers/generic/status/conditions.go index 9ac683150..d8763bec4 100644 --- a/internal/controllers/generic/status/conditions.go +++ b/internal/controllers/generic/status/conditions.go @@ -23,10 +23,10 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" applyconfigv1 "k8s.io/client-go/applyconfigurations/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) type WithConditionsApplyConfiguration[T any] interface { diff --git a/internal/controllers/generic/status/status.go b/internal/controllers/generic/status/status.go index 4776d16ae..638d2bcb4 100644 --- a/internal/controllers/generic/status/status.go +++ b/internal/controllers/generic/status/status.go @@ -26,11 +26,11 @@ import ( "k8s.io/apimachinery/pkg/types" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) func SetStatusID[ diff --git a/internal/controllers/group/actuator.go b/internal/controllers/group/actuator.go index 87e84a3e1..c251b94fa 100644 --- a/internal/controllers/group/actuator.go +++ b/internal/controllers/group/actuator.go @@ -26,13 +26,13 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/group/actuator_test.go b/internal/controllers/group/actuator_test.go index 2e072ada0..b61348fe2 100644 --- a/internal/controllers/group/actuator_test.go +++ b/internal/controllers/group/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/groups" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/group/controller.go b/internal/controllers/group/controller.go index 043a22e44..e93424c3d 100644 --- a/internal/controllers/group/controller.go +++ b/internal/controllers/group/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "group" diff --git a/internal/controllers/group/status.go b/internal/controllers/group/status.go index 0d94b6bac..6feb4d19e 100644 --- a/internal/controllers/group/status.go +++ b/internal/controllers/group/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type groupStatusWriter struct{} diff --git a/internal/controllers/group/zz_generated.adapter.go b/internal/controllers/group/zz_generated.adapter.go index be06e584f..a285e0f5e 100644 --- a/internal/controllers/group/zz_generated.adapter.go +++ b/internal/controllers/group/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package group import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/group/zz_generated.controller.go b/internal/controllers/group/zz_generated.controller.go index 39e06261a..839cb1ccf 100644 --- a/internal/controllers/group/zz_generated.controller.go +++ b/internal/controllers/group/zz_generated.controller.go @@ -20,8 +20,8 @@ package group import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/image/actuator.go b/internal/controllers/image/actuator.go index b733bb3b7..5df91bb10 100644 --- a/internal/controllers/image/actuator.go +++ b/internal/controllers/image/actuator.go @@ -30,12 +30,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) type ( diff --git a/internal/controllers/image/actuator_test.go b/internal/controllers/image/actuator_test.go index 38c511873..2a0d6c994 100644 --- a/internal/controllers/image/actuator_test.go +++ b/internal/controllers/image/actuator_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/image/v2/images" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/image/controller.go b/internal/controllers/image/controller.go index 2416fa823..675ff5aed 100644 --- a/internal/controllers/image/controller.go +++ b/internal/controllers/image/controller.go @@ -24,12 +24,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "image" diff --git a/internal/controllers/image/status.go b/internal/controllers/image/status.go index 37270334f..7ebe4c133 100644 --- a/internal/controllers/image/status.go +++ b/internal/controllers/image/status.go @@ -29,12 +29,12 @@ import ( "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/image/suite_test.go b/internal/controllers/image/suite_test.go index 4b1fa4de2..53330f677 100644 --- a/internal/controllers/image/suite_test.go +++ b/internal/controllers/image/suite_test.go @@ -30,7 +30,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/envtest" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/image/upload.go b/internal/controllers/image/upload.go index 79f23a6b5..660fede84 100644 --- a/internal/controllers/image/upload.go +++ b/internal/controllers/image/upload.go @@ -30,9 +30,9 @@ import ( // corev1 "k8s.io/api/core/v1" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) func (actuator imageActuator) hashVerifier(ctx context.Context, expectedValue string) hashCompletionHandler { diff --git a/internal/controllers/image/upload_helpers.go b/internal/controllers/image/upload_helpers.go index 47f87366b..6ce14c044 100644 --- a/internal/controllers/image/upload_helpers.go +++ b/internal/controllers/image/upload_helpers.go @@ -30,8 +30,8 @@ import ( "github.com/ulikunitz/xz" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) type progressReporter func(progress int64) diff --git a/internal/controllers/image/upload_test.go b/internal/controllers/image/upload_test.go index cfdb2a5f5..c2cca6e3c 100644 --- a/internal/controllers/image/upload_test.go +++ b/internal/controllers/image/upload_test.go @@ -30,8 +30,8 @@ import ( corev1 "k8s.io/api/core/v1" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients/mock" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients/mock" ) type serveFileHandler string diff --git a/internal/controllers/image/webdownload.go b/internal/controllers/image/webdownload.go index ae6a3f8eb..955657e54 100644 --- a/internal/controllers/image/webdownload.go +++ b/internal/controllers/image/webdownload.go @@ -25,9 +25,9 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/image/v2/images" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) func requireResource(orcImage *orcv1alpha1.Image) (*orcv1alpha1.ImageResourceSpec, error) { diff --git a/internal/controllers/image/zz_generated.adapter.go b/internal/controllers/image/zz_generated.adapter.go index fe096571b..e358838b0 100644 --- a/internal/controllers/image/zz_generated.adapter.go +++ b/internal/controllers/image/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package image import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/image/zz_generated.controller.go b/internal/controllers/image/zz_generated.controller.go index a980a5c4f..8e5729982 100644 --- a/internal/controllers/image/zz_generated.controller.go +++ b/internal/controllers/image/zz_generated.controller.go @@ -20,8 +20,8 @@ package image import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/keypair/actuator.go b/internal/controllers/keypair/actuator.go index b11d361ab..33080b676 100644 --- a/internal/controllers/keypair/actuator.go +++ b/internal/controllers/keypair/actuator.go @@ -25,11 +25,11 @@ import ( "k8s.io/utils/ptr" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/keypair/actuator_test.go b/internal/controllers/keypair/actuator_test.go index 0edc12fae..08d7af68c 100644 --- a/internal/controllers/keypair/actuator_test.go +++ b/internal/controllers/keypair/actuator_test.go @@ -26,7 +26,7 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/compute/v2/keypairs" "k8s.io/utils/ptr" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/keypair/controller.go b/internal/controllers/keypair/controller.go index 64cc7cb73..34acab729 100644 --- a/internal/controllers/keypair/controller.go +++ b/internal/controllers/keypair/controller.go @@ -23,12 +23,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "keypair" diff --git a/internal/controllers/keypair/status.go b/internal/controllers/keypair/status.go index 401cf82a1..c0e26d9b8 100644 --- a/internal/controllers/keypair/status.go +++ b/internal/controllers/keypair/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type keypairStatusWriter struct{} diff --git a/internal/controllers/keypair/zz_generated.adapter.go b/internal/controllers/keypair/zz_generated.adapter.go index d3b72644c..bb19d32ef 100644 --- a/internal/controllers/keypair/zz_generated.adapter.go +++ b/internal/controllers/keypair/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package keypair import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/keypair/zz_generated.controller.go b/internal/controllers/keypair/zz_generated.controller.go index c3bdcda17..b6486f5be 100644 --- a/internal/controllers/keypair/zz_generated.controller.go +++ b/internal/controllers/keypair/zz_generated.controller.go @@ -20,8 +20,8 @@ package keypair import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/network/actuator.go b/internal/controllers/network/actuator.go index d6b9b273c..3e4b685dc 100644 --- a/internal/controllers/network/actuator.go +++ b/internal/controllers/network/actuator.go @@ -30,14 +30,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) type ( diff --git a/internal/controllers/network/actuator_test.go b/internal/controllers/network/actuator_test.go index 10ac48869..2bf9cb36d 100644 --- a/internal/controllers/network/actuator_test.go +++ b/internal/controllers/network/actuator_test.go @@ -7,8 +7,8 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/mtu" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/portsecurity" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/networks" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/network/controller.go b/internal/controllers/network/controller.go index a9795133e..59c262114 100644 --- a/internal/controllers/network/controller.go +++ b/internal/controllers/network/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=networks,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/network/status.go b/internal/controllers/network/status.go index 26db9523a..1e76b578b 100644 --- a/internal/controllers/network/status.go +++ b/internal/controllers/network/status.go @@ -22,12 +22,12 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/network/zz_generated.adapter.go b/internal/controllers/network/zz_generated.adapter.go index 771518735..66c7118de 100644 --- a/internal/controllers/network/zz_generated.adapter.go +++ b/internal/controllers/network/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package network import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/network/zz_generated.controller.go b/internal/controllers/network/zz_generated.controller.go index f054559f0..630f4b53f 100644 --- a/internal/controllers/network/zz_generated.controller.go +++ b/internal/controllers/network/zz_generated.controller.go @@ -20,8 +20,8 @@ package network import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/port/actuator.go b/internal/controllers/port/actuator.go index cd4db8a5e..9fe997688 100644 --- a/internal/controllers/port/actuator.go +++ b/internal/controllers/port/actuator.go @@ -32,14 +32,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) type ( diff --git a/internal/controllers/port/actuator_test.go b/internal/controllers/port/actuator_test.go index cf31483a9..43d84c7ed 100644 --- a/internal/controllers/port/actuator_test.go +++ b/internal/controllers/port/actuator_test.go @@ -7,8 +7,8 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/portsecurity" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/portstrustedvif" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/ports" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/port/controller.go b/internal/controllers/port/controller.go index 2d9f881fc..9e4b42b8c 100644 --- a/internal/controllers/port/controller.go +++ b/internal/controllers/port/controller.go @@ -32,18 +32,18 @@ import ( "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/reconcile" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=ports,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/port/status.go b/internal/controllers/port/status.go index 9a8372569..500d1d850 100644 --- a/internal/controllers/port/status.go +++ b/internal/controllers/port/status.go @@ -20,9 +20,9 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/port/zz_generated.adapter.go b/internal/controllers/port/zz_generated.adapter.go index 1cafbd343..51d64f25c 100644 --- a/internal/controllers/port/zz_generated.adapter.go +++ b/internal/controllers/port/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package port import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/port/zz_generated.controller.go b/internal/controllers/port/zz_generated.controller.go index 160f732dc..5182f51b7 100644 --- a/internal/controllers/port/zz_generated.controller.go +++ b/internal/controllers/port/zz_generated.controller.go @@ -20,8 +20,8 @@ package port import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/project/actuator.go b/internal/controllers/project/actuator.go index 1ea580e8c..edc8369bc 100644 --- a/internal/controllers/project/actuator.go +++ b/internal/controllers/project/actuator.go @@ -27,13 +27,13 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - generic "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + generic "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) // OpenStack resource types diff --git a/internal/controllers/project/actuator_test.go b/internal/controllers/project/actuator_test.go index 190d67d77..c5ff26dda 100644 --- a/internal/controllers/project/actuator_test.go +++ b/internal/controllers/project/actuator_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/projects" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/project/controller.go b/internal/controllers/project/controller.go index 116b2024e..6c93bf500 100644 --- a/internal/controllers/project/controller.go +++ b/internal/controllers/project/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "project" diff --git a/internal/controllers/project/status.go b/internal/controllers/project/status.go index 9ff6ef10c..8f55d3eed 100644 --- a/internal/controllers/project/status.go +++ b/internal/controllers/project/status.go @@ -21,10 +21,10 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/projects" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type projectStatusWriter struct{} diff --git a/internal/controllers/project/zz_generated.adapter.go b/internal/controllers/project/zz_generated.adapter.go index fea8a21c1..d8ef99be8 100644 --- a/internal/controllers/project/zz_generated.adapter.go +++ b/internal/controllers/project/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package project import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/project/zz_generated.controller.go b/internal/controllers/project/zz_generated.controller.go index 7660eb2bb..0c73553a5 100644 --- a/internal/controllers/project/zz_generated.controller.go +++ b/internal/controllers/project/zz_generated.controller.go @@ -20,8 +20,8 @@ package project import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/role/actuator.go b/internal/controllers/role/actuator.go index 5203a235b..ab82d5678 100644 --- a/internal/controllers/role/actuator.go +++ b/internal/controllers/role/actuator.go @@ -21,18 +21,18 @@ import ( "iter" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/roles" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" corev1 "k8s.io/api/core/v1" "k8s.io/utils/ptr" ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/role/actuator_test.go b/internal/controllers/role/actuator_test.go index 3e39dbb69..80a2ecae4 100644 --- a/internal/controllers/role/actuator_test.go +++ b/internal/controllers/role/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/roles" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/role/controller.go b/internal/controllers/role/controller.go index faa40bfc0..8b56bcd43 100644 --- a/internal/controllers/role/controller.go +++ b/internal/controllers/role/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "role" diff --git a/internal/controllers/role/status.go b/internal/controllers/role/status.go index 5a3b48ebc..a5ea995d2 100644 --- a/internal/controllers/role/status.go +++ b/internal/controllers/role/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type roleStatusWriter struct{} diff --git a/internal/controllers/role/zz_generated.adapter.go b/internal/controllers/role/zz_generated.adapter.go index 5587b85d4..e9dc9160b 100644 --- a/internal/controllers/role/zz_generated.adapter.go +++ b/internal/controllers/role/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package role import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/role/zz_generated.controller.go b/internal/controllers/role/zz_generated.controller.go index bc7cce067..9a32f784f 100644 --- a/internal/controllers/role/zz_generated.controller.go +++ b/internal/controllers/role/zz_generated.controller.go @@ -20,8 +20,8 @@ package role import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/router/actuator.go b/internal/controllers/router/actuator.go index 6369f4d9c..156c29fc0 100644 --- a/internal/controllers/router/actuator.go +++ b/internal/controllers/router/actuator.go @@ -26,14 +26,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) type ( diff --git a/internal/controllers/router/actuator_test.go b/internal/controllers/router/actuator_test.go index 9cceb6f2f..e88f8438a 100644 --- a/internal/controllers/router/actuator_test.go +++ b/internal/controllers/router/actuator_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/layer3/routers" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/router/controller.go b/internal/controllers/router/controller.go index 3b11b3192..de8a868a5 100644 --- a/internal/controllers/router/controller.go +++ b/internal/controllers/router/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=routers,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/router/status.go b/internal/controllers/router/status.go index ad1430124..131aea144 100644 --- a/internal/controllers/router/status.go +++ b/internal/controllers/router/status.go @@ -20,9 +20,9 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/router/suite_test.go b/internal/controllers/router/suite_test.go index 02433215f..a4598269c 100644 --- a/internal/controllers/router/suite_test.go +++ b/internal/controllers/router/suite_test.go @@ -30,7 +30,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/envtest" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/router/zz_generated.adapter.go b/internal/controllers/router/zz_generated.adapter.go index ccab08587..ae9fae570 100644 --- a/internal/controllers/router/zz_generated.adapter.go +++ b/internal/controllers/router/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package router import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/router/zz_generated.controller.go b/internal/controllers/router/zz_generated.controller.go index 71e247334..a3861f906 100644 --- a/internal/controllers/router/zz_generated.controller.go +++ b/internal/controllers/router/zz_generated.controller.go @@ -20,8 +20,8 @@ package router import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/routerinterface/controller.go b/internal/controllers/routerinterface/controller.go index b25cdacf9..0f7e84920 100644 --- a/internal/controllers/routerinterface/controller.go +++ b/internal/controllers/routerinterface/controller.go @@ -30,13 +30,13 @@ import ( "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/reconcile" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const ( diff --git a/internal/controllers/routerinterface/reconcile.go b/internal/controllers/routerinterface/reconcile.go index 6b8daeb03..650ea7bfd 100644 --- a/internal/controllers/routerinterface/reconcile.go +++ b/internal/controllers/routerinterface/reconcile.go @@ -29,14 +29,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/finalizers" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/finalizers" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=routerinterfaces,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/routerinterface/status.go b/internal/controllers/routerinterface/status.go index 6c3ea10e8..3a31d9642 100644 --- a/internal/controllers/routerinterface/status.go +++ b/internal/controllers/routerinterface/status.go @@ -24,14 +24,14 @@ import ( "k8s.io/apimachinery/pkg/types" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/status" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/port" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/status" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/port" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) func getStatusSummary(osResource *osclients.PortExt) (metav1.ConditionStatus, progress.ReconcileStatus) { diff --git a/internal/controllers/routerinterface/suite_test.go b/internal/controllers/routerinterface/suite_test.go index 8c93ac434..c8b100729 100644 --- a/internal/controllers/routerinterface/suite_test.go +++ b/internal/controllers/routerinterface/suite_test.go @@ -30,7 +30,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/envtest" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/securitygroup/actuator.go b/internal/controllers/securitygroup/actuator.go index 7830ab3ff..b62ff8f56 100644 --- a/internal/controllers/securitygroup/actuator.go +++ b/internal/controllers/securitygroup/actuator.go @@ -25,14 +25,14 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/security/groups" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/security/rules" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" corev1 "k8s.io/api/core/v1" "k8s.io/utils/ptr" "k8s.io/utils/set" diff --git a/internal/controllers/securitygroup/actuator_test.go b/internal/controllers/securitygroup/actuator_test.go index f996def88..7d522930c 100644 --- a/internal/controllers/securitygroup/actuator_test.go +++ b/internal/controllers/securitygroup/actuator_test.go @@ -24,8 +24,8 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/security/groups" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/security/rules" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients/mock" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients/mock" "go.uber.org/mock/gomock" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/securitygroup/controller.go b/internal/controllers/securitygroup/controller.go index 2e5d525e5..2ca11e787 100644 --- a/internal/controllers/securitygroup/controller.go +++ b/internal/controllers/securitygroup/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=securitygroups,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/securitygroup/status.go b/internal/controllers/securitygroup/status.go index 90e172d45..f5fa7ac91 100644 --- a/internal/controllers/securitygroup/status.go +++ b/internal/controllers/securitygroup/status.go @@ -20,9 +20,9 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type objectApplyPT = *orcapplyconfigv1alpha1.SecurityGroupApplyConfiguration diff --git a/internal/controllers/securitygroup/zz_generated.adapter.go b/internal/controllers/securitygroup/zz_generated.adapter.go index 1b055740c..a2db9cf1d 100644 --- a/internal/controllers/securitygroup/zz_generated.adapter.go +++ b/internal/controllers/securitygroup/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package securitygroup import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/securitygroup/zz_generated.controller.go b/internal/controllers/securitygroup/zz_generated.controller.go index e3477ad53..fde81b96e 100644 --- a/internal/controllers/securitygroup/zz_generated.controller.go +++ b/internal/controllers/securitygroup/zz_generated.controller.go @@ -20,8 +20,8 @@ package securitygroup import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/server/actuator.go b/internal/controllers/server/actuator.go index 873ef516d..920295168 100644 --- a/internal/controllers/server/actuator.go +++ b/internal/controllers/server/actuator.go @@ -34,14 +34,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) // osResourceT is a wrapper around servers.Server that includes attached interfaces diff --git a/internal/controllers/server/actuator_test.go b/internal/controllers/server/actuator_test.go index f3497ae31..e90ddc256 100644 --- a/internal/controllers/server/actuator_test.go +++ b/internal/controllers/server/actuator_test.go @@ -4,7 +4,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/compute/v2/servers" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/server/controller.go b/internal/controllers/server/controller.go index b59bc258b..001eb8a07 100644 --- a/internal/controllers/server/controller.go +++ b/internal/controllers/server/controller.go @@ -25,13 +25,13 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=servers,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/server/status.go b/internal/controllers/server/status.go index 39956c531..224fefeee 100644 --- a/internal/controllers/server/status.go +++ b/internal/controllers/server/status.go @@ -25,9 +25,9 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/internal/controllers/server/zz_generated.adapter.go b/internal/controllers/server/zz_generated.adapter.go index 1b51cde39..202818be0 100644 --- a/internal/controllers/server/zz_generated.adapter.go +++ b/internal/controllers/server/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package server import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/server/zz_generated.controller.go b/internal/controllers/server/zz_generated.controller.go index d3aee5648..424748d7b 100644 --- a/internal/controllers/server/zz_generated.controller.go +++ b/internal/controllers/server/zz_generated.controller.go @@ -20,8 +20,8 @@ package server import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/servergroup/actuator.go b/internal/controllers/servergroup/actuator.go index 04dd07975..a591b5062 100644 --- a/internal/controllers/servergroup/actuator.go +++ b/internal/controllers/servergroup/actuator.go @@ -25,11 +25,11 @@ import ( "k8s.io/utils/ptr" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - generic "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + generic "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/servergroup/controller.go b/internal/controllers/servergroup/controller.go index 98069dc81..d890deafb 100644 --- a/internal/controllers/servergroup/controller.go +++ b/internal/controllers/servergroup/controller.go @@ -23,12 +23,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "servergroup" diff --git a/internal/controllers/servergroup/status.go b/internal/controllers/servergroup/status.go index 3023ecbea..067c59b90 100644 --- a/internal/controllers/servergroup/status.go +++ b/internal/controllers/servergroup/status.go @@ -22,10 +22,10 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/utils/ptr" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type servergroupStatusWriter struct{} diff --git a/internal/controllers/servergroup/zz_generated.adapter.go b/internal/controllers/servergroup/zz_generated.adapter.go index dc272f462..aa4b99680 100644 --- a/internal/controllers/servergroup/zz_generated.adapter.go +++ b/internal/controllers/servergroup/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package servergroup import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/servergroup/zz_generated.controller.go b/internal/controllers/servergroup/zz_generated.controller.go index 181f872cc..9e389fa86 100644 --- a/internal/controllers/servergroup/zz_generated.controller.go +++ b/internal/controllers/servergroup/zz_generated.controller.go @@ -20,8 +20,8 @@ package servergroup import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/service/actuator.go b/internal/controllers/service/actuator.go index 70688ae9d..8ea5089aa 100644 --- a/internal/controllers/service/actuator.go +++ b/internal/controllers/service/actuator.go @@ -26,12 +26,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/service/actuator_test.go b/internal/controllers/service/actuator_test.go index 980cd269f..da90a0e56 100644 --- a/internal/controllers/service/actuator_test.go +++ b/internal/controllers/service/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/identity/v3/services" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/service/controller.go b/internal/controllers/service/controller.go index 6e46a0dbd..1e5538329 100644 --- a/internal/controllers/service/controller.go +++ b/internal/controllers/service/controller.go @@ -23,12 +23,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "service" diff --git a/internal/controllers/service/status.go b/internal/controllers/service/status.go index 490c35fb5..a04e25ed7 100644 --- a/internal/controllers/service/status.go +++ b/internal/controllers/service/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type serviceStatusWriter struct{} diff --git a/internal/controllers/service/zz_generated.adapter.go b/internal/controllers/service/zz_generated.adapter.go index f70ba04d9..cb9ccc43e 100644 --- a/internal/controllers/service/zz_generated.adapter.go +++ b/internal/controllers/service/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package service import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/service/zz_generated.controller.go b/internal/controllers/service/zz_generated.controller.go index 0e0232fae..58d1ec9a9 100644 --- a/internal/controllers/service/zz_generated.controller.go +++ b/internal/controllers/service/zz_generated.controller.go @@ -20,8 +20,8 @@ package service import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/sharenetwork/actuator.go b/internal/controllers/sharenetwork/actuator.go index fe08ea788..0e901dbb6 100644 --- a/internal/controllers/sharenetwork/actuator.go +++ b/internal/controllers/sharenetwork/actuator.go @@ -26,12 +26,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/sharenetwork/actuator_test.go b/internal/controllers/sharenetwork/actuator_test.go index ce963f186..159772f4a 100644 --- a/internal/controllers/sharenetwork/actuator_test.go +++ b/internal/controllers/sharenetwork/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/sharedfilesystems/v2/sharenetworks" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/sharenetwork/controller.go b/internal/controllers/sharenetwork/controller.go index aa6fbf1b5..090fb0f45 100644 --- a/internal/controllers/sharenetwork/controller.go +++ b/internal/controllers/sharenetwork/controller.go @@ -24,14 +24,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "sharenetwork" diff --git a/internal/controllers/sharenetwork/status.go b/internal/controllers/sharenetwork/status.go index fe9da2501..ac03d8f25 100644 --- a/internal/controllers/sharenetwork/status.go +++ b/internal/controllers/sharenetwork/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type sharenetworkStatusWriter struct{} diff --git a/internal/controllers/sharenetwork/zz_generated.adapter.go b/internal/controllers/sharenetwork/zz_generated.adapter.go index b89627a5b..1d99aedbc 100644 --- a/internal/controllers/sharenetwork/zz_generated.adapter.go +++ b/internal/controllers/sharenetwork/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package sharenetwork import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/sharenetwork/zz_generated.controller.go b/internal/controllers/sharenetwork/zz_generated.controller.go index 4ae4fdb2e..a252b653a 100644 --- a/internal/controllers/sharenetwork/zz_generated.controller.go +++ b/internal/controllers/sharenetwork/zz_generated.controller.go @@ -20,8 +20,8 @@ package sharenetwork import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/subnet/actuator.go b/internal/controllers/subnet/actuator.go index 8841a7133..d6c248b92 100644 --- a/internal/controllers/subnet/actuator.go +++ b/internal/controllers/subnet/actuator.go @@ -32,14 +32,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) // +kubebuilder:rbac:groups=openstack.k-orc.cloud,resources=subnets,verbs=get;list;watch;create;update;patch;delete diff --git a/internal/controllers/subnet/actuator_test.go b/internal/controllers/subnet/actuator_test.go index bb32ab419..4ef8dd18d 100644 --- a/internal/controllers/subnet/actuator_test.go +++ b/internal/controllers/subnet/actuator_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/subnets" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/subnet/controller.go b/internal/controllers/subnet/controller.go index ea8eb33f0..324af1c62 100644 --- a/internal/controllers/subnet/controller.go +++ b/internal/controllers/subnet/controller.go @@ -29,14 +29,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/reconcile" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) type subnetReconcilerConstructor struct { diff --git a/internal/controllers/subnet/status.go b/internal/controllers/subnet/status.go index 509932374..4ab441644 100644 --- a/internal/controllers/subnet/status.go +++ b/internal/controllers/subnet/status.go @@ -20,9 +20,9 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type objectApplyPT = *orcapplyconfigv1alpha1.SubnetApplyConfiguration diff --git a/internal/controllers/subnet/suite_test.go b/internal/controllers/subnet/suite_test.go index 847b93590..3b0cd2178 100644 --- a/internal/controllers/subnet/suite_test.go +++ b/internal/controllers/subnet/suite_test.go @@ -30,7 +30,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/envtest" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) var ( diff --git a/internal/controllers/subnet/zz_generated.adapter.go b/internal/controllers/subnet/zz_generated.adapter.go index 34c84d5b8..a0b635b39 100644 --- a/internal/controllers/subnet/zz_generated.adapter.go +++ b/internal/controllers/subnet/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package subnet import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/subnet/zz_generated.controller.go b/internal/controllers/subnet/zz_generated.controller.go index 73fe60115..439bf4524 100644 --- a/internal/controllers/subnet/zz_generated.controller.go +++ b/internal/controllers/subnet/zz_generated.controller.go @@ -20,8 +20,8 @@ package subnet import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/trunk/actuator.go b/internal/controllers/trunk/actuator.go index f79652694..6b6c00be2 100644 --- a/internal/controllers/trunk/actuator.go +++ b/internal/controllers/trunk/actuator.go @@ -27,14 +27,14 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/tags" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/tags" ) // OpenStack resource types diff --git a/internal/controllers/trunk/actuator_test.go b/internal/controllers/trunk/actuator_test.go index aa2981fa6..c56ffc5c3 100644 --- a/internal/controllers/trunk/actuator_test.go +++ b/internal/controllers/trunk/actuator_test.go @@ -22,7 +22,7 @@ import ( "github.com/google/go-cmp/cmp" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/trunks" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/trunk/controller.go b/internal/controllers/trunk/controller.go index ce8b13f2e..a85856c2c 100644 --- a/internal/controllers/trunk/controller.go +++ b/internal/controllers/trunk/controller.go @@ -24,15 +24,15 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "trunk" diff --git a/internal/controllers/trunk/status.go b/internal/controllers/trunk/status.go index 8ff307cdc..82ee0d31d 100644 --- a/internal/controllers/trunk/status.go +++ b/internal/controllers/trunk/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type trunkStatusWriter struct{} diff --git a/internal/controllers/trunk/zz_generated.adapter.go b/internal/controllers/trunk/zz_generated.adapter.go index ef7e54457..e87892350 100644 --- a/internal/controllers/trunk/zz_generated.adapter.go +++ b/internal/controllers/trunk/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package trunk import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/trunk/zz_generated.controller.go b/internal/controllers/trunk/zz_generated.controller.go index 6b36c15cc..f067445c6 100644 --- a/internal/controllers/trunk/zz_generated.controller.go +++ b/internal/controllers/trunk/zz_generated.controller.go @@ -20,8 +20,8 @@ package trunk import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/user/actuator.go b/internal/controllers/user/actuator.go index 552eea60c..1b58b7b45 100644 --- a/internal/controllers/user/actuator.go +++ b/internal/controllers/user/actuator.go @@ -27,15 +27,15 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) // OpenStack resource types diff --git a/internal/controllers/user/actuator_test.go b/internal/controllers/user/actuator_test.go index aefc193da..2df2ba862 100644 --- a/internal/controllers/user/actuator_test.go +++ b/internal/controllers/user/actuator_test.go @@ -29,8 +29,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/controller-runtime/pkg/client/fake" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients/mock" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients/mock" ) func TestNeedsUpdate(t *testing.T) { diff --git a/internal/controllers/user/controller.go b/internal/controllers/user/controller.go index e0f106927..4c96591c4 100644 --- a/internal/controllers/user/controller.go +++ b/internal/controllers/user/controller.go @@ -25,14 +25,14 @@ import ( "sigs.k8s.io/controller-runtime/pkg/builder" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "user" diff --git a/internal/controllers/user/status.go b/internal/controllers/user/status.go index e412d66fd..16c027659 100644 --- a/internal/controllers/user/status.go +++ b/internal/controllers/user/status.go @@ -22,10 +22,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type userStatusWriter struct{} diff --git a/internal/controllers/user/zz_generated.adapter.go b/internal/controllers/user/zz_generated.adapter.go index 718a1ef46..af225fed2 100644 --- a/internal/controllers/user/zz_generated.adapter.go +++ b/internal/controllers/user/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package user import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/user/zz_generated.controller.go b/internal/controllers/user/zz_generated.controller.go index 667cf95e8..eb5dcf8cd 100644 --- a/internal/controllers/user/zz_generated.controller.go +++ b/internal/controllers/user/zz_generated.controller.go @@ -20,8 +20,8 @@ package user import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/volume/actuator.go b/internal/controllers/volume/actuator.go index 3b086ccc3..9a0644928 100644 --- a/internal/controllers/volume/actuator.go +++ b/internal/controllers/volume/actuator.go @@ -27,13 +27,13 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/volume/actuator_test.go b/internal/controllers/volume/actuator_test.go index b79114937..3732e3dfc 100644 --- a/internal/controllers/volume/actuator_test.go +++ b/internal/controllers/volume/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/blockstorage/v3/volumes" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/volume/controller.go b/internal/controllers/volume/controller.go index 1438d422e..ba3eeff78 100644 --- a/internal/controllers/volume/controller.go +++ b/internal/controllers/volume/controller.go @@ -32,17 +32,17 @@ import ( "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/reconcile" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" - applyconfigv1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/pkg/predicates" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" + applyconfigv1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/pkg/predicates" ) const controllerName = "volume" diff --git a/internal/controllers/volume/status.go b/internal/controllers/volume/status.go index 96de129be..737a0edf4 100644 --- a/internal/controllers/volume/status.go +++ b/internal/controllers/volume/status.go @@ -22,11 +22,11 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) // Ideally, these constants are defined in gophercloud. diff --git a/internal/controllers/volume/zz_generated.adapter.go b/internal/controllers/volume/zz_generated.adapter.go index 956b64693..e1b55be44 100644 --- a/internal/controllers/volume/zz_generated.adapter.go +++ b/internal/controllers/volume/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package volume import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/volume/zz_generated.controller.go b/internal/controllers/volume/zz_generated.controller.go index 080ff160c..a3a10b47c 100644 --- a/internal/controllers/volume/zz_generated.controller.go +++ b/internal/controllers/volume/zz_generated.controller.go @@ -20,8 +20,8 @@ package volume import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/controllers/volumetype/actuator.go b/internal/controllers/volumetype/actuator.go index 85c5ed503..43ab226a2 100644 --- a/internal/controllers/volumetype/actuator.go +++ b/internal/controllers/volumetype/actuator.go @@ -26,12 +26,12 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - orcerrors "github.com/k-orc/openstack-resource-controller/v2/internal/util/errors" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + orcerrors "github.com/k-orc/openstack-resource-controller/v3/internal/util/errors" ) // OpenStack resource types diff --git a/internal/controllers/volumetype/actuator_test.go b/internal/controllers/volumetype/actuator_test.go index 4ced84c25..ddc776ed9 100644 --- a/internal/controllers/volumetype/actuator_test.go +++ b/internal/controllers/volumetype/actuator_test.go @@ -20,7 +20,7 @@ import ( "testing" "github.com/gophercloud/gophercloud/v2/openstack/blockstorage/v3/volumetypes" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/internal/controllers/volumetype/controller.go b/internal/controllers/volumetype/controller.go index 45707166a..110824e9e 100644 --- a/internal/controllers/volumetype/controller.go +++ b/internal/controllers/volumetype/controller.go @@ -23,11 +23,11 @@ import ( ctrl "sigs.k8s.io/controller-runtime" "sigs.k8s.io/controller-runtime/pkg/controller" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/reconciler" - "github.com/k-orc/openstack-resource-controller/v2/internal/scope" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/credentials" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/reconciler" + "github.com/k-orc/openstack-resource-controller/v3/internal/scope" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/credentials" ) const controllerName = "volumetype" diff --git a/internal/controllers/volumetype/status.go b/internal/controllers/volumetype/status.go index ba361bcf4..829ee129e 100644 --- a/internal/controllers/volumetype/status.go +++ b/internal/controllers/volumetype/status.go @@ -20,10 +20,10 @@ import ( "github.com/go-logr/logr" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + orcapplyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) type volumetypeStatusWriter struct{} diff --git a/internal/controllers/volumetype/zz_generated.adapter.go b/internal/controllers/volumetype/zz_generated.adapter.go index 9f19fa751..3b481cb7a 100644 --- a/internal/controllers/volumetype/zz_generated.adapter.go +++ b/internal/controllers/volumetype/zz_generated.adapter.go @@ -18,8 +18,8 @@ limitations under the License. package volumetype import ( - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) // Fundamental types diff --git a/internal/controllers/volumetype/zz_generated.controller.go b/internal/controllers/volumetype/zz_generated.controller.go index 74d96c985..c40144cf2 100644 --- a/internal/controllers/volumetype/zz_generated.controller.go +++ b/internal/controllers/volumetype/zz_generated.controller.go @@ -20,8 +20,8 @@ package volumetype import ( corev1 "k8s.io/api/core/v1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" - orcstrings "github.com/k-orc/openstack-resource-controller/v2/internal/util/strings" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" + orcstrings "github.com/k-orc/openstack-resource-controller/v3/internal/util/strings" ) var ( diff --git a/internal/manager/manager.go b/internal/manager/manager.go index ea84eb77f..24a695256 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -36,7 +36,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/webhook" "github.com/go-logr/logr" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" // +kubebuilder:scaffold:imports ) diff --git a/internal/osclients/filter_test.go b/internal/osclients/filter_test.go index a519f68a2..b15704e99 100644 --- a/internal/osclients/filter_test.go +++ b/internal/osclients/filter_test.go @@ -6,7 +6,7 @@ import ( "iter" "testing" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" "k8s.io/utils/ptr" ) diff --git a/internal/osclients/mock/networking.go b/internal/osclients/mock/networking.go index deaa04f70..2f39a557b 100644 --- a/internal/osclients/mock/networking.go +++ b/internal/osclients/mock/networking.go @@ -38,7 +38,7 @@ import ( networks "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/networks" ports "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/ports" subnets "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/subnets" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" gomock "go.uber.org/mock/gomock" ) diff --git a/internal/scheme/scheme.go b/internal/scheme/scheme.go index aa17d4205..02d994b22 100644 --- a/internal/scheme/scheme.go +++ b/internal/scheme/scheme.go @@ -21,7 +21,7 @@ import ( utilruntime "k8s.io/apimachinery/pkg/util/runtime" clientgoscheme "k8s.io/client-go/kubernetes/scheme" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" // +kubebuilder:scaffold:imports ) diff --git a/internal/scope/mock.go b/internal/scope/mock.go index 8ea474b64..8a6fb5e79 100644 --- a/internal/scope/mock.go +++ b/internal/scope/mock.go @@ -25,10 +25,10 @@ import ( "go.uber.org/mock/gomock" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients/mock" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients/mock" ) // MockScopeFactory implements both the ScopeFactory and ClientScope interfaces. It can be used in place of the default ProviderScopeFactory diff --git a/internal/scope/provider.go b/internal/scope/provider.go index 1606e18a1..cbea39e8a 100644 --- a/internal/scope/provider.go +++ b/internal/scope/provider.go @@ -37,9 +37,9 @@ import ( "sigs.k8s.io/controller-runtime/pkg/client" "sigs.k8s.io/yaml" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" - "github.com/k-orc/openstack-resource-controller/v2/internal/version" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" + "github.com/k-orc/openstack-resource-controller/v3/internal/version" ) type providerScopeFactory struct { diff --git a/internal/scope/scope.go b/internal/scope/scope.go index 0b02b79bd..4fd60376d 100644 --- a/internal/scope/scope.go +++ b/internal/scope/scope.go @@ -24,8 +24,8 @@ import ( "k8s.io/apimachinery/pkg/util/cache" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - osclients "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + osclients "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" ) // NewFactory creates the default scope factory. It generates service clients which make OpenStack API calls against a running cloud. diff --git a/internal/util/credentials/dependency.go b/internal/util/credentials/dependency.go index 4343fb737..29bcdb9a0 100644 --- a/internal/util/credentials/dependency.go +++ b/internal/util/credentials/dependency.go @@ -23,7 +23,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/event" "sigs.k8s.io/controller-runtime/pkg/predicate" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/dependency" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/dependency" ) /* diff --git a/internal/util/dependency/deletion_guard.go b/internal/util/dependency/deletion_guard.go index 59e164f36..d2db6362d 100644 --- a/internal/util/dependency/deletion_guard.go +++ b/internal/util/dependency/deletion_guard.go @@ -20,8 +20,8 @@ import ( "fmt" "strings" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/finalizers" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/finalizers" apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" diff --git a/internal/util/dependency/dependency.go b/internal/util/dependency/dependency.go index 5f9585835..a3e54dc72 100644 --- a/internal/util/dependency/dependency.go +++ b/internal/util/dependency/dependency.go @@ -30,9 +30,9 @@ import ( "sigs.k8s.io/controller-runtime/pkg/handler" "sigs.k8s.io/controller-runtime/pkg/reconcile" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/finalizers" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/finalizers" ) // NewDependency returns a new Dependency, which can perform tasks necessary to manage a dependency between 2 object types. The 2 object types are: diff --git a/internal/util/dependency/helpers.go b/internal/util/dependency/helpers.go index be9caa005..4aee338e2 100644 --- a/internal/util/dependency/helpers.go +++ b/internal/util/dependency/helpers.go @@ -24,8 +24,8 @@ import ( "k8s.io/utils/ptr" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" ) // FetchDependency fetches a resource by name and checks if it's ready. diff --git a/internal/util/finalizers/finalizer.go b/internal/util/finalizers/finalizer.go index 48eadc737..7e16e844b 100644 --- a/internal/util/finalizers/finalizer.go +++ b/internal/util/finalizers/finalizer.go @@ -20,7 +20,7 @@ import ( applyconfigv1 "k8s.io/client-go/applyconfigurations/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" ) type metaApplyConfig struct { diff --git a/internal/util/tags/tags.go b/internal/util/tags/tags.go index dc61993ab..90cd2ba6b 100644 --- a/internal/util/tags/tags.go +++ b/internal/util/tags/tags.go @@ -22,10 +22,10 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/compute/v2/tags" "github.com/gophercloud/gophercloud/v2/openstack/networking/v2/extensions/attributestags" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" - "github.com/k-orc/openstack-resource-controller/v2/internal/osclients" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" + "github.com/k-orc/openstack-resource-controller/v3/internal/osclients" "k8s.io/utils/set" ) diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/address.go b/pkg/clients/applyconfiguration/api/v1alpha1/address.go index 7db825b3b..592424cb8 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/address.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/address.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AddressApplyConfiguration represents a declarative configuration of the Address type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/addressscope.go b/pkg/clients/applyconfiguration/api/v1alpha1/addressscope.go index 7b43dfb87..547052bc5 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/addressscope.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/addressscope.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractAddressScopeStatus(addressScope *apiv1alpha1.AddressScope, fieldMana func extractAddressScope(addressScope *apiv1alpha1.AddressScope, fieldManager string, subresource string) (*AddressScopeApplyConfiguration, error) { b := &AddressScopeApplyConfiguration{} - err := managedfields.ExtractInto(addressScope, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScope"), fieldManager, b, subresource) + err := managedfields.ExtractInto(addressScope, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScope"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/addressscopefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/addressscopefilter.go index 646451d21..fb794e70e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/addressscopefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/addressscopefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AddressScopeFilterApplyConfiguration represents a declarative configuration of the AddressScopeFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/addressscoperesourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/addressscoperesourcespec.go index 8fb3db96b..dfc922b9a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/addressscoperesourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/addressscoperesourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AddressScopeResourceSpecApplyConfiguration represents a declarative configuration of the AddressScopeResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/addressscopespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/addressscopespec.go index 4a42ce57c..e42407e70 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/addressscopespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/addressscopespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AddressScopeSpecApplyConfiguration represents a declarative configuration of the AddressScopeSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/allocationpool.go b/pkg/clients/applyconfiguration/api/v1alpha1/allocationpool.go index bf3667ad7..d0282caf0 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/allocationpool.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/allocationpool.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AllocationPoolApplyConfiguration represents a declarative configuration of the AllocationPool type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/allowedaddresspair.go b/pkg/clients/applyconfiguration/api/v1alpha1/allowedaddresspair.go index b80e96c5d..d1bcfa556 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/allowedaddresspair.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/allowedaddresspair.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // AllowedAddressPairApplyConfiguration represents a declarative configuration of the AllowedAddressPair type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredential.go b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredential.go index db5eb36e8..d1e93be9f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredential.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredential.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractApplicationCredentialStatus(applicationCredential *apiv1alpha1.Appli func extractApplicationCredential(applicationCredential *apiv1alpha1.ApplicationCredential, fieldManager string, subresource string) (*ApplicationCredentialApplyConfiguration, error) { b := &ApplicationCredentialApplyConfiguration{} - err := managedfields.ExtractInto(applicationCredential, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredential"), fieldManager, b, subresource) + err := managedfields.ExtractInto(applicationCredential, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredential"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialaccessrule.go b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialaccessrule.go index 4b485c5cb..ec79a442b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialaccessrule.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialaccessrule.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ApplicationCredentialAccessRuleApplyConfiguration represents a declarative configuration of the ApplicationCredentialAccessRule type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialfilter.go index d3d4a136b..30d6be980 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ApplicationCredentialFilterApplyConfiguration represents a declarative configuration of the ApplicationCredentialFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialresourcespec.go index fd1c8bc5c..f1f381078 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialspec.go index d73e0886b..313d4a3ae 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/applicationcredentialspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ApplicationCredentialSpecApplyConfiguration represents a declarative configuration of the ApplicationCredentialSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/domain.go b/pkg/clients/applyconfiguration/api/v1alpha1/domain.go index b8748feeb..be5777c0a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/domain.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/domain.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractDomainStatus(domain *apiv1alpha1.Domain, fieldManager string) (*Doma func extractDomain(domain *apiv1alpha1.Domain, fieldManager string, subresource string) (*DomainApplyConfiguration, error) { b := &DomainApplyConfiguration{} - err := managedfields.ExtractInto(domain, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Domain"), fieldManager, b, subresource) + err := managedfields.ExtractInto(domain, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Domain"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/domainfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/domainfilter.go index 49152b6a3..297a6437c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/domainfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/domainfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // DomainFilterApplyConfiguration represents a declarative configuration of the DomainFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/domainresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/domainresourcespec.go index 1b9a0ea6b..2f69ae954 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/domainresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/domainresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // DomainResourceSpecApplyConfiguration represents a declarative configuration of the DomainResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/domainspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/domainspec.go index e5357a87e..76bd5abdc 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/domainspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/domainspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // DomainSpecApplyConfiguration represents a declarative configuration of the DomainSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/endpoint.go b/pkg/clients/applyconfiguration/api/v1alpha1/endpoint.go index 6c1f5e897..4dd1bbdc8 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/endpoint.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/endpoint.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractEndpointStatus(endpoint *apiv1alpha1.Endpoint, fieldManager string) func extractEndpoint(endpoint *apiv1alpha1.Endpoint, fieldManager string, subresource string) (*EndpointApplyConfiguration, error) { b := &EndpointApplyConfiguration{} - err := managedfields.ExtractInto(endpoint, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Endpoint"), fieldManager, b, subresource) + err := managedfields.ExtractInto(endpoint, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Endpoint"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/endpointfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/endpointfilter.go index fe33276e4..458b905cc 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/endpointfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/endpointfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // EndpointFilterApplyConfiguration represents a declarative configuration of the EndpointFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/endpointresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/endpointresourcespec.go index ff59ccce4..9c2dc8d6e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/endpointresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/endpointresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // EndpointResourceSpecApplyConfiguration represents a declarative configuration of the EndpointResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/endpointspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/endpointspec.go index 198237c30..8b45b4dd6 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/endpointspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/endpointspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // EndpointSpecApplyConfiguration represents a declarative configuration of the EndpointSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/externalgateway.go b/pkg/clients/applyconfiguration/api/v1alpha1/externalgateway.go index 304964005..0e9cb1436 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/externalgateway.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/externalgateway.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ExternalGatewayApplyConfiguration represents a declarative configuration of the ExternalGateway type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/filterbykeystonetags.go b/pkg/clients/applyconfiguration/api/v1alpha1/filterbykeystonetags.go index 925726e12..8b5a04ac9 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/filterbykeystonetags.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/filterbykeystonetags.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FilterByKeystoneTagsApplyConfiguration represents a declarative configuration of the FilterByKeystoneTags type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/filterbyneutrontags.go b/pkg/clients/applyconfiguration/api/v1alpha1/filterbyneutrontags.go index c8796fafd..e527db5eb 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/filterbyneutrontags.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/filterbyneutrontags.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FilterByNeutronTagsApplyConfiguration represents a declarative configuration of the FilterByNeutronTags type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/filterbyservertags.go b/pkg/clients/applyconfiguration/api/v1alpha1/filterbyservertags.go index a7360cde9..27fb4a8c5 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/filterbyservertags.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/filterbyservertags.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FilterByServerTagsApplyConfiguration represents a declarative configuration of the FilterByServerTags type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/flavor.go b/pkg/clients/applyconfiguration/api/v1alpha1/flavor.go index da6e101b2..4644cd3a7 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/flavor.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/flavor.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractFlavorStatus(flavor *apiv1alpha1.Flavor, fieldManager string) (*Flav func extractFlavor(flavor *apiv1alpha1.Flavor, fieldManager string, subresource string) (*FlavorApplyConfiguration, error) { b := &FlavorApplyConfiguration{} - err := managedfields.ExtractInto(flavor, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Flavor"), fieldManager, b, subresource) + err := managedfields.ExtractInto(flavor, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Flavor"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/flavorfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/flavorfilter.go index 84ea15f96..498fb0d36 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/flavorfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/flavorfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FlavorFilterApplyConfiguration represents a declarative configuration of the FlavorFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/flavorresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/flavorresourcespec.go index 4fc4161e0..15371005e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/flavorresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/flavorresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FlavorResourceSpecApplyConfiguration represents a declarative configuration of the FlavorResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/flavorspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/flavorspec.go index abe7c0d07..51743246a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/flavorspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/flavorspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FlavorSpecApplyConfiguration represents a declarative configuration of the FlavorSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/floatingip.go b/pkg/clients/applyconfiguration/api/v1alpha1/floatingip.go index 2923fc5df..9ee566276 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/floatingip.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/floatingip.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractFloatingIPStatus(floatingIP *apiv1alpha1.FloatingIP, fieldManager st func extractFloatingIP(floatingIP *apiv1alpha1.FloatingIP, fieldManager string, subresource string) (*FloatingIPApplyConfiguration, error) { b := &FloatingIPApplyConfiguration{} - err := managedfields.ExtractInto(floatingIP, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIP"), fieldManager, b, subresource) + err := managedfields.ExtractInto(floatingIP, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIP"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipfilter.go index bdaf24e7a..92f8358ef 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FloatingIPFilterApplyConfiguration represents a declarative configuration of the FloatingIPFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipresourcespec.go index 7de2cc0ef..2245b5022 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FloatingIPResourceSpecApplyConfiguration represents a declarative configuration of the FloatingIPResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipspec.go index 8fe12ac3a..2d28fa6e3 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/floatingipspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/floatingipspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // FloatingIPSpecApplyConfiguration represents a declarative configuration of the FloatingIPSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/group.go b/pkg/clients/applyconfiguration/api/v1alpha1/group.go index 1904aa4f2..674953c74 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/group.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/group.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractGroupStatus(group *apiv1alpha1.Group, fieldManager string) (*GroupAp func extractGroup(group *apiv1alpha1.Group, fieldManager string, subresource string) (*GroupApplyConfiguration, error) { b := &GroupApplyConfiguration{} - err := managedfields.ExtractInto(group, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Group"), fieldManager, b, subresource) + err := managedfields.ExtractInto(group, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Group"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/groupfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/groupfilter.go index 974125061..276e88a83 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/groupfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/groupfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // GroupFilterApplyConfiguration represents a declarative configuration of the GroupFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/groupresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/groupresourcespec.go index 3d914a439..5780b6886 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/groupresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/groupresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // GroupResourceSpecApplyConfiguration represents a declarative configuration of the GroupResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/groupspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/groupspec.go index 59a744101..13a11b286 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/groupspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/groupspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // GroupSpecApplyConfiguration represents a declarative configuration of the GroupSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/hostid.go b/pkg/clients/applyconfiguration/api/v1alpha1/hostid.go index 3f571fe0b..4ecead2ea 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/hostid.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/hostid.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // HostIDApplyConfiguration represents a declarative configuration of the HostID type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/hostroute.go b/pkg/clients/applyconfiguration/api/v1alpha1/hostroute.go index 4cc09b094..a55a8c93c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/hostroute.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/hostroute.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // HostRouteApplyConfiguration represents a declarative configuration of the HostRoute type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/image.go b/pkg/clients/applyconfiguration/api/v1alpha1/image.go index 386817976..4dc7635c7 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/image.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/image.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractImageStatus(image *apiv1alpha1.Image, fieldManager string) (*ImageAp func extractImage(image *apiv1alpha1.Image, fieldManager string, subresource string) (*ImageApplyConfiguration, error) { b := &ImageApplyConfiguration{} - err := managedfields.ExtractInto(image, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Image"), fieldManager, b, subresource) + err := managedfields.ExtractInto(image, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Image"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagecontent.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagecontent.go index d9e68e2e6..265426da4 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagecontent.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagecontent.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageContentApplyConfiguration represents a declarative configuration of the ImageContent type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagecontentsourcedownload.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagecontentsourcedownload.go index b00f1c48d..907033d7a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagecontentsourcedownload.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagecontentsourcedownload.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageContentSourceDownloadApplyConfiguration represents a declarative configuration of the ImageContentSourceDownload type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagefilter.go index 827d8c797..d87ad9da5 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageFilterApplyConfiguration represents a declarative configuration of the ImageFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagehash.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagehash.go index 67a0478d3..613da37bc 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagehash.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagehash.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageHashApplyConfiguration represents a declarative configuration of the ImageHash type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagepropertieshardware.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagepropertieshardware.go index 2d7f89208..14058dfd7 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagepropertieshardware.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagepropertieshardware.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImagePropertiesHardwareApplyConfiguration represents a declarative configuration of the ImagePropertiesHardware type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imageresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/imageresourcespec.go index 5c1adb6ad..3a221b7b5 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imageresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imageresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageResourceSpecApplyConfiguration represents a declarative configuration of the ImageResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/imagespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/imagespec.go index 7982dcda4..934ad9645 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/imagespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/imagespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ImageSpecApplyConfiguration represents a declarative configuration of the ImageSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/ipv6options.go b/pkg/clients/applyconfiguration/api/v1alpha1/ipv6options.go index d95b64185..b75866b4a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/ipv6options.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/ipv6options.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // IPv6OptionsApplyConfiguration represents a declarative configuration of the IPv6Options type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/keypair.go b/pkg/clients/applyconfiguration/api/v1alpha1/keypair.go index 9a5937b2b..773cdcd88 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/keypair.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/keypair.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractKeyPairStatus(keyPair *apiv1alpha1.KeyPair, fieldManager string) (*K func extractKeyPair(keyPair *apiv1alpha1.KeyPair, fieldManager string, subresource string) (*KeyPairApplyConfiguration, error) { b := &KeyPairApplyConfiguration{} - err := managedfields.ExtractInto(keyPair, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPair"), fieldManager, b, subresource) + err := managedfields.ExtractInto(keyPair, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPair"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/keypairfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/keypairfilter.go index bee0e363b..6f36a4008 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/keypairfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/keypairfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // KeyPairFilterApplyConfiguration represents a declarative configuration of the KeyPairFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/keypairresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/keypairresourcespec.go index fc2069cfa..cc64ea261 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/keypairresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/keypairresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // KeyPairResourceSpecApplyConfiguration represents a declarative configuration of the KeyPairResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/keypairspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/keypairspec.go index 725c5278d..e1aeeebe2 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/keypairspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/keypairspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // KeyPairSpecApplyConfiguration represents a declarative configuration of the KeyPairSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/managedoptions.go b/pkg/clients/applyconfiguration/api/v1alpha1/managedoptions.go index 092ab7883..da5e726e2 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/managedoptions.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/managedoptions.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ManagedOptionsApplyConfiguration represents a declarative configuration of the ManagedOptions type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/network.go b/pkg/clients/applyconfiguration/api/v1alpha1/network.go index 76876d253..25368dbf6 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/network.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/network.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractNetworkStatus(network *apiv1alpha1.Network, fieldManager string) (*N func extractNetwork(network *apiv1alpha1.Network, fieldManager string, subresource string) (*NetworkApplyConfiguration, error) { b := &NetworkApplyConfiguration{} - err := managedfields.ExtractInto(network, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Network"), fieldManager, b, subresource) + err := managedfields.ExtractInto(network, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Network"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/networkfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/networkfilter.go index 557babf8b..ba6d21e1a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/networkfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/networkfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // NetworkFilterApplyConfiguration represents a declarative configuration of the NetworkFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/networkresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/networkresourcespec.go index a85d19867..2cf991097 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/networkresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/networkresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // NetworkResourceSpecApplyConfiguration represents a declarative configuration of the NetworkResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/networkspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/networkspec.go index a27a7b21c..acf6599b3 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/networkspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/networkspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // NetworkSpecApplyConfiguration represents a declarative configuration of the NetworkSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/port.go b/pkg/clients/applyconfiguration/api/v1alpha1/port.go index 17b2763e5..c1d200df2 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/port.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/port.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractPortStatus(port *apiv1alpha1.Port, fieldManager string) (*PortApplyC func extractPort(port *apiv1alpha1.Port, fieldManager string, subresource string) (*PortApplyConfiguration, error) { b := &PortApplyConfiguration{} - err := managedfields.ExtractInto(port, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Port"), fieldManager, b, subresource) + err := managedfields.ExtractInto(port, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Port"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/portfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/portfilter.go index 2db6c09a6..ada53ba10 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/portfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/portfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // PortFilterApplyConfiguration represents a declarative configuration of the PortFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/portrangespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/portrangespec.go index 64bc4a298..51408d97b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/portrangespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/portrangespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // PortRangeSpecApplyConfiguration represents a declarative configuration of the PortRangeSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/portresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/portresourcespec.go index 4bdf68bdb..2179602f6 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/portresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/portresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // PortResourceSpecApplyConfiguration represents a declarative configuration of the PortResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/portspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/portspec.go index f3a31f9d1..175f4d58b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/portspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/portspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // PortSpecApplyConfiguration represents a declarative configuration of the PortSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/project.go b/pkg/clients/applyconfiguration/api/v1alpha1/project.go index 4ce5d897a..a3b2d02ce 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/project.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/project.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractProjectStatus(project *apiv1alpha1.Project, fieldManager string) (*P func extractProject(project *apiv1alpha1.Project, fieldManager string, subresource string) (*ProjectApplyConfiguration, error) { b := &ProjectApplyConfiguration{} - err := managedfields.ExtractInto(project, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Project"), fieldManager, b, subresource) + err := managedfields.ExtractInto(project, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Project"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/projectfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/projectfilter.go index f7538e1c1..aeaa0ed41 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/projectfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/projectfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ProjectFilterApplyConfiguration represents a declarative configuration of the ProjectFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/projectresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/projectresourcespec.go index 0d49ae3ae..e39450e34 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/projectresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/projectresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ProjectResourceSpecApplyConfiguration represents a declarative configuration of the ProjectResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/projectspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/projectspec.go index fe81e80ba..4cbf1eabf 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/projectspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/projectspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ProjectSpecApplyConfiguration represents a declarative configuration of the ProjectSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/role.go b/pkg/clients/applyconfiguration/api/v1alpha1/role.go index 1fcf9bf44..344024b14 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/role.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/role.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractRoleStatus(role *apiv1alpha1.Role, fieldManager string) (*RoleApplyC func extractRole(role *apiv1alpha1.Role, fieldManager string, subresource string) (*RoleApplyConfiguration, error) { b := &RoleApplyConfiguration{} - err := managedfields.ExtractInto(role, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Role"), fieldManager, b, subresource) + err := managedfields.ExtractInto(role, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Role"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/rolefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/rolefilter.go index 2194e2982..b9d5f0312 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/rolefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/rolefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RoleFilterApplyConfiguration represents a declarative configuration of the RoleFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/roleresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/roleresourcespec.go index c1288f979..7a0dff8b2 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/roleresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/roleresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RoleResourceSpecApplyConfiguration represents a declarative configuration of the RoleResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/rolespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/rolespec.go index 05205d08b..6b7248903 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/rolespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/rolespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RoleSpecApplyConfiguration represents a declarative configuration of the RoleSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/router.go b/pkg/clients/applyconfiguration/api/v1alpha1/router.go index 52d6a7d07..dc77b81c9 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/router.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/router.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractRouterStatus(router *apiv1alpha1.Router, fieldManager string) (*Rout func extractRouter(router *apiv1alpha1.Router, fieldManager string, subresource string) (*RouterApplyConfiguration, error) { b := &RouterApplyConfiguration{} - err := managedfields.ExtractInto(router, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Router"), fieldManager, b, subresource) + err := managedfields.ExtractInto(router, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Router"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/routerfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/routerfilter.go index 100978fb6..ca185e88c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/routerfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/routerfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RouterFilterApplyConfiguration represents a declarative configuration of the RouterFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/routerinterface.go b/pkg/clients/applyconfiguration/api/v1alpha1/routerinterface.go index caf20d3d0..a2630f8cc 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/routerinterface.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/routerinterface.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractRouterInterfaceStatus(routerInterface *apiv1alpha1.RouterInterface, func extractRouterInterface(routerInterface *apiv1alpha1.RouterInterface, fieldManager string, subresource string) (*RouterInterfaceApplyConfiguration, error) { b := &RouterInterfaceApplyConfiguration{} - err := managedfields.ExtractInto(routerInterface, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterface"), fieldManager, b, subresource) + err := managedfields.ExtractInto(routerInterface, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterface"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/routerinterfacespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/routerinterfacespec.go index 4fccc28c6..4dc50b2ce 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/routerinterfacespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/routerinterfacespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RouterInterfaceSpecApplyConfiguration represents a declarative configuration of the RouterInterfaceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/routerresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/routerresourcespec.go index 4b0a09ff7..6411c8e17 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/routerresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/routerresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RouterResourceSpecApplyConfiguration represents a declarative configuration of the RouterResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/routerspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/routerspec.go index fb3da1400..2655b2e54 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/routerspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/routerspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // RouterSpecApplyConfiguration represents a declarative configuration of the RouterSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroup.go b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroup.go index 2f05e98c2..11a7a416c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroup.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroup.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractSecurityGroupStatus(securityGroup *apiv1alpha1.SecurityGroup, fieldM func extractSecurityGroup(securityGroup *apiv1alpha1.SecurityGroup, fieldManager string, subresource string) (*SecurityGroupApplyConfiguration, error) { b := &SecurityGroupApplyConfiguration{} - err := managedfields.ExtractInto(securityGroup, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroup"), fieldManager, b, subresource) + err := managedfields.ExtractInto(securityGroup, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroup"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupfilter.go index f11d7bbdc..04f430a47 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SecurityGroupFilterApplyConfiguration represents a declarative configuration of the SecurityGroupFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupresourcespec.go index f02908f6a..f4f94d28b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SecurityGroupResourceSpecApplyConfiguration represents a declarative configuration of the SecurityGroupResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/securitygrouprule.go b/pkg/clients/applyconfiguration/api/v1alpha1/securitygrouprule.go index 09fa8329e..6802fddcb 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/securitygrouprule.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/securitygrouprule.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SecurityGroupRuleApplyConfiguration represents a declarative configuration of the SecurityGroupRule type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupspec.go index aea02dbb7..501928c64 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/securitygroupspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SecurityGroupSpecApplyConfiguration represents a declarative configuration of the SecurityGroupSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/server.go b/pkg/clients/applyconfiguration/api/v1alpha1/server.go index 21adde247..696d76351 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/server.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/server.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractServerStatus(server *apiv1alpha1.Server, fieldManager string) (*Serv func extractServer(server *apiv1alpha1.Server, fieldManager string, subresource string) (*ServerApplyConfiguration, error) { b := &ServerApplyConfiguration{} - err := managedfields.ExtractInto(server, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Server"), fieldManager, b, subresource) + err := managedfields.ExtractInto(server, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Server"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverbootvolumespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverbootvolumespec.go index a8456ea36..ddbd187b9 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverbootvolumespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverbootvolumespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerBootVolumeSpecApplyConfiguration represents a declarative configuration of the ServerBootVolumeSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverfilter.go index 1212b6a29..69cb9334f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerFilterApplyConfiguration represents a declarative configuration of the ServerFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servergroup.go b/pkg/clients/applyconfiguration/api/v1alpha1/servergroup.go index e534de68c..1141d3842 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servergroup.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servergroup.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractServerGroupStatus(serverGroup *apiv1alpha1.ServerGroup, fieldManager func extractServerGroup(serverGroup *apiv1alpha1.ServerGroup, fieldManager string, subresource string) (*ServerGroupApplyConfiguration, error) { b := &ServerGroupApplyConfiguration{} - err := managedfields.ExtractInto(serverGroup, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroup"), fieldManager, b, subresource) + err := managedfields.ExtractInto(serverGroup, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroup"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupfilter.go index 70d12d4fc..5a8511a7e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerGroupFilterApplyConfiguration represents a declarative configuration of the ServerGroupFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupresourcespec.go index 08ef8c08a..42bd1999f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerGroupResourceSpecApplyConfiguration represents a declarative configuration of the ServerGroupResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupspec.go index 21efdd462..864c7a4b1 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servergroupspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servergroupspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerGroupSpecApplyConfiguration represents a declarative configuration of the ServerGroupSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverportspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverportspec.go index 3b812beae..8b63b585f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverportspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverportspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerPortSpecApplyConfiguration represents a declarative configuration of the ServerPortSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverresourcespec.go index 3a95e453d..44d282497 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerResourceSpecApplyConfiguration represents a declarative configuration of the ServerResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverschedulerhints.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverschedulerhints.go index 5fc022118..6dfef67a1 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverschedulerhints.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverschedulerhints.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerSchedulerHintsApplyConfiguration represents a declarative configuration of the ServerSchedulerHints type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serverspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/serverspec.go index 2e284079c..dbe377575 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serverspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serverspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerSpecApplyConfiguration represents a declarative configuration of the ServerSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servervolumespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/servervolumespec.go index bccea241b..5d28df524 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servervolumespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servervolumespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServerVolumeSpecApplyConfiguration represents a declarative configuration of the ServerVolumeSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/service.go b/pkg/clients/applyconfiguration/api/v1alpha1/service.go index 30619a81b..2f218042b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/service.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/service.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractServiceStatus(service *apiv1alpha1.Service, fieldManager string) (*S func extractService(service *apiv1alpha1.Service, fieldManager string, subresource string) (*ServiceApplyConfiguration, error) { b := &ServiceApplyConfiguration{} - err := managedfields.ExtractInto(service, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Service"), fieldManager, b, subresource) + err := managedfields.ExtractInto(service, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Service"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servicefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/servicefilter.go index 284623ca4..db6830513 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servicefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servicefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServiceFilterApplyConfiguration represents a declarative configuration of the ServiceFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/serviceresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/serviceresourcespec.go index 5fd35cef6..2533e80a4 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/serviceresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/serviceresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServiceResourceSpecApplyConfiguration represents a declarative configuration of the ServiceResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/servicespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/servicespec.go index 1cc5b6645..3e82dfe43 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/servicespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/servicespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ServiceSpecApplyConfiguration represents a declarative configuration of the ServiceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetwork.go b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetwork.go index 8fcacbb0b..a993df303 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetwork.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetwork.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractShareNetworkStatus(shareNetwork *apiv1alpha1.ShareNetwork, fieldMana func extractShareNetwork(shareNetwork *apiv1alpha1.ShareNetwork, fieldManager string, subresource string) (*ShareNetworkApplyConfiguration, error) { b := &ShareNetworkApplyConfiguration{} - err := managedfields.ExtractInto(shareNetwork, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetwork"), fieldManager, b, subresource) + err := managedfields.ExtractInto(shareNetwork, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetwork"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkfilter.go index e15de0ff6..07b987f1f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ShareNetworkFilterApplyConfiguration represents a declarative configuration of the ShareNetworkFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkresourcespec.go index 1bdaf30f7..5710619a9 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ShareNetworkResourceSpecApplyConfiguration represents a declarative configuration of the ShareNetworkResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkspec.go index 0e271cc7d..eb61655aa 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/sharenetworkspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // ShareNetworkSpecApplyConfiguration represents a declarative configuration of the ShareNetworkSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/subnet.go b/pkg/clients/applyconfiguration/api/v1alpha1/subnet.go index b4d653764..2f47fbb29 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/subnet.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/subnet.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractSubnetStatus(subnet *apiv1alpha1.Subnet, fieldManager string) (*Subn func extractSubnet(subnet *apiv1alpha1.Subnet, fieldManager string, subresource string) (*SubnetApplyConfiguration, error) { b := &SubnetApplyConfiguration{} - err := managedfields.ExtractInto(subnet, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Subnet"), fieldManager, b, subresource) + err := managedfields.ExtractInto(subnet, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Subnet"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/subnetfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/subnetfilter.go index 77070b0b1..d14b508fb 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/subnetfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/subnetfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SubnetFilterApplyConfiguration represents a declarative configuration of the SubnetFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/subnetgateway.go b/pkg/clients/applyconfiguration/api/v1alpha1/subnetgateway.go index 8982b39d4..57be4c03d 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/subnetgateway.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/subnetgateway.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SubnetGatewayApplyConfiguration represents a declarative configuration of the SubnetGateway type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/subnetresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/subnetresourcespec.go index 73f73099c..8ba58bf5e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/subnetresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/subnetresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SubnetResourceSpecApplyConfiguration represents a declarative configuration of the SubnetResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/subnetspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/subnetspec.go index 4c092dd01..e81345a1f 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/subnetspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/subnetspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // SubnetSpecApplyConfiguration represents a declarative configuration of the SubnetSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/trunk.go b/pkg/clients/applyconfiguration/api/v1alpha1/trunk.go index 60ee92b13..b1aff8066 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/trunk.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/trunk.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractTrunkStatus(trunk *apiv1alpha1.Trunk, fieldManager string) (*TrunkAp func extractTrunk(trunk *apiv1alpha1.Trunk, fieldManager string, subresource string) (*TrunkApplyConfiguration, error) { b := &TrunkApplyConfiguration{} - err := managedfields.ExtractInto(trunk, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Trunk"), fieldManager, b, subresource) + err := managedfields.ExtractInto(trunk, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Trunk"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/trunkfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/trunkfilter.go index e6efbaa32..0521d8545 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/trunkfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/trunkfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // TrunkFilterApplyConfiguration represents a declarative configuration of the TrunkFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/trunkresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/trunkresourcespec.go index 5dbdf2846..8a9767e04 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/trunkresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/trunkresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // TrunkResourceSpecApplyConfiguration represents a declarative configuration of the TrunkResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/trunkspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/trunkspec.go index c744fe03f..4115ab41a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/trunkspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/trunkspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // TrunkSpecApplyConfiguration represents a declarative configuration of the TrunkSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/trunksubportspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/trunksubportspec.go index 16625b28b..25dc0dabd 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/trunksubportspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/trunksubportspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // TrunkSubportSpecApplyConfiguration represents a declarative configuration of the TrunkSubportSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/user.go b/pkg/clients/applyconfiguration/api/v1alpha1/user.go index 8c7077cc4..b7946121c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/user.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/user.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractUserStatus(user *apiv1alpha1.User, fieldManager string) (*UserApplyC func extractUser(user *apiv1alpha1.User, fieldManager string, subresource string) (*UserApplyConfiguration, error) { b := &UserApplyConfiguration{} - err := managedfields.ExtractInto(user, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.User"), fieldManager, b, subresource) + err := managedfields.ExtractInto(user, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.User"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/userdataspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/userdataspec.go index 394503c52..449609a93 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/userdataspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/userdataspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // UserDataSpecApplyConfiguration represents a declarative configuration of the UserDataSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/userfilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/userfilter.go index 3cc89f7ec..42462bb4e 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/userfilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/userfilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // UserFilterApplyConfiguration represents a declarative configuration of the UserFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/userresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/userresourcespec.go index bd0bab7c6..9726a4624 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/userresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/userresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // UserResourceSpecApplyConfiguration represents a declarative configuration of the UserResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/userspec.go b/pkg/clients/applyconfiguration/api/v1alpha1/userspec.go index fadcb620b..f3bc5ab0b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/userspec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/userspec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // UserSpecApplyConfiguration represents a declarative configuration of the UserSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volume.go b/pkg/clients/applyconfiguration/api/v1alpha1/volume.go index 5dc4ae9ce..26c524f44 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volume.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volume.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractVolumeStatus(volume *apiv1alpha1.Volume, fieldManager string) (*Volu func extractVolume(volume *apiv1alpha1.Volume, fieldManager string, subresource string) (*VolumeApplyConfiguration, error) { b := &VolumeApplyConfiguration{} - err := managedfields.ExtractInto(volume, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Volume"), fieldManager, b, subresource) + err := managedfields.ExtractInto(volume, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Volume"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumefilter.go index 5f501b8f9..c9515137b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeFilterApplyConfiguration represents a declarative configuration of the VolumeFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumeresourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumeresourcespec.go index d6c7f2f04..3e7aa381b 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumeresourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumeresourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeResourceSpecApplyConfiguration represents a declarative configuration of the VolumeResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumespec.go index e0ffdcbca..756ed8d0a 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeSpecApplyConfiguration represents a declarative configuration of the VolumeSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumetype.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumetype.go index 67d365b19..1bd4d1971 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumetype.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumetype.go @@ -19,8 +19,8 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apimachinery/pkg/util/managedfields" @@ -71,7 +71,7 @@ func ExtractVolumeTypeStatus(volumeType *apiv1alpha1.VolumeType, fieldManager st func extractVolumeType(volumeType *apiv1alpha1.VolumeType, fieldManager string, subresource string) (*VolumeTypeApplyConfiguration, error) { b := &VolumeTypeApplyConfiguration{} - err := managedfields.ExtractInto(volumeType, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeType"), fieldManager, b, subresource) + err := managedfields.ExtractInto(volumeType, internal.Parser().Type("com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeType"), fieldManager, b, subresource) if err != nil { return nil, err } diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumetypefilter.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumetypefilter.go index 3173d031b..5c46d911c 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumetypefilter.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumetypefilter.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeTypeFilterApplyConfiguration represents a declarative configuration of the VolumeTypeFilter type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumetyperesourcespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumetyperesourcespec.go index 88691bffb..245af1bec 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumetyperesourcespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumetyperesourcespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeTypeResourceSpecApplyConfiguration represents a declarative configuration of the VolumeTypeResourceSpec type for use diff --git a/pkg/clients/applyconfiguration/api/v1alpha1/volumetypespec.go b/pkg/clients/applyconfiguration/api/v1alpha1/volumetypespec.go index d4540dcfd..3c6603940 100644 --- a/pkg/clients/applyconfiguration/api/v1alpha1/volumetypespec.go +++ b/pkg/clients/applyconfiguration/api/v1alpha1/volumetypespec.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" ) // VolumeTypeSpecApplyConfiguration represents a declarative configuration of the VolumeTypeSpec type for use diff --git a/pkg/clients/applyconfiguration/internal/internal.go b/pkg/clients/applyconfiguration/internal/internal.go index 10461ed9c..8cfed1239 100644 --- a/pkg/clients/applyconfiguration/internal/internal.go +++ b/pkg/clients/applyconfiguration/internal/internal.go @@ -39,7 +39,7 @@ func Parser() *typed.Parser { var parserOnce sync.Once var parser *typed.Parser var schemaYAML = typed.YAMLObject(`types: -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Address +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Address map: fields: - name: ip @@ -48,7 +48,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: subnetRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScope +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScope map: fields: - name: apiVersion @@ -63,13 +63,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeFilter map: fields: - name: ipVersion @@ -84,16 +84,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: shared type: scalar: boolean -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeResourceSpec map: fields: - name: ipVersion @@ -109,7 +109,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: shared type: scalar: boolean -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeResourceStatus map: fields: - name: ipVersion @@ -124,26 +124,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: shared type: scalar: boolean -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeStatus map: fields: - name: conditions @@ -159,8 +159,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AddressScopeResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllocationPool + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AddressScopeResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllocationPool map: fields: - name: end @@ -169,7 +169,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: start type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllocationPoolStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllocationPoolStatus map: fields: - name: end @@ -178,7 +178,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: start type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllowedAddressPair +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllowedAddressPair map: fields: - name: ip @@ -187,7 +187,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: mac type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllowedAddressPairStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllowedAddressPairStatus map: fields: - name: ip @@ -196,7 +196,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: mac type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredential +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredential map: fields: - name: apiVersion @@ -211,13 +211,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialAccessRule +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialAccessRule map: fields: - name: method @@ -229,7 +229,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: serviceRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialAccessRuleStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialAccessRuleStatus map: fields: - name: id @@ -244,7 +244,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: service type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialFilter map: fields: - name: description @@ -256,23 +256,23 @@ var schemaYAML = typed.YAMLObject(`types: - name: userRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialResourceSpec map: fields: - name: accessRules type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialAccessRule + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialAccessRule elementRelationship: atomic - name: description type: @@ -298,14 +298,14 @@ var schemaYAML = typed.YAMLObject(`types: - name: userRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialResourceStatus map: fields: - name: accessRules type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialAccessRuleStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialAccessRuleStatus elementRelationship: atomic - name: description type: @@ -323,12 +323,12 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialRoleStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialRoleStatus elementRelationship: atomic - name: unrestricted type: scalar: boolean -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialRoleStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialRoleStatus map: fields: - name: domainID @@ -340,26 +340,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialStatus map: fields: - name: conditions @@ -375,8 +375,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ApplicationCredentialResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ApplicationCredentialResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference map: fields: - name: cloudName @@ -385,7 +385,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: secretName type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Domain +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Domain map: fields: - name: apiVersion @@ -400,13 +400,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainFilter map: fields: - name: enabled @@ -415,16 +415,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainResourceSpec map: fields: - name: description @@ -436,7 +436,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainResourceStatus map: fields: - name: description @@ -448,26 +448,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainStatus map: fields: - name: conditions @@ -483,8 +483,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.DomainResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Endpoint + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.DomainResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Endpoint map: fields: - name: apiVersion @@ -499,13 +499,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointFilter map: fields: - name: interface @@ -517,16 +517,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: url type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointResourceSpec map: fields: - name: description @@ -545,7 +545,7 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: string default: "" -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointResourceStatus map: fields: - name: description @@ -563,26 +563,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: url type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointStatus map: fields: - name: conditions @@ -598,20 +598,20 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.EndpointResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ExternalGateway + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.EndpointResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ExternalGateway map: fields: - name: networkRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ExternalGatewayStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ExternalGatewayStatus map: fields: - name: networkID type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FixedIPStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FixedIPStatus map: fields: - name: ip @@ -620,7 +620,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: subnetID type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Flavor +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Flavor map: fields: - name: apiVersion @@ -635,13 +635,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorFilter map: fields: - name: disk @@ -656,16 +656,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: vcpus type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorResourceSpec map: fields: - name: description @@ -696,7 +696,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: vcpus type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorResourceStatus map: fields: - name: description @@ -723,26 +723,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: vcpus type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorStatus map: fields: - name: conditions @@ -758,8 +758,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FlavorResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIP + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FlavorResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIP map: fields: - name: apiVersion @@ -774,13 +774,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPFilter map: fields: - name: description @@ -825,16 +825,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPResourceSpec map: fields: - name: description @@ -864,7 +864,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPResourceStatus map: fields: - name: createdAt @@ -909,26 +909,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPStatus map: fields: - name: conditions @@ -944,8 +944,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FloatingIPResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Group + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FloatingIPResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Group map: fields: - name: apiVersion @@ -960,13 +960,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupFilter map: fields: - name: domainRef @@ -975,16 +975,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupResourceSpec map: fields: - name: description @@ -996,7 +996,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupResourceStatus map: fields: - name: description @@ -1008,26 +1008,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupStatus map: fields: - name: conditions @@ -1043,8 +1043,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.GroupResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostID + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.GroupResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostID map: fields: - name: id @@ -1053,7 +1053,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: serverRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostRoute +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostRoute map: fields: - name: destination @@ -1062,7 +1062,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: nextHop type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostRouteStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostRouteStatus map: fields: - name: destination @@ -1071,7 +1071,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: nextHop type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.IPv6Options +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.IPv6Options map: fields: - name: addressMode @@ -1080,7 +1080,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: raMode type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Image +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Image map: fields: - name: apiVersion @@ -1095,13 +1095,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageContent +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageContent map: fields: - name: containerFormat @@ -1112,8 +1112,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: download type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageContentSourceDownload -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageContentSourceDownload + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageContentSourceDownload +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageContentSourceDownload map: fields: - name: decompress @@ -1121,12 +1121,12 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: hash type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageHash + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageHash - name: url type: scalar: string default: "" -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageFilter map: fields: - name: name @@ -1141,7 +1141,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: visibility type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageHash +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageHash map: fields: - name: algorithm @@ -1150,16 +1150,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageProperties +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageProperties map: fields: - name: architecture @@ -1167,7 +1167,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: hardware type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImagePropertiesHardware + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImagePropertiesHardware - name: hypervisorType type: scalar: string @@ -1179,8 +1179,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: numeric - name: operatingSystem type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImagePropertiesOperatingSystem -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImagePropertiesHardware + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImagePropertiesOperatingSystem +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImagePropertiesHardware map: fields: - name: cdromBus @@ -1216,7 +1216,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: vifModel type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImagePropertiesOperatingSystem +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImagePropertiesOperatingSystem map: fields: - name: distro @@ -1225,18 +1225,18 @@ var schemaYAML = typed.YAMLObject(`types: - name: version type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageResourceSpec map: fields: - name: content type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageContent + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageContent - name: name type: scalar: string - name: properties type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageProperties + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageProperties - name: protected type: scalar: boolean @@ -1249,12 +1249,12 @@ var schemaYAML = typed.YAMLObject(`types: - name: visibility type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageResourceStatus map: fields: - name: hash type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageHash + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageHash - name: name type: scalar: string @@ -1279,26 +1279,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: visibility type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageStatus map: fields: - name: conditions @@ -1317,8 +1317,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ImageResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPair + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ImageResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPair map: fields: - name: apiVersion @@ -1333,28 +1333,28 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairFilter map: fields: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairResourceSpec map: fields: - name: name @@ -1366,7 +1366,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairResourceStatus map: fields: - name: fingerprint @@ -1381,26 +1381,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairStatus map: fields: - name: conditions @@ -1416,14 +1416,14 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.KeyPairResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.KeyPairResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions map: fields: - name: onDelete type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Network +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Network map: fields: - name: apiVersion @@ -1438,13 +1438,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkFilter map: fields: - name: description @@ -1483,16 +1483,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkResourceSpec map: fields: - name: adminStateUp @@ -1534,7 +1534,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkResourceStatus map: fields: - name: adminStateUp @@ -1572,7 +1572,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: provider type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProviderPropertiesStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProviderPropertiesStatus - name: revisionNumber type: scalar: numeric @@ -1597,26 +1597,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkStatus map: fields: - name: conditions @@ -1632,8 +1632,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.NetworkResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Port + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.NetworkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Port map: fields: - name: apiVersion @@ -1648,13 +1648,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortFilter map: fields: - name: adminStateUp @@ -1700,16 +1700,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortRangeSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortRangeSpec map: fields: - name: max @@ -1720,7 +1720,7 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: numeric default: 0 -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortRangeStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortRangeStatus map: fields: - name: max @@ -1731,14 +1731,14 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: numeric default: 0 -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortResourceSpec map: fields: - name: addresses type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Address + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Address elementRelationship: atomic - name: adminStateUp type: @@ -1747,14 +1747,14 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllowedAddressPair + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllowedAddressPair elementRelationship: atomic - name: description type: scalar: string - name: hostID type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostID + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostID - name: macAddress type: scalar: string @@ -1789,14 +1789,14 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortValueSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortValueSpec elementRelationship: associative keys: - key - name: vnicType type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortResourceStatus map: fields: - name: adminStateUp @@ -1806,7 +1806,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllowedAddressPairStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllowedAddressPairStatus elementRelationship: atomic - name: createdAt type: @@ -1824,7 +1824,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.FixedIPStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.FixedIPStatus elementRelationship: atomic - name: hostID type: @@ -1874,26 +1874,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: vnicType type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortStatus map: fields: - name: conditions @@ -1909,8 +1909,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortValueSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortValueSpec map: fields: - name: key @@ -1919,7 +1919,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Project +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Project map: fields: - name: apiVersion @@ -1934,13 +1934,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectFilter map: fields: - name: domainRef @@ -1973,16 +1973,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectResourceSpec map: fields: - name: description @@ -2003,7 +2003,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectResourceStatus map: fields: - name: description @@ -2024,26 +2024,26 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: atomic -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectStatus map: fields: - name: conditions @@ -2059,8 +2059,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProjectResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ProviderPropertiesStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProjectResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ProviderPropertiesStatus map: fields: - name: networkType @@ -2072,7 +2072,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: segmentationID type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Role +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Role map: fields: - name: apiVersion @@ -2087,13 +2087,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleFilter map: fields: - name: domainRef @@ -2102,16 +2102,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleResourceSpec map: fields: - name: description @@ -2123,7 +2123,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleResourceStatus map: fields: - name: description @@ -2135,26 +2135,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleStatus map: fields: - name: conditions @@ -2170,8 +2170,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RoleResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Router + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RoleResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Router map: fields: - name: apiVersion @@ -2186,13 +2186,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterFilter map: fields: - name: description @@ -2228,16 +2228,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterface +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterface map: fields: - name: apiVersion @@ -2252,13 +2252,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterfaceSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterfaceSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterfaceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterfaceStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterfaceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterfaceSpec map: fields: - name: routerRef @@ -2270,7 +2270,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterInterfaceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterInterfaceStatus map: fields: - name: conditions @@ -2284,7 +2284,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterResourceSpec map: fields: - name: adminStateUp @@ -2306,7 +2306,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ExternalGateway + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ExternalGateway elementRelationship: atomic - name: name type: @@ -2320,7 +2320,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterResourceStatus map: fields: - name: adminStateUp @@ -2339,7 +2339,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ExternalGatewayStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ExternalGatewayStatus elementRelationship: atomic - name: name type: @@ -2356,26 +2356,26 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: atomic -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterStatus map: fields: - name: conditions @@ -2391,8 +2391,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.RouterResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroup + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.RouterResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroup map: fields: - name: apiVersion @@ -2407,13 +2407,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupFilter map: fields: - name: description @@ -2449,16 +2449,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupResourceSpec map: fields: - name: description @@ -2474,7 +2474,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupRule + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupRule elementRelationship: atomic - name: stateful type: @@ -2485,7 +2485,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupResourceStatus map: fields: - name: createdAt @@ -2507,7 +2507,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupRuleStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupRuleStatus elementRelationship: atomic - name: stateful type: @@ -2521,7 +2521,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupRule +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupRule map: fields: - name: description @@ -2535,14 +2535,14 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: portRange type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortRangeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortRangeSpec - name: protocol type: scalar: string - name: remoteIPPrefix type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupRuleStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupRuleStatus map: fields: - name: description @@ -2559,7 +2559,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: portRange type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.PortRangeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.PortRangeStatus - name: protocol type: scalar: string @@ -2569,26 +2569,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: remoteIPPrefix type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupStatus map: fields: - name: conditions @@ -2604,8 +2604,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SecurityGroupResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Server + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SecurityGroupResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Server map: fields: - name: apiVersion @@ -2620,13 +2620,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerBootVolumeSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerBootVolumeSpec map: fields: - name: tag @@ -2635,7 +2635,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: volumeRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerFilter map: fields: - name: availabilityZone @@ -2668,7 +2668,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroup +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroup map: fields: - name: apiVersion @@ -2683,28 +2683,28 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupFilter map: fields: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupResourceSpec map: fields: - name: name @@ -2715,8 +2715,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: rules type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupRules -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupResourceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupRules +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupResourceStatus map: fields: - name: name @@ -2730,42 +2730,42 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: rules type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupRulesStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupRulesStatus - name: userID type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupRules +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupRules map: fields: - name: maxServerPerHost type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupRulesStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupRulesStatus map: fields: - name: maxServerPerHost type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupStatus map: fields: - name: conditions @@ -2781,17 +2781,17 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerGroupResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerGroupResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerInterfaceFixedIP +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerInterfaceFixedIP map: fields: - name: ipAddress @@ -2800,14 +2800,14 @@ var schemaYAML = typed.YAMLObject(`types: - name: subnetID type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerInterfaceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerInterfaceStatus map: fields: - name: fixedIPs type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerInterfaceFixedIP + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerInterfaceFixedIP elementRelationship: atomic - name: macAddr type: @@ -2821,7 +2821,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: portState type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerMetadata +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerMetadata map: fields: - name: key @@ -2830,7 +2830,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerMetadataStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerMetadataStatus map: fields: - name: key @@ -2839,13 +2839,13 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerPortSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerPortSpec map: fields: - name: portRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerResourceSpec map: fields: - name: availabilityZone @@ -2853,7 +2853,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: bootVolume type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerBootVolumeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerBootVolumeSpec - name: configDrive type: scalar: boolean @@ -2870,7 +2870,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerMetadata + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerMetadata elementRelationship: atomic - name: name type: @@ -2879,11 +2879,11 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerPortSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerPortSpec elementRelationship: atomic - name: schedulerHints type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerSchedulerHints + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerSchedulerHints - name: tags type: list: @@ -2892,14 +2892,14 @@ var schemaYAML = typed.YAMLObject(`types: elementRelationship: associative - name: userData type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserDataSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserDataSpec - name: volumes type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerVolumeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerVolumeSpec elementRelationship: atomic -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerResourceStatus map: fields: - name: availabilityZone @@ -2918,13 +2918,13 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerInterfaceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerInterfaceStatus elementRelationship: atomic - name: metadata type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerMetadataStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerMetadataStatus elementRelationship: atomic - name: name type: @@ -2948,9 +2948,9 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerVolumeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerVolumeStatus elementRelationship: atomic -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerSchedulerHints +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerSchedulerHints map: fields: - name: additionalProperties @@ -2988,26 +2988,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: targetCell type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerStatus map: fields: - name: conditions @@ -3023,8 +3023,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerVolumeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerVolumeSpec map: fields: - name: device @@ -3033,13 +3033,13 @@ var schemaYAML = typed.YAMLObject(`types: - name: volumeRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServerVolumeStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServerVolumeStatus map: fields: - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Service +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Service map: fields: - name: apiVersion @@ -3054,13 +3054,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceFilter map: fields: - name: name @@ -3069,16 +3069,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceResourceSpec map: fields: - name: description @@ -3093,7 +3093,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceResourceStatus map: fields: - name: description @@ -3108,26 +3108,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceStatus map: fields: - name: conditions @@ -3143,8 +3143,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ServiceResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetwork + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ServiceResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetwork map: fields: - name: apiVersion @@ -3159,13 +3159,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkFilter map: fields: - name: description @@ -3174,16 +3174,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkResourceSpec map: fields: - name: description @@ -3198,7 +3198,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: subnetRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkResourceStatus map: fields: - name: cidr @@ -3235,26 +3235,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkStatus map: fields: - name: conditions @@ -3270,8 +3270,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ShareNetworkResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Subnet + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ShareNetworkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Subnet map: fields: - name: apiVersion @@ -3286,13 +3286,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetFilter map: fields: - name: cidr @@ -3309,7 +3309,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: numeric - name: ipv6 type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.IPv6Options + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.IPv6Options - name: name type: scalar: string @@ -3344,7 +3344,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetGateway +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetGateway map: fields: - name: ip @@ -3353,23 +3353,23 @@ var schemaYAML = typed.YAMLObject(`types: - name: type type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetResourceSpec map: fields: - name: allocationPools type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllocationPool + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllocationPool elementRelationship: atomic - name: cidr type: @@ -3391,12 +3391,12 @@ var schemaYAML = typed.YAMLObject(`types: scalar: boolean - name: gateway type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetGateway + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetGateway - name: hostRoutes type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostRoute + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostRoute elementRelationship: atomic - name: ipVersion type: @@ -3404,7 +3404,7 @@ var schemaYAML = typed.YAMLObject(`types: default: 0 - name: ipv6 type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.IPv6Options + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.IPv6Options - name: name type: scalar: string @@ -3423,14 +3423,14 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetResourceStatus map: fields: - name: allocationPools type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.AllocationPoolStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.AllocationPoolStatus elementRelationship: atomic - name: cidr type: @@ -3460,7 +3460,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.HostRouteStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.HostRouteStatus elementRelationship: atomic - name: ipVersion type: @@ -3495,26 +3495,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetStatus map: fields: - name: conditions @@ -3530,8 +3530,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.SubnetResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Trunk + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.SubnetResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Trunk map: fields: - name: apiVersion @@ -3546,13 +3546,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkFilter map: fields: - name: adminStateUp @@ -3594,16 +3594,16 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkResourceSpec map: fields: - name: adminStateUp @@ -3625,7 +3625,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSubportSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSubportSpec elementRelationship: atomic - name: tags type: @@ -3633,7 +3633,7 @@ var schemaYAML = typed.YAMLObject(`types: elementType: scalar: string elementRelationship: associative -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkResourceStatus map: fields: - name: adminStateUp @@ -3664,7 +3664,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSubportStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSubportStatus elementRelationship: atomic - name: tags type: @@ -3678,26 +3678,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: updatedAt type: namedType: io.k8s.apimachinery.pkg.apis.meta.v1.Time -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkStatus map: fields: - name: conditions @@ -3713,8 +3713,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSubportSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSubportSpec map: fields: - name: portRef @@ -3726,7 +3726,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: segmentationType type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.TrunkSubportStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.TrunkSubportStatus map: fields: - name: portID @@ -3738,7 +3738,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: segmentationType type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.User +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.User map: fields: - name: apiVersion @@ -3753,19 +3753,19 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserDataSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserDataSpec map: fields: - name: secretRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserFilter map: fields: - name: domainRef @@ -3774,16 +3774,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserResourceSpec map: fields: - name: defaultProjectRef @@ -3804,7 +3804,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: passwordRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserResourceStatus map: fields: - name: appliedPasswordRef @@ -3828,26 +3828,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: passwordExpiresAt type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserStatus map: fields: - name: conditions @@ -3863,8 +3863,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.UserResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.Volume + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.UserResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.Volume map: fields: - name: apiVersion @@ -3879,13 +3879,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeAttachmentStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeAttachmentStatus map: fields: - name: attachedAt @@ -3903,7 +3903,7 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: string default: "" -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeFilter map: fields: - name: availabilityZone @@ -3918,16 +3918,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: size type: scalar: numeric -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeMetadata +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeMetadata map: fields: - name: name @@ -3938,7 +3938,7 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: string default: "" -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeMetadataStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeMetadataStatus map: fields: - name: name @@ -3947,7 +3947,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeResourceSpec map: fields: - name: availabilityZone @@ -3963,7 +3963,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeMetadata + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeMetadata elementRelationship: atomic - name: name type: @@ -3974,14 +3974,14 @@ var schemaYAML = typed.YAMLObject(`types: - name: volumeTypeRef type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeResourceStatus map: fields: - name: attachments type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeAttachmentStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeAttachmentStatus elementRelationship: atomic - name: availabilityZone type: @@ -4014,7 +4014,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeMetadataStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeMetadataStatus elementRelationship: atomic - name: multiattach type: @@ -4049,26 +4049,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: volumeType type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeStatus map: fields: - name: conditions @@ -4084,8 +4084,8 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeResourceStatus -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeType + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeType map: fields: - name: apiVersion @@ -4100,13 +4100,13 @@ var schemaYAML = typed.YAMLObject(`types: default: {} - name: spec type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeSpec default: {} - name: status type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeStatus default: {} -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeExtraSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeExtraSpec map: fields: - name: name @@ -4117,7 +4117,7 @@ var schemaYAML = typed.YAMLObject(`types: type: scalar: string default: "" -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeExtraSpecStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeExtraSpecStatus map: fields: - name: name @@ -4126,7 +4126,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: value type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeFilter +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeFilter map: fields: - name: description @@ -4138,16 +4138,16 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeImport +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeImport map: fields: - name: filter type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeFilter + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeFilter - name: id type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeResourceSpec map: fields: - name: description @@ -4157,7 +4157,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeExtraSpec + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeExtraSpec elementRelationship: atomic - name: isPublic type: @@ -4165,7 +4165,7 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeResourceStatus +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeResourceStatus map: fields: - name: description @@ -4175,7 +4175,7 @@ var schemaYAML = typed.YAMLObject(`types: type: list: elementType: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeExtraSpecStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeExtraSpecStatus elementRelationship: atomic - name: isPublic type: @@ -4183,26 +4183,26 @@ var schemaYAML = typed.YAMLObject(`types: - name: name type: scalar: string -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeSpec map: fields: - name: cloudCredentialsRef type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.CloudCredentialsReference + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.CloudCredentialsReference default: {} - name: import type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeImport + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeImport - name: managedOptions type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.ManagedOptions + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.ManagedOptions - name: managementPolicy type: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeResourceSpec -- name: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeResourceSpec +- name: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeStatus map: fields: - name: conditions @@ -4218,7 +4218,7 @@ var schemaYAML = typed.YAMLObject(`types: scalar: string - name: resource type: - namedType: com.github.k-orc.openstack-resource-controller.v2.api.v1alpha1.VolumeTypeResourceStatus + namedType: com.github.k-orc.openstack-resource-controller.v3.api.v1alpha1.VolumeTypeResourceStatus - name: io.k8s.apimachinery.pkg.apis.meta.v1.Condition map: fields: diff --git a/pkg/clients/applyconfiguration/utils.go b/pkg/clients/applyconfiguration/utils.go index 5d8f68cd9..bfbbac052 100644 --- a/pkg/clients/applyconfiguration/utils.go +++ b/pkg/clients/applyconfiguration/utils.go @@ -19,9 +19,9 @@ limitations under the License. package applyconfiguration import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - internal "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/internal" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + internal "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/internal" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" managedfields "k8s.io/apimachinery/pkg/util/managedfields" diff --git a/pkg/clients/clientset/clientset/clientset.go b/pkg/clients/clientset/clientset/clientset.go index a0302397c..f4e99ce9e 100644 --- a/pkg/clients/clientset/clientset/clientset.go +++ b/pkg/clients/clientset/clientset/clientset.go @@ -22,7 +22,7 @@ import ( fmt "fmt" http "net/http" - openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" discovery "k8s.io/client-go/discovery" rest "k8s.io/client-go/rest" flowcontrol "k8s.io/client-go/util/flowcontrol" diff --git a/pkg/clients/clientset/clientset/fake/clientset_generated.go b/pkg/clients/clientset/clientset/fake/clientset_generated.go index 042753987..8b813ce62 100644 --- a/pkg/clients/clientset/clientset/fake/clientset_generated.go +++ b/pkg/clients/clientset/clientset/fake/clientset_generated.go @@ -19,10 +19,10 @@ limitations under the License. package fake import ( - applyconfiguration "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" - fakeopenstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake" + applyconfiguration "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" + fakeopenstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/fake/register.go b/pkg/clients/clientset/clientset/fake/register.go index 3c6caad14..b7758a0a2 100644 --- a/pkg/clients/clientset/clientset/fake/register.go +++ b/pkg/clients/clientset/clientset/fake/register.go @@ -19,7 +19,7 @@ limitations under the License. package fake import ( - openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/clients/clientset/clientset/scheme/register.go b/pkg/clients/clientset/clientset/scheme/register.go index 333c2c424..00e1ced19 100644 --- a/pkg/clients/clientset/clientset/scheme/register.go +++ b/pkg/clients/clientset/clientset/scheme/register.go @@ -19,7 +19,7 @@ limitations under the License. package scheme import ( - openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + openstackv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/addressscope.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/addressscope.go index 463d3a12c..40a9d611a 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/addressscope.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/addressscope.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/api_client.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/api_client.go index d5c517b1e..24e83f7e6 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/api_client.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/api_client.go @@ -21,8 +21,8 @@ package v1alpha1 import ( http "net/http" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" rest "k8s.io/client-go/rest" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/applicationcredential.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/applicationcredential.go index f3f3411c5..ce4118e87 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/applicationcredential.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/applicationcredential.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/domain.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/domain.go index 83ba6d973..ac9aa77c4 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/domain.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/domain.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/endpoint.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/endpoint.go index 4eda9ea43..96ea34908 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/endpoint.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/endpoint.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_addressscope.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_addressscope.go index 549024d55..f6ac0de8b 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_addressscope.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_addressscope.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_api_client.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_api_client.go index f5dcb5da4..ed5bf089c 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_api_client.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_api_client.go @@ -19,7 +19,7 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" rest "k8s.io/client-go/rest" testing "k8s.io/client-go/testing" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_applicationcredential.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_applicationcredential.go index c093e7c28..5ad95666d 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_applicationcredential.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_applicationcredential.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_domain.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_domain.go index ea78b8a40..ae48e01a2 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_domain.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_domain.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_endpoint.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_endpoint.go index ab36dca23..57947855e 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_endpoint.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_endpoint.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_flavor.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_flavor.go index bf4efd93d..6bf75eb4c 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_flavor.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_flavor.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_floatingip.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_floatingip.go index 136c49056..99e367146 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_floatingip.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_floatingip.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_group.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_group.go index 2ef581ba1..1e292ed00 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_group.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_group.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_image.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_image.go index bc5bbc879..744d7c80d 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_image.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_image.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_keypair.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_keypair.go index 37553ac03..b42c1fcad 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_keypair.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_keypair.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_network.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_network.go index f68d65923..c1f6c3d6d 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_network.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_network.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_port.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_port.go index 540a5ba2c..d79f3fb52 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_port.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_port.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_project.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_project.go index c75981692..593f6650e 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_project.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_project.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_role.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_role.go index 3dc54b77d..334ac5fc0 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_role.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_role.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_router.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_router.go index dec48bdd2..074228875 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_router.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_router.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_routerinterface.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_routerinterface.go index b519e73e8..9f7660a8b 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_routerinterface.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_routerinterface.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_securitygroup.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_securitygroup.go index 865fb786c..b799ffc78 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_securitygroup.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_securitygroup.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_server.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_server.go index a8e37ad42..f5866b466 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_server.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_server.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_servergroup.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_servergroup.go index 3c1cbf2fb..ddd466459 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_servergroup.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_servergroup.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_service.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_service.go index 17971c02b..6d33377b0 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_service.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_service.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_sharenetwork.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_sharenetwork.go index 2e1081d9f..7ba303a8b 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_sharenetwork.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_sharenetwork.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_subnet.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_subnet.go index 9dd38a30f..f067fddc3 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_subnet.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_subnet.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_trunk.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_trunk.go index bc58f0e4d..24655b993 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_trunk.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_trunk.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_user.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_user.go index c3ac6b668..d9e2bc8c8 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_user.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_user.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volume.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volume.go index fef4e1e78..a9d10e7dd 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volume.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volume.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volumetype.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volumetype.go index 126aebd95..253ec289d 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volumetype.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/fake/fake_volumetype.go @@ -19,9 +19,9 @@ limitations under the License. package fake import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/typed/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + typedapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/typed/api/v1alpha1" gentype "k8s.io/client-go/gentype" ) diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/flavor.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/flavor.go index 7f59e0ef1..138a4f6b5 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/flavor.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/flavor.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/floatingip.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/floatingip.go index 00a9802a4..d59b187cb 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/floatingip.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/floatingip.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/group.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/group.go index a8e168094..ca7841a65 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/group.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/group.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/image.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/image.go index bb719a623..6a89fc3f2 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/image.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/image.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/keypair.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/keypair.go index f2d1f177e..0cf73f402 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/keypair.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/keypair.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/network.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/network.go index 2422c0b25..a62409158 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/network.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/network.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/port.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/port.go index e59bc653b..35873d162 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/port.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/port.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/project.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/project.go index e777bff87..a2744d3fd 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/project.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/project.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/role.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/role.go index 5ac1433f6..df8ec36ba 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/role.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/role.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/router.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/router.go index 5da2176b0..5db4e5c0b 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/router.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/router.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/routerinterface.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/routerinterface.go index 3d6e86c32..6c76f5240 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/routerinterface.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/routerinterface.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/securitygroup.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/securitygroup.go index d996525f2..bee1b5875 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/securitygroup.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/securitygroup.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/server.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/server.go index 77e068970..33fd18a91 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/server.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/server.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/servergroup.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/servergroup.go index 71d968283..996bb994c 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/servergroup.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/servergroup.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/service.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/service.go index ed1f4ddca..b94d70c28 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/service.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/service.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/sharenetwork.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/sharenetwork.go index 1c64adfc7..fd0dc24ef 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/sharenetwork.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/sharenetwork.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/subnet.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/subnet.go index 8ef009c1f..93acbaeb6 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/subnet.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/subnet.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/trunk.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/trunk.go index 0a2dd9152..cccff0fca 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/trunk.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/trunk.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/user.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/user.go index d2f6659a7..f1725e7da 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/user.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/user.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/volume.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/volume.go index 7c5147c1f..d9f10f8fb 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/volume.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/volume.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/clientset/clientset/typed/api/v1alpha1/volumetype.go b/pkg/clients/clientset/clientset/typed/api/v1alpha1/volumetype.go index 8aa0602c7..fcbfb5e55 100644 --- a/pkg/clients/clientset/clientset/typed/api/v1alpha1/volumetype.go +++ b/pkg/clients/clientset/clientset/typed/api/v1alpha1/volumetype.go @@ -21,9 +21,9 @@ package v1alpha1 import ( context "context" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" - scheme "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset/scheme" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigurationapiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" + scheme "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" watch "k8s.io/apimachinery/pkg/watch" diff --git a/pkg/clients/informers/externalversions/api/interface.go b/pkg/clients/informers/externalversions/api/interface.go index ca024a2e7..941d3bbbc 100644 --- a/pkg/clients/informers/externalversions/api/interface.go +++ b/pkg/clients/informers/externalversions/api/interface.go @@ -19,8 +19,8 @@ limitations under the License. package api import ( - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/api/v1alpha1" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/api/v1alpha1" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" ) // Interface provides access to each of this group's versions. diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/addressscope.go b/pkg/clients/informers/externalversions/api/v1alpha1/addressscope.go index 39f360e11..16032ba06 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/addressscope.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/addressscope.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredAddressScopeInformer(client clientset.Interface, namespace strin return client.OpenstackV1alpha1().AddressScopes(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.AddressScope{}, + &v3apiv1alpha1.AddressScope{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *addressScopeInformer) defaultInformer(client clientset.Interface, resyn } func (f *addressScopeInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.AddressScope{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.AddressScope{}, f.defaultInformer) } func (f *addressScopeInformer) Lister() apiv1alpha1.AddressScopeLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/applicationcredential.go b/pkg/clients/informers/externalversions/api/v1alpha1/applicationcredential.go index a728706a7..3c7b8c5e3 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/applicationcredential.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/applicationcredential.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredApplicationCredentialInformer(client clientset.Interface, namesp return client.OpenstackV1alpha1().ApplicationCredentials(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.ApplicationCredential{}, + &v3apiv1alpha1.ApplicationCredential{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *applicationCredentialInformer) defaultInformer(client clientset.Interfa } func (f *applicationCredentialInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.ApplicationCredential{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.ApplicationCredential{}, f.defaultInformer) } func (f *applicationCredentialInformer) Lister() apiv1alpha1.ApplicationCredentialLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/domain.go b/pkg/clients/informers/externalversions/api/v1alpha1/domain.go index 2e0a8879a..d2cac9b72 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/domain.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/domain.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredDomainInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Domains(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Domain{}, + &v3apiv1alpha1.Domain{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *domainInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *domainInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Domain{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Domain{}, f.defaultInformer) } func (f *domainInformer) Lister() apiv1alpha1.DomainLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/endpoint.go b/pkg/clients/informers/externalversions/api/v1alpha1/endpoint.go index 7deada74f..26d48c840 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/endpoint.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/endpoint.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredEndpointInformer(client clientset.Interface, namespace string, r return client.OpenstackV1alpha1().Endpoints(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Endpoint{}, + &v3apiv1alpha1.Endpoint{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *endpointInformer) defaultInformer(client clientset.Interface, resyncPer } func (f *endpointInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Endpoint{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Endpoint{}, f.defaultInformer) } func (f *endpointInformer) Lister() apiv1alpha1.EndpointLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/flavor.go b/pkg/clients/informers/externalversions/api/v1alpha1/flavor.go index 4f371b017..cbe386b68 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/flavor.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/flavor.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredFlavorInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Flavors(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Flavor{}, + &v3apiv1alpha1.Flavor{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *flavorInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *flavorInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Flavor{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Flavor{}, f.defaultInformer) } func (f *flavorInformer) Lister() apiv1alpha1.FlavorLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/floatingip.go b/pkg/clients/informers/externalversions/api/v1alpha1/floatingip.go index 099d674b5..102a2ebf3 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/floatingip.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/floatingip.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredFloatingIPInformer(client clientset.Interface, namespace string, return client.OpenstackV1alpha1().FloatingIPs(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.FloatingIP{}, + &v3apiv1alpha1.FloatingIP{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *floatingIPInformer) defaultInformer(client clientset.Interface, resyncP } func (f *floatingIPInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.FloatingIP{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.FloatingIP{}, f.defaultInformer) } func (f *floatingIPInformer) Lister() apiv1alpha1.FloatingIPLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/group.go b/pkg/clients/informers/externalversions/api/v1alpha1/group.go index eefe73c64..06c32ad98 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/group.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/group.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredGroupInformer(client clientset.Interface, namespace string, resy return client.OpenstackV1alpha1().Groups(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Group{}, + &v3apiv1alpha1.Group{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *groupInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *groupInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Group{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Group{}, f.defaultInformer) } func (f *groupInformer) Lister() apiv1alpha1.GroupLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/image.go b/pkg/clients/informers/externalversions/api/v1alpha1/image.go index 707dcfacd..cb3cc387e 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/image.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/image.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredImageInformer(client clientset.Interface, namespace string, resy return client.OpenstackV1alpha1().Images(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Image{}, + &v3apiv1alpha1.Image{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *imageInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *imageInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Image{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Image{}, f.defaultInformer) } func (f *imageInformer) Lister() apiv1alpha1.ImageLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/interface.go b/pkg/clients/informers/externalversions/api/v1alpha1/interface.go index 2e9f92392..2b05c60ca 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/interface.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/interface.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" ) // Interface provides access to all the informers in this group version. diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/keypair.go b/pkg/clients/informers/externalversions/api/v1alpha1/keypair.go index 33ef79fd4..4185d6336 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/keypair.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/keypair.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredKeyPairInformer(client clientset.Interface, namespace string, re return client.OpenstackV1alpha1().KeyPairs(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.KeyPair{}, + &v3apiv1alpha1.KeyPair{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *keyPairInformer) defaultInformer(client clientset.Interface, resyncPeri } func (f *keyPairInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.KeyPair{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.KeyPair{}, f.defaultInformer) } func (f *keyPairInformer) Lister() apiv1alpha1.KeyPairLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/network.go b/pkg/clients/informers/externalversions/api/v1alpha1/network.go index 84e12259c..f817ad8af 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/network.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/network.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredNetworkInformer(client clientset.Interface, namespace string, re return client.OpenstackV1alpha1().Networks(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Network{}, + &v3apiv1alpha1.Network{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *networkInformer) defaultInformer(client clientset.Interface, resyncPeri } func (f *networkInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Network{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Network{}, f.defaultInformer) } func (f *networkInformer) Lister() apiv1alpha1.NetworkLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/port.go b/pkg/clients/informers/externalversions/api/v1alpha1/port.go index 7e037c84d..01801ff6d 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/port.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/port.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredPortInformer(client clientset.Interface, namespace string, resyn return client.OpenstackV1alpha1().Ports(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Port{}, + &v3apiv1alpha1.Port{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *portInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *portInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Port{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Port{}, f.defaultInformer) } func (f *portInformer) Lister() apiv1alpha1.PortLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/project.go b/pkg/clients/informers/externalversions/api/v1alpha1/project.go index 0025d8e21..a31edebab 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/project.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/project.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredProjectInformer(client clientset.Interface, namespace string, re return client.OpenstackV1alpha1().Projects(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Project{}, + &v3apiv1alpha1.Project{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *projectInformer) defaultInformer(client clientset.Interface, resyncPeri } func (f *projectInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Project{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Project{}, f.defaultInformer) } func (f *projectInformer) Lister() apiv1alpha1.ProjectLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/role.go b/pkg/clients/informers/externalversions/api/v1alpha1/role.go index 7975f8f7e..25130a04b 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/role.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/role.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredRoleInformer(client clientset.Interface, namespace string, resyn return client.OpenstackV1alpha1().Roles(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Role{}, + &v3apiv1alpha1.Role{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *roleInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *roleInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Role{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Role{}, f.defaultInformer) } func (f *roleInformer) Lister() apiv1alpha1.RoleLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/router.go b/pkg/clients/informers/externalversions/api/v1alpha1/router.go index fc472b5bd..eb7deeb81 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/router.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/router.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredRouterInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Routers(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Router{}, + &v3apiv1alpha1.Router{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *routerInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *routerInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Router{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Router{}, f.defaultInformer) } func (f *routerInformer) Lister() apiv1alpha1.RouterLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/routerinterface.go b/pkg/clients/informers/externalversions/api/v1alpha1/routerinterface.go index b937e51f7..9bb6d18a1 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/routerinterface.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/routerinterface.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredRouterInterfaceInformer(client clientset.Interface, namespace st return client.OpenstackV1alpha1().RouterInterfaces(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.RouterInterface{}, + &v3apiv1alpha1.RouterInterface{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *routerInterfaceInformer) defaultInformer(client clientset.Interface, re } func (f *routerInterfaceInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.RouterInterface{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.RouterInterface{}, f.defaultInformer) } func (f *routerInterfaceInformer) Lister() apiv1alpha1.RouterInterfaceLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/securitygroup.go b/pkg/clients/informers/externalversions/api/v1alpha1/securitygroup.go index 385356ccc..cd6cf12aa 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/securitygroup.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/securitygroup.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredSecurityGroupInformer(client clientset.Interface, namespace stri return client.OpenstackV1alpha1().SecurityGroups(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.SecurityGroup{}, + &v3apiv1alpha1.SecurityGroup{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *securityGroupInformer) defaultInformer(client clientset.Interface, resy } func (f *securityGroupInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.SecurityGroup{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.SecurityGroup{}, f.defaultInformer) } func (f *securityGroupInformer) Lister() apiv1alpha1.SecurityGroupLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/server.go b/pkg/clients/informers/externalversions/api/v1alpha1/server.go index 130029213..4f45250ff 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/server.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/server.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredServerInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Servers(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Server{}, + &v3apiv1alpha1.Server{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *serverInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *serverInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Server{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Server{}, f.defaultInformer) } func (f *serverInformer) Lister() apiv1alpha1.ServerLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/servergroup.go b/pkg/clients/informers/externalversions/api/v1alpha1/servergroup.go index 3a3fd71c3..2566e9c4b 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/servergroup.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/servergroup.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredServerGroupInformer(client clientset.Interface, namespace string return client.OpenstackV1alpha1().ServerGroups(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.ServerGroup{}, + &v3apiv1alpha1.ServerGroup{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *serverGroupInformer) defaultInformer(client clientset.Interface, resync } func (f *serverGroupInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.ServerGroup{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.ServerGroup{}, f.defaultInformer) } func (f *serverGroupInformer) Lister() apiv1alpha1.ServerGroupLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/service.go b/pkg/clients/informers/externalversions/api/v1alpha1/service.go index 43ca18e0a..9ffdde781 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/service.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/service.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredServiceInformer(client clientset.Interface, namespace string, re return client.OpenstackV1alpha1().Services(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Service{}, + &v3apiv1alpha1.Service{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *serviceInformer) defaultInformer(client clientset.Interface, resyncPeri } func (f *serviceInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Service{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Service{}, f.defaultInformer) } func (f *serviceInformer) Lister() apiv1alpha1.ServiceLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/sharenetwork.go b/pkg/clients/informers/externalversions/api/v1alpha1/sharenetwork.go index 1b9c5c3d2..73f9264ad 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/sharenetwork.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/sharenetwork.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredShareNetworkInformer(client clientset.Interface, namespace strin return client.OpenstackV1alpha1().ShareNetworks(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.ShareNetwork{}, + &v3apiv1alpha1.ShareNetwork{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *shareNetworkInformer) defaultInformer(client clientset.Interface, resyn } func (f *shareNetworkInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.ShareNetwork{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.ShareNetwork{}, f.defaultInformer) } func (f *shareNetworkInformer) Lister() apiv1alpha1.ShareNetworkLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/subnet.go b/pkg/clients/informers/externalversions/api/v1alpha1/subnet.go index 6a902f657..28cfdfc28 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/subnet.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/subnet.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredSubnetInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Subnets(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Subnet{}, + &v3apiv1alpha1.Subnet{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *subnetInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *subnetInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Subnet{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Subnet{}, f.defaultInformer) } func (f *subnetInformer) Lister() apiv1alpha1.SubnetLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/trunk.go b/pkg/clients/informers/externalversions/api/v1alpha1/trunk.go index 0f3eea4fd..62ab62519 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/trunk.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/trunk.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredTrunkInformer(client clientset.Interface, namespace string, resy return client.OpenstackV1alpha1().Trunks(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Trunk{}, + &v3apiv1alpha1.Trunk{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *trunkInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *trunkInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Trunk{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Trunk{}, f.defaultInformer) } func (f *trunkInformer) Lister() apiv1alpha1.TrunkLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/user.go b/pkg/clients/informers/externalversions/api/v1alpha1/user.go index 3cdb83f5f..7acf11b93 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/user.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/user.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredUserInformer(client clientset.Interface, namespace string, resyn return client.OpenstackV1alpha1().Users(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.User{}, + &v3apiv1alpha1.User{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *userInformer) defaultInformer(client clientset.Interface, resyncPeriod } func (f *userInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.User{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.User{}, f.defaultInformer) } func (f *userInformer) Lister() apiv1alpha1.UserLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/volume.go b/pkg/clients/informers/externalversions/api/v1alpha1/volume.go index c42cc57a0..27ddb8abd 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/volume.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/volume.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredVolumeInformer(client clientset.Interface, namespace string, res return client.OpenstackV1alpha1().Volumes(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.Volume{}, + &v3apiv1alpha1.Volume{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *volumeInformer) defaultInformer(client clientset.Interface, resyncPerio } func (f *volumeInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.Volume{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.Volume{}, f.defaultInformer) } func (f *volumeInformer) Lister() apiv1alpha1.VolumeLister { diff --git a/pkg/clients/informers/externalversions/api/v1alpha1/volumetype.go b/pkg/clients/informers/externalversions/api/v1alpha1/volumetype.go index 34b6336eb..8aea56ee2 100644 --- a/pkg/clients/informers/externalversions/api/v1alpha1/volumetype.go +++ b/pkg/clients/informers/externalversions/api/v1alpha1/volumetype.go @@ -22,10 +22,10 @@ import ( context "context" time "time" - v2apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/listers/api/v1alpha1" + v3apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/listers/api/v1alpha1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" watch "k8s.io/apimachinery/pkg/watch" @@ -83,7 +83,7 @@ func NewFilteredVolumeTypeInformer(client clientset.Interface, namespace string, return client.OpenstackV1alpha1().VolumeTypes(namespace).Watch(ctx, options) }, }, - &v2apiv1alpha1.VolumeType{}, + &v3apiv1alpha1.VolumeType{}, resyncPeriod, indexers, ) @@ -94,7 +94,7 @@ func (f *volumeTypeInformer) defaultInformer(client clientset.Interface, resyncP } func (f *volumeTypeInformer) Informer() cache.SharedIndexInformer { - return f.factory.InformerFor(&v2apiv1alpha1.VolumeType{}, f.defaultInformer) + return f.factory.InformerFor(&v3apiv1alpha1.VolumeType{}, f.defaultInformer) } func (f *volumeTypeInformer) Lister() apiv1alpha1.VolumeTypeLister { diff --git a/pkg/clients/informers/externalversions/factory.go b/pkg/clients/informers/externalversions/factory.go index 2260c31fb..b4dcf18d5 100644 --- a/pkg/clients/informers/externalversions/factory.go +++ b/pkg/clients/informers/externalversions/factory.go @@ -23,9 +23,9 @@ import ( sync "sync" time "time" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" - api "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/api" - internalinterfaces "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/informers/externalversions/internalinterfaces" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" + api "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/api" + internalinterfaces "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/informers/externalversions/internalinterfaces" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" diff --git a/pkg/clients/informers/externalversions/generic.go b/pkg/clients/informers/externalversions/generic.go index fb3637f1e..e8ca80ccc 100644 --- a/pkg/clients/informers/externalversions/generic.go +++ b/pkg/clients/informers/externalversions/generic.go @@ -21,7 +21,7 @@ package externalversions import ( fmt "fmt" - v1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + v1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" schema "k8s.io/apimachinery/pkg/runtime/schema" cache "k8s.io/client-go/tools/cache" ) diff --git a/pkg/clients/informers/externalversions/internalinterfaces/factory_interfaces.go b/pkg/clients/informers/externalversions/internalinterfaces/factory_interfaces.go index 38e582cf3..57263c5bd 100644 --- a/pkg/clients/informers/externalversions/internalinterfaces/factory_interfaces.go +++ b/pkg/clients/informers/externalversions/internalinterfaces/factory_interfaces.go @@ -21,7 +21,7 @@ package internalinterfaces import ( time "time" - clientset "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/clientset/clientset" + clientset "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/clientset/clientset" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/addressscope.go b/pkg/clients/listers/api/v1alpha1/addressscope.go index b2a8b7929..c7732adc9 100644 --- a/pkg/clients/listers/api/v1alpha1/addressscope.go +++ b/pkg/clients/listers/api/v1alpha1/addressscope.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/applicationcredential.go b/pkg/clients/listers/api/v1alpha1/applicationcredential.go index 559f9b947..eaceacdd5 100644 --- a/pkg/clients/listers/api/v1alpha1/applicationcredential.go +++ b/pkg/clients/listers/api/v1alpha1/applicationcredential.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/domain.go b/pkg/clients/listers/api/v1alpha1/domain.go index 1e3d17051..d4e8f153b 100644 --- a/pkg/clients/listers/api/v1alpha1/domain.go +++ b/pkg/clients/listers/api/v1alpha1/domain.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/endpoint.go b/pkg/clients/listers/api/v1alpha1/endpoint.go index 1d7599408..fff6df1b4 100644 --- a/pkg/clients/listers/api/v1alpha1/endpoint.go +++ b/pkg/clients/listers/api/v1alpha1/endpoint.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/flavor.go b/pkg/clients/listers/api/v1alpha1/flavor.go index 820fe098a..cdded776c 100644 --- a/pkg/clients/listers/api/v1alpha1/flavor.go +++ b/pkg/clients/listers/api/v1alpha1/flavor.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/floatingip.go b/pkg/clients/listers/api/v1alpha1/floatingip.go index f7dbc95c5..b34ba405d 100644 --- a/pkg/clients/listers/api/v1alpha1/floatingip.go +++ b/pkg/clients/listers/api/v1alpha1/floatingip.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/group.go b/pkg/clients/listers/api/v1alpha1/group.go index 1364f5214..37fe0b21e 100644 --- a/pkg/clients/listers/api/v1alpha1/group.go +++ b/pkg/clients/listers/api/v1alpha1/group.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/image.go b/pkg/clients/listers/api/v1alpha1/image.go index d63ba89c8..1ea882008 100644 --- a/pkg/clients/listers/api/v1alpha1/image.go +++ b/pkg/clients/listers/api/v1alpha1/image.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/keypair.go b/pkg/clients/listers/api/v1alpha1/keypair.go index 268c14ac7..1fcd26810 100644 --- a/pkg/clients/listers/api/v1alpha1/keypair.go +++ b/pkg/clients/listers/api/v1alpha1/keypair.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/network.go b/pkg/clients/listers/api/v1alpha1/network.go index cdd26de8a..2c12f9962 100644 --- a/pkg/clients/listers/api/v1alpha1/network.go +++ b/pkg/clients/listers/api/v1alpha1/network.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/port.go b/pkg/clients/listers/api/v1alpha1/port.go index a61984e89..07a9b19ad 100644 --- a/pkg/clients/listers/api/v1alpha1/port.go +++ b/pkg/clients/listers/api/v1alpha1/port.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/project.go b/pkg/clients/listers/api/v1alpha1/project.go index c2dd486be..569746c61 100644 --- a/pkg/clients/listers/api/v1alpha1/project.go +++ b/pkg/clients/listers/api/v1alpha1/project.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/role.go b/pkg/clients/listers/api/v1alpha1/role.go index c2d62f895..7e4966003 100644 --- a/pkg/clients/listers/api/v1alpha1/role.go +++ b/pkg/clients/listers/api/v1alpha1/role.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/router.go b/pkg/clients/listers/api/v1alpha1/router.go index 5adceeb9b..b023dadb7 100644 --- a/pkg/clients/listers/api/v1alpha1/router.go +++ b/pkg/clients/listers/api/v1alpha1/router.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/routerinterface.go b/pkg/clients/listers/api/v1alpha1/routerinterface.go index 0a3712f4c..7eca30afe 100644 --- a/pkg/clients/listers/api/v1alpha1/routerinterface.go +++ b/pkg/clients/listers/api/v1alpha1/routerinterface.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/securitygroup.go b/pkg/clients/listers/api/v1alpha1/securitygroup.go index 5868504a9..e88e6da92 100644 --- a/pkg/clients/listers/api/v1alpha1/securitygroup.go +++ b/pkg/clients/listers/api/v1alpha1/securitygroup.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/server.go b/pkg/clients/listers/api/v1alpha1/server.go index 66d769baa..0dbd0fde0 100644 --- a/pkg/clients/listers/api/v1alpha1/server.go +++ b/pkg/clients/listers/api/v1alpha1/server.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/servergroup.go b/pkg/clients/listers/api/v1alpha1/servergroup.go index a677d2564..a66237f79 100644 --- a/pkg/clients/listers/api/v1alpha1/servergroup.go +++ b/pkg/clients/listers/api/v1alpha1/servergroup.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/service.go b/pkg/clients/listers/api/v1alpha1/service.go index 46c571406..14af360ae 100644 --- a/pkg/clients/listers/api/v1alpha1/service.go +++ b/pkg/clients/listers/api/v1alpha1/service.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/sharenetwork.go b/pkg/clients/listers/api/v1alpha1/sharenetwork.go index 15c506d75..bab3524f4 100644 --- a/pkg/clients/listers/api/v1alpha1/sharenetwork.go +++ b/pkg/clients/listers/api/v1alpha1/sharenetwork.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/subnet.go b/pkg/clients/listers/api/v1alpha1/subnet.go index c1f916198..ec6f5066c 100644 --- a/pkg/clients/listers/api/v1alpha1/subnet.go +++ b/pkg/clients/listers/api/v1alpha1/subnet.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/trunk.go b/pkg/clients/listers/api/v1alpha1/trunk.go index bd1a34270..2c767e0f2 100644 --- a/pkg/clients/listers/api/v1alpha1/trunk.go +++ b/pkg/clients/listers/api/v1alpha1/trunk.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/user.go b/pkg/clients/listers/api/v1alpha1/user.go index 363b6a371..078049873 100644 --- a/pkg/clients/listers/api/v1alpha1/user.go +++ b/pkg/clients/listers/api/v1alpha1/user.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/volume.go b/pkg/clients/listers/api/v1alpha1/volume.go index 70d54efc5..2e40c1043 100644 --- a/pkg/clients/listers/api/v1alpha1/volume.go +++ b/pkg/clients/listers/api/v1alpha1/volume.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/clients/listers/api/v1alpha1/volumetype.go b/pkg/clients/listers/api/v1alpha1/volumetype.go index 3dcb8d773..60100f470 100644 --- a/pkg/clients/listers/api/v1alpha1/volumetype.go +++ b/pkg/clients/listers/api/v1alpha1/volumetype.go @@ -19,7 +19,7 @@ limitations under the License. package v1alpha1 import ( - apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" + apiv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" labels "k8s.io/apimachinery/pkg/labels" listers "k8s.io/client-go/listers" cache "k8s.io/client-go/tools/cache" diff --git a/pkg/predicates/attachment.go b/pkg/predicates/attachment.go index 50911416b..a91167773 100644 --- a/pkg/predicates/attachment.go +++ b/pkg/predicates/attachment.go @@ -25,8 +25,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/event" "sigs.k8s.io/controller-runtime/pkg/predicate" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" ) // newServerResourceChanged is a generic predicate factory that filters Server events based on diff --git a/pkg/predicates/readiness.go b/pkg/predicates/readiness.go index 9074763fd..35e808a25 100644 --- a/pkg/predicates/readiness.go +++ b/pkg/predicates/readiness.go @@ -24,8 +24,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/event" "sigs.k8s.io/controller-runtime/pkg/predicate" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/logging" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/logging" ) type availabilityChanged struct { diff --git a/test/apivalidations/addressscope_test.go b/test/apivalidations/addressscope_test.go index 2ac6246d9..9887f568c 100644 --- a/test/apivalidations/addressscope_test.go +++ b/test/apivalidations/addressscope_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/applicationcredential_test.go b/test/apivalidations/applicationcredential_test.go index 4b6bfc785..90ffa236c 100644 --- a/test/apivalidations/applicationcredential_test.go +++ b/test/apivalidations/applicationcredential_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/common_test.go b/test/apivalidations/common_test.go index 1234705aa..d2d602f28 100644 --- a/test/apivalidations/common_test.go +++ b/test/apivalidations/common_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) func testCredentials() *applyconfigv1alpha1.CloudCredentialsReferenceApplyConfiguration { diff --git a/test/apivalidations/domain_test.go b/test/apivalidations/domain_test.go index 4087a60ed..a962d0421 100644 --- a/test/apivalidations/domain_test.go +++ b/test/apivalidations/domain_test.go @@ -21,8 +21,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/endpoint_test.go b/test/apivalidations/endpoint_test.go index b648c66f1..15b4eaa1f 100644 --- a/test/apivalidations/endpoint_test.go +++ b/test/apivalidations/endpoint_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/flavor_test.go b/test/apivalidations/flavor_test.go index 847af3a15..c558a31b4 100644 --- a/test/apivalidations/flavor_test.go +++ b/test/apivalidations/flavor_test.go @@ -25,8 +25,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/floatingip_test.go b/test/apivalidations/floatingip_test.go index 58295cf2f..540080dbe 100644 --- a/test/apivalidations/floatingip_test.go +++ b/test/apivalidations/floatingip_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/group_test.go b/test/apivalidations/group_test.go index e322615ae..01a0eaac7 100644 --- a/test/apivalidations/group_test.go +++ b/test/apivalidations/group_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/image_test.go b/test/apivalidations/image_test.go index 3d192fb84..42ee83da4 100644 --- a/test/apivalidations/image_test.go +++ b/test/apivalidations/image_test.go @@ -26,8 +26,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/keypair_test.go b/test/apivalidations/keypair_test.go index bb0e9f618..be2fd5164 100644 --- a/test/apivalidations/keypair_test.go +++ b/test/apivalidations/keypair_test.go @@ -25,8 +25,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/network_test.go b/test/apivalidations/network_test.go index 7ca8e925e..5fb485cc5 100644 --- a/test/apivalidations/network_test.go +++ b/test/apivalidations/network_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/port_test.go b/test/apivalidations/port_test.go index b8fb5c074..7a7b6e961 100644 --- a/test/apivalidations/port_test.go +++ b/test/apivalidations/port_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/project_test.go b/test/apivalidations/project_test.go index 745a38400..e9c832784 100644 --- a/test/apivalidations/project_test.go +++ b/test/apivalidations/project_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/role_test.go b/test/apivalidations/role_test.go index 638dad6d1..815d09b92 100644 --- a/test/apivalidations/role_test.go +++ b/test/apivalidations/role_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/router_test.go b/test/apivalidations/router_test.go index f574b8afa..820ed6356 100644 --- a/test/apivalidations/router_test.go +++ b/test/apivalidations/router_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/routerinterface_test.go b/test/apivalidations/routerinterface_test.go index 85ad56c13..17f5a2854 100644 --- a/test/apivalidations/routerinterface_test.go +++ b/test/apivalidations/routerinterface_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/securitygroup_test.go b/test/apivalidations/securitygroup_test.go index d55ce6560..670bfbc7e 100644 --- a/test/apivalidations/securitygroup_test.go +++ b/test/apivalidations/securitygroup_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" "k8s.io/utils/ptr" ) diff --git a/test/apivalidations/server_test.go b/test/apivalidations/server_test.go index 9af650f79..8728de02d 100644 --- a/test/apivalidations/server_test.go +++ b/test/apivalidations/server_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/servergroup_test.go b/test/apivalidations/servergroup_test.go index 1e9252222..3437c0bb2 100644 --- a/test/apivalidations/servergroup_test.go +++ b/test/apivalidations/servergroup_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/service_test.go b/test/apivalidations/service_test.go index 4c6c0ca1a..d9f810a5a 100644 --- a/test/apivalidations/service_test.go +++ b/test/apivalidations/service_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/sharenetwork_test.go b/test/apivalidations/sharenetwork_test.go index e0bd45968..b1048954f 100644 --- a/test/apivalidations/sharenetwork_test.go +++ b/test/apivalidations/sharenetwork_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/subnet_test.go b/test/apivalidations/subnet_test.go index 7915de3c9..51561f9ce 100644 --- a/test/apivalidations/subnet_test.go +++ b/test/apivalidations/subnet_test.go @@ -23,8 +23,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/suite_test.go b/test/apivalidations/suite_test.go index 595c4a95f..72b10393b 100644 --- a/test/apivalidations/suite_test.go +++ b/test/apivalidations/suite_test.go @@ -40,8 +40,8 @@ import ( "sigs.k8s.io/controller-runtime/pkg/metrics/server" "sigs.k8s.io/controller-runtime/pkg/webhook" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/util/applyconfigs" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/util/applyconfigs" ) var ( diff --git a/test/apivalidations/trunk_test.go b/test/apivalidations/trunk_test.go index fba896ba9..0bf5f066c 100644 --- a/test/apivalidations/trunk_test.go +++ b/test/apivalidations/trunk_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/user_test.go b/test/apivalidations/user_test.go index 983c778ab..bfcc8fc42 100644 --- a/test/apivalidations/user_test.go +++ b/test/apivalidations/user_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/volume_test.go b/test/apivalidations/volume_test.go index 6bd5bed00..fb1f535f9 100644 --- a/test/apivalidations/volume_test.go +++ b/test/apivalidations/volume_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/apivalidations/volumetype_test.go b/test/apivalidations/volumetype_test.go index 08338b184..18c30d99c 100644 --- a/test/apivalidations/volumetype_test.go +++ b/test/apivalidations/volumetype_test.go @@ -24,8 +24,8 @@ import ( corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/client" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/pkg/clients/applyconfiguration/api/v1alpha1" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + applyconfigv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/pkg/clients/applyconfiguration/api/v1alpha1" ) const ( diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index f02f16d16..af9006030 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -24,7 +24,7 @@ import ( . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" - "github.com/k-orc/openstack-resource-controller/v2/test/utils" + "github.com/k-orc/openstack-resource-controller/v3/test/utils" ) const namespace = "orc-system" diff --git a/tools/orc-api-linter/go.mod b/tools/orc-api-linter/go.mod index 6151a1f16..2b0be0dab 100644 --- a/tools/orc-api-linter/go.mod +++ b/tools/orc-api-linter/go.mod @@ -1,4 +1,4 @@ -module github.com/k-orc/openstack-resource-controller/v2/tools/orc-api-linter +module github.com/k-orc/openstack-resource-controller/v3/tools/orc-api-linter go 1.24.0 diff --git a/tools/orc-api-linter/plugin.go b/tools/orc-api-linter/plugin.go index d7d0e22bb..645ae0db5 100644 --- a/tools/orc-api-linter/plugin.go +++ b/tools/orc-api-linter/plugin.go @@ -29,7 +29,7 @@ import ( _ "sigs.k8s.io/kube-api-linter/pkg/registration" // Import ORC-specific linters to register them with the registry. - _ "github.com/k-orc/openstack-resource-controller/v2/tools/orc-api-linter/pkg/analysis/noopenstackidref" + _ "github.com/k-orc/openstack-resource-controller/v3/tools/orc-api-linter/pkg/analysis/noopenstackidref" ) // New is the entrypoint for the plugin. diff --git a/website/docs/development/coding-standards.md b/website/docs/development/coding-standards.md index dd65aab99..ca1bbc660 100644 --- a/website/docs/development/coding-standards.md +++ b/website/docs/development/coding-standards.md @@ -127,8 +127,8 @@ import ( "github.com/gophercloud/gophercloud/v2/openstack/compute/v2/flavors" ctrl "sigs.k8s.io/controller-runtime" - orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v2/api/v1alpha1" - "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" + orcv1alpha1 "github.com/k-orc/openstack-resource-controller/v3/api/v1alpha1" + "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ) ``` diff --git a/website/docs/development/godoc/generic-interfaces.md b/website/docs/development/godoc/generic-interfaces.md index 2d0021572..5e3dcc33c 100644 --- a/website/docs/development/godoc/generic-interfaces.md +++ b/website/docs/development/godoc/generic-interfaces.md @@ -3,7 +3,7 @@ # interfaces ```go -import "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/interfaces" +import "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/interfaces" ``` ## Index diff --git a/website/docs/development/godoc/reconcile-status.md b/website/docs/development/godoc/reconcile-status.md index 92bf7c3c3..8c8bfbcaf 100644 --- a/website/docs/development/godoc/reconcile-status.md +++ b/website/docs/development/godoc/reconcile-status.md @@ -3,7 +3,7 @@ # progress ```go -import "github.com/k-orc/openstack-resource-controller/v2/internal/controllers/generic/progress" +import "github.com/k-orc/openstack-resource-controller/v3/internal/controllers/generic/progress" ``` ## Index