Build Information
Successful build of SwiftkubeModel, reference 0.14.0 (140c04
), with Swift 6.0 for Linux on 5 Nov 2024 08:09:12 UTC.
Swift 6 data race errors: 151
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
38 | static let coreV1PersistentVolumeClaim = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumeclaims")
39 | static let coreV1Pod = GroupVersionResource(group: "core", version: "v1", resource: "pods")
40 | static let coreV1PodTemplate = GroupVersionResource(group: "core", version: "v1", resource: "podtemplates")
| |- warning: static property 'coreV1PodTemplate' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1PodTemplate' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | static let coreV1ReplicationController = GroupVersionResource(group: "core", version: "v1", resource: "replicationcontrollers")
42 | static let coreV1ResourceQuota = GroupVersionResource(group: "core", version: "v1", resource: "resourcequotas")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:41:13: warning: static property 'coreV1ReplicationController' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
39 | static let coreV1Pod = GroupVersionResource(group: "core", version: "v1", resource: "pods")
40 | static let coreV1PodTemplate = GroupVersionResource(group: "core", version: "v1", resource: "podtemplates")
41 | static let coreV1ReplicationController = GroupVersionResource(group: "core", version: "v1", resource: "replicationcontrollers")
| |- warning: static property 'coreV1ReplicationController' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1ReplicationController' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 | static let coreV1ResourceQuota = GroupVersionResource(group: "core", version: "v1", resource: "resourcequotas")
43 | static let coreV1Secret = GroupVersionResource(group: "core", version: "v1", resource: "secrets")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:42:13: warning: static property 'coreV1ResourceQuota' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
40 | static let coreV1PodTemplate = GroupVersionResource(group: "core", version: "v1", resource: "podtemplates")
41 | static let coreV1ReplicationController = GroupVersionResource(group: "core", version: "v1", resource: "replicationcontrollers")
42 | static let coreV1ResourceQuota = GroupVersionResource(group: "core", version: "v1", resource: "resourcequotas")
| |- warning: static property 'coreV1ResourceQuota' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1ResourceQuota' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 | static let coreV1Secret = GroupVersionResource(group: "core", version: "v1", resource: "secrets")
44 | static let coreV1Service = GroupVersionResource(group: "core", version: "v1", resource: "services")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:43:13: warning: static property 'coreV1Secret' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
41 | static let coreV1ReplicationController = GroupVersionResource(group: "core", version: "v1", resource: "replicationcontrollers")
42 | static let coreV1ResourceQuota = GroupVersionResource(group: "core", version: "v1", resource: "resourcequotas")
43 | static let coreV1Secret = GroupVersionResource(group: "core", version: "v1", resource: "secrets")
| |- warning: static property 'coreV1Secret' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1Secret' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | static let coreV1Service = GroupVersionResource(group: "core", version: "v1", resource: "services")
45 | static let coreV1ServiceAccount = GroupVersionResource(group: "core", version: "v1", resource: "serviceaccounts")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:44:13: warning: static property 'coreV1Service' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
42 | static let coreV1ResourceQuota = GroupVersionResource(group: "core", version: "v1", resource: "resourcequotas")
43 | static let coreV1Secret = GroupVersionResource(group: "core", version: "v1", resource: "secrets")
44 | static let coreV1Service = GroupVersionResource(group: "core", version: "v1", resource: "services")
| |- warning: static property 'coreV1Service' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1Service' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 | static let coreV1ServiceAccount = GroupVersionResource(group: "core", version: "v1", resource: "serviceaccounts")
46 | static let admissionregistrationV1MutatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "mutatingwebhookconfigurations")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:45:13: warning: static property 'coreV1ServiceAccount' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
43 | static let coreV1Secret = GroupVersionResource(group: "core", version: "v1", resource: "secrets")
44 | static let coreV1Service = GroupVersionResource(group: "core", version: "v1", resource: "services")
45 | static let coreV1ServiceAccount = GroupVersionResource(group: "core", version: "v1", resource: "serviceaccounts")
| |- warning: static property 'coreV1ServiceAccount' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coreV1ServiceAccount' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | static let admissionregistrationV1MutatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "mutatingwebhookconfigurations")
47 | static let admissionregistrationV1ValidatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "validatingwebhookconfigurations")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:46:13: warning: static property 'admissionregistrationV1MutatingWebhookConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
44 | static let coreV1Service = GroupVersionResource(group: "core", version: "v1", resource: "services")
45 | static let coreV1ServiceAccount = GroupVersionResource(group: "core", version: "v1", resource: "serviceaccounts")
46 | static let admissionregistrationV1MutatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "mutatingwebhookconfigurations")
| |- warning: static property 'admissionregistrationV1MutatingWebhookConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1MutatingWebhookConfiguration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 | static let admissionregistrationV1ValidatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "validatingwebhookconfigurations")
48 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicies")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:47:13: warning: static property 'admissionregistrationV1ValidatingWebhookConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
45 | static let coreV1ServiceAccount = GroupVersionResource(group: "core", version: "v1", resource: "serviceaccounts")
46 | static let admissionregistrationV1MutatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "mutatingwebhookconfigurations")
47 | static let admissionregistrationV1ValidatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "validatingwebhookconfigurations")
| |- warning: static property 'admissionregistrationV1ValidatingWebhookConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1ValidatingWebhookConfiguration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicies")
49 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicybindings")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:48:13: warning: static property 'admissionregistrationV1Beta1ValidatingAdmissionPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
46 | static let admissionregistrationV1MutatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "mutatingwebhookconfigurations")
47 | static let admissionregistrationV1ValidatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "validatingwebhookconfigurations")
48 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicies")
| |- warning: static property 'admissionregistrationV1Beta1ValidatingAdmissionPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1Beta1ValidatingAdmissionPolicy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicybindings")
50 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicies")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:49:13: warning: static property 'admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
47 | static let admissionregistrationV1ValidatingWebhookConfiguration = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1", resource: "validatingwebhookconfigurations")
48 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicies")
49 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicybindings")
| |- warning: static property 'admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicies")
51 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicybindings")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:50:13: warning: static property 'admissionregistrationV1Alpha1ValidatingAdmissionPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
48 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicies")
49 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicybindings")
50 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicies")
| |- warning: static property 'admissionregistrationV1Alpha1ValidatingAdmissionPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1Alpha1ValidatingAdmissionPolicy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicybindings")
52 | static let apiextensionsV1CustomResourceDefinition = GroupVersionResource(group: "apiextensions.k8s.io", version: "v1", resource: "customresourcedefinitions")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:51:13: warning: static property 'admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
49 | static let admissionregistrationV1Beta1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1beta1", resource: "validatingadmissionpolicybindings")
50 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicies")
51 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicybindings")
| |- warning: static property 'admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | static let apiextensionsV1CustomResourceDefinition = GroupVersionResource(group: "apiextensions.k8s.io", version: "v1", resource: "customresourcedefinitions")
53 | static let apiregistrationV1APIService = GroupVersionResource(group: "apiregistration.k8s.io", version: "v1", resource: "apiservices")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:52:13: warning: static property 'apiextensionsV1CustomResourceDefinition' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
50 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicy = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicies")
51 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicybindings")
52 | static let apiextensionsV1CustomResourceDefinition = GroupVersionResource(group: "apiextensions.k8s.io", version: "v1", resource: "customresourcedefinitions")
| |- warning: static property 'apiextensionsV1CustomResourceDefinition' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'apiextensionsV1CustomResourceDefinition' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | static let apiregistrationV1APIService = GroupVersionResource(group: "apiregistration.k8s.io", version: "v1", resource: "apiservices")
54 | static let appsV1ControllerRevision = GroupVersionResource(group: "apps", version: "v1", resource: "controllerrevisions")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:53:13: warning: static property 'apiregistrationV1APIService' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
51 | static let admissionregistrationV1Alpha1ValidatingAdmissionPolicyBinding = GroupVersionResource(group: "admissionregistration.k8s.io", version: "v1alpha1", resource: "validatingadmissionpolicybindings")
52 | static let apiextensionsV1CustomResourceDefinition = GroupVersionResource(group: "apiextensions.k8s.io", version: "v1", resource: "customresourcedefinitions")
53 | static let apiregistrationV1APIService = GroupVersionResource(group: "apiregistration.k8s.io", version: "v1", resource: "apiservices")
| |- warning: static property 'apiregistrationV1APIService' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'apiregistrationV1APIService' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | static let appsV1ControllerRevision = GroupVersionResource(group: "apps", version: "v1", resource: "controllerrevisions")
55 | static let appsV1DaemonSet = GroupVersionResource(group: "apps", version: "v1", resource: "daemonsets")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:54:13: warning: static property 'appsV1ControllerRevision' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
52 | static let apiextensionsV1CustomResourceDefinition = GroupVersionResource(group: "apiextensions.k8s.io", version: "v1", resource: "customresourcedefinitions")
53 | static let apiregistrationV1APIService = GroupVersionResource(group: "apiregistration.k8s.io", version: "v1", resource: "apiservices")
54 | static let appsV1ControllerRevision = GroupVersionResource(group: "apps", version: "v1", resource: "controllerrevisions")
| |- warning: static property 'appsV1ControllerRevision' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'appsV1ControllerRevision' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | static let appsV1DaemonSet = GroupVersionResource(group: "apps", version: "v1", resource: "daemonsets")
56 | static let appsV1Deployment = GroupVersionResource(group: "apps", version: "v1", resource: "deployments")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:55:13: warning: static property 'appsV1DaemonSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
53 | static let apiregistrationV1APIService = GroupVersionResource(group: "apiregistration.k8s.io", version: "v1", resource: "apiservices")
54 | static let appsV1ControllerRevision = GroupVersionResource(group: "apps", version: "v1", resource: "controllerrevisions")
55 | static let appsV1DaemonSet = GroupVersionResource(group: "apps", version: "v1", resource: "daemonsets")
| |- warning: static property 'appsV1DaemonSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'appsV1DaemonSet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 | static let appsV1Deployment = GroupVersionResource(group: "apps", version: "v1", resource: "deployments")
57 | static let appsV1ReplicaSet = GroupVersionResource(group: "apps", version: "v1", resource: "replicasets")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:56:13: warning: static property 'appsV1Deployment' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
54 | static let appsV1ControllerRevision = GroupVersionResource(group: "apps", version: "v1", resource: "controllerrevisions")
55 | static let appsV1DaemonSet = GroupVersionResource(group: "apps", version: "v1", resource: "daemonsets")
56 | static let appsV1Deployment = GroupVersionResource(group: "apps", version: "v1", resource: "deployments")
| |- warning: static property 'appsV1Deployment' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'appsV1Deployment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | static let appsV1ReplicaSet = GroupVersionResource(group: "apps", version: "v1", resource: "replicasets")
58 | static let appsV1StatefulSet = GroupVersionResource(group: "apps", version: "v1", resource: "statefulsets")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:57:13: warning: static property 'appsV1ReplicaSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
55 | static let appsV1DaemonSet = GroupVersionResource(group: "apps", version: "v1", resource: "daemonsets")
56 | static let appsV1Deployment = GroupVersionResource(group: "apps", version: "v1", resource: "deployments")
57 | static let appsV1ReplicaSet = GroupVersionResource(group: "apps", version: "v1", resource: "replicasets")
| |- warning: static property 'appsV1ReplicaSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'appsV1ReplicaSet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | static let appsV1StatefulSet = GroupVersionResource(group: "apps", version: "v1", resource: "statefulsets")
59 | static let authenticationV1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "selfsubjectreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:58:13: warning: static property 'appsV1StatefulSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
56 | static let appsV1Deployment = GroupVersionResource(group: "apps", version: "v1", resource: "deployments")
57 | static let appsV1ReplicaSet = GroupVersionResource(group: "apps", version: "v1", resource: "replicasets")
58 | static let appsV1StatefulSet = GroupVersionResource(group: "apps", version: "v1", resource: "statefulsets")
| |- warning: static property 'appsV1StatefulSet' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'appsV1StatefulSet' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
59 | static let authenticationV1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "selfsubjectreviews")
60 | static let authenticationV1TokenRequest = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenrequests")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:59:13: warning: static property 'authenticationV1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
57 | static let appsV1ReplicaSet = GroupVersionResource(group: "apps", version: "v1", resource: "replicasets")
58 | static let appsV1StatefulSet = GroupVersionResource(group: "apps", version: "v1", resource: "statefulsets")
59 | static let authenticationV1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "selfsubjectreviews")
| |- warning: static property 'authenticationV1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationV1SelfSubjectReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | static let authenticationV1TokenRequest = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenrequests")
61 | static let authenticationV1TokenReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:60:13: warning: static property 'authenticationV1TokenRequest' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
58 | static let appsV1StatefulSet = GroupVersionResource(group: "apps", version: "v1", resource: "statefulsets")
59 | static let authenticationV1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "selfsubjectreviews")
60 | static let authenticationV1TokenRequest = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenrequests")
| |- warning: static property 'authenticationV1TokenRequest' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationV1TokenRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
61 | static let authenticationV1TokenReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenreviews")
62 | static let authenticationV1Beta1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1beta1", resource: "selfsubjectreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:61:13: warning: static property 'authenticationV1TokenReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
59 | static let authenticationV1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "selfsubjectreviews")
60 | static let authenticationV1TokenRequest = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenrequests")
61 | static let authenticationV1TokenReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenreviews")
| |- warning: static property 'authenticationV1TokenReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationV1TokenReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | static let authenticationV1Beta1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1beta1", resource: "selfsubjectreviews")
63 | static let authenticationV1Alpha1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1alpha1", resource: "selfsubjectreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:62:13: warning: static property 'authenticationV1Beta1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
60 | static let authenticationV1TokenRequest = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenrequests")
61 | static let authenticationV1TokenReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenreviews")
62 | static let authenticationV1Beta1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1beta1", resource: "selfsubjectreviews")
| |- warning: static property 'authenticationV1Beta1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationV1Beta1SelfSubjectReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | static let authenticationV1Alpha1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1alpha1", resource: "selfsubjectreviews")
64 | static let authorizationV1LocalSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "localsubjectaccessreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:63:13: warning: static property 'authenticationV1Alpha1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
61 | static let authenticationV1TokenReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1", resource: "tokenreviews")
62 | static let authenticationV1Beta1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1beta1", resource: "selfsubjectreviews")
63 | static let authenticationV1Alpha1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1alpha1", resource: "selfsubjectreviews")
| |- warning: static property 'authenticationV1Alpha1SelfSubjectReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authenticationV1Alpha1SelfSubjectReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 | static let authorizationV1LocalSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "localsubjectaccessreviews")
65 | static let authorizationV1SelfSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectaccessreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:64:13: warning: static property 'authorizationV1LocalSubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
62 | static let authenticationV1Beta1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1beta1", resource: "selfsubjectreviews")
63 | static let authenticationV1Alpha1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1alpha1", resource: "selfsubjectreviews")
64 | static let authorizationV1LocalSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "localsubjectaccessreviews")
| |- warning: static property 'authorizationV1LocalSubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authorizationV1LocalSubjectAccessReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | static let authorizationV1SelfSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectaccessreviews")
66 | static let authorizationV1SelfSubjectRulesReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectrulesreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:65:13: warning: static property 'authorizationV1SelfSubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
63 | static let authenticationV1Alpha1SelfSubjectReview = GroupVersionResource(group: "authentication.k8s.io", version: "v1alpha1", resource: "selfsubjectreviews")
64 | static let authorizationV1LocalSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "localsubjectaccessreviews")
65 | static let authorizationV1SelfSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectaccessreviews")
| |- warning: static property 'authorizationV1SelfSubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authorizationV1SelfSubjectAccessReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 | static let authorizationV1SelfSubjectRulesReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectrulesreviews")
67 | static let authorizationV1SubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "subjectaccessreviews")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:66:13: warning: static property 'authorizationV1SelfSubjectRulesReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
64 | static let authorizationV1LocalSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "localsubjectaccessreviews")
65 | static let authorizationV1SelfSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectaccessreviews")
66 | static let authorizationV1SelfSubjectRulesReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectrulesreviews")
| |- warning: static property 'authorizationV1SelfSubjectRulesReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authorizationV1SelfSubjectRulesReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | static let authorizationV1SubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "subjectaccessreviews")
68 | static let autoscalingV1HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v1", resource: "horizontalpodautoscalers")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:67:13: warning: static property 'authorizationV1SubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
65 | static let authorizationV1SelfSubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectaccessreviews")
66 | static let authorizationV1SelfSubjectRulesReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectrulesreviews")
67 | static let authorizationV1SubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "subjectaccessreviews")
| |- warning: static property 'authorizationV1SubjectAccessReview' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'authorizationV1SubjectAccessReview' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | static let autoscalingV1HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v1", resource: "horizontalpodautoscalers")
69 | static let autoscalingV2HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v2", resource: "horizontalpodautoscalers")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:68:13: warning: static property 'autoscalingV1HorizontalPodAutoscaler' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
66 | static let authorizationV1SelfSubjectRulesReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "selfsubjectrulesreviews")
67 | static let authorizationV1SubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "subjectaccessreviews")
68 | static let autoscalingV1HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v1", resource: "horizontalpodautoscalers")
| |- warning: static property 'autoscalingV1HorizontalPodAutoscaler' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'autoscalingV1HorizontalPodAutoscaler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | static let autoscalingV2HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v2", resource: "horizontalpodautoscalers")
70 | static let batchV1CronJob = GroupVersionResource(group: "batch", version: "v1", resource: "cronjobs")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:69:13: warning: static property 'autoscalingV2HorizontalPodAutoscaler' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
67 | static let authorizationV1SubjectAccessReview = GroupVersionResource(group: "authorization.k8s.io", version: "v1", resource: "subjectaccessreviews")
68 | static let autoscalingV1HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v1", resource: "horizontalpodautoscalers")
69 | static let autoscalingV2HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v2", resource: "horizontalpodautoscalers")
| |- warning: static property 'autoscalingV2HorizontalPodAutoscaler' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'autoscalingV2HorizontalPodAutoscaler' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | static let batchV1CronJob = GroupVersionResource(group: "batch", version: "v1", resource: "cronjobs")
71 | static let batchV1Job = GroupVersionResource(group: "batch", version: "v1", resource: "jobs")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:70:13: warning: static property 'batchV1CronJob' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
68 | static let autoscalingV1HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v1", resource: "horizontalpodautoscalers")
69 | static let autoscalingV2HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v2", resource: "horizontalpodautoscalers")
70 | static let batchV1CronJob = GroupVersionResource(group: "batch", version: "v1", resource: "cronjobs")
| |- warning: static property 'batchV1CronJob' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'batchV1CronJob' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | static let batchV1Job = GroupVersionResource(group: "batch", version: "v1", resource: "jobs")
72 | static let certificatesV1CertificateSigningRequest = GroupVersionResource(group: "certificates.k8s.io", version: "v1", resource: "certificatesigningrequests")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:71:13: warning: static property 'batchV1Job' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
69 | static let autoscalingV2HorizontalPodAutoscaler = GroupVersionResource(group: "autoscaling", version: "v2", resource: "horizontalpodautoscalers")
70 | static let batchV1CronJob = GroupVersionResource(group: "batch", version: "v1", resource: "cronjobs")
71 | static let batchV1Job = GroupVersionResource(group: "batch", version: "v1", resource: "jobs")
| |- warning: static property 'batchV1Job' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'batchV1Job' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | static let certificatesV1CertificateSigningRequest = GroupVersionResource(group: "certificates.k8s.io", version: "v1", resource: "certificatesigningrequests")
73 | static let certificatesV1Alpha1ClusterTrustBundle = GroupVersionResource(group: "certificates.k8s.io", version: "v1alpha1", resource: "clustertrusubundles")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:72:13: warning: static property 'certificatesV1CertificateSigningRequest' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
70 | static let batchV1CronJob = GroupVersionResource(group: "batch", version: "v1", resource: "cronjobs")
71 | static let batchV1Job = GroupVersionResource(group: "batch", version: "v1", resource: "jobs")
72 | static let certificatesV1CertificateSigningRequest = GroupVersionResource(group: "certificates.k8s.io", version: "v1", resource: "certificatesigningrequests")
| |- warning: static property 'certificatesV1CertificateSigningRequest' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'certificatesV1CertificateSigningRequest' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | static let certificatesV1Alpha1ClusterTrustBundle = GroupVersionResource(group: "certificates.k8s.io", version: "v1alpha1", resource: "clustertrusubundles")
74 | static let coordinationV1Lease = GroupVersionResource(group: "coordination.k8s.io", version: "v1", resource: "leases")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:73:13: warning: static property 'certificatesV1Alpha1ClusterTrustBundle' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
71 | static let batchV1Job = GroupVersionResource(group: "batch", version: "v1", resource: "jobs")
72 | static let certificatesV1CertificateSigningRequest = GroupVersionResource(group: "certificates.k8s.io", version: "v1", resource: "certificatesigningrequests")
73 | static let certificatesV1Alpha1ClusterTrustBundle = GroupVersionResource(group: "certificates.k8s.io", version: "v1alpha1", resource: "clustertrusubundles")
| |- warning: static property 'certificatesV1Alpha1ClusterTrustBundle' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'certificatesV1Alpha1ClusterTrustBundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 | static let coordinationV1Lease = GroupVersionResource(group: "coordination.k8s.io", version: "v1", resource: "leases")
75 | static let discoveryV1EndpointSlice = GroupVersionResource(group: "discovery.k8s.io", version: "v1", resource: "endpointslices")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:74:13: warning: static property 'coordinationV1Lease' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
72 | static let certificatesV1CertificateSigningRequest = GroupVersionResource(group: "certificates.k8s.io", version: "v1", resource: "certificatesigningrequests")
73 | static let certificatesV1Alpha1ClusterTrustBundle = GroupVersionResource(group: "certificates.k8s.io", version: "v1alpha1", resource: "clustertrusubundles")
74 | static let coordinationV1Lease = GroupVersionResource(group: "coordination.k8s.io", version: "v1", resource: "leases")
| |- warning: static property 'coordinationV1Lease' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'coordinationV1Lease' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
75 | static let discoveryV1EndpointSlice = GroupVersionResource(group: "discovery.k8s.io", version: "v1", resource: "endpointslices")
76 | static let eventsV1Event = GroupVersionResource(group: "events.k8s.io", version: "v1", resource: "events")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:75:13: warning: static property 'discoveryV1EndpointSlice' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
73 | static let certificatesV1Alpha1ClusterTrustBundle = GroupVersionResource(group: "certificates.k8s.io", version: "v1alpha1", resource: "clustertrusubundles")
74 | static let coordinationV1Lease = GroupVersionResource(group: "coordination.k8s.io", version: "v1", resource: "leases")
75 | static let discoveryV1EndpointSlice = GroupVersionResource(group: "discovery.k8s.io", version: "v1", resource: "endpointslices")
| |- warning: static property 'discoveryV1EndpointSlice' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'discoveryV1EndpointSlice' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | static let eventsV1Event = GroupVersionResource(group: "events.k8s.io", version: "v1", resource: "events")
77 | static let flowcontrolV1FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "flowschemas")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:76:13: warning: static property 'eventsV1Event' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
74 | static let coordinationV1Lease = GroupVersionResource(group: "coordination.k8s.io", version: "v1", resource: "leases")
75 | static let discoveryV1EndpointSlice = GroupVersionResource(group: "discovery.k8s.io", version: "v1", resource: "endpointslices")
76 | static let eventsV1Event = GroupVersionResource(group: "events.k8s.io", version: "v1", resource: "events")
| |- warning: static property 'eventsV1Event' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'eventsV1Event' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | static let flowcontrolV1FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "flowschemas")
78 | static let flowcontrolV1PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "prioritylevelconfigurations")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:77:13: warning: static property 'flowcontrolV1FlowSchema' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
75 | static let discoveryV1EndpointSlice = GroupVersionResource(group: "discovery.k8s.io", version: "v1", resource: "endpointslices")
76 | static let eventsV1Event = GroupVersionResource(group: "events.k8s.io", version: "v1", resource: "events")
77 | static let flowcontrolV1FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "flowschemas")
| |- warning: static property 'flowcontrolV1FlowSchema' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flowcontrolV1FlowSchema' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | static let flowcontrolV1PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "prioritylevelconfigurations")
79 | static let flowcontrolV1Beta3FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "flowschemas")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:78:13: warning: static property 'flowcontrolV1PriorityLevelConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
76 | static let eventsV1Event = GroupVersionResource(group: "events.k8s.io", version: "v1", resource: "events")
77 | static let flowcontrolV1FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "flowschemas")
78 | static let flowcontrolV1PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "prioritylevelconfigurations")
| |- warning: static property 'flowcontrolV1PriorityLevelConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flowcontrolV1PriorityLevelConfiguration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
79 | static let flowcontrolV1Beta3FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "flowschemas")
80 | static let flowcontrolV1Beta3PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "prioritylevelconfigurations")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:79:13: warning: static property 'flowcontrolV1Beta3FlowSchema' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
77 | static let flowcontrolV1FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "flowschemas")
78 | static let flowcontrolV1PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "prioritylevelconfigurations")
79 | static let flowcontrolV1Beta3FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "flowschemas")
| |- warning: static property 'flowcontrolV1Beta3FlowSchema' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flowcontrolV1Beta3FlowSchema' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | static let flowcontrolV1Beta3PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "prioritylevelconfigurations")
81 | static let internalV1Alpha1StorageVersion = GroupVersionResource(group: "internal.apiserver.k8s.io", version: "v1alpha1", resource: "storageversions")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:80:13: warning: static property 'flowcontrolV1Beta3PriorityLevelConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
78 | static let flowcontrolV1PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1", resource: "prioritylevelconfigurations")
79 | static let flowcontrolV1Beta3FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "flowschemas")
80 | static let flowcontrolV1Beta3PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "prioritylevelconfigurations")
| |- warning: static property 'flowcontrolV1Beta3PriorityLevelConfiguration' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'flowcontrolV1Beta3PriorityLevelConfiguration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 | static let internalV1Alpha1StorageVersion = GroupVersionResource(group: "internal.apiserver.k8s.io", version: "v1alpha1", resource: "storageversions")
82 | static let networkingV1Ingress = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingresses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:81:13: warning: static property 'internalV1Alpha1StorageVersion' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
79 | static let flowcontrolV1Beta3FlowSchema = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "flowschemas")
80 | static let flowcontrolV1Beta3PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "prioritylevelconfigurations")
81 | static let internalV1Alpha1StorageVersion = GroupVersionResource(group: "internal.apiserver.k8s.io", version: "v1alpha1", resource: "storageversions")
| |- warning: static property 'internalV1Alpha1StorageVersion' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'internalV1Alpha1StorageVersion' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | static let networkingV1Ingress = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingresses")
83 | static let networkingV1IngressClass = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingressclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:82:13: warning: static property 'networkingV1Ingress' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
80 | static let flowcontrolV1Beta3PriorityLevelConfiguration = GroupVersionResource(group: "flowcontrol.apiserver.k8s.io", version: "v1beta3", resource: "prioritylevelconfigurations")
81 | static let internalV1Alpha1StorageVersion = GroupVersionResource(group: "internal.apiserver.k8s.io", version: "v1alpha1", resource: "storageversions")
82 | static let networkingV1Ingress = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingresses")
| |- warning: static property 'networkingV1Ingress' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkingV1Ingress' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | static let networkingV1IngressClass = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingressclasses")
84 | static let networkingV1NetworkPolicy = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "networkpolicies")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:83:13: warning: static property 'networkingV1IngressClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
81 | static let internalV1Alpha1StorageVersion = GroupVersionResource(group: "internal.apiserver.k8s.io", version: "v1alpha1", resource: "storageversions")
82 | static let networkingV1Ingress = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingresses")
83 | static let networkingV1IngressClass = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingressclasses")
| |- warning: static property 'networkingV1IngressClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkingV1IngressClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | static let networkingV1NetworkPolicy = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "networkpolicies")
85 | static let networkingV1Alpha1IPAddress = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "ipaddresses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:84:13: warning: static property 'networkingV1NetworkPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
82 | static let networkingV1Ingress = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingresses")
83 | static let networkingV1IngressClass = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingressclasses")
84 | static let networkingV1NetworkPolicy = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "networkpolicies")
| |- warning: static property 'networkingV1NetworkPolicy' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkingV1NetworkPolicy' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | static let networkingV1Alpha1IPAddress = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "ipaddresses")
86 | static let networkingV1Alpha1ServiceCIDR = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "servicecidrs")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:85:13: warning: static property 'networkingV1Alpha1IPAddress' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
83 | static let networkingV1IngressClass = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "ingressclasses")
84 | static let networkingV1NetworkPolicy = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "networkpolicies")
85 | static let networkingV1Alpha1IPAddress = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "ipaddresses")
| |- warning: static property 'networkingV1Alpha1IPAddress' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkingV1Alpha1IPAddress' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | static let networkingV1Alpha1ServiceCIDR = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "servicecidrs")
87 | static let nodeV1RuntimeClass = GroupVersionResource(group: "node.k8s.io", version: "v1", resource: "runtimeclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:86:13: warning: static property 'networkingV1Alpha1ServiceCIDR' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
84 | static let networkingV1NetworkPolicy = GroupVersionResource(group: "networking.k8s.io", version: "v1", resource: "networkpolicies")
85 | static let networkingV1Alpha1IPAddress = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "ipaddresses")
86 | static let networkingV1Alpha1ServiceCIDR = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "servicecidrs")
| |- warning: static property 'networkingV1Alpha1ServiceCIDR' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'networkingV1Alpha1ServiceCIDR' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | static let nodeV1RuntimeClass = GroupVersionResource(group: "node.k8s.io", version: "v1", resource: "runtimeclasses")
88 | static let policyV1PodDisruptionBudget = GroupVersionResource(group: "policy", version: "v1", resource: "poddisruptionbudgets")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:87:13: warning: static property 'nodeV1RuntimeClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
85 | static let networkingV1Alpha1IPAddress = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "ipaddresses")
86 | static let networkingV1Alpha1ServiceCIDR = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "servicecidrs")
87 | static let nodeV1RuntimeClass = GroupVersionResource(group: "node.k8s.io", version: "v1", resource: "runtimeclasses")
| |- warning: static property 'nodeV1RuntimeClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nodeV1RuntimeClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | static let policyV1PodDisruptionBudget = GroupVersionResource(group: "policy", version: "v1", resource: "poddisruptionbudgets")
89 | static let rbacV1ClusterRole = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterroles")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:88:13: warning: static property 'policyV1PodDisruptionBudget' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
86 | static let networkingV1Alpha1ServiceCIDR = GroupVersionResource(group: "networking.k8s.io", version: "v1alpha1", resource: "servicecidrs")
87 | static let nodeV1RuntimeClass = GroupVersionResource(group: "node.k8s.io", version: "v1", resource: "runtimeclasses")
88 | static let policyV1PodDisruptionBudget = GroupVersionResource(group: "policy", version: "v1", resource: "poddisruptionbudgets")
| |- warning: static property 'policyV1PodDisruptionBudget' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'policyV1PodDisruptionBudget' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 | static let rbacV1ClusterRole = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterroles")
90 | static let rbacV1ClusterRoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterrolebindings")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:89:13: warning: static property 'rbacV1ClusterRole' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
87 | static let nodeV1RuntimeClass = GroupVersionResource(group: "node.k8s.io", version: "v1", resource: "runtimeclasses")
88 | static let policyV1PodDisruptionBudget = GroupVersionResource(group: "policy", version: "v1", resource: "poddisruptionbudgets")
89 | static let rbacV1ClusterRole = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterroles")
| |- warning: static property 'rbacV1ClusterRole' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rbacV1ClusterRole' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
90 | static let rbacV1ClusterRoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterrolebindings")
91 | static let rbacV1Role = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "roles")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:90:13: warning: static property 'rbacV1ClusterRoleBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
88 | static let policyV1PodDisruptionBudget = GroupVersionResource(group: "policy", version: "v1", resource: "poddisruptionbudgets")
89 | static let rbacV1ClusterRole = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterroles")
90 | static let rbacV1ClusterRoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterrolebindings")
| |- warning: static property 'rbacV1ClusterRoleBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rbacV1ClusterRoleBinding' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 | static let rbacV1Role = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "roles")
92 | static let rbacV1RoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "rolebindings")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:91:13: warning: static property 'rbacV1Role' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
89 | static let rbacV1ClusterRole = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterroles")
90 | static let rbacV1ClusterRoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterrolebindings")
91 | static let rbacV1Role = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "roles")
| |- warning: static property 'rbacV1Role' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rbacV1Role' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
92 | static let rbacV1RoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "rolebindings")
93 | static let resourceV1Alpha2PodSchedulingContext = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "podschedulingcontexts")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:92:13: warning: static property 'rbacV1RoleBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
90 | static let rbacV1ClusterRoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "clusterrolebindings")
91 | static let rbacV1Role = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "roles")
92 | static let rbacV1RoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "rolebindings")
| |- warning: static property 'rbacV1RoleBinding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'rbacV1RoleBinding' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 | static let resourceV1Alpha2PodSchedulingContext = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "podschedulingcontexts")
94 | static let resourceV1Alpha2ResourceClaim = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaims")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:93:13: warning: static property 'resourceV1Alpha2PodSchedulingContext' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
91 | static let rbacV1Role = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "roles")
92 | static let rbacV1RoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "rolebindings")
93 | static let resourceV1Alpha2PodSchedulingContext = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "podschedulingcontexts")
| |- warning: static property 'resourceV1Alpha2PodSchedulingContext' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'resourceV1Alpha2PodSchedulingContext' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | static let resourceV1Alpha2ResourceClaim = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaims")
95 | static let resourceV1Alpha2ResourceClaimTemplate = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaimtemplates")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:94:13: warning: static property 'resourceV1Alpha2ResourceClaim' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
92 | static let rbacV1RoleBinding = GroupVersionResource(group: "rbac.authorization.k8s.io", version: "v1", resource: "rolebindings")
93 | static let resourceV1Alpha2PodSchedulingContext = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "podschedulingcontexts")
94 | static let resourceV1Alpha2ResourceClaim = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaims")
| |- warning: static property 'resourceV1Alpha2ResourceClaim' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'resourceV1Alpha2ResourceClaim' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 | static let resourceV1Alpha2ResourceClaimTemplate = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaimtemplates")
96 | static let resourceV1Alpha2ResourceClass = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:95:13: warning: static property 'resourceV1Alpha2ResourceClaimTemplate' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
93 | static let resourceV1Alpha2PodSchedulingContext = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "podschedulingcontexts")
94 | static let resourceV1Alpha2ResourceClaim = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaims")
95 | static let resourceV1Alpha2ResourceClaimTemplate = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaimtemplates")
| |- warning: static property 'resourceV1Alpha2ResourceClaimTemplate' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'resourceV1Alpha2ResourceClaimTemplate' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
96 | static let resourceV1Alpha2ResourceClass = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclasses")
97 | static let schedulingV1PriorityClass = GroupVersionResource(group: "scheduling.k8s.io", version: "v1", resource: "priorityclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:96:13: warning: static property 'resourceV1Alpha2ResourceClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
94 | static let resourceV1Alpha2ResourceClaim = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaims")
95 | static let resourceV1Alpha2ResourceClaimTemplate = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaimtemplates")
96 | static let resourceV1Alpha2ResourceClass = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclasses")
| |- warning: static property 'resourceV1Alpha2ResourceClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'resourceV1Alpha2ResourceClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 | static let schedulingV1PriorityClass = GroupVersionResource(group: "scheduling.k8s.io", version: "v1", resource: "priorityclasses")
98 | static let storageV1CSIDriver = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csidrivers")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:97:13: warning: static property 'schedulingV1PriorityClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
95 | static let resourceV1Alpha2ResourceClaimTemplate = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclaimtemplates")
96 | static let resourceV1Alpha2ResourceClass = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclasses")
97 | static let schedulingV1PriorityClass = GroupVersionResource(group: "scheduling.k8s.io", version: "v1", resource: "priorityclasses")
| |- warning: static property 'schedulingV1PriorityClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'schedulingV1PriorityClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
98 | static let storageV1CSIDriver = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csidrivers")
99 | static let storageV1CSINode = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csinodes")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:98:13: warning: static property 'storageV1CSIDriver' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
96 | static let resourceV1Alpha2ResourceClass = GroupVersionResource(group: "resource.k8s.io", version: "v1alpha2", resource: "resourceclasses")
97 | static let schedulingV1PriorityClass = GroupVersionResource(group: "scheduling.k8s.io", version: "v1", resource: "priorityclasses")
98 | static let storageV1CSIDriver = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csidrivers")
| |- warning: static property 'storageV1CSIDriver' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1CSIDriver' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | static let storageV1CSINode = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csinodes")
100 | static let storageV1CSIStorageCapacity = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csistoragecapacities")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:99:13: warning: static property 'storageV1CSINode' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
97 | static let schedulingV1PriorityClass = GroupVersionResource(group: "scheduling.k8s.io", version: "v1", resource: "priorityclasses")
98 | static let storageV1CSIDriver = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csidrivers")
99 | static let storageV1CSINode = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csinodes")
| |- warning: static property 'storageV1CSINode' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1CSINode' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | static let storageV1CSIStorageCapacity = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csistoragecapacities")
101 | static let storageV1StorageClass = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "storageclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:100:13: warning: static property 'storageV1CSIStorageCapacity' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
98 | static let storageV1CSIDriver = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csidrivers")
99 | static let storageV1CSINode = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csinodes")
100 | static let storageV1CSIStorageCapacity = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csistoragecapacities")
| |- warning: static property 'storageV1CSIStorageCapacity' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1CSIStorageCapacity' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | static let storageV1StorageClass = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "storageclasses")
102 | static let storageV1VolumeAttachment = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "volumeattachments")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:101:13: warning: static property 'storageV1StorageClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
99 | static let storageV1CSINode = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csinodes")
100 | static let storageV1CSIStorageCapacity = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csistoragecapacities")
101 | static let storageV1StorageClass = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "storageclasses")
| |- warning: static property 'storageV1StorageClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1StorageClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | static let storageV1VolumeAttachment = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "volumeattachments")
103 | static let storageV1Alpha1VolumeAttributesClass = GroupVersionResource(group: "storage.k8s.io", version: "v1alpha1", resource: "volumeattributesclasses")
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:102:13: warning: static property 'storageV1VolumeAttachment' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
100 | static let storageV1CSIStorageCapacity = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "csistoragecapacities")
101 | static let storageV1StorageClass = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "storageclasses")
102 | static let storageV1VolumeAttachment = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "volumeattachments")
| |- warning: static property 'storageV1VolumeAttachment' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1VolumeAttachment' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 | static let storageV1Alpha1VolumeAttributesClass = GroupVersionResource(group: "storage.k8s.io", version: "v1alpha1", resource: "volumeattributesclasses")
104 | }
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:103:13: warning: static property 'storageV1Alpha1VolumeAttributesClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
101 | static let storageV1StorageClass = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "storageclasses")
102 | static let storageV1VolumeAttachment = GroupVersionResource(group: "storage.k8s.io", version: "v1", resource: "volumeattachments")
103 | static let storageV1Alpha1VolumeAttributesClass = GroupVersionResource(group: "storage.k8s.io", version: "v1alpha1", resource: "volumeattributesclasses")
| |- warning: static property 'storageV1Alpha1VolumeAttributesClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'storageV1Alpha1VolumeAttributesClass' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 | }
105 |
/host/spi-builder-workspace/Sources/Model/GroupVersionResource.swift:24:15: note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
22 | /// GroupVersionResource unambiguously identifies a resource.
23 | ///
24 | public struct GroupVersionResource: Hashable, Codable {
| `- note: consider making struct 'GroupVersionResource' conform to the 'Sendable' protocol
25 | /// The group of the resource.
26 | public let group: String
/host/spi-builder-workspace/Sources/Model/Quantity.swift:90:5: warning: var 'decimalSIKeyPairFriendly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
88 |
89 | let binarySIKeyPairFriendly = Array(binarySIKeyPair.reversed())
90 | var decimalSIKeyPairFriendly = Array((decimalSIKeyPairNegative.reversed() + decimalSIKeyPairPositive).reversed())
| |- warning: var 'decimalSIKeyPairFriendly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decimalSIKeyPairFriendly' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'decimalSIKeyPairFriendly' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | // MARK: - Quantity
[274/465] Compiling SwiftkubeModel authorization+v1.swift
[275/465] Compiling SwiftkubeModel autoscaling.swift
[276/465] Compiling SwiftkubeModel CrossVersionObjectReference+autoscaling.v1.swift
[277/465] Compiling SwiftkubeModel HorizontalPodAutoscaler+autoscaling.v1.swift
[278/465] Compiling SwiftkubeModel HorizontalPodAutoscalerList+autoscaling.v1.swift
[279/465] Compiling SwiftkubeModel HorizontalPodAutoscalerSpec+autoscaling.v1.swift
[280/465] Compiling SwiftkubeModel HorizontalPodAutoscalerStatus+autoscaling.v1.swift
[281/465] Compiling SwiftkubeModel Scale+autoscaling.v1.swift
[282/465] Compiling SwiftkubeModel ScaleSpec+autoscaling.v1.swift
[283/465] Compiling SwiftkubeModel ScaleStatus+autoscaling.v1.swift
[284/465] Compiling SwiftkubeModel autoscaling+v1.swift
[285/465] Compiling SwiftkubeModel ContainerResourceMetricSource+autoscaling.v2.swift
[286/465] Compiling SwiftkubeModel ContainerResourceMetricStatus+autoscaling.v2.swift
[287/465] Compiling SwiftkubeModel CrossVersionObjectReference+autoscaling.v2.swift
[288/465] Compiling SwiftkubeModel ExternalMetricSource+autoscaling.v2.swift
[289/465] Compiling SwiftkubeModel ExternalMetricStatus+autoscaling.v2.swift
[290/465] Compiling SwiftkubeModel HPAScalingPolicy+autoscaling.v2.swift
[291/465] Compiling SwiftkubeModel HPAScalingRules+autoscaling.v2.swift
[292/465] Compiling SwiftkubeModel HorizontalPodAutoscaler+autoscaling.v2.swift
[293/465] Compiling SwiftkubeModel HorizontalPodAutoscalerBehavior+autoscaling.v2.swift
[294/465] Compiling SwiftkubeModel HorizontalPodAutoscalerCondition+autoscaling.v2.swift
[295/465] Compiling SwiftkubeModel HorizontalPodAutoscalerList+autoscaling.v2.swift
[296/465] Compiling SwiftkubeModel HorizontalPodAutoscalerSpec+autoscaling.v2.swift
[297/465] Compiling SwiftkubeModel HorizontalPodAutoscalerStatus+autoscaling.v2.swift
[298/465] Compiling SwiftkubeModel MetricIdentifier+autoscaling.v2.swift
[299/465] Compiling SwiftkubeModel MetricSpec+autoscaling.v2.swift
[300/465] Compiling SwiftkubeModel MetricStatus+autoscaling.v2.swift
[301/465] Compiling SwiftkubeModel MetricTarget+autoscaling.v2.swift
[302/465] Compiling SwiftkubeModel MetricValueStatus+autoscaling.v2.swift
[303/465] Compiling SwiftkubeModel ObjectMetricSource+autoscaling.v2.swift
[304/465] Compiling SwiftkubeModel ObjectMetricStatus+autoscaling.v2.swift
[305/465] Compiling SwiftkubeModel PodsMetricSource+autoscaling.v2.swift
[306/465] Compiling SwiftkubeModel PodsMetricStatus+autoscaling.v2.swift
[307/465] Compiling SwiftkubeModel ResourceMetricSource+autoscaling.v2.swift
[308/465] Compiling SwiftkubeModel ResourceMetricStatus+autoscaling.v2.swift
[309/465] Compiling SwiftkubeModel autoscaling+v2.swift
[310/465] Compiling SwiftkubeModel batch.swift
[311/465] Compiling SwiftkubeModel CronJob+batch.v1.swift
[312/465] Compiling SwiftkubeModel CronJobList+batch.v1.swift
[313/465] Compiling SwiftkubeModel CronJobSpec+batch.v1.swift
[314/465] Compiling SwiftkubeModel CronJobStatus+batch.v1.swift
[315/465] Compiling SwiftkubeModel Job+batch.v1.swift
[316/465] Compiling SwiftkubeModel JobCondition+batch.v1.swift
[317/465] Compiling SwiftkubeModel JobList+batch.v1.swift
[318/465] Compiling SwiftkubeModel JobSpec+batch.v1.swift
[319/465] Compiling SwiftkubeModel JobStatus+batch.v1.swift
[320/465] Compiling SwiftkubeModel JobTemplateSpec+batch.v1.swift
[321/465] Compiling SwiftkubeModel PodFailurePolicy+batch.v1.swift
[322/513] Compiling SwiftkubeModel ConfigMapVolumeSource+core.v1.swift
[323/513] Compiling SwiftkubeModel Container+core.v1.swift
[324/513] Compiling SwiftkubeModel ContainerImage+core.v1.swift
[325/513] Compiling SwiftkubeModel ContainerPort+core.v1.swift
[326/513] Compiling SwiftkubeModel ContainerResizePolicy+core.v1.swift
[327/513] Compiling SwiftkubeModel ContainerState+core.v1.swift
[328/513] Compiling SwiftkubeModel ContainerStateRunning+core.v1.swift
[329/513] Compiling SwiftkubeModel ContainerStateTerminated+core.v1.swift
[330/513] Compiling SwiftkubeModel ContainerStateWaiting+core.v1.swift
[331/513] Compiling SwiftkubeModel ContainerStatus+core.v1.swift
[332/513] Compiling SwiftkubeModel DaemonEndpoint+core.v1.swift
[333/513] Compiling SwiftkubeModel DownwardAPIProjection+core.v1.swift
[334/513] Compiling SwiftkubeModel DownwardAPIVolumeFile+core.v1.swift
[335/513] Compiling SwiftkubeModel DownwardAPIVolumeSource+core.v1.swift
[336/513] Compiling SwiftkubeModel EmptyDirVolumeSource+core.v1.swift
[337/513] Compiling SwiftkubeModel EndpointAddress+core.v1.swift
[338/513] Compiling SwiftkubeModel EndpointPort+core.v1.swift
[339/513] Compiling SwiftkubeModel EndpointSubset+core.v1.swift
[340/513] Compiling SwiftkubeModel Endpoints+core.v1.swift
[341/513] Compiling SwiftkubeModel EndpointsList+core.v1.swift
[342/513] Compiling SwiftkubeModel EnvFromSource+core.v1.swift
[343/513] Compiling SwiftkubeModel EnvVar+core.v1.swift
[344/513] Compiling SwiftkubeModel EnvVarSource+core.v1.swift
[345/513] Compiling SwiftkubeModel EphemeralContainer+core.v1.swift
[346/537] Compiling SwiftkubeModel VolumeDevice+core.v1.swift
[347/537] Compiling SwiftkubeModel VolumeMount+core.v1.swift
[348/537] Compiling SwiftkubeModel VolumeNodeAffinity+core.v1.swift
[349/537] Compiling SwiftkubeModel VolumeProjection+core.v1.swift
[350/537] Compiling SwiftkubeModel VolumeResourceRequirements+core.v1.swift
[351/537] Compiling SwiftkubeModel VsphereVirtualDiskVolumeSource+core.v1.swift
[352/537] Compiling SwiftkubeModel WeightedPodAffinityTerm+core.v1.swift
[353/537] Compiling SwiftkubeModel WindowsSecurityContextOptions+core.v1.swift
[354/537] Compiling SwiftkubeModel core+v1.swift
[355/537] Compiling SwiftkubeModel discovery.swift
[356/537] Compiling SwiftkubeModel Endpoint+discovery.v1.swift
[357/537] Compiling SwiftkubeModel EndpointConditions+discovery.v1.swift
[358/537] Compiling SwiftkubeModel EndpointHints+discovery.v1.swift
[359/537] Compiling SwiftkubeModel EndpointPort+discovery.v1.swift
[360/537] Compiling SwiftkubeModel EndpointSlice+discovery.v1.swift
[361/537] Compiling SwiftkubeModel EndpointSliceList+discovery.v1.swift
[362/537] Compiling SwiftkubeModel ForZone+discovery.v1.swift
[363/537] Compiling SwiftkubeModel discovery+v1.swift
[364/537] Compiling SwiftkubeModel events.swift
[365/537] Compiling SwiftkubeModel Event+events.v1.swift
[366/537] Compiling SwiftkubeModel EventList+events.v1.swift
[367/537] Compiling SwiftkubeModel EventSeries+events.v1.swift
[368/537] Compiling SwiftkubeModel events+v1.swift
[369/537] Compiling SwiftkubeModel flowcontrol.swift
[370/561] Compiling SwiftkubeModel ExemptPriorityLevelConfiguration+flowcontrol.v1.swift
[371/561] Compiling SwiftkubeModel FlowDistinguisherMethod+flowcontrol.v1.swift
[372/561] Compiling SwiftkubeModel FlowSchema+flowcontrol.v1.swift
[373/561] Compiling SwiftkubeModel FlowSchemaCondition+flowcontrol.v1.swift
[374/561] Compiling SwiftkubeModel FlowSchemaList+flowcontrol.v1.swift
[375/561] Compiling SwiftkubeModel FlowSchemaSpec+flowcontrol.v1.swift
[376/561] Compiling SwiftkubeModel FlowSchemaStatus+flowcontrol.v1.swift
[377/561] Compiling SwiftkubeModel GroupSubject+flowcontrol.v1.swift
[378/561] Compiling SwiftkubeModel LimitResponse+flowcontrol.v1.swift
[379/561] Compiling SwiftkubeModel LimitedPriorityLevelConfiguration+flowcontrol.v1.swift
[380/561] Compiling SwiftkubeModel NonResourcePolicyRule+flowcontrol.v1.swift
[381/561] Compiling SwiftkubeModel PolicyRulesWithSubjects+flowcontrol.v1.swift
[382/561] Compiling SwiftkubeModel PriorityLevelConfiguration+flowcontrol.v1.swift
[383/561] Compiling SwiftkubeModel PriorityLevelConfigurationCondition+flowcontrol.v1.swift
[384/561] Compiling SwiftkubeModel PriorityLevelConfigurationList+flowcontrol.v1.swift
[385/561] Compiling SwiftkubeModel PriorityLevelConfigurationReference+flowcontrol.v1.swift
[386/561] Compiling SwiftkubeModel PriorityLevelConfigurationSpec+flowcontrol.v1.swift
[387/561] Compiling SwiftkubeModel PriorityLevelConfigurationStatus+flowcontrol.v1.swift
[388/561] Compiling SwiftkubeModel QueuingConfiguration+flowcontrol.v1.swift
[389/561] Compiling SwiftkubeModel ResourcePolicyRule+flowcontrol.v1.swift
[390/561] Compiling SwiftkubeModel ServiceAccountSubject+flowcontrol.v1.swift
[391/561] Compiling SwiftkubeModel Subject+flowcontrol.v1.swift
[392/561] Compiling SwiftkubeModel UserSubject+flowcontrol.v1.swift
[393/561] Compiling SwiftkubeModel flowcontrol+v1.swift
[394/585] Compiling SwiftkubeModel NodeSelector+core.v1.swift
[395/585] Compiling SwiftkubeModel NodeSelectorRequirement+core.v1.swift
[396/585] Compiling SwiftkubeModel NodeSelectorTerm+core.v1.swift
[397/585] Compiling SwiftkubeModel NodeSpec+core.v1.swift
[398/585] Compiling SwiftkubeModel NodeStatus+core.v1.swift
[399/585] Compiling SwiftkubeModel NodeSystemInfo+core.v1.swift
[400/585] Compiling SwiftkubeModel ObjectFieldSelector+core.v1.swift
[401/585] Compiling SwiftkubeModel ObjectReference+core.v1.swift
[402/585] Compiling SwiftkubeModel PersistentVolume+core.v1.swift
[403/585] Compiling SwiftkubeModel PersistentVolumeClaim+core.v1.swift
[404/585] Compiling SwiftkubeModel PersistentVolumeClaimCondition+core.v1.swift
[405/585] Compiling SwiftkubeModel PersistentVolumeClaimList+core.v1.swift
[406/585] Compiling SwiftkubeModel PersistentVolumeClaimSpec+core.v1.swift
[407/585] Compiling SwiftkubeModel PersistentVolumeClaimStatus+core.v1.swift
[408/585] Compiling SwiftkubeModel PersistentVolumeClaimTemplate+core.v1.swift
[409/585] Compiling SwiftkubeModel PersistentVolumeClaimVolumeSource+core.v1.swift
[410/585] Compiling SwiftkubeModel PersistentVolumeList+core.v1.swift
[411/585] Compiling SwiftkubeModel PersistentVolumeSpec+core.v1.swift
[412/585] Compiling SwiftkubeModel PersistentVolumeStatus+core.v1.swift
[413/585] Compiling SwiftkubeModel PhotonPersistentDiskVolumeSource+core.v1.swift
[414/585] Compiling SwiftkubeModel Pod+core.v1.swift
[415/585] Compiling SwiftkubeModel PodAffinity+core.v1.swift
[416/585] Compiling SwiftkubeModel PodAffinityTerm+core.v1.swift
[417/585] Compiling SwiftkubeModel PodAntiAffinity+core.v1.swift
[418/609] Compiling SwiftkubeModel ExemptPriorityLevelConfiguration+flowcontrol.v1beta3.swift
[419/609] Compiling SwiftkubeModel FlowDistinguisherMethod+flowcontrol.v1beta3.swift
[420/609] Compiling SwiftkubeModel FlowSchema+flowcontrol.v1beta3.swift
[421/609] Compiling SwiftkubeModel FlowSchemaCondition+flowcontrol.v1beta3.swift
[422/609] Compiling SwiftkubeModel FlowSchemaList+flowcontrol.v1beta3.swift
[423/609] Compiling SwiftkubeModel FlowSchemaSpec+flowcontrol.v1beta3.swift
[424/609] Compiling SwiftkubeModel FlowSchemaStatus+flowcontrol.v1beta3.swift
[425/609] Compiling SwiftkubeModel GroupSubject+flowcontrol.v1beta3.swift
[426/609] Compiling SwiftkubeModel LimitResponse+flowcontrol.v1beta3.swift
[427/609] Compiling SwiftkubeModel LimitedPriorityLevelConfiguration+flowcontrol.v1beta3.swift
[428/609] Compiling SwiftkubeModel NonResourcePolicyRule+flowcontrol.v1beta3.swift
[429/609] Compiling SwiftkubeModel PolicyRulesWithSubjects+flowcontrol.v1beta3.swift
[430/609] Compiling SwiftkubeModel PriorityLevelConfiguration+flowcontrol.v1beta3.swift
[431/609] Compiling SwiftkubeModel PriorityLevelConfigurationCondition+flowcontrol.v1beta3.swift
[432/609] Compiling SwiftkubeModel PriorityLevelConfigurationList+flowcontrol.v1beta3.swift
[433/609] Compiling SwiftkubeModel PriorityLevelConfigurationReference+flowcontrol.v1beta3.swift
[434/609] Compiling SwiftkubeModel PriorityLevelConfigurationSpec+flowcontrol.v1beta3.swift
[435/609] Compiling SwiftkubeModel PriorityLevelConfigurationStatus+flowcontrol.v1beta3.swift
[436/609] Compiling SwiftkubeModel QueuingConfiguration+flowcontrol.v1beta3.swift
[437/609] Compiling SwiftkubeModel ResourcePolicyRule+flowcontrol.v1beta3.swift
[438/609] Compiling SwiftkubeModel ServiceAccountSubject+flowcontrol.v1beta3.swift
[439/609] Compiling SwiftkubeModel Subject+flowcontrol.v1beta3.swift
[440/609] Compiling SwiftkubeModel UserSubject+flowcontrol.v1beta3.swift
[441/609] Compiling SwiftkubeModel flowcontrol+v1beta3.swift
[442/633] Compiling SwiftkubeModel internal.swift
[443/633] Compiling SwiftkubeModel ServerStorageVersion+internal.v1alpha1.swift
[444/633] Compiling SwiftkubeModel StorageVersion+internal.v1alpha1.swift
[445/633] Compiling SwiftkubeModel StorageVersionCondition+internal.v1alpha1.swift
[446/633] Compiling SwiftkubeModel StorageVersionList+internal.v1alpha1.swift
[447/633] Compiling SwiftkubeModel StorageVersionSpec+internal.v1alpha1.swift
[448/633] Compiling SwiftkubeModel StorageVersionStatus+internal.v1alpha1.swift
[449/633] Compiling SwiftkubeModel internal+v1alpha1.swift
[450/633] Compiling SwiftkubeModel meta.swift
[451/633] Compiling SwiftkubeModel APIGroup+meta.v1.swift
[452/633] Compiling SwiftkubeModel APIGroupList+meta.v1.swift
[453/633] Compiling SwiftkubeModel APIResource+meta.v1.swift
[454/633] Compiling SwiftkubeModel APIResourceList+meta.v1.swift
[455/633] Compiling SwiftkubeModel APIVersions+meta.v1.swift
[456/633] Compiling SwiftkubeModel Condition+meta.v1.swift
[457/633] Compiling SwiftkubeModel DeleteOptions+meta.v1.swift
[458/633] Compiling SwiftkubeModel GroupVersionForDiscovery+meta.v1.swift
[459/633] Compiling SwiftkubeModel LabelSelector+meta.v1.swift
[460/633] Compiling SwiftkubeModel LabelSelectorRequirement+meta.v1.swift
[461/633] Compiling SwiftkubeModel ListMeta+meta.v1.swift
[462/633] Compiling SwiftkubeModel ManagedFieldsEntry+meta.v1.swift
[463/633] Compiling SwiftkubeModel ObjectMeta+meta.v1.swift
[464/633] Compiling SwiftkubeModel OwnerReference+meta.v1.swift
[465/633] Compiling SwiftkubeModel Preconditions+meta.v1.swift
[466/633] Compiling SwiftkubeModel PodCondition+core.v1.swift
[467/633] Compiling SwiftkubeModel PodDNSConfig+core.v1.swift
[468/633] Compiling SwiftkubeModel PodDNSConfigOption+core.v1.swift
[469/633] Compiling SwiftkubeModel PodIP+core.v1.swift
[470/633] Compiling SwiftkubeModel PodList+core.v1.swift
[471/633] Compiling SwiftkubeModel PodOS+core.v1.swift
[472/633] Compiling SwiftkubeModel PodReadinessGate+core.v1.swift
[473/633] Compiling SwiftkubeModel PodResourceClaim+core.v1.swift
[474/633] Compiling SwiftkubeModel PodResourceClaimStatus+core.v1.swift
[475/633] Compiling SwiftkubeModel PodSchedulingGate+core.v1.swift
[476/633] Compiling SwiftkubeModel PodSecurityContext+core.v1.swift
[477/633] Compiling SwiftkubeModel PodSpec+core.v1.swift
[478/633] Compiling SwiftkubeModel PodStatus+core.v1.swift
[479/633] Compiling SwiftkubeModel PodTemplate+core.v1.swift
[480/633] Compiling SwiftkubeModel PodTemplateList+core.v1.swift
[481/633] Compiling SwiftkubeModel PodTemplateSpec+core.v1.swift
[482/633] Compiling SwiftkubeModel PortStatus+core.v1.swift
[483/633] Compiling SwiftkubeModel PortworxVolumeSource+core.v1.swift
[484/633] Compiling SwiftkubeModel PreferredSchedulingTerm+core.v1.swift
[485/633] Compiling SwiftkubeModel Probe+core.v1.swift
[486/633] Compiling SwiftkubeModel ProjectedVolumeSource+core.v1.swift
[487/633] Compiling SwiftkubeModel QuobyteVolumeSource+core.v1.swift
[488/633] Compiling SwiftkubeModel RBDPersistentVolumeSource+core.v1.swift
[489/633] Compiling SwiftkubeModel RBDVolumeSource+core.v1.swift
[490/657] Compiling SwiftkubeModel ReplicationController+core.v1.swift
[491/657] Compiling SwiftkubeModel ReplicationControllerCondition+core.v1.swift
[492/657] Compiling SwiftkubeModel ReplicationControllerList+core.v1.swift
[493/657] Compiling SwiftkubeModel ReplicationControllerSpec+core.v1.swift
[494/657] Compiling SwiftkubeModel ReplicationControllerStatus+core.v1.swift
[495/657] Compiling SwiftkubeModel ResourceClaim+core.v1.swift
[496/657] Compiling SwiftkubeModel ResourceFieldSelector+core.v1.swift
[497/657] Compiling SwiftkubeModel ResourceQuota+core.v1.swift
[498/657] Compiling SwiftkubeModel ResourceQuotaList+core.v1.swift
[499/657] Compiling SwiftkubeModel ResourceQuotaSpec+core.v1.swift
[500/657] Compiling SwiftkubeModel ResourceQuotaStatus+core.v1.swift
[501/657] Compiling SwiftkubeModel ResourceRequirements+core.v1.swift
[502/657] Compiling SwiftkubeModel SELinuxOptions+core.v1.swift
[503/657] Compiling SwiftkubeModel ScaleIOPersistentVolumeSource+core.v1.swift
[504/657] Compiling SwiftkubeModel ScaleIOVolumeSource+core.v1.swift
[505/657] Compiling SwiftkubeModel ScopeSelector+core.v1.swift
[506/657] Compiling SwiftkubeModel ScopedResourceSelectorRequirement+core.v1.swift
[507/657] Compiling SwiftkubeModel SeccompProfile+core.v1.swift
[508/657] Compiling SwiftkubeModel Secret+core.v1.swift
[509/657] Compiling SwiftkubeModel SecretEnvSource+core.v1.swift
[510/657] Compiling SwiftkubeModel SecretKeySelector+core.v1.swift
[511/657] Compiling SwiftkubeModel SecretList+core.v1.swift
[512/657] Compiling SwiftkubeModel SecretProjection+core.v1.swift
[513/657] Compiling SwiftkubeModel SecretReference+core.v1.swift
[514/657] Compiling SwiftkubeModel SecretVolumeSource+core.v1.swift
[515/657] Compiling SwiftkubeModel SecurityContext+core.v1.swift
[516/657] Compiling SwiftkubeModel Service+core.v1.swift
[517/657] Compiling SwiftkubeModel ServiceAccount+core.v1.swift
[518/657] Compiling SwiftkubeModel ServiceAccountList+core.v1.swift
[519/657] Compiling SwiftkubeModel ServiceAccountTokenProjection+core.v1.swift
[520/657] Compiling SwiftkubeModel ServiceList+core.v1.swift
[521/657] Compiling SwiftkubeModel ServicePort+core.v1.swift
[522/657] Compiling SwiftkubeModel ServiceSpec+core.v1.swift
[523/657] Compiling SwiftkubeModel ServiceStatus+core.v1.swift
[524/657] Compiling SwiftkubeModel SessionAffinityConfig+core.v1.swift
[525/657] Compiling SwiftkubeModel SleepAction+core.v1.swift
[526/657] Compiling SwiftkubeModel StorageOSPersistentVolumeSource+core.v1.swift
[527/657] Compiling SwiftkubeModel StorageOSVolumeSource+core.v1.swift
[528/657] Compiling SwiftkubeModel Sysctl+core.v1.swift
[529/657] Compiling SwiftkubeModel TCPSocketAction+core.v1.swift
[530/657] Compiling SwiftkubeModel Taint+core.v1.swift
[531/657] Compiling SwiftkubeModel Toleration+core.v1.swift
[532/657] Compiling SwiftkubeModel TopologySelectorLabelRequirement+core.v1.swift
[533/657] Compiling SwiftkubeModel TopologySelectorTerm+core.v1.swift
[534/657] Compiling SwiftkubeModel TopologySpreadConstraint+core.v1.swift
[535/657] Compiling SwiftkubeModel TypedLocalObjectReference+core.v1.swift
[536/657] Compiling SwiftkubeModel TypedObjectReference+core.v1.swift
[537/657] Compiling SwiftkubeModel Volume+core.v1.swift
[538/657] Compiling SwiftkubeModel ServerAddressByClientCIDR+meta.v1.swift
[539/657] Compiling SwiftkubeModel Status+meta.v1.swift
[540/657] Compiling SwiftkubeModel StatusCause+meta.v1.swift
[541/657] Compiling SwiftkubeModel StatusDetails+meta.v1.swift
[542/657] Compiling SwiftkubeModel WatchEvent+meta.v1.swift
[543/657] Compiling SwiftkubeModel meta+v1.swift
[544/657] Compiling SwiftkubeModel networking.swift
[545/657] Compiling SwiftkubeModel HTTPIngressPath+networking.v1.swift
[546/657] Compiling SwiftkubeModel HTTPIngressRuleValue+networking.v1.swift
[547/657] Compiling SwiftkubeModel IPBlock+networking.v1.swift
[548/657] Compiling SwiftkubeModel Ingress+networking.v1.swift
[549/657] Compiling SwiftkubeModel IngressBackend+networking.v1.swift
[550/657] Compiling SwiftkubeModel IngressClass+networking.v1.swift
[551/657] Compiling SwiftkubeModel IngressClassList+networking.v1.swift
[552/657] Compiling SwiftkubeModel IngressClassParametersReference+networking.v1.swift
[553/657] Compiling SwiftkubeModel IngressClassSpec+networking.v1.swift
[554/657] Compiling SwiftkubeModel IngressList+networking.v1.swift
[555/657] Compiling SwiftkubeModel IngressLoadBalancerIngress+networking.v1.swift
[556/657] Compiling SwiftkubeModel IngressLoadBalancerStatus+networking.v1.swift
[557/657] Compiling SwiftkubeModel IngressPortStatus+networking.v1.swift
[558/657] Compiling SwiftkubeModel IngressRule+networking.v1.swift
[559/657] Compiling SwiftkubeModel IngressServiceBackend+networking.v1.swift
[560/657] Compiling SwiftkubeModel IngressSpec+networking.v1.swift
[561/657] Compiling SwiftkubeModel IngressStatus+networking.v1.swift
[562/657] Compiling SwiftkubeModel IngressTLS+networking.v1.swift
[563/657] Compiling SwiftkubeModel NetworkPolicy+networking.v1.swift
[564/657] Compiling SwiftkubeModel NetworkPolicyEgressRule+networking.v1.swift
[565/657] Compiling SwiftkubeModel NetworkPolicyIngressRule+networking.v1.swift
[566/657] Compiling SwiftkubeModel NetworkPolicyList+networking.v1.swift
[567/657] Compiling SwiftkubeModel NetworkPolicyPeer+networking.v1.swift
[568/657] Compiling SwiftkubeModel NetworkPolicyPort+networking.v1.swift
[569/657] Compiling SwiftkubeModel NetworkPolicySpec+networking.v1.swift
[570/657] Compiling SwiftkubeModel ServiceBackendPort+networking.v1.swift
[571/657] Compiling SwiftkubeModel networking+v1.swift
[572/657] Compiling SwiftkubeModel IPAddress+networking.v1alpha1.swift
[573/657] Compiling SwiftkubeModel IPAddressList+networking.v1alpha1.swift
[574/657] Compiling SwiftkubeModel IPAddressSpec+networking.v1alpha1.swift
[575/657] Compiling SwiftkubeModel ParentReference+networking.v1alpha1.swift
[576/657] Compiling SwiftkubeModel ServiceCIDR+networking.v1alpha1.swift
[577/657] Compiling SwiftkubeModel ServiceCIDRList+networking.v1alpha1.swift
[578/657] Compiling SwiftkubeModel ServiceCIDRSpec+networking.v1alpha1.swift
[579/657] Compiling SwiftkubeModel ServiceCIDRStatus+networking.v1alpha1.swift
[580/657] Compiling SwiftkubeModel networking+v1alpha1.swift
[581/657] Compiling SwiftkubeModel node.swift
[582/657] Compiling SwiftkubeModel Overhead+node.v1.swift
[583/657] Compiling SwiftkubeModel RuntimeClass+node.v1.swift
[584/657] Compiling SwiftkubeModel RuntimeClassList+node.v1.swift
[585/657] Compiling SwiftkubeModel Scheduling+node.v1.swift
[586/657] Compiling SwiftkubeModel node+v1.swift
[587/657] Compiling SwiftkubeModel policy.swift
[588/657] Compiling SwiftkubeModel Eviction+policy.v1.swift
[589/657] Compiling SwiftkubeModel PodDisruptionBudget+policy.v1.swift
[590/657] Compiling SwiftkubeModel PodDisruptionBudgetList+policy.v1.swift
[591/657] Compiling SwiftkubeModel PodDisruptionBudgetSpec+policy.v1.swift
[592/657] Compiling SwiftkubeModel PodDisruptionBudgetStatus+policy.v1.swift
[593/657] Compiling SwiftkubeModel policy+v1.swift
[594/657] Compiling SwiftkubeModel rbac.swift
[595/657] Compiling SwiftkubeModel AggregationRule+rbac.v1.swift
[596/657] Compiling SwiftkubeModel ClusterRole+rbac.v1.swift
[597/657] Compiling SwiftkubeModel ClusterRoleBinding+rbac.v1.swift
[598/657] Compiling SwiftkubeModel ClusterRoleBindingList+rbac.v1.swift
[599/657] Compiling SwiftkubeModel ClusterRoleList+rbac.v1.swift
[600/657] Compiling SwiftkubeModel PolicyRule+rbac.v1.swift
[601/657] Compiling SwiftkubeModel Role+rbac.v1.swift
[602/657] Compiling SwiftkubeModel RoleBinding+rbac.v1.swift
[603/657] Compiling SwiftkubeModel RoleBindingList+rbac.v1.swift
[604/657] Compiling SwiftkubeModel RoleList+rbac.v1.swift
[605/657] Compiling SwiftkubeModel RoleRef+rbac.v1.swift
[606/657] Compiling SwiftkubeModel Subject+rbac.v1.swift
[607/657] Compiling SwiftkubeModel rbac+v1.swift
[608/657] Compiling SwiftkubeModel resource.swift
[609/657] Compiling SwiftkubeModel AllocationResult+resource.v1alpha2.swift
[610/657] Compiling SwiftkubeModel PodSchedulingContext+resource.v1alpha2.swift
[611/657] Compiling SwiftkubeModel PodSchedulingContextList+resource.v1alpha2.swift
[612/657] Compiling SwiftkubeModel PodSchedulingContextSpec+resource.v1alpha2.swift
[613/657] Compiling SwiftkubeModel PodSchedulingContextStatus+resource.v1alpha2.swift
[614/657] Compiling SwiftkubeModel ResourceClaim+resource.v1alpha2.swift
[615/657] Compiling SwiftkubeModel ResourceClaimConsumerReference+resource.v1alpha2.swift
[616/657] Compiling SwiftkubeModel ResourceClaimList+resource.v1alpha2.swift
[617/657] Compiling SwiftkubeModel ResourceClaimParametersReference+resource.v1alpha2.swift
[618/657] Compiling SwiftkubeModel ResourceClaimSchedulingStatus+resource.v1alpha2.swift
[619/657] Compiling SwiftkubeModel ResourceClaimSpec+resource.v1alpha2.swift
[620/657] Compiling SwiftkubeModel ResourceClaimStatus+resource.v1alpha2.swift
[621/657] Compiling SwiftkubeModel ResourceClaimTemplate+resource.v1alpha2.swift
[622/657] Compiling SwiftkubeModel ResourceClaimTemplateList+resource.v1alpha2.swift
[623/657] Compiling SwiftkubeModel ResourceClaimTemplateSpec+resource.v1alpha2.swift
[624/657] Compiling SwiftkubeModel ResourceClass+resource.v1alpha2.swift
[625/657] Compiling SwiftkubeModel ResourceClassList+resource.v1alpha2.swift
[626/657] Compiling SwiftkubeModel ResourceClassParametersReference+resource.v1alpha2.swift
[627/657] Compiling SwiftkubeModel ResourceHandle+resource.v1alpha2.swift
[628/657] Compiling SwiftkubeModel resource+v1alpha2.swift
[629/657] Compiling SwiftkubeModel scheduling.swift
[630/657] Compiling SwiftkubeModel PriorityClass+scheduling.v1.swift
[631/657] Compiling SwiftkubeModel PriorityClassList+scheduling.v1.swift
[632/657] Compiling SwiftkubeModel scheduling+v1.swift
[633/657] Compiling SwiftkubeModel storage.swift
[634/657] Compiling SwiftkubeModel CSIDriver+storage.v1.swift
[635/657] Compiling SwiftkubeModel CSIDriverList+storage.v1.swift
[636/657] Compiling SwiftkubeModel CSIDriverSpec+storage.v1.swift
[637/657] Compiling SwiftkubeModel CSINode+storage.v1.swift
[638/657] Compiling SwiftkubeModel CSINodeDriver+storage.v1.swift
[639/657] Compiling SwiftkubeModel CSINodeList+storage.v1.swift
[640/657] Compiling SwiftkubeModel CSINodeSpec+storage.v1.swift
[641/657] Compiling SwiftkubeModel CSIStorageCapacity+storage.v1.swift
[642/657] Compiling SwiftkubeModel CSIStorageCapacityList+storage.v1.swift
[643/657] Compiling SwiftkubeModel StorageClass+storage.v1.swift
[644/657] Compiling SwiftkubeModel StorageClassList+storage.v1.swift
[645/657] Compiling SwiftkubeModel TokenRequest+storage.v1.swift
[646/657] Compiling SwiftkubeModel VolumeAttachment+storage.v1.swift
[647/657] Compiling SwiftkubeModel VolumeAttachmentList+storage.v1.swift
[648/657] Compiling SwiftkubeModel VolumeAttachmentSource+storage.v1.swift
[649/657] Compiling SwiftkubeModel VolumeAttachmentSpec+storage.v1.swift
[650/657] Compiling SwiftkubeModel VolumeAttachmentStatus+storage.v1.swift
[651/657] Compiling SwiftkubeModel VolumeError+storage.v1.swift
[652/657] Compiling SwiftkubeModel VolumeNodeResources+storage.v1.swift
[653/657] Compiling SwiftkubeModel storage+v1.swift
[654/657] Compiling SwiftkubeModel VolumeAttributesClass+storage.v1alpha1.swift
[655/657] Compiling SwiftkubeModel VolumeAttributesClassList+storage.v1alpha1.swift
[656/657] Compiling SwiftkubeModel storage+v1alpha1.swift
[657/657] Compiling SwiftkubeModel SwiftkubeModel.swift
Build complete! (73.84s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftkubeModel",
"name" : "SwiftkubeModel",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "5.0"
}
],
"products" : [
{
"name" : "SwiftkubeModel",
"targets" : [
"SwiftkubeModel"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftkubeModelTests",
"module_type" : "SwiftTarget",
"name" : "SwiftkubeModelTests",
"path" : "Tests/SwiftkubeModelTests",
"sources" : [
"CronJobExtensionsTests.swift",
"GroupVersionKindTests.swift",
"HashesTests.swift",
"IntOrStringTests.swift",
"QuantityParse.swift",
"UnstructureResourceTests.swift",
"UnstructuredResourceListTests.swift"
],
"target_dependencies" : [
"SwiftkubeModel"
],
"type" : "test"
},
{
"c99name" : "SwiftkubeModel",
"module_type" : "SwiftTarget",
"name" : "SwiftkubeModel",
"path" : "Sources",
"product_memberships" : [
"SwiftkubeModel"
],
"sources" : [
"Builders/Builders.swift",
"Builders/apps/v1/appsV1+Deployment.swift",
"Builders/core/v1/coreV1+ConfigMap.swift",
"Builders/core/v1/coreV1+Container.swift",
"Builders/core/v1/coreV1+Namespace.swift",
"Builders/core/v1/coreV1+Node.swift",
"Builders/core/v1/coreV1+ObjectReference.swift",
"Builders/core/v1/coreV1+Pod.swift",
"Builders/core/v1/coreV1+Secret.swift",
"Builders/core/v1/coreV1+Service.swift",
"Builders/core/v1/coreV1+ServiceAccount.swift",
"Builders/core/v1/coreV1+Volume.swift",
"Builders/meta/v1/metaV1+Metadata.swift",
"Builders/meta/v1/metaV1+Selector.swift",
"Builders/meta/v1/metaV1+Status.swift",
"Codable/Any+Codable.swift",
"Extensions/CronJobExtensions+batch.v1.swift",
"Extensions/Hashes.swift",
"Model/GroupVersionKind+DefaultResources.swift",
"Model/GroupVersionKind+KubernetesAPIResource.swift",
"Model/GroupVersionKind+Meta.swift",
"Model/GroupVersionKind+ResourceName.swift",
"Model/GroupVersionKind.swift",
"Model/GroupVersionResource+DefaultResources.swift",
"Model/GroupVersionResource+KubernetesAPIResource.swift",
"Model/GroupVersionResource+Meta.swift",
"Model/GroupVersionResource+ResourceName.swift",
"Model/GroupVersionResource.swift",
"Model/IntOrString.swift",
"Model/JSONObject.swift",
"Model/KubernetesResource.swift",
"Model/Quantity.swift",
"Model/UnstructuredResource.swift",
"Model/UnstructuredResourceList.swift",
"Model/admissionregistration/admissionregistration.swift",
"Model/admissionregistration/v1/MatchCondition+admissionregistration.v1.swift",
"Model/admissionregistration/v1/MutatingWebhook+admissionregistration.v1.swift",
"Model/admissionregistration/v1/MutatingWebhookConfiguration+admissionregistration.v1.swift",
"Model/admissionregistration/v1/MutatingWebhookConfigurationList+admissionregistration.v1.swift",
"Model/admissionregistration/v1/RuleWithOperations+admissionregistration.v1.swift",
"Model/admissionregistration/v1/ServiceReference+admissionregistration.v1.swift",
"Model/admissionregistration/v1/ValidatingWebhook+admissionregistration.v1.swift",
"Model/admissionregistration/v1/ValidatingWebhookConfiguration+admissionregistration.v1.swift",
"Model/admissionregistration/v1/ValidatingWebhookConfigurationList+admissionregistration.v1.swift",
"Model/admissionregistration/v1/WebhookClientConfig+admissionregistration.v1.swift",
"Model/admissionregistration/v1/admissionregistration+v1.swift",
"Model/admissionregistration/v1alpha1/AuditAnnotation+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ExpressionWarning+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/MatchCondition+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/MatchResources+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/NamedRuleWithOperations+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ParamKind+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ParamRef+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/TypeChecking+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicy+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicyBinding+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicyBindingList+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicyBindingSpec+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicyList+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicySpec+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/ValidatingAdmissionPolicyStatus+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/Validation+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/Variable+admissionregistration.v1alpha1.swift",
"Model/admissionregistration/v1alpha1/admissionregistration+v1alpha1.swift",
"Model/admissionregistration/v1beta1/AuditAnnotation+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ExpressionWarning+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/MatchCondition+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/MatchResources+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/NamedRuleWithOperations+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ParamKind+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ParamRef+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/TypeChecking+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicy+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicyBinding+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicyBindingList+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicyBindingSpec+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicyList+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicySpec+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/ValidatingAdmissionPolicyStatus+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/Validation+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/Variable+admissionregistration.v1beta1.swift",
"Model/admissionregistration/v1beta1/admissionregistration+v1beta1.swift",
"Model/apiextensions/apiextensions.swift",
"Model/apiextensions/v1/CustomResourceColumnDefinition+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceConversion+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinition+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionCondition+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionList+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionNames+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionSpec+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionStatus+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceDefinitionVersion+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceSubresourceScale+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceSubresourceStatus+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceSubresources+apiextensions.v1.swift",
"Model/apiextensions/v1/CustomResourceValidation+apiextensions.v1.swift",
"Model/apiextensions/v1/ExternalDocumentation+apiextensions.v1.swift",
"Model/apiextensions/v1/ServiceReference+apiextensions.v1.swift",
"Model/apiextensions/v1/ValidationRule+apiextensions.v1.swift",
"Model/apiextensions/v1/WebhookClientConfig+apiextensions.v1.swift",
"Model/apiextensions/v1/WebhookConversion+apiextensions.v1.swift",
"Model/apiextensions/v1/apiextensions+v1.swift",
"Model/apiregistration/apiregistration.swift",
"Model/apiregistration/v1/APIService+apiregistration.v1.swift",
"Model/apiregistration/v1/APIServiceCondition+apiregistration.v1.swift",
"Model/apiregistration/v1/APIServiceList+apiregistration.v1.swift",
"Model/apiregistration/v1/APIServiceSpec+apiregistration.v1.swift",
"Model/apiregistration/v1/APIServiceStatus+apiregistration.v1.swift",
"Model/apiregistration/v1/ServiceReference+apiregistration.v1.swift",
"Model/apiregistration/v1/apiregistration+v1.swift",
"Model/apps/apps.swift",
"Model/apps/v1/ControllerRevision+apps.v1.swift",
"Model/apps/v1/ControllerRevisionList+apps.v1.swift",
"Model/apps/v1/DaemonSet+apps.v1.swift",
"Model/apps/v1/DaemonSetCondition+apps.v1.swift",
"Model/apps/v1/DaemonSetList+apps.v1.swift",
"Model/apps/v1/DaemonSetSpec+apps.v1.swift",
"Model/apps/v1/DaemonSetStatus+apps.v1.swift",
"Model/apps/v1/DaemonSetUpdateStrategy+apps.v1.swift",
"Model/apps/v1/Deployment+apps.v1.swift",
"Model/apps/v1/DeploymentCondition+apps.v1.swift",
"Model/apps/v1/DeploymentList+apps.v1.swift",
"Model/apps/v1/DeploymentSpec+apps.v1.swift",
"Model/apps/v1/DeploymentStatus+apps.v1.swift",
"Model/apps/v1/DeploymentStrategy+apps.v1.swift",
"Model/apps/v1/ReplicaSet+apps.v1.swift",
"Model/apps/v1/ReplicaSetCondition+apps.v1.swift",
"Model/apps/v1/ReplicaSetList+apps.v1.swift",
"Model/apps/v1/ReplicaSetSpec+apps.v1.swift",
"Model/apps/v1/ReplicaSetStatus+apps.v1.swift",
"Model/apps/v1/RollingUpdateDaemonSet+apps.v1.swift",
"Model/apps/v1/RollingUpdateDeployment+apps.v1.swift",
"Model/apps/v1/RollingUpdateStatefulSetStrategy+apps.v1.swift",
"Model/apps/v1/StatefulSet+apps.v1.swift",
"Model/apps/v1/StatefulSetCondition+apps.v1.swift",
"Model/apps/v1/StatefulSetList+apps.v1.swift",
"Model/apps/v1/StatefulSetOrdinals+apps.v1.swift",
"Model/apps/v1/StatefulSetPersistentVolumeClaimRetentionPolicy+apps.v1.swift",
"Model/apps/v1/StatefulSetSpec+apps.v1.swift",
"Model/apps/v1/StatefulSetStatus+apps.v1.swift",
"Model/apps/v1/StatefulSetUpdateStrategy+apps.v1.swift",
"Model/apps/v1/apps+v1.swift",
"Model/authentication/authentication.swift",
"Model/authentication/v1/BoundObjectReference+authentication.v1.swift",
"Model/authentication/v1/SelfSubjectReview+authentication.v1.swift",
"Model/authentication/v1/SelfSubjectReviewStatus+authentication.v1.swift",
"Model/authentication/v1/TokenRequest+authentication.v1.swift",
"Model/authentication/v1/TokenRequestSpec+authentication.v1.swift",
"Model/authentication/v1/TokenRequestStatus+authentication.v1.swift",
"Model/authentication/v1/TokenReview+authentication.v1.swift",
"Model/authentication/v1/TokenReviewSpec+authentication.v1.swift",
"Model/authentication/v1/TokenReviewStatus+authentication.v1.swift",
"Model/authentication/v1/UserInfo+authentication.v1.swift",
"Model/authentication/v1/authentication+v1.swift",
"Model/authentication/v1alpha1/SelfSubjectReview+authentication.v1alpha1.swift",
"Model/authentication/v1alpha1/SelfSubjectReviewStatus+authentication.v1alpha1.swift",
"Model/authentication/v1alpha1/authentication+v1alpha1.swift",
"Model/authentication/v1beta1/SelfSubjectReview+authentication.v1beta1.swift",
"Model/authentication/v1beta1/SelfSubjectReviewStatus+authentication.v1beta1.swift",
"Model/authentication/v1beta1/authentication+v1beta1.swift",
"Model/authorization/authorization.swift",
"Model/authorization/v1/LocalSubjectAccessReview+authorization.v1.swift",
"Model/authorization/v1/NonResourceAttributes+authorization.v1.swift",
"Model/authorization/v1/NonResourceRule+authorization.v1.swift",
"Model/authorization/v1/ResourceAttributes+authorization.v1.swift",
"Model/authorization/v1/ResourceRule+authorization.v1.swift",
"Model/authorization/v1/SelfSubjectAccessReview+authorization.v1.swift",
"Model/authorization/v1/SelfSubjectAccessReviewSpec+authorization.v1.swift",
"Model/authorization/v1/SelfSubjectRulesReview+authorization.v1.swift",
"Model/authorization/v1/SelfSubjectRulesReviewSpec+authorization.v1.swift",
"Model/authorization/v1/SubjectAccessReview+authorization.v1.swift",
"Model/authorization/v1/SubjectAccessReviewSpec+authorization.v1.swift",
"Model/authorization/v1/SubjectAccessReviewStatus+authorization.v1.swift",
"Model/authorization/v1/SubjectRulesReviewStatus+authorization.v1.swift",
"Model/authorization/v1/authorization+v1.swift",
"Model/autoscaling/autoscaling.swift",
"Model/autoscaling/v1/CrossVersionObjectReference+autoscaling.v1.swift",
"Model/autoscaling/v1/HorizontalPodAutoscaler+autoscaling.v1.swift",
"Model/autoscaling/v1/HorizontalPodAutoscalerList+autoscaling.v1.swift",
"Model/autoscaling/v1/HorizontalPodAutoscalerSpec+autoscaling.v1.swift",
"Model/autoscaling/v1/HorizontalPodAutoscalerStatus+autoscaling.v1.swift",
"Model/autoscaling/v1/Scale+autoscaling.v1.swift",
"Model/autoscaling/v1/ScaleSpec+autoscaling.v1.swift",
"Model/autoscaling/v1/ScaleStatus+autoscaling.v1.swift",
"Model/autoscaling/v1/autoscaling+v1.swift",
"Model/autoscaling/v2/ContainerResourceMetricSource+autoscaling.v2.swift",
"Model/autoscaling/v2/ContainerResourceMetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/CrossVersionObjectReference+autoscaling.v2.swift",
"Model/autoscaling/v2/ExternalMetricSource+autoscaling.v2.swift",
"Model/autoscaling/v2/ExternalMetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/HPAScalingPolicy+autoscaling.v2.swift",
"Model/autoscaling/v2/HPAScalingRules+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscaler+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscalerBehavior+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscalerCondition+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscalerList+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscalerSpec+autoscaling.v2.swift",
"Model/autoscaling/v2/HorizontalPodAutoscalerStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/MetricIdentifier+autoscaling.v2.swift",
"Model/autoscaling/v2/MetricSpec+autoscaling.v2.swift",
"Model/autoscaling/v2/MetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/MetricTarget+autoscaling.v2.swift",
"Model/autoscaling/v2/MetricValueStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/ObjectMetricSource+autoscaling.v2.swift",
"Model/autoscaling/v2/ObjectMetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/PodsMetricSource+autoscaling.v2.swift",
"Model/autoscaling/v2/PodsMetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/ResourceMetricSource+autoscaling.v2.swift",
"Model/autoscaling/v2/ResourceMetricStatus+autoscaling.v2.swift",
"Model/autoscaling/v2/autoscaling+v2.swift",
"Model/batch/batch.swift",
"Model/batch/v1/CronJob+batch.v1.swift",
"Model/batch/v1/CronJobList+batch.v1.swift",
"Model/batch/v1/CronJobSpec+batch.v1.swift",
"Model/batch/v1/CronJobStatus+batch.v1.swift",
"Model/batch/v1/Job+batch.v1.swift",
"Model/batch/v1/JobCondition+batch.v1.swift",
"Model/batch/v1/JobList+batch.v1.swift",
"Model/batch/v1/JobSpec+batch.v1.swift",
"Model/batch/v1/JobStatus+batch.v1.swift",
"Model/batch/v1/JobTemplateSpec+batch.v1.swift",
"Model/batch/v1/PodFailurePolicy+batch.v1.swift",
"Model/batch/v1/PodFailurePolicyOnExitCodesRequirement+batch.v1.swift",
"Model/batch/v1/PodFailurePolicyOnPodConditionsPattern+batch.v1.swift",
"Model/batch/v1/PodFailurePolicyRule+batch.v1.swift",
"Model/batch/v1/UncountedTerminatedPods+batch.v1.swift",
"Model/batch/v1/batch+v1.swift",
"Model/certificates/certificates.swift",
"Model/certificates/v1/CertificateSigningRequest+certificates.v1.swift",
"Model/certificates/v1/CertificateSigningRequestCondition+certificates.v1.swift",
"Model/certificates/v1/CertificateSigningRequestList+certificates.v1.swift",
"Model/certificates/v1/CertificateSigningRequestSpec+certificates.v1.swift",
"Model/certificates/v1/CertificateSigningRequestStatus+certificates.v1.swift",
"Model/certificates/v1/certificates+v1.swift",
"Model/certificates/v1alpha1/ClusterTrustBundle+certificates.v1alpha1.swift",
"Model/certificates/v1alpha1/ClusterTrustBundleList+certificates.v1alpha1.swift",
"Model/certificates/v1alpha1/ClusterTrustBundleSpec+certificates.v1alpha1.swift",
"Model/certificates/v1alpha1/certificates+v1alpha1.swift",
"Model/coordination/coordination.swift",
"Model/coordination/v1/Lease+coordination.v1.swift",
"Model/coordination/v1/LeaseList+coordination.v1.swift",
"Model/coordination/v1/LeaseSpec+coordination.v1.swift",
"Model/coordination/v1/coordination+v1.swift",
"Model/core/core.swift",
"Model/core/v1/AWSElasticBlockStoreVolumeSource+core.v1.swift",
"Model/core/v1/Affinity+core.v1.swift",
"Model/core/v1/AttachedVolume+core.v1.swift",
"Model/core/v1/AzureDiskVolumeSource+core.v1.swift",
"Model/core/v1/AzureFilePersistentVolumeSource+core.v1.swift",
"Model/core/v1/AzureFileVolumeSource+core.v1.swift",
"Model/core/v1/Binding+core.v1.swift",
"Model/core/v1/CSIPersistentVolumeSource+core.v1.swift",
"Model/core/v1/CSIVolumeSource+core.v1.swift",
"Model/core/v1/Capabilities+core.v1.swift",
"Model/core/v1/CephFSPersistentVolumeSource+core.v1.swift",
"Model/core/v1/CephFSVolumeSource+core.v1.swift",
"Model/core/v1/CinderPersistentVolumeSource+core.v1.swift",
"Model/core/v1/CinderVolumeSource+core.v1.swift",
"Model/core/v1/ClaimSource+core.v1.swift",
"Model/core/v1/ClientIPConfig+core.v1.swift",
"Model/core/v1/ClusterTrustBundleProjection+core.v1.swift",
"Model/core/v1/ComponentCondition+core.v1.swift",
"Model/core/v1/ComponentStatus+core.v1.swift",
"Model/core/v1/ComponentStatusList+core.v1.swift",
"Model/core/v1/ConfigMap+core.v1.swift",
"Model/core/v1/ConfigMapEnvSource+core.v1.swift",
"Model/core/v1/ConfigMapKeySelector+core.v1.swift",
"Model/core/v1/ConfigMapList+core.v1.swift",
"Model/core/v1/ConfigMapNodeConfigSource+core.v1.swift",
"Model/core/v1/ConfigMapProjection+core.v1.swift",
"Model/core/v1/ConfigMapVolumeSource+core.v1.swift",
"Model/core/v1/Container+core.v1.swift",
"Model/core/v1/ContainerImage+core.v1.swift",
"Model/core/v1/ContainerPort+core.v1.swift",
"Model/core/v1/ContainerResizePolicy+core.v1.swift",
"Model/core/v1/ContainerState+core.v1.swift",
"Model/core/v1/ContainerStateRunning+core.v1.swift",
"Model/core/v1/ContainerStateTerminated+core.v1.swift",
"Model/core/v1/ContainerStateWaiting+core.v1.swift",
"Model/core/v1/ContainerStatus+core.v1.swift",
"Model/core/v1/DaemonEndpoint+core.v1.swift",
"Model/core/v1/DownwardAPIProjection+core.v1.swift",
"Model/core/v1/DownwardAPIVolumeFile+core.v1.swift",
"Model/core/v1/DownwardAPIVolumeSource+core.v1.swift",
"Model/core/v1/EmptyDirVolumeSource+core.v1.swift",
"Model/core/v1/EndpointAddress+core.v1.swift",
"Model/core/v1/EndpointPort+core.v1.swift",
"Model/core/v1/EndpointSubset+core.v1.swift",
"Model/core/v1/Endpoints+core.v1.swift",
"Model/core/v1/EndpointsList+core.v1.swift",
"Model/core/v1/EnvFromSource+core.v1.swift",
"Model/core/v1/EnvVar+core.v1.swift",
"Model/core/v1/EnvVarSource+core.v1.swift",
"Model/core/v1/EphemeralContainer+core.v1.swift",
"Model/core/v1/EphemeralVolumeSource+core.v1.swift",
"Model/core/v1/Event+core.v1.swift",
"Model/core/v1/EventList+core.v1.swift",
"Model/core/v1/EventSeries+core.v1.swift",
"Model/core/v1/EventSource+core.v1.swift",
"Model/core/v1/ExecAction+core.v1.swift",
"Model/core/v1/FCVolumeSource+core.v1.swift",
"Model/core/v1/FlexPersistentVolumeSource+core.v1.swift",
"Model/core/v1/FlexVolumeSource+core.v1.swift",
"Model/core/v1/FlockerVolumeSource+core.v1.swift",
"Model/core/v1/GCEPersistentDiskVolumeSource+core.v1.swift",
"Model/core/v1/GRPCAction+core.v1.swift",
"Model/core/v1/GitRepoVolumeSource+core.v1.swift",
"Model/core/v1/GlusterfsPersistentVolumeSource+core.v1.swift",
"Model/core/v1/GlusterfsVolumeSource+core.v1.swift",
"Model/core/v1/HTTPGetAction+core.v1.swift",
"Model/core/v1/HTTPHeader+core.v1.swift",
"Model/core/v1/HostAlias+core.v1.swift",
"Model/core/v1/HostIP+core.v1.swift",
"Model/core/v1/HostPathVolumeSource+core.v1.swift",
"Model/core/v1/ISCSIPersistentVolumeSource+core.v1.swift",
"Model/core/v1/ISCSIVolumeSource+core.v1.swift",
"Model/core/v1/KeyToPath+core.v1.swift",
"Model/core/v1/Lifecycle+core.v1.swift",
"Model/core/v1/LifecycleHandler+core.v1.swift",
"Model/core/v1/LimitRange+core.v1.swift",
"Model/core/v1/LimitRangeItem+core.v1.swift",
"Model/core/v1/LimitRangeList+core.v1.swift",
"Model/core/v1/LimitRangeSpec+core.v1.swift",
"Model/core/v1/LoadBalancerIngress+core.v1.swift",
"Model/core/v1/LoadBalancerStatus+core.v1.swift",
"Model/core/v1/LocalObjectReference+core.v1.swift",
"Model/core/v1/LocalVolumeSource+core.v1.swift",
"Model/core/v1/ModifyVolumeStatus+core.v1.swift",
"Model/core/v1/NFSVolumeSource+core.v1.swift",
"Model/core/v1/Namespace+core.v1.swift",
"Model/core/v1/NamespaceCondition+core.v1.swift",
"Model/core/v1/NamespaceList+core.v1.swift",
"Model/core/v1/NamespaceSpec+core.v1.swift",
"Model/core/v1/NamespaceStatus+core.v1.swift",
"Model/core/v1/Node+core.v1.swift",
"Model/core/v1/NodeAddress+core.v1.swift",
"Model/core/v1/NodeAffinity+core.v1.swift",
"Model/core/v1/NodeCondition+core.v1.swift",
"Model/core/v1/NodeConfigSource+core.v1.swift",
"Model/core/v1/NodeConfigStatus+core.v1.swift",
"Model/core/v1/NodeDaemonEndpoints+core.v1.swift",
"Model/core/v1/NodeList+core.v1.swift",
"Model/core/v1/NodeSelector+core.v1.swift",
"Model/core/v1/NodeSelectorRequirement+core.v1.swift",
"Model/core/v1/NodeSelectorTerm+core.v1.swift",
"Model/core/v1/NodeSpec+core.v1.swift",
"Model/core/v1/NodeStatus+core.v1.swift",
"Model/core/v1/NodeSystemInfo+core.v1.swift",
"Model/core/v1/ObjectFieldSelector+core.v1.swift",
"Model/core/v1/ObjectReference+core.v1.swift",
"Model/core/v1/PersistentVolume+core.v1.swift",
"Model/core/v1/PersistentVolumeClaim+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimCondition+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimList+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimSpec+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimStatus+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimTemplate+core.v1.swift",
"Model/core/v1/PersistentVolumeClaimVolumeSource+core.v1.swift",
"Model/core/v1/PersistentVolumeList+core.v1.swift",
"Model/core/v1/PersistentVolumeSpec+core.v1.swift",
"Model/core/v1/PersistentVolumeStatus+core.v1.swift",
"Model/core/v1/PhotonPersistentDiskVolumeSource+core.v1.swift",
"Model/core/v1/Pod+core.v1.swift",
"Model/core/v1/PodAffinity+core.v1.swift",
"Model/core/v1/PodAffinityTerm+core.v1.swift",
"Model/core/v1/PodAntiAffinity+core.v1.swift",
"Model/core/v1/PodCondition+core.v1.swift",
"Model/core/v1/PodDNSConfig+core.v1.swift",
"Model/core/v1/PodDNSConfigOption+core.v1.swift",
"Model/core/v1/PodIP+core.v1.swift",
"Model/core/v1/PodList+core.v1.swift",
"Model/core/v1/PodOS+core.v1.swift",
"Model/core/v1/PodReadinessGate+core.v1.swift",
"Model/core/v1/PodResourceClaim+core.v1.swift",
"Model/core/v1/PodResourceClaimStatus+core.v1.swift",
"Model/core/v1/PodSchedulingGate+core.v1.swift",
"Model/core/v1/PodSecurityContext+core.v1.swift",
"Model/core/v1/PodSpec+core.v1.swift",
"Model/core/v1/PodStatus+core.v1.swift",
"Model/core/v1/PodTemplate+core.v1.swift",
"Model/core/v1/PodTemplateList+core.v1.swift",
"Model/core/v1/PodTemplateSpec+core.v1.swift",
"Model/core/v1/PortStatus+core.v1.swift",
"Model/core/v1/PortworxVolumeSource+core.v1.swift",
"Model/core/v1/PreferredSchedulingTerm+core.v1.swift",
"Model/core/v1/Probe+core.v1.swift",
"Model/core/v1/ProjectedVolumeSource+core.v1.swift",
"Model/core/v1/QuobyteVolumeSource+core.v1.swift",
"Model/core/v1/RBDPersistentVolumeSource+core.v1.swift",
"Model/core/v1/RBDVolumeSource+core.v1.swift",
"Model/core/v1/ReplicationController+core.v1.swift",
"Model/core/v1/ReplicationControllerCondition+core.v1.swift",
"Model/core/v1/ReplicationControllerList+core.v1.swift",
"Model/core/v1/ReplicationControllerSpec+core.v1.swift",
"Model/core/v1/ReplicationControllerStatus+core.v1.swift",
"Model/core/v1/ResourceClaim+core.v1.swift",
"Model/core/v1/ResourceFieldSelector+core.v1.swift",
"Model/core/v1/ResourceQuota+core.v1.swift",
"Model/core/v1/ResourceQuotaList+core.v1.swift",
"Model/core/v1/ResourceQuotaSpec+core.v1.swift",
"Model/core/v1/ResourceQuotaStatus+core.v1.swift",
"Model/core/v1/ResourceRequirements+core.v1.swift",
"Model/core/v1/SELinuxOptions+core.v1.swift",
"Model/core/v1/ScaleIOPersistentVolumeSource+core.v1.swift",
"Model/core/v1/ScaleIOVolumeSource+core.v1.swift",
"Model/core/v1/ScopeSelector+core.v1.swift",
"Model/core/v1/ScopedResourceSelectorRequirement+core.v1.swift",
"Model/core/v1/SeccompProfile+core.v1.swift",
"Model/core/v1/Secret+core.v1.swift",
"Model/core/v1/SecretEnvSource+core.v1.swift",
"Model/core/v1/SecretKeySelector+core.v1.swift",
"Model/core/v1/SecretList+core.v1.swift",
"Model/core/v1/SecretProjection+core.v1.swift",
"Model/core/v1/SecretReference+core.v1.swift",
"Model/core/v1/SecretVolumeSource+core.v1.swift",
"Model/core/v1/SecurityContext+core.v1.swift",
"Model/core/v1/Service+core.v1.swift",
"Model/core/v1/ServiceAccount+core.v1.swift",
"Model/core/v1/ServiceAccountList+core.v1.swift",
"Model/core/v1/ServiceAccountTokenProjection+core.v1.swift",
"Model/core/v1/ServiceList+core.v1.swift",
"Model/core/v1/ServicePort+core.v1.swift",
"Model/core/v1/ServiceSpec+core.v1.swift",
"Model/core/v1/ServiceStatus+core.v1.swift",
"Model/core/v1/SessionAffinityConfig+core.v1.swift",
"Model/core/v1/SleepAction+core.v1.swift",
"Model/core/v1/StorageOSPersistentVolumeSource+core.v1.swift",
"Model/core/v1/StorageOSVolumeSource+core.v1.swift",
"Model/core/v1/Sysctl+core.v1.swift",
"Model/core/v1/TCPSocketAction+core.v1.swift",
"Model/core/v1/Taint+core.v1.swift",
"Model/core/v1/Toleration+core.v1.swift",
"Model/core/v1/TopologySelectorLabelRequirement+core.v1.swift",
"Model/core/v1/TopologySelectorTerm+core.v1.swift",
"Model/core/v1/TopologySpreadConstraint+core.v1.swift",
"Model/core/v1/TypedLocalObjectReference+core.v1.swift",
"Model/core/v1/TypedObjectReference+core.v1.swift",
"Model/core/v1/Volume+core.v1.swift",
"Model/core/v1/VolumeDevice+core.v1.swift",
"Model/core/v1/VolumeMount+core.v1.swift",
"Model/core/v1/VolumeNodeAffinity+core.v1.swift",
"Model/core/v1/VolumeProjection+core.v1.swift",
"Model/core/v1/VolumeResourceRequirements+core.v1.swift",
"Model/core/v1/VsphereVirtualDiskVolumeSource+core.v1.swift",
"Model/core/v1/WeightedPodAffinityTerm+core.v1.swift",
"Model/core/v1/WindowsSecurityContextOptions+core.v1.swift",
"Model/core/v1/core+v1.swift",
"Model/discovery/discovery.swift",
"Model/discovery/v1/Endpoint+discovery.v1.swift",
"Model/discovery/v1/EndpointConditions+discovery.v1.swift",
"Model/discovery/v1/EndpointHints+discovery.v1.swift",
"Model/discovery/v1/EndpointPort+discovery.v1.swift",
"Model/discovery/v1/EndpointSlice+discovery.v1.swift",
"Model/discovery/v1/EndpointSliceList+discovery.v1.swift",
"Model/discovery/v1/ForZone+discovery.v1.swift",
"Model/discovery/v1/discovery+v1.swift",
"Model/events/events.swift",
"Model/events/v1/Event+events.v1.swift",
"Model/events/v1/EventList+events.v1.swift",
"Model/events/v1/EventSeries+events.v1.swift",
"Model/events/v1/events+v1.swift",
"Model/flowcontrol/flowcontrol.swift",
"Model/flowcontrol/v1/ExemptPriorityLevelConfiguration+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowDistinguisherMethod+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowSchema+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowSchemaCondition+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowSchemaList+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowSchemaSpec+flowcontrol.v1.swift",
"Model/flowcontrol/v1/FlowSchemaStatus+flowcontrol.v1.swift",
"Model/flowcontrol/v1/GroupSubject+flowcontrol.v1.swift",
"Model/flowcontrol/v1/LimitResponse+flowcontrol.v1.swift",
"Model/flowcontrol/v1/LimitedPriorityLevelConfiguration+flowcontrol.v1.swift",
"Model/flowcontrol/v1/NonResourcePolicyRule+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PolicyRulesWithSubjects+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfiguration+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfigurationCondition+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfigurationList+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfigurationReference+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfigurationSpec+flowcontrol.v1.swift",
"Model/flowcontrol/v1/PriorityLevelConfigurationStatus+flowcontrol.v1.swift",
"Model/flowcontrol/v1/QueuingConfiguration+flowcontrol.v1.swift",
"Model/flowcontrol/v1/ResourcePolicyRule+flowcontrol.v1.swift",
"Model/flowcontrol/v1/ServiceAccountSubject+flowcontrol.v1.swift",
"Model/flowcontrol/v1/Subject+flowcontrol.v1.swift",
"Model/flowcontrol/v1/UserSubject+flowcontrol.v1.swift",
"Model/flowcontrol/v1/flowcontrol+v1.swift",
"Model/flowcontrol/v1beta3/ExemptPriorityLevelConfiguration+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowDistinguisherMethod+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowSchema+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowSchemaCondition+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowSchemaList+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowSchemaSpec+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/FlowSchemaStatus+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/GroupSubject+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/LimitResponse+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/LimitedPriorityLevelConfiguration+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/NonResourcePolicyRule+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PolicyRulesWithSubjects+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfiguration+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfigurationCondition+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfigurationList+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfigurationReference+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfigurationSpec+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/PriorityLevelConfigurationStatus+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/QueuingConfiguration+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/ResourcePolicyRule+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/ServiceAccountSubject+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/Subject+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/UserSubject+flowcontrol.v1beta3.swift",
"Model/flowcontrol/v1beta3/flowcontrol+v1beta3.swift",
"Model/internal/internal.swift",
"Model/internal/v1alpha1/ServerStorageVersion+internal.v1alpha1.swift",
"Model/internal/v1alpha1/StorageVersion+internal.v1alpha1.swift",
"Model/internal/v1alpha1/StorageVersionCondition+internal.v1alpha1.swift",
"Model/internal/v1alpha1/StorageVersionList+internal.v1alpha1.swift",
"Model/internal/v1alpha1/StorageVersionSpec+internal.v1alpha1.swift",
"Model/internal/v1alpha1/StorageVersionStatus+internal.v1alpha1.swift",
"Model/internal/v1alpha1/internal+v1alpha1.swift",
"Model/meta/meta.swift",
"Model/meta/v1/APIGroup+meta.v1.swift",
"Model/meta/v1/APIGroupList+meta.v1.swift",
"Model/meta/v1/APIResource+meta.v1.swift",
"Model/meta/v1/APIResourceList+meta.v1.swift",
"Model/meta/v1/APIVersions+meta.v1.swift",
"Model/meta/v1/Condition+meta.v1.swift",
"Model/meta/v1/DeleteOptions+meta.v1.swift",
"Model/meta/v1/GroupVersionForDiscovery+meta.v1.swift",
"Model/meta/v1/LabelSelector+meta.v1.swift",
"Model/meta/v1/LabelSelectorRequirement+meta.v1.swift",
"Model/meta/v1/ListMeta+meta.v1.swift",
"Model/meta/v1/ManagedFieldsEntry+meta.v1.swift",
"Model/meta/v1/ObjectMeta+meta.v1.swift",
"Model/meta/v1/OwnerReference+meta.v1.swift",
"Model/meta/v1/Preconditions+meta.v1.swift",
"Model/meta/v1/ServerAddressByClientCIDR+meta.v1.swift",
"Model/meta/v1/Status+meta.v1.swift",
"Model/meta/v1/StatusCause+meta.v1.swift",
"Model/meta/v1/StatusDetails+meta.v1.swift",
"Model/meta/v1/WatchEvent+meta.v1.swift",
"Model/meta/v1/meta+v1.swift",
"Model/networking/networking.swift",
"Model/networking/v1/HTTPIngressPath+networking.v1.swift",
"Model/networking/v1/HTTPIngressRuleValue+networking.v1.swift",
"Model/networking/v1/IPBlock+networking.v1.swift",
"Model/networking/v1/Ingress+networking.v1.swift",
"Model/networking/v1/IngressBackend+networking.v1.swift",
"Model/networking/v1/IngressClass+networking.v1.swift",
"Model/networking/v1/IngressClassList+networking.v1.swift",
"Model/networking/v1/IngressClassParametersReference+networking.v1.swift",
"Model/networking/v1/IngressClassSpec+networking.v1.swift",
"Model/networking/v1/IngressList+networking.v1.swift",
"Model/networking/v1/IngressLoadBalancerIngress+networking.v1.swift",
"Model/networking/v1/IngressLoadBalancerStatus+networking.v1.swift",
"Model/networking/v1/IngressPortStatus+networking.v1.swift",
"Model/networking/v1/IngressRule+networking.v1.swift",
"Model/networking/v1/IngressServiceBackend+networking.v1.swift",
"Model/networking/v1/IngressSpec+networking.v1.swift",
"Model/networking/v1/IngressStatus+networking.v1.swift",
"Model/networking/v1/IngressTLS+networking.v1.swift",
"Model/networking/v1/NetworkPolicy+networking.v1.swift",
"Model/networking/v1/NetworkPolicyEgressRule+networking.v1.swift",
"Model/networking/v1/NetworkPolicyIngressRule+networking.v1.swift",
"Model/networking/v1/NetworkPolicyList+networking.v1.swift",
"Model/networking/v1/NetworkPolicyPeer+networking.v1.swift",
"Model/networking/v1/NetworkPolicyPort+networking.v1.swift",
"Model/networking/v1/NetworkPolicySpec+networking.v1.swift",
"Model/networking/v1/ServiceBackendPort+networking.v1.swift",
"Model/networking/v1/networking+v1.swift",
"Model/networking/v1alpha1/IPAddress+networking.v1alpha1.swift",
"Model/networking/v1alpha1/IPAddressList+networking.v1alpha1.swift",
"Model/networking/v1alpha1/IPAddressSpec+networking.v1alpha1.swift",
"Model/networking/v1alpha1/ParentReference+networking.v1alpha1.swift",
"Model/networking/v1alpha1/ServiceCIDR+networking.v1alpha1.swift",
"Model/networking/v1alpha1/ServiceCIDRList+networking.v1alpha1.swift",
"Model/networking/v1alpha1/ServiceCIDRSpec+networking.v1alpha1.swift",
"Model/networking/v1alpha1/ServiceCIDRStatus+networking.v1alpha1.swift",
"Model/networking/v1alpha1/networking+v1alpha1.swift",
"Model/node/node.swift",
"Model/node/v1/Overhead+node.v1.swift",
"Model/node/v1/RuntimeClass+node.v1.swift",
"Model/node/v1/RuntimeClassList+node.v1.swift",
"Model/node/v1/Scheduling+node.v1.swift",
"Model/node/v1/node+v1.swift",
"Model/policy/policy.swift",
"Model/policy/v1/Eviction+policy.v1.swift",
"Model/policy/v1/PodDisruptionBudget+policy.v1.swift",
"Model/policy/v1/PodDisruptionBudgetList+policy.v1.swift",
"Model/policy/v1/PodDisruptionBudgetSpec+policy.v1.swift",
"Model/policy/v1/PodDisruptionBudgetStatus+policy.v1.swift",
"Model/policy/v1/policy+v1.swift",
"Model/rbac/rbac.swift",
"Model/rbac/v1/AggregationRule+rbac.v1.swift",
"Model/rbac/v1/ClusterRole+rbac.v1.swift",
"Model/rbac/v1/ClusterRoleBinding+rbac.v1.swift",
"Model/rbac/v1/ClusterRoleBindingList+rbac.v1.swift",
"Model/rbac/v1/ClusterRoleList+rbac.v1.swift",
"Model/rbac/v1/PolicyRule+rbac.v1.swift",
"Model/rbac/v1/Role+rbac.v1.swift",
"Model/rbac/v1/RoleBinding+rbac.v1.swift",
"Model/rbac/v1/RoleBindingList+rbac.v1.swift",
"Model/rbac/v1/RoleList+rbac.v1.swift",
"Model/rbac/v1/RoleRef+rbac.v1.swift",
"Model/rbac/v1/Subject+rbac.v1.swift",
"Model/rbac/v1/rbac+v1.swift",
"Model/resource/resource.swift",
"Model/resource/v1alpha2/AllocationResult+resource.v1alpha2.swift",
"Model/resource/v1alpha2/PodSchedulingContext+resource.v1alpha2.swift",
"Model/resource/v1alpha2/PodSchedulingContextList+resource.v1alpha2.swift",
"Model/resource/v1alpha2/PodSchedulingContextSpec+resource.v1alpha2.swift",
"Model/resource/v1alpha2/PodSchedulingContextStatus+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaim+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimConsumerReference+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimList+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimParametersReference+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimSchedulingStatus+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimSpec+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimStatus+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimTemplate+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimTemplateList+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClaimTemplateSpec+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClass+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClassList+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceClassParametersReference+resource.v1alpha2.swift",
"Model/resource/v1alpha2/ResourceHandle+resource.v1alpha2.swift",
"Model/resource/v1alpha2/resource+v1alpha2.swift",
"Model/scheduling/scheduling.swift",
"Model/scheduling/v1/PriorityClass+scheduling.v1.swift",
"Model/scheduling/v1/PriorityClassList+scheduling.v1.swift",
"Model/scheduling/v1/scheduling+v1.swift",
"Model/storage/storage.swift",
"Model/storage/v1/CSIDriver+storage.v1.swift",
"Model/storage/v1/CSIDriverList+storage.v1.swift",
"Model/storage/v1/CSIDriverSpec+storage.v1.swift",
"Model/storage/v1/CSINode+storage.v1.swift",
"Model/storage/v1/CSINodeDriver+storage.v1.swift",
"Model/storage/v1/CSINodeList+storage.v1.swift",
"Model/storage/v1/CSINodeSpec+storage.v1.swift",
"Model/storage/v1/CSIStorageCapacity+storage.v1.swift",
"Model/storage/v1/CSIStorageCapacityList+storage.v1.swift",
"Model/storage/v1/StorageClass+storage.v1.swift",
"Model/storage/v1/StorageClassList+storage.v1.swift",
"Model/storage/v1/TokenRequest+storage.v1.swift",
"Model/storage/v1/VolumeAttachment+storage.v1.swift",
"Model/storage/v1/VolumeAttachmentList+storage.v1.swift",
"Model/storage/v1/VolumeAttachmentSource+storage.v1.swift",
"Model/storage/v1/VolumeAttachmentSpec+storage.v1.swift",
"Model/storage/v1/VolumeAttachmentStatus+storage.v1.swift",
"Model/storage/v1/VolumeError+storage.v1.swift",
"Model/storage/v1/VolumeNodeResources+storage.v1.swift",
"Model/storage/v1/storage+v1.swift",
"Model/storage/v1alpha1/VolumeAttributesClass+storage.v1alpha1.swift",
"Model/storage/v1alpha1/VolumeAttributesClassList+storage.v1alpha1.swift",
"Model/storage/v1alpha1/storage+v1alpha1.swift",
"SwiftkubeModel.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.