The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of SwiftkubeModel, reference main (140c04), with Swift 6.0 for macOS (SPM) on 5 Nov 2024 08:14:01 UTC.

Swift 6 data race errors: 151

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

100 | 	static let storageV1CSIStorageCapacity = GroupVersionKind(group: "storage.k8s.io", version: "v1", kind: "CSIStorageCapacity")
101 | 	static let storageV1StorageClass = GroupVersionKind(group: "storage.k8s.io", version: "v1", kind: "StorageClass")
102 | 	static let storageV1VolumeAttachment = GroupVersionKind(group: "storage.k8s.io", version: "v1", kind: "VolumeAttachment")
    |             |- warning: static property 'storageV1VolumeAttachment' is not concurrency-safe because non-'Sendable' type 'GroupVersionKind' 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 = GroupVersionKind(group: "storage.k8s.io", version: "v1alpha1", kind: "VolumeAttributesClass")
104 | }
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionKind.swift:24:15: note: consider making struct 'GroupVersionKind' conform to the 'Sendable' protocol
 22 | /// GroupVersionKind unambiguously identifies a kind.
 23 | ///
 24 | public struct GroupVersionKind: Hashable {
    |               `- note: consider making struct 'GroupVersionKind' conform to the 'Sendable' protocol
 25 | 	/// The group of the resource.
 26 | 	public let group: String
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionKind+DefaultResources.swift:103:13: warning: static property 'storageV1Alpha1VolumeAttributesClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionKind' may have shared mutable state; this is an error in the Swift 6 language mode
101 | 	static let storageV1StorageClass = GroupVersionKind(group: "storage.k8s.io", version: "v1", kind: "StorageClass")
102 | 	static let storageV1VolumeAttachment = GroupVersionKind(group: "storage.k8s.io", version: "v1", kind: "VolumeAttachment")
103 | 	static let storageV1Alpha1VolumeAttributesClass = GroupVersionKind(group: "storage.k8s.io", version: "v1alpha1", kind: "VolumeAttributesClass")
    |             |- warning: static property 'storageV1Alpha1VolumeAttributesClass' is not concurrency-safe because non-'Sendable' type 'GroupVersionKind' 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 |
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionKind.swift:24:15: note: consider making struct 'GroupVersionKind' conform to the 'Sendable' protocol
 22 | /// GroupVersionKind unambiguously identifies a kind.
 23 | ///
 24 | public struct GroupVersionKind: Hashable {
    |               `- note: consider making struct 'GroupVersionKind' conform to the 'Sendable' protocol
 25 | 	/// The group of the resource.
 26 | 	public let group: String
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:29:13: warning: static property 'coreV1Binding' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 27 | public extension GroupVersionResource {
 28 |
 29 | 	static let coreV1Binding = GroupVersionResource(group: "core", version: "v1", resource: "bindings")
    |             |- warning: static property 'coreV1Binding' 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 'coreV1Binding' 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
 30 | 	static let coreV1ComponentStatus = GroupVersionResource(group: "core", version: "v1", resource: "componentstatuses")
 31 | 	static let coreV1ConfigMap = GroupVersionResource(group: "core", version: "v1", resource: "configmaps")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:30:13: warning: static property 'coreV1ComponentStatus' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | 	static let coreV1Binding = GroupVersionResource(group: "core", version: "v1", resource: "bindings")
 30 | 	static let coreV1ComponentStatus = GroupVersionResource(group: "core", version: "v1", resource: "componentstatuses")
    |             |- warning: static property 'coreV1ComponentStatus' 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 'coreV1ComponentStatus' 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
 31 | 	static let coreV1ConfigMap = GroupVersionResource(group: "core", version: "v1", resource: "configmaps")
 32 | 	static let coreV1Endpoints = GroupVersionResource(group: "core", version: "v1", resource: "endpoints")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:31:13: warning: static property 'coreV1ConfigMap' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 29 | 	static let coreV1Binding = GroupVersionResource(group: "core", version: "v1", resource: "bindings")
 30 | 	static let coreV1ComponentStatus = GroupVersionResource(group: "core", version: "v1", resource: "componentstatuses")
 31 | 	static let coreV1ConfigMap = GroupVersionResource(group: "core", version: "v1", resource: "configmaps")
    |             |- warning: static property 'coreV1ConfigMap' 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 'coreV1ConfigMap' 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
 32 | 	static let coreV1Endpoints = GroupVersionResource(group: "core", version: "v1", resource: "endpoints")
 33 | 	static let coreV1Event = GroupVersionResource(group: "core", version: "v1", resource: "events")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:32:13: warning: static property 'coreV1Endpoints' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 30 | 	static let coreV1ComponentStatus = GroupVersionResource(group: "core", version: "v1", resource: "componentstatuses")
 31 | 	static let coreV1ConfigMap = GroupVersionResource(group: "core", version: "v1", resource: "configmaps")
 32 | 	static let coreV1Endpoints = GroupVersionResource(group: "core", version: "v1", resource: "endpoints")
    |             |- warning: static property 'coreV1Endpoints' 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 'coreV1Endpoints' 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
 33 | 	static let coreV1Event = GroupVersionResource(group: "core", version: "v1", resource: "events")
 34 | 	static let coreV1LimitRange = GroupVersionResource(group: "core", version: "v1", resource: "limitranges")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:33:13: warning: static property 'coreV1Event' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 31 | 	static let coreV1ConfigMap = GroupVersionResource(group: "core", version: "v1", resource: "configmaps")
 32 | 	static let coreV1Endpoints = GroupVersionResource(group: "core", version: "v1", resource: "endpoints")
 33 | 	static let coreV1Event = GroupVersionResource(group: "core", version: "v1", resource: "events")
    |             |- warning: static property 'coreV1Event' 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 'coreV1Event' 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
 34 | 	static let coreV1LimitRange = GroupVersionResource(group: "core", version: "v1", resource: "limitranges")
 35 | 	static let coreV1Namespace = GroupVersionResource(group: "core", version: "v1", resource: "namespaces")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:34:13: warning: static property 'coreV1LimitRange' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 32 | 	static let coreV1Endpoints = GroupVersionResource(group: "core", version: "v1", resource: "endpoints")
 33 | 	static let coreV1Event = GroupVersionResource(group: "core", version: "v1", resource: "events")
 34 | 	static let coreV1LimitRange = GroupVersionResource(group: "core", version: "v1", resource: "limitranges")
    |             |- warning: static property 'coreV1LimitRange' 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 'coreV1LimitRange' 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
 35 | 	static let coreV1Namespace = GroupVersionResource(group: "core", version: "v1", resource: "namespaces")
 36 | 	static let coreV1Node = GroupVersionResource(group: "core", version: "v1", resource: "nodes")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:35:13: warning: static property 'coreV1Namespace' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 33 | 	static let coreV1Event = GroupVersionResource(group: "core", version: "v1", resource: "events")
 34 | 	static let coreV1LimitRange = GroupVersionResource(group: "core", version: "v1", resource: "limitranges")
 35 | 	static let coreV1Namespace = GroupVersionResource(group: "core", version: "v1", resource: "namespaces")
    |             |- warning: static property 'coreV1Namespace' 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 'coreV1Namespace' 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
 36 | 	static let coreV1Node = GroupVersionResource(group: "core", version: "v1", resource: "nodes")
 37 | 	static let coreV1PersistentVolume = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumes")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:36:13: warning: static property 'coreV1Node' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 34 | 	static let coreV1LimitRange = GroupVersionResource(group: "core", version: "v1", resource: "limitranges")
 35 | 	static let coreV1Namespace = GroupVersionResource(group: "core", version: "v1", resource: "namespaces")
 36 | 	static let coreV1Node = GroupVersionResource(group: "core", version: "v1", resource: "nodes")
    |             |- warning: static property 'coreV1Node' 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 'coreV1Node' 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
 37 | 	static let coreV1PersistentVolume = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumes")
 38 | 	static let coreV1PersistentVolumeClaim = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumeclaims")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:37:13: warning: static property 'coreV1PersistentVolume' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 35 | 	static let coreV1Namespace = GroupVersionResource(group: "core", version: "v1", resource: "namespaces")
 36 | 	static let coreV1Node = GroupVersionResource(group: "core", version: "v1", resource: "nodes")
 37 | 	static let coreV1PersistentVolume = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumes")
    |             |- warning: static property 'coreV1PersistentVolume' 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 'coreV1PersistentVolume' 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
 38 | 	static let coreV1PersistentVolumeClaim = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumeclaims")
 39 | 	static let coreV1Pod = GroupVersionResource(group: "core", version: "v1", resource: "pods")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:38:13: warning: static property 'coreV1PersistentVolumeClaim' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 36 | 	static let coreV1Node = GroupVersionResource(group: "core", version: "v1", resource: "nodes")
 37 | 	static let coreV1PersistentVolume = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumes")
 38 | 	static let coreV1PersistentVolumeClaim = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumeclaims")
    |             |- warning: static property 'coreV1PersistentVolumeClaim' 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 'coreV1PersistentVolumeClaim' 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
 39 | 	static let coreV1Pod = GroupVersionResource(group: "core", version: "v1", resource: "pods")
 40 | 	static let coreV1PodTemplate = GroupVersionResource(group: "core", version: "v1", resource: "podtemplates")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:39:13: warning: static property 'coreV1Pod' is not concurrency-safe because non-'Sendable' type 'GroupVersionResource' may have shared mutable state; this is an error in the Swift 6 language mode
 37 | 	static let coreV1PersistentVolume = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumes")
 38 | 	static let coreV1PersistentVolumeClaim = GroupVersionResource(group: "core", version: "v1", resource: "persistentvolumeclaims")
 39 | 	static let coreV1Pod = GroupVersionResource(group: "core", version: "v1", resource: "pods")
    |             |- warning: static property 'coreV1Pod' 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 'coreV1Pod' 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
 40 | 	static let coreV1PodTemplate = GroupVersionResource(group: "core", version: "v1", resource: "podtemplates")
 41 | 	static let coreV1ReplicationController = GroupVersionResource(group: "core", version: "v1", resource: "replicationcontrollers")
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Model/GroupVersionResource+DefaultResources.swift:40:13: 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
 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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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")
/Users/admin/builder/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
/Users/admin/builder/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 | }
/Users/admin/builder/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
/Users/admin/builder/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 |
/Users/admin/builder/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
/Users/admin/builder/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
[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! (34.53s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftkubeModel",
  "name" : "SwiftkubeModel",
  "path" : "/Users/admin/builder/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"
}
Done.