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 SwiftkubeClient, reference main (42ced3), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 17:31:13 UTC.

Swift 6 data race errors: 5

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

43 | 	case statusError(meta.v1.Status)
   |       `- warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/model/Sources/Model/meta/v1/Status+meta.v1.swift:32:9: note: struct 'Status' does not conform to the 'Sendable' protocol
 30 | 	/// Status is a return value for calls that don't return other objects.
 31 | 	///
 32 | 	struct Status: KubernetesResource {
    |         `- note: struct 'Status' does not conform to the 'Sendable' protocol
 33 | 		///
 34 | 		/// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
19 | import Logging
20 | import NIOHTTP1
21 | import SwiftkubeModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
22 |
23 | // MARK: - SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:45:7: warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | 	case statusError(meta.v1.Status)
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
   |       `- warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
46 | 	/// Thrown when the underlying HTTPClient reports an error.
47 | 	case clientError(Error)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:51:7: warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
49 | 	case taskError(Error)
50 | 	/// Thrown when a `SwiftkubeClientTask` exhausts all retry attempts reconnecting to the API server.
51 | 	case maxRetriesReached(request: KubernetesRequest)
   |       `- warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
52 |
53 | 	internal static func methodNotAllowed(_ method: HTTPMethod) -> SwiftkubeClientError {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesRequest.swift:26:15: note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 24 |
 25 | /// Represents a request against Kubernetes API Server
 26 | public struct KubernetesRequest {
    |               `- note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 27 |
 28 | 	/// API URL for this request.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/DataStreamer.swift:49:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
47 | 		logger: Logger
48 | 	) -> Task<Void, Error> {
49 | 		Task {
   |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
50 | 			guard !Task.isCancelled else {
51 | 				logger.debug("DataStreamer for response: \(response) was cancelled")
   :
77 | 					}
78 |
79 | 					process(data: data, continuation: continuation)
   |      `- note: closure captures 'self' which is accessible to code in the current task
80 | 				}
81 |
[1649/1678] Compiling SwiftkubeClient UnstructuredResource+YAML.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:43:7: warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
41 | 	case decodingError(String)
42 | 	/// Thrown on all  errors returned from the Kubernetes API server.
43 | 	case statusError(meta.v1.Status)
   |       `- warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/model/Sources/Model/meta/v1/Status+meta.v1.swift:32:9: note: struct 'Status' does not conform to the 'Sendable' protocol
 30 | 	/// Status is a return value for calls that don't return other objects.
 31 | 	///
 32 | 	struct Status: KubernetesResource {
    |         `- note: struct 'Status' does not conform to the 'Sendable' protocol
 33 | 		///
 34 | 		/// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
19 | import Logging
20 | import NIOHTTP1
21 | import SwiftkubeModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
22 |
23 | // MARK: - SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:45:7: warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | 	case statusError(meta.v1.Status)
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
   |       `- warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
46 | 	/// Thrown when the underlying HTTPClient reports an error.
47 | 	case clientError(Error)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:51:7: warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
49 | 	case taskError(Error)
50 | 	/// Thrown when a `SwiftkubeClientTask` exhausts all retry attempts reconnecting to the API server.
51 | 	case maxRetriesReached(request: KubernetesRequest)
   |       `- warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
52 |
53 | 	internal static func methodNotAllowed(_ method: HTTPMethod) -> SwiftkubeClientError {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesRequest.swift:26:15: note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 24 |
 25 | /// Represents a request against Kubernetes API Server
 26 | public struct KubernetesRequest {
    |               `- note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 27 |
 28 | 	/// API URL for this request.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/DataStreamer.swift:49:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
47 | 		logger: Logger
48 | 	) -> Task<Void, Error> {
49 | 		Task {
   |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
50 | 			guard !Task.isCancelled else {
51 | 				logger.debug("DataStreamer for response: \(response) was cancelled")
   :
77 | 					}
78 |
79 | 					process(data: data, continuation: continuation)
   |      `- note: closure captures 'self' which is accessible to code in the current task
80 | 				}
81 |
[1650/1678] Compiling SwiftkubeClient SwiftkubeClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:43:7: warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
41 | 	case decodingError(String)
42 | 	/// Thrown on all  errors returned from the Kubernetes API server.
43 | 	case statusError(meta.v1.Status)
   |       `- warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/model/Sources/Model/meta/v1/Status+meta.v1.swift:32:9: note: struct 'Status' does not conform to the 'Sendable' protocol
 30 | 	/// Status is a return value for calls that don't return other objects.
 31 | 	///
 32 | 	struct Status: KubernetesResource {
    |         `- note: struct 'Status' does not conform to the 'Sendable' protocol
 33 | 		///
 34 | 		/// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
19 | import Logging
20 | import NIOHTTP1
21 | import SwiftkubeModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
22 |
23 | // MARK: - SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:45:7: warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | 	case statusError(meta.v1.Status)
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
   |       `- warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
46 | 	/// Thrown when the underlying HTTPClient reports an error.
47 | 	case clientError(Error)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:51:7: warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
49 | 	case taskError(Error)
50 | 	/// Thrown when a `SwiftkubeClientTask` exhausts all retry attempts reconnecting to the API server.
51 | 	case maxRetriesReached(request: KubernetesRequest)
   |       `- warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
52 |
53 | 	internal static func methodNotAllowed(_ method: HTTPMethod) -> SwiftkubeClientError {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesRequest.swift:26:15: note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 24 |
 25 | /// Represents a request against Kubernetes API Server
 26 | public struct KubernetesRequest {
    |               `- note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 27 |
 28 | 	/// API URL for this request.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/DataStreamer.swift:49:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
47 | 		logger: Logger
48 | 	) -> Task<Void, Error> {
49 | 		Task {
   |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
50 | 			guard !Task.isCancelled else {
51 | 				logger.debug("DataStreamer for response: \(response) was cancelled")
   :
77 | 					}
78 |
79 | 					process(data: data, continuation: continuation)
   |      `- note: closure captures 'self' which is accessible to code in the current task
80 | 				}
81 |
[1651/1678] Compiling SwiftkubeClient DataStreamer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:43:7: warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
41 | 	case decodingError(String)
42 | 	/// Thrown on all  errors returned from the Kubernetes API server.
43 | 	case statusError(meta.v1.Status)
   |       `- warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/model/Sources/Model/meta/v1/Status+meta.v1.swift:32:9: note: struct 'Status' does not conform to the 'Sendable' protocol
 30 | 	/// Status is a return value for calls that don't return other objects.
 31 | 	///
 32 | 	struct Status: KubernetesResource {
    |         `- note: struct 'Status' does not conform to the 'Sendable' protocol
 33 | 		///
 34 | 		/// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
19 | import Logging
20 | import NIOHTTP1
21 | import SwiftkubeModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
22 |
23 | // MARK: - SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:45:7: warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | 	case statusError(meta.v1.Status)
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
   |       `- warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
46 | 	/// Thrown when the underlying HTTPClient reports an error.
47 | 	case clientError(Error)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:51:7: warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
49 | 	case taskError(Error)
50 | 	/// Thrown when a `SwiftkubeClientTask` exhausts all retry attempts reconnecting to the API server.
51 | 	case maxRetriesReached(request: KubernetesRequest)
   |       `- warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
52 |
53 | 	internal static func methodNotAllowed(_ method: HTTPMethod) -> SwiftkubeClientError {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesRequest.swift:26:15: note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 24 |
 25 | /// Represents a request against Kubernetes API Server
 26 | public struct KubernetesRequest {
    |               `- note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 27 |
 28 | 	/// API URL for this request.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/DataStreamer.swift:49:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
47 | 		logger: Logger
48 | 	) -> Task<Void, Error> {
49 | 		Task {
   |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
50 | 			guard !Task.isCancelled else {
51 | 				logger.debug("DataStreamer for response: \(response) was cancelled")
   :
77 | 					}
78 |
79 | 					process(data: data, continuation: continuation)
   |      `- note: closure captures 'self' which is accessible to code in the current task
80 | 				}
81 |
[1652/1678] Emitting module SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:43:7: warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
41 | 	case decodingError(String)
42 | 	/// Thrown on all  errors returned from the Kubernetes API server.
43 | 	case statusError(meta.v1.Status)
   |       `- warning: associated value 'statusError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'meta.v1.Status'; this is an error in the Swift 6 language mode
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/model/Sources/Model/meta/v1/Status+meta.v1.swift:32:9: note: struct 'Status' does not conform to the 'Sendable' protocol
 30 | 	/// Status is a return value for calls that don't return other objects.
 31 | 	///
 32 | 	struct Status: KubernetesResource {
    |         `- note: struct 'Status' does not conform to the 'Sendable' protocol
 33 | 		///
 34 | 		/// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:21:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
19 | import Logging
20 | import NIOHTTP1
21 | import SwiftkubeModel
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftkubeModel'
22 |
23 | // MARK: - SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:45:7: warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
43 | 	case statusError(meta.v1.Status)
44 | 	/// Indicates all response decoding errors.
45 | 	case unexpectedError(Any)
   |       `- warning: associated value 'unexpectedError' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
46 | 	/// Thrown when the underlying HTTPClient reports an error.
47 | 	case clientError(Error)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/SwiftkubeClient.swift:51:7: warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
49 | 	case taskError(Error)
50 | 	/// Thrown when a `SwiftkubeClientTask` exhausts all retry attempts reconnecting to the API server.
51 | 	case maxRetriesReached(request: KubernetesRequest)
   |       `- warning: associated value 'maxRetriesReached(request:)' of 'Sendable'-conforming enum 'SwiftkubeClientError' has non-sendable type 'KubernetesRequest'; this is an error in the Swift 6 language mode
52 |
53 | 	internal static func methodNotAllowed(_ method: HTTPMethod) -> SwiftkubeClientError {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesRequest.swift:26:15: note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 24 |
 25 | /// Represents a request against Kubernetes API Server
 26 | public struct KubernetesRequest {
    |               `- note: consider making struct 'KubernetesRequest' conform to the 'Sendable' protocol
 27 |
 28 | 	/// API URL for this request.
[1653/1678] Compiling SwiftkubeClient KubernetesRequest.swift
[1654/1678] Compiling SwiftkubeClient NamespacedGenericKubernetesClient+Pod.swift
[1655/1678] Compiling SwiftkubeClient NamespacedGenericKubernetesClient.swift
[1656/1678] Compiling SwiftkubeClient RequestBuilder.swift
[1657/1678] Compiling SwiftkubeClient RequestHandlerType.swift
[1658/1678] Compiling SwiftkubeClient LineStreamer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:101:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 99 |
100 | 	private func makeTask(continuation: AsyncThrowingStream<Output, Error>.Continuation) -> Task<Void, Error> {
101 | 		Task {
    |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
102 | 			while true {
103 | 				guard !Task.isCancelled else {
104 | 					logger.debug("Task for request: \(request) was cancelled")
    |      `- note: closure captures 'self' which is accessible to code in the current task
105 | 					continuation.finish()
106 | 					break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:119:20: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
117 | 						}
118 |
119 | 						continuation.yield(event)
    |                    |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'event' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
120 |
121 | 						guard !Task.isCancelled else {
[1659/1678] Compiling SwiftkubeClient ResourceEventStreamer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:101:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 99 |
100 | 	private func makeTask(continuation: AsyncThrowingStream<Output, Error>.Continuation) -> Task<Void, Error> {
101 | 		Task {
    |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
102 | 			while true {
103 | 				guard !Task.isCancelled else {
104 | 					logger.debug("Task for request: \(request) was cancelled")
    |      `- note: closure captures 'self' which is accessible to code in the current task
105 | 					continuation.finish()
106 | 					break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:119:20: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
117 | 						}
118 |
119 | 						continuation.yield(event)
    |                    |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'event' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
120 |
121 | 						guard !Task.isCancelled else {
[1660/1678] Compiling SwiftkubeClient RetryStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:101:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 99 |
100 | 	private func makeTask(continuation: AsyncThrowingStream<Output, Error>.Continuation) -> Task<Void, Error> {
101 | 		Task {
    |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
102 | 			while true {
103 | 				guard !Task.isCancelled else {
104 | 					logger.debug("Task for request: \(request) was cancelled")
    |      `- note: closure captures 'self' which is accessible to code in the current task
105 | 					continuation.finish()
106 | 					break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:119:20: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
117 | 						}
118 |
119 | 						continuation.yield(event)
    |                    |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'event' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
120 |
121 | 						guard !Task.isCancelled else {
[1661/1678] Compiling SwiftkubeClient SwiftkubeClientTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:101:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 99 |
100 | 	private func makeTask(continuation: AsyncThrowingStream<Output, Error>.Continuation) -> Task<Void, Error> {
101 | 		Task {
    |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
102 | 			while true {
103 | 				guard !Task.isCancelled else {
104 | 					logger.debug("Task for request: \(request) was cancelled")
    |      `- note: closure captures 'self' which is accessible to code in the current task
105 | 					continuation.finish()
106 | 					break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:119:20: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
117 | 						}
118 |
119 | 						continuation.yield(event)
    |                    |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'event' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
120 |
121 | 						guard !Task.isCancelled else {
[1662/1678] Compiling SwiftkubeClient WatchEvent.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:101:8: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
 99 |
100 | 	private func makeTask(continuation: AsyncThrowingStream<Output, Error>.Continuation) -> Task<Void, Error> {
101 | 		Task {
    |        `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
102 | 			while true {
103 | 				guard !Task.isCancelled else {
104 | 					logger.debug("Task for request: \(request) was cancelled")
    |      `- note: closure captures 'self' which is accessible to code in the current task
105 | 					continuation.finish()
106 | 					break
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:119:20: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
117 | 						}
118 |
119 | 						continuation.yield(event)
    |                    |- warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
    |                    `- note: task-isolated 'event' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
120 |
121 | 						guard !Task.isCancelled else {
[1663/1678] Compiling SwiftkubeClient KubernetesClient+batch.v1.swift
[1664/1678] Compiling SwiftkubeClient KubernetesClient+certificates.v1.swift
[1665/1678] Compiling SwiftkubeClient KubernetesClient+certificates.v1alpha1.swift
[1666/1678] Compiling SwiftkubeClient KubernetesClient+coordination.v1.swift
[1667/1678] Compiling SwiftkubeClient KubernetesClient+discovery.v1.swift
[1668/1678] Compiling SwiftkubeClient KubernetesClient+events.v1.swift
[1669/1678] Compiling SwiftkubeClient KubernetesClient+storage.v1.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:177:37: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
174 | 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
    |                                               `- note: parameter 'callback' is implicitly non-sendable
177 | 		httpClient.shutdown(queue: queue, callback)
    |                                     `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
178 | 	}
179 |
[1670/1678] Compiling SwiftkubeClient KubernetesClient+storage.v1alpha1.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:177:37: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
174 | 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
    |                                               `- note: parameter 'callback' is implicitly non-sendable
177 | 		httpClient.shutdown(queue: queue, callback)
    |                                     `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
178 | 	}
179 |
[1671/1678] Compiling SwiftkubeClient ClusterScopedGenericKubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:177:37: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
174 | 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
    |                                               `- note: parameter 'callback' is implicitly non-sendable
177 | 		httpClient.shutdown(queue: queue, callback)
    |                                     `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
178 | 	}
179 |
[1672/1678] Compiling SwiftkubeClient GenericKubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:177:37: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
174 | 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
    |                                               `- note: parameter 'callback' is implicitly non-sendable
177 | 		httpClient.shutdown(queue: queue, callback)
    |                                     `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
178 | 	}
179 |
[1673/1678] Compiling SwiftkubeClient KubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:177:37: warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
174 | 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
    |                                               `- note: parameter 'callback' is implicitly non-sendable
177 | 		httpClient.shutdown(queue: queue, callback)
    |                                     `- warning: passing non-sendable parameter 'callback' to function expecting a @Sendable closure
178 | 	}
179 |
[1674/1678] Compiling SwiftkubeClient Selectors.swift
[1675/1678] Compiling SwiftkubeClient Authentication.swift
[1676/1678] Compiling SwiftkubeClient KubeConfig.swift
[1677/1678] Compiling SwiftkubeClient KubernetesClientConfig.swift
[1678/1678] Compiling SwiftkubeClient DiscoveryRequestBuilder.swift
Build complete! (81.61s)
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Build complete.
{
  "dependencies" : [
    {
      "identity" : "model",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.0",
            "upper_bound" : "0.15.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftkube/model.git"
    },
    {
      "identity" : "async-http-client",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.21.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-server/async-http-client.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.6.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "swift-metrics",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.5.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-metrics.git"
    },
    {
      "identity" : "yams",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.1.2",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jpsim/Yams.git"
    },
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.67.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio"
    }
  ],
  "manifest_display_name" : "SwiftkubeClient",
  "name" : "SwiftkubeClient",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftkubeClient",
      "targets" : [
        "SwiftkubeClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftkubeClientTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftkubeClientTests",
      "path" : "Tests/SwiftkubeClientTests",
      "sources" : [
        "K3dCRDTests.swift",
        "K3dConfigMapTests.swift",
        "K3dNamespaceTests.swift",
        "K3dNodeTests.swift",
        "K3dServiceTests.swift",
        "K3dTestCase.swift",
        "RequestBuilderTests.swift",
        "RetryStrategyTests.swift"
      ],
      "target_dependencies" : [
        "SwiftkubeClient"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftkubeClient",
      "module_type" : "SwiftTarget",
      "name" : "SwiftkubeClient",
      "path" : "Sources/SwiftkubeClient",
      "product_dependencies" : [
        "SwiftkubeModel",
        "AsyncHTTPClient",
        "Logging",
        "Metrics",
        "Yams",
        "NIO",
        "NIOFoundationCompat"
      ],
      "product_memberships" : [
        "SwiftkubeClient"
      ],
      "sources" : [
        "API Groups/KubernetesClient+admissionregistration.v1.swift",
        "API Groups/KubernetesClient+admissionregistration.v1alpha1.swift",
        "API Groups/KubernetesClient+admissionregistration.v1beta1.swift",
        "API Groups/KubernetesClient+apiextensions.v1.swift",
        "API Groups/KubernetesClient+apiregistration.v1.swift",
        "API Groups/KubernetesClient+apps.v1.swift",
        "API Groups/KubernetesClient+authentication.v1.swift",
        "API Groups/KubernetesClient+authentication.v1alpha1.swift",
        "API Groups/KubernetesClient+authentication.v1beta1.swift",
        "API Groups/KubernetesClient+authorization.v1.swift",
        "API Groups/KubernetesClient+autoscaling.v1.swift",
        "API Groups/KubernetesClient+autoscaling.v2.swift",
        "API Groups/KubernetesClient+batch.v1.swift",
        "API Groups/KubernetesClient+certificates.v1.swift",
        "API Groups/KubernetesClient+certificates.v1alpha1.swift",
        "API Groups/KubernetesClient+coordination.v1.swift",
        "API Groups/KubernetesClient+discovery.v1.swift",
        "API Groups/KubernetesClient+events.v1.swift",
        "API Groups/KubernetesClient+flowcontrol.v1.swift",
        "API Groups/KubernetesClient+flowcontrol.v1beta3.swift",
        "API Groups/KubernetesClient+internal.v1alpha1.swift",
        "API Groups/KubernetesClient+networking.v1.swift",
        "API Groups/KubernetesClient+networking.v1alpha1.swift",
        "API Groups/KubernetesClient+node.v1.swift",
        "API Groups/KubernetesClient+policy.v1.swift",
        "API Groups/KubernetesClient+rbac.v1.swift",
        "API Groups/KubernetesClient+resource.v1alpha2.swift",
        "API Groups/KubernetesClient+scheduling.v1.swift",
        "API Groups/KubernetesClient+storage.v1.swift",
        "API Groups/KubernetesClient+storage.v1alpha1.swift",
        "Client/ClusterScopedGenericKubernetesClient.swift",
        "Client/GenericKubernetesClient.swift",
        "Client/KubernetesClient.swift",
        "Client/KubernetesRequest.swift",
        "Client/NamespacedGenericKubernetesClient+Pod.swift",
        "Client/NamespacedGenericKubernetesClient.swift",
        "Client/RequestBuilder.swift",
        "Client/RequestHandlerType.swift",
        "Client/Selectors.swift",
        "Config/Authentication.swift",
        "Config/KubeConfig.swift",
        "Config/KubernetesClientConfig.swift",
        "Discovery/DiscoveryRequestBuilder.swift",
        "Discovery/KubernetesClient+Discovery.swift",
        "Metrics/KubernetesClient+Metrics.swift",
        "Model/UnstructuredResource+YAML.swift",
        "SwiftkubeClient.swift",
        "Watch/DataStreamer.swift",
        "Watch/LineStreamer.swift",
        "Watch/ResourceEventStreamer.swift",
        "Watch/RetryStrategy.swift",
        "Watch/SwiftkubeClientTask.swift",
        "Watch/WatchEvent.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/swiftkube/client/main
Repository:               swiftkube/client
Swift version used:       6.0
Target:                   SwiftkubeClient
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'SwiftkubeClient'...
Finished extracting symbol information for 'SwiftkubeClient'. (15.47s)
Building documentation for 'SwiftkubeClient'...
warning: 'ReadOptions' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/get(name:options:)'
  --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:36:33-36:44
34 | 	/// - Parameters:
35 | 	///     - name: The name of the API resource to load.
36 + 	///     - options: A list of ``ReadOptions`` to apply to this request.
37 | 	///
38 | 	/// - Returns: The API resource specified by the given name.
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/watch(options:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:49:8-49:27
47 | 	///
48 | 	/// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
49 + 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
50 | 	///
51 | 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/watch(options:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:51:83-51:128
49 | 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
50 | 	///
51 + 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
52 | 	/// buffering policy is used, which should be taken into consideration.
53 | 	///
warning: 'follow(in:name:container:retryStrategy:)' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient'
  --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:68:35-68:75
66 | 	/// The task is executed indefinitely. Upon encountering non-transient errors this tasks reconnects to the
67 | 	/// Kubernetes API server, basically restarting the previous ``GenericKubernetesClient/watch(in:options:retryStrategy:)``
68 + 	/// or ``GenericKubernetesClient/follow(in:name:container:retryStrategy:)`` call.
   |                                   ╰─suggestion: Replace 'follow(in:name:container:retryStrategy:)' with 'follow(in:name:container:timestamps:retryStrategy:)'
69 | 	///
70 | 	/// The reconnect behaviour can be controlled by passing an instance of ``RetryStrategy``. The default is 10 retry
warning: Parameter 'namespace' not found in instance method declaration
  --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:84:8-84:56
82 | 	///
83 | 	/// - Parameters:
84 + 	///   - namespace: The namespace for this API request.
   |        ╰─suggestion: Remove 'namespace' parameter documentation
85 | 	///   - options: ``ListOption`` to filter/select the returned objects.
86 | 	///   - retryStrategy: A strategy to control the reconnect behaviour.
warning: 'ListOptions' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/list(options:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:104:29-104:40
102 | 	/// Lists the collection of API resources.
103 | 	///
104 + 	/// - Parameter options: ``ListOptions`` instance to control the behaviour of the `List` operation.
105 | 	///
106 | 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
warning: 'KubernetesAPIResourceList' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/list(options:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:106:21-106:46
104 | 	/// - Parameter options: ``ListOptions`` instance to control the behaviour of the `List` operation.
105 | 	///
106 + 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
107 | 	func list(options: [ListOption]? = nil) async throws -> Resource.List {
108 | 		try await super.list(in: .allNamespaces, options: options)
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/create(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:119:32-119:53
117 | 	/// Creates an API resource.
118 | 	///
119 + 	/// - Parameter resource: A ``KubernetesAPIResource`` instance to create.
120 | 	///
121 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/create(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:121:31-121:52
119 | 	/// - Parameter resource: A ``KubernetesAPIResource`` instance to create.
120 | 	///
121 + 	/// - Returns: The created ``KubernetesAPIResource``.
122 | 	func create(_ resource: Resource) async throws -> Resource {
123 | 		try await super.create(in: .allNamespaces, resource)
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/create(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:128:60-128:81
126 | 	/// Creates an API resource.
127 | 	///
128 + 	/// - Parameter block: A closure block, which creates a ``KubernetesAPIResource`` instance to send to the server.
129 | 	///
130 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/create(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:130:31-130:52
128 | 	/// - Parameter block: A closure block, which creates a ``KubernetesAPIResource`` instance to send to the server.
129 | 	///
130 + 	/// - Returns: The created ``KubernetesAPIResource``.
131 | 	func create(_ block: () -> Resource) async throws -> Resource {
132 | 		try await super.create(in: .allNamespaces, block())
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/update(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:143:32-143:53
141 | 	/// Replaces, i.e. updates, an API resource with the given instance.
142 | 	///
143 + 	/// - Parameter resource: A ``KubernetesAPIResource`` instance to update.
144 | 	///
145 | 	/// - Returns: The updated ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/update(_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:145:31-145:52
143 | 	/// - Parameter resource: A ``KubernetesAPIResource`` instance to update.
144 | 	///
145 + 	/// - Returns: The updated ``KubernetesAPIResource``.
146 | 	func update(_ resource: Resource) async throws -> Resource {
147 | 		try await super.update(in: .allNamespaces, resource)
warning: 'meta.v1.DeleteOptions' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/delete(name:options:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:160:36-160:57
158 | 	/// - Parameters:
159 | 	///   - name: The name of the resource.
160 + 	///   - options: An instance of ``meta.v1.DeleteOptions`` to control the behaviour of the `Delete` operation.
161 | 	///
162 | 	func delete(name: String, options: meta.v1.DeleteOptions? = nil) async throws {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/updateStatus(name:_:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:200:31-200:52
198 | 	///   - resource: A `KubernetesAPIResource` instance to update.
199 | 	///
200 + 	/// - Returns: The updated ``KubernetesAPIResource``.
201 | 	func updateStatus(name: String, _ resource: Resource) async throws -> Resource {
202 | 		try await super.updateStatus(in: .allNamespaces, name: name, resource)
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/getScale(name:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:216:23-216:43
214 | 	///   - name: The name of the API resource to load.
215 | 	///
216 + 	/// - Returns: The ``autoscaling.v1.Scale`` of the resource specified by the given name.
217 | 	func getScale(name: String) async throws -> autoscaling.v1.Scale {
218 | 		try await super.getScale(in: .allNamespaces, name: name)
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/updateScale(name:scale:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:225:36-225:56
223 | 	/// - Parameters:
224 | 	///   - name: The name of the resource to update.
225 + 	///   - scale: An instance of a ``autoscaling.v1.Scale`` object to apply to the resource.
226 | 	///   - resource: A ``autoscaling.v1.Scale`` instance to update.
227 | 	///
warning: Parameter 'resource' not found in instance method declaration
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:226:8-227:6
224 | 	///   - name: The name of the resource to update.
225 | 	///   - scale: An instance of a ``autoscaling.v1.Scale`` object to apply to the resource.
226 + 	///   - resource: A ``autoscaling.v1.Scale`` instance to update.
    |        ╰─suggestion: Remove 'resource' parameter documentation
227 + 	///
228 | 	/// - Returns: The updated ``autoscaling.v1.Scale``.
229 | 	func updateScale(name: String, scale: autoscaling.v1.Scale) async throws -> autoscaling.v1.Scale {
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/ClusterScopedGenericKubernetesClient/updateScale(name:scale:)'
   --> Sources/SwiftkubeClient/Client/ClusterScopedGenericKubernetesClient.swift:228:31-228:51
226 | 	///   - resource: A ``autoscaling.v1.Scale`` instance to update.
227 | 	///
228 + 	/// - Returns: The updated ``autoscaling.v1.Scale``.
229 | 	func updateScale(name: String, scale: autoscaling.v1.Scale) async throws -> autoscaling.v1.Scale {
230 | 		try await super.updateScale(in: .allNamespaces, name: name, scale: scale)
warning: 'ReadOptions' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/get(in:name:options:)'
  --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:93:21-93:32
91 | 	///   - namespace: The namespace for this API request.
92 | 	///   - name: The name of the API resource to load.
93 + 	///   - options: ``ReadOptions`` to apply to this request.
94 | 	///
95 | 	/// - Returns: The API resource specified by the given name in the given namespace.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/create(in:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:112:24-112:45
110 | 	/// - Parameters:
111 | 	///   - namespace: The namespace for this API request.
112 + 	///   - resource: A ``KubernetesAPIResource`` instance to create.
113 | 	///
114 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/create(in:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:114:31-114:52
112 | 	///   - resource: A ``KubernetesAPIResource`` instance to create.
113 | 	///
114 + 	/// - Returns: The created ``KubernetesAPIResource``.
115 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
116 | 	func create(in namespace: NamespaceSelector, _ resource: Resource) async throws -> Resource {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/update(in:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:130:24-130:45
128 | 	/// - Parameters:
129 | 	///   - namespace: The namespace for this API request.
130 + 	///   - resource: A ``KubernetesAPIResource`` instance to update.
131 | 	///
132 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/update(in:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:132:31-132:52
130 | 	///   - resource: A ``KubernetesAPIResource`` instance to update.
131 | 	///
132 + 	/// - Returns: The created ``KubernetesAPIResource``.
133 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
134 | 	func update(in namespace: NamespaceSelector, _ resource: Resource) async throws -> Resource {
warning: 'DeleteOptions' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/delete(in:name:options:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:150:21-150:34
148 | 	///   - namespace: The namespace for this API request.
149 | 	///   - name: The name of the resource object to delete.
150 + 	///   - options: ``DeleteOptions`` to apply to this request.
151 | 	///
152 | 	/// - Returns: The created ``KubernetesAPIResource`
warning: Return value documented for instance method returning void
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:152:6-152:53
150 | 	///   - options: ``DeleteOptions`` to apply to this request.
151 | 	///
152 + 	/// - Returns: The created ``KubernetesAPIResource`
    |      ╰─suggestion: Remove return value documentation
153 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
154 | 	func delete(in namespace: NamespaceSelector, name: String, options: meta.v1.DeleteOptions?) async throws {
warning: Return value documented for instance method returning void
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:171:6-171:49
169 | 	/// - Parameter namespace: The namespace for this API request.
170 | 	///
171 + 	/// - Returns: A ``ResourceOrStatus`` instance.
    |      ╰─suggestion: Remove return value documentation
172 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
173 | 	func deleteAll(in namespace: NamespaceSelector) async throws {
warning: 'ListOptions' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/list(in:options:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:191:21-191:32
189 | 	/// - Parameters:
190 | 	///   - namespace: The namespace for this API request.
191 + 	///   - options: ``ListOptions`` instance to control the behaviour of the `List` operation.
192 | 	///
193 | 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
warning: 'KubernetesAPIResourceList' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/list(in:options:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:193:21-193:46
191 | 	///   - options: ``ListOptions`` instance to control the behaviour of the `List` operation.
192 | 	///
193 + 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
194 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
195 | 	func list(in namespace: NamespaceSelector, options: [ListOption]? = nil) async throws -> Resource.List {
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/getScale(in:name:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:216:23-216:43
214 | 	///   - name: The name of the resource to load.
215 | 	///
216 + 	/// - Returns: The ``autoscaling.v1.Scale`` for the desired resource.
217 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
218 | 	func getScale(in namespace: NamespaceSelector, name: String) async throws -> autoscaling.v1.Scale {
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/updateScale(in:name:scale:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:234:34-234:54
232 | 	///   - namespace: The namespace for this API request.
233 | 	///   - name: The name of the resource to update.
234 + 	///   - scale: An instance of ``autoscaling.v1.Scale`` to replace.
235 | 	///
236 | 	/// - Returns: The updated ``autoscaling.v1.Scale`` for the desired resource.
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/updateScale(in:name:scale:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:236:31-236:51
234 | 	///   - scale: An instance of ``autoscaling.v1.Scale`` to replace.
235 | 	///
236 + 	/// - Returns: The updated ``autoscaling.v1.Scale`` for the desired resource.
237 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
238 | 	func updateScale(in namespace: NamespaceSelector, name: String, scale: autoscaling.v1.Scale) async throws -> autoscaling.v1.Scale {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/getStatus(in:name:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:286:23-286:44
284 | 	///   - name: The name of the resource to load.
285 | 	///
286 + 	/// - Returns: The ``KubernetesAPIResource``.
287 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
288 | 	func getStatus(in namespace: NamespaceSelector, name: String) async throws -> Resource {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/updateStatus(in:name:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:304:24-304:45
302 | 	///   - namespace: The namespace for this API request.
303 | 	///   - name: The name of the resource to update.
304 + 	///   - resource: A ``KubernetesAPIResource`` instance to update.
305 | 	///
306 | 	/// - Returns: The updated ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/updateStatus(in:name:_:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:306:31-306:52
304 | 	///   - resource: A ``KubernetesAPIResource`` instance to update.
305 | 	///
306 + 	/// - Returns: The updated ``KubernetesAPIResource``.
307 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
308 | 	func updateStatus(in namespace: NamespaceSelector, name: String, _ resource: Resource) async throws -> Resource {
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/watch(in:options:retryStrategy:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:330:8-330:27
328 | 	///
329 | 	/// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
330 + 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
331 | 	///
332 | 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/watch(in:options:retryStrategy:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:332:83-332:128
330 | 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
331 | 	///
332 + 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
333 | 	/// buffering policy is used, which should be taken into consideration.
334 | 	///
warning: 'follow(in:name:container:retryStrategy:)' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:349:35-349:75
347 | 	/// The task is executed indefinitely. Upon encountering non-transient errors this tasks reconnects to the
348 | 	/// Kubernetes API server, basically restarting the previous ``GenericKubernetesClient/watch(in:options:retryStrategy:)``
349 + 	/// or ``GenericKubernetesClient/follow(in:name:container:retryStrategy:)`` call.
    |                                   ╰─suggestion: Replace 'follow(in:name:container:retryStrategy:)' with 'follow(in:name:container:timestamps:retryStrategy:)'
350 | 	///
351 | 	/// The reconnect behaviour can be controlled by passing an instance of ``RetryStrategy``. The default is 10 retry
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/follow(in:name:container:timestamps:retryStrategy:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:392:8-392:27
390 | 	///
391 | 	/// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
392 + 	/// ``AsyncThrowingStream``, that begins yielding log lines immediately as they are received from the Kubernetes API server.
393 | 	///
394 | 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient/follow(in:name:container:timestamps:retryStrategy:)'
   --> Sources/SwiftkubeClient/Client/GenericKubernetesClient.swift:394:83-394:128
392 | 	/// ``AsyncThrowingStream``, that begins yielding log lines immediately as they are received from the Kubernetes API server.
393 | 	///
394 + 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
395 | 	/// buffering policy is used, which should be taken into consideration.
396 | 	///
warning: 'EventLoopGroupProvider' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(provider:logger:)'
  --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:91:25-91:47
89 | 	///
90 | 	/// - Parameters:
91 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
92 | 	///    - logger: The logger to use for this client.
93 | 	public convenience init?(
warning: 'EventLoopGroup' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(provider:logger:)'
  --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:91:67-91:81
89 | 	///
90 | 	/// - Parameters:
91 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
92 | 	///    - logger: The logger to use for this client.
93 | 	public convenience init?(
warning: 'EventLoopGroupProvider' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(fromURL:provider:logger:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:112:25-112:47
110 | 	/// - Parameters:
111 | 	///    - url: The url to load the configuration from for this client instance. It can be a local file or remote URL.
112 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
113 | 	///    - logger: The logger to use for this client.
114 | 	public convenience init?(
warning: 'EventLoopGroup' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(fromURL:provider:logger:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:112:67-112:81
110 | 	/// - Parameters:
111 | 	///    - url: The url to load the configuration from for this client instance. It can be a local file or remote URL.
112 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
113 | 	///    - logger: The logger to use for this client.
114 | 	public convenience init?(
warning: 'EventLoopGroupProvider' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(config:provider:logger:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:134:25-134:47
132 | 	/// - Parameters:
133 | 	///    - config: The configuration for this client instance.
134 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
135 | 	///    - logger: The logger to use for this client.
136 | 	public init(
warning: 'EventLoopGroup' doesn't exist at '/SwiftkubeClient/KubernetesClient/init(config:provider:logger:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:134:67-134:81
132 | 	/// - Parameters:
133 | 	///    - config: The configuration for this client instance.
134 + 	///    - provider: A ``EventLoopGroupProvider`` to specify how ``EventLoopGroup`` will be created.
135 | 	///    - logger: The logger to use for this client.
136 | 	public init(
warning: 'DispatchQueue' doesn't exist at '/SwiftkubeClient/KubernetesClient/shutdown(queue:_:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:171:88-171:101
169 | 	///
170 | 	/// This function uses a completion instead of an EventLoopFuture, because the underlying event loop will be closed
171 + 	/// by the time a EventLoopFuture calls back. Instead the callback is executed on a ``DispatchQueue``.
172 | 	///
173 | 	/// - Parameters:
warning: 'DispatchQueue' doesn't exist at '/SwiftkubeClient/KubernetesClient/shutdown(queue:_:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:174:23-174:36
172 | 	///
173 | 	/// - Parameters:
174 + 	///   - queue: The ``DispatchQueue`` for the callback upon completion.
175 | 	///   - callback: The callback indicating any errors encountered during shutdown.
176 | 	public func shutdown(queue: DispatchQueue, _ callback: @escaping (Error?) -> Void) {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:194:50-194:71
192 | public extension KubernetesClient {
193 |
194 + 	/// Create a new generic client for the given ``KubernetesAPIResource``.
195 | 	///
196 | 	/// This assumes a known Kubernetes resource type, i.e. it constructs a ``GroupVersionResource`` for its
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:196:76-196:96
194 | 	/// Create a new generic client for the given ``KubernetesAPIResource``.
195 | 	///
196 + 	/// This assumes a known Kubernetes resource type, i.e. it constructs a ``GroupVersionResource`` for its
197 | 	/// internal use from the `R.Type`. For unknown resource types, e.g. CRDs, you can use
198 | 	/// ``KubernetesClient/for(_:gvr:)`` instead.
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:206:55-206:75
204 | 	}
205 |
206 + 	/// Create a new unstructured client for the given ``GroupVersionResource``.
207 | 	///
208 | 	/// The returned resource is unstructured, i.e. of the ``UnstructuredResource`` type.
warning: 'UnstructuredResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:208:59-208:79
206 | 	/// Create a new unstructured client for the given ``GroupVersionResource``.
207 | 	///
208 + 	/// The returned resource is unstructured, i.e. of the ``UnstructuredResource`` type.
209 | 	///
210 | 	/// - Parameter gvr: The ``GroupVersionResource`` of the desired resource.
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:210:29-210:49
208 | 	/// The returned resource is unstructured, i.e. of the ``UnstructuredResource`` type.
209 | 	///
210 + 	/// - Parameter gvr: The ``GroupVersionResource`` of the desired resource.
211 | 	/// - Returns A new ``GenericKubernetesClient`` for the given resource's ``GroupVersionResource``. This client decodes
212 | 	/// kubernetes objects as ``UnstructuredResource``s.
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:211:77-211:97
209 | 	///
210 | 	/// - Parameter gvr: The ``GroupVersionResource`` of the desired resource.
211 + 	/// - Returns A new ``GenericKubernetesClient`` for the given resource's ``GroupVersionResource``. This client decodes
212 | 	/// kubernetes objects as ``UnstructuredResource``s.
213 | 	func `for`(gvr: GroupVersionResource) -> GenericKubernetesClient<UnstructuredResource> {
warning: 'UnstructuredResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:212:32-212:52
210 | 	/// - Parameter gvr: The ``GroupVersionResource`` of the desired resource.
211 | 	/// - Returns A new ``GenericKubernetesClient`` for the given resource's ``GroupVersionResource``. This client decodes
212 + 	/// kubernetes objects as ``UnstructuredResource``s.
213 | 	func `for`(gvr: GroupVersionResource) -> GenericKubernetesClient<UnstructuredResource> {
214 | 		GenericKubernetesClient<UnstructuredResource>(httpClient: httpClient, config: config, gvr: gvr, jsonDecoder: jsonDecoder, logger: logger)
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:217:52-217:73
215 | 	}
216 |
217 + 	/// Create a new generic client for the given a ``KubernetesAPIResource`` type and its ``GroupVersionResource``.
218 | 	///
219 | 	/// The returned instance is typed-inferred by the generic constraint.
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:217:91-217:111
215 | 	}
216 |
217 + 	/// Create a new generic client for the given a ``KubernetesAPIResource`` type and its ``GroupVersionResource``.
218 | 	///
219 | 	/// The returned instance is typed-inferred by the generic constraint.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:222:22-222:43
220 | 	///
221 | 	/// - Parameters:
222 + 	///   - type: The ``KubernetesAPIResource`` type.
223 | 	///   - gvr: The ``GroupVersionResource`` of the desired resource.
224 | 	/// - Returns A new `GenericKubernetesClient` for the given resource's `GroupVersionResource`.
warning: 'GroupVersionResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/for(_:gvr:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:223:21-223:41
221 | 	/// - Parameters:
222 | 	///   - type: The ``KubernetesAPIResource`` type.
223 + 	///   - gvr: The ``GroupVersionResource`` of the desired resource.
224 | 	/// - Returns A new `GenericKubernetesClient` for the given resource's `GroupVersionResource`.
225 | 	func `for`<R: KubernetesAPIResource>(_ type: R.Type, gvr: GroupVersionResource) -> GenericKubernetesClient<R> {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/KubernetesClient/namespaceScoped(for:)'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:239:30-239:51
237 | 	/// Create a new `namespace-scoped` client for the given namespace-scoped resoruce type.
238 | 	///
239 + 	/// - Parameter type: The ``KubernetesAPIResource`` type.
240 | 	/// - Returns A new ``NamespacedGenericKubernetesClient`` for the given resource type.
241 | 	func namespaceScoped<R: KubernetesAPIResource & NamespacedResource>(for type: R.Type) -> NamespacedGenericKubernetesClient<R> {
warning: 'core.v1.Binding' doesn't exist at '/SwiftkubeClient/KubernetesClient/bindings'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:249:49-249:64
247 | public extension KubernetesClient {
248 |
249 + 	/// Constructs a namespace-scoped client for ``core.v1.Binding`` resources.
250 | 	var bindings: NamespacedGenericKubernetesClient<core.v1.Binding> {
251 | 		namespaceScoped(for: core.v1.Binding.self)
warning: 'core.v1.ComponentStatus' doesn't exist at '/SwiftkubeClient/KubernetesClient/componentStatuses'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:254:47-254:70
252 | 	}
253 |
254 + 	/// Constructs a cluster-scoped client for ``core.v1.ComponentStatus`` resources.
255 | 	var componentStatuses: ClusterScopedGenericKubernetesClient<core.v1.ComponentStatus> {
256 | 		clusterScoped(for: core.v1.ComponentStatus.self)
warning: 'core.v1.ConfigMap' doesn't exist at '/SwiftkubeClient/KubernetesClient/configMaps'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:259:49-259:66
257 | 	}
258 |
259 + 	/// Constructs a namespace-scoped client for ``core.v1.ConfigMap`` resources.
260 | 	var configMaps: NamespacedGenericKubernetesClient<core.v1.ConfigMap> {
261 | 		namespaceScoped(for: core.v1.ConfigMap.self)
warning: 'core.v1.Endpoints' doesn't exist at '/SwiftkubeClient/KubernetesClient/endpoints'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:264:49-264:66
262 | 	}
263 |
264 + 	/// Constructs a namespace-scoped client for ``core.v1.Endpoints`` resources.
265 | 	var endpoints: NamespacedGenericKubernetesClient<core.v1.Endpoints> {
266 | 		namespaceScoped(for: core.v1.Endpoints.self)
warning: 'core.v1.Event' doesn't exist at '/SwiftkubeClient/KubernetesClient/events'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:269:49-269:62
267 | 	}
268 |
269 + 	/// Constructs a namespace-scoped client for ``core.v1.Event`` resources.
270 | 	var events: NamespacedGenericKubernetesClient<core.v1.Event> {
271 | 		namespaceScoped(for: core.v1.Event.self)
warning: 'core.v1.LimitRange' doesn't exist at '/SwiftkubeClient/KubernetesClient/limitRanges'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:274:49-274:67
272 | 	}
273 |
274 + 	/// Constructs a namespace-scoped client for ``core.v1.LimitRange`` resources.
275 | 	var limitRanges: NamespacedGenericKubernetesClient<core.v1.LimitRange> {
276 | 		namespaceScoped(for: core.v1.LimitRange.self)
warning: 'core.v1.Namespace' doesn't exist at '/SwiftkubeClient/KubernetesClient/namespaces'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:279:47-279:64
277 | 	}
278 |
279 + 	/// Constructs a cluster-scoped client for ``core.v1.Namespace`` resources.
280 | 	var namespaces: ClusterScopedGenericKubernetesClient<core.v1.Namespace> {
281 | 		clusterScoped(for: core.v1.Namespace.self)
warning: 'core.v1.Node' doesn't exist at '/SwiftkubeClient/KubernetesClient/nodes'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:284:47-284:59
282 | 	}
283 |
284 + 	/// Constructs a cluster-scoped client for ``core.v1.Node`` resources.
285 | 	var nodes: ClusterScopedGenericKubernetesClient<core.v1.Node> {
286 | 		clusterScoped(for: core.v1.Node.self)
warning: 'core.v1.PersistentVolume' doesn't exist at '/SwiftkubeClient/KubernetesClient/persistentVolumes'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:289:47-289:71
287 | 	}
288 |
289 + 	/// Constructs a cluster-scoped client for ``core.v1.PersistentVolume`` resources.
290 | 	var persistentVolumes: ClusterScopedGenericKubernetesClient<core.v1.PersistentVolume> {
291 | 		clusterScoped(for: core.v1.PersistentVolume.self)
warning: 'core.v1.PersistentVolumeClaim' doesn't exist at '/SwiftkubeClient/KubernetesClient/persistentVolumeClaims'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:294:49-294:78
292 | 	}
293 |
294 + 	/// Constructs a namespace-scoped client for ``core.v1.PersistentVolumeClaim`` resources.
295 | 	var persistentVolumeClaims: NamespacedGenericKubernetesClient<core.v1.PersistentVolumeClaim> {
296 | 		namespaceScoped(for: core.v1.PersistentVolumeClaim.self)
warning: 'core.v1.Pod' doesn't exist at '/SwiftkubeClient/KubernetesClient/pods'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:299:49-299:60
297 | 	}
298 |
299 + 	/// Constructs a namespace-scoped client for ``core.v1.Pod`` resources.
300 | 	var pods: NamespacedGenericKubernetesClient<core.v1.Pod> {
301 | 		namespaceScoped(for: core.v1.Pod.self)
warning: 'core.v1.PodTemplate' doesn't exist at '/SwiftkubeClient/KubernetesClient/podTemplates'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:304:49-304:68
302 | 	}
303 |
304 + 	/// Constructs a namespace-scoped client for ``core.v1.PodTemplate`` resources.
305 | 	var podTemplates: NamespacedGenericKubernetesClient<core.v1.PodTemplate> {
306 | 		namespaceScoped(for: core.v1.PodTemplate.self)
warning: 'core.v1.ReplicationController' doesn't exist at '/SwiftkubeClient/KubernetesClient/replicationControllers'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:309:49-309:78
307 | 	}
308 |
309 + 	/// Constructs a namespace-scoped client for ``core.v1.ReplicationController`` resources.
310 | 	var replicationControllers: NamespacedGenericKubernetesClient<core.v1.ReplicationController> {
311 | 		namespaceScoped(for: core.v1.ReplicationController.self)
warning: 'core.v1.ResourceQuota' doesn't exist at '/SwiftkubeClient/KubernetesClient/resourceQuotas'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:314:49-314:70
312 | 	}
313 |
314 + 	/// Constructs a namespace-scoped client for ``core.v1.ResourceQuota`` resources.
315 | 	var resourceQuotas: NamespacedGenericKubernetesClient<core.v1.ResourceQuota> {
316 | 		namespaceScoped(for: core.v1.ResourceQuota.self)
warning: 'core.v1.Secret' doesn't exist at '/SwiftkubeClient/KubernetesClient/secrets'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:319:49-319:63
317 | 	}
318 |
319 + 	/// Constructs a namespace-scoped client for ``core.v1.Secret`` resources.
320 | 	var secrets: NamespacedGenericKubernetesClient<core.v1.Secret> {
321 | 		namespaceScoped(for: core.v1.Secret.self)
warning: 'core.v1.Service' doesn't exist at '/SwiftkubeClient/KubernetesClient/services'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:324:49-324:64
322 | 	}
323 |
324 + 	/// Constructs a namespace-scoped client for ``core.v1.Service`` resources.
325 | 	var services: NamespacedGenericKubernetesClient<core.v1.Service> {
326 | 		namespaceScoped(for: core.v1.Service.self)
warning: 'core.v1.ServiceAccount' doesn't exist at '/SwiftkubeClient/KubernetesClient/serviceAccounts'
   --> Sources/SwiftkubeClient/Client/KubernetesClient.swift:329:49-329:71
327 | 	}
328 |
329 + 	/// Constructs a namespace-scoped client for ``core.v1.ServiceAccount`` resources.
330 | 	var serviceAccounts: NamespacedGenericKubernetesClient<core.v1.ServiceAccount> {
331 | 		namespaceScoped(for: core.v1.ServiceAccount.self)
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/follow(in:name:container:timestamps:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient+Pod.swift:32:8-32:27
30 | 	///
31 | 	/// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
32 + 	/// ``AsyncThrowingStream``, that begins yielding log lines immediately as they are received from the Kubernetes API server.
33 | 	///
34 | 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/follow(in:name:container:timestamps:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient+Pod.swift:34:83-34:128
32 | 	/// ``AsyncThrowingStream``, that begins yielding log lines immediately as they are received from the Kubernetes API server.
33 | 	///
34 + 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
35 | 	/// buffering policy is used, which should be taken into consideration.
36 | 	///
warning: 'ReadOptions' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/get(in:name:options:)'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:39:21-39:32
37 | 	///   - namespace: The namespace for this API request.
38 | 	///   - name: The name of the API resource to load.
39 + 	///   - options: ``ReadOptions`` to apply to this request.
40 | 	///
41 | 	/// - Returns: The API resource specified by the given name in the given namespace.
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/watch(in:options:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:53:8-53:27
51 | 	///
52 | 	/// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
53 + 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
54 | 	///
55 | 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/watch(in:options:retryStrategy:)'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:55:83-55:128
53 | 	/// ``AsyncThrowingStream``, that begins yielding events immediately as they are received from the Kubernetes API server.
54 | 	///
55 + 	/// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
56 | 	/// buffering policy is used, which should be taken into consideration.
57 | 	///
warning: 'follow(in:name:container:retryStrategy:)' doesn't exist at '/SwiftkubeClient/GenericKubernetesClient'
  --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:72:35-72:75
70 | 	/// The task is executed indefinitely. Upon encountering non-transient errors this tasks reconnects to the
71 | 	/// Kubernetes API server, basically restarting the previous ``GenericKubernetesClient/watch(in:options:retryStrategy:)``
72 + 	/// or ``GenericKubernetesClient/follow(in:name:container:retryStrategy:)`` call.
   |                                   ╰─suggestion: Replace 'follow(in:name:container:retryStrategy:)' with 'follow(in:name:container:timestamps:retryStrategy:)'
73 | 	///
74 | 	/// The reconnect behaviour can be controlled by passing an instance of ``RetryStrategy``. The default is 10 retry
warning: 'ListOptions' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/list(in:options:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:117:21-117:32
115 | 	/// - Parameters:
116 | 	///   - namespace: The namespace for this API request.
117 + 	///   - options: ``ListOptions`` instance to control the behaviour of the `List` operation.
118 | 	///
119 | 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
warning: 'KubernetesAPIResourceList' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/list(in:options:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:119:21-119:46
117 | 	///   - options: ``ListOptions`` instance to control the behaviour of the `List` operation.
118 | 	///
119 + 	/// - Returns: A ``KubernetesAPIResourceList`` of resources.
120 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
121 | 	func list(in namespace: NamespaceSelector? = nil, options: [ListOption]? = nil) async throws -> Resource.List {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/create(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:137:24-137:45
135 | 	/// - Parameters:
136 | 	///   - namespace: The namespace for this API request.
137 + 	///   - resource: A ``KubernetesAPIResource`` instance to create.
138 | 	///
139 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/create(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:139:31-139:52
137 | 	///   - resource: A ``KubernetesAPIResource`` instance to create.
138 | 	///
139 + 	/// - Returns: The created ``KubernetesAPIResource``.
140 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
141 | 	func create(inNamespace namespace: NamespaceSelector? = nil, _ resource: Resource) async throws -> Resource {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/create(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:151:52-151:73
149 | 	/// - Parameters:
150 | 	///   - namespace: The namespace for this API request.
151 + 	///   - block: A closure block, which creates a ``KubernetesAPIResource`` instance to send to the server.
152 | 	///
153 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/create(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:153:31-153:52
151 | 	///   - block: A closure block, which creates a ``KubernetesAPIResource`` instance to send to the server.
152 | 	///
153 + 	/// - Returns: The created ``KubernetesAPIResource``.
154 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
155 | 	func create(inNamespace namespace: NamespaceSelector? = nil, _ block: () -> Resource) async throws -> Resource {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/update(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:171:24-171:45
169 | 	/// - Parameters:
170 | 	///   - namespace: The namespace for this API request.
171 + 	///   - resource: A ``KubernetesAPIResource`` instance to update.
172 | 	///
173 | 	/// - Returns: The created ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/update(inNamespace:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:173:31-173:52
171 | 	///   - resource: A ``KubernetesAPIResource`` instance to update.
172 | 	///
173 + 	/// - Returns: The created ``KubernetesAPIResource``.
174 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
175 | 	func update(inNamespace namespace: NamespaceSelector? = nil, _ resource: Resource) async throws -> Resource {
warning: 'DeleteOptions' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/delete(inNamespace:name:options:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:192:21-192:34
190 | 	///   - namespace: The namespace for this API request.
191 | 	///   - name: The name of the resource object to delete.
192 + 	///   - options: ``DeleteOptions`` to apply to this request.
193 | 	///
194 | 	/// - Returns: The created ``KubernetesAPIResource`
warning: Return value documented for instance method returning void
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:194:6-194:53
192 | 	///   - options: ``DeleteOptions`` to apply to this request.
193 | 	///
194 + 	/// - Returns: The created ``KubernetesAPIResource`
    |      ╰─suggestion: Remove return value documentation
195 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
196 | 	func delete(inNamespace namespace: NamespaceSelector? = nil, name: String, options: meta.v1.DeleteOptions? = nil) async throws {
warning: Return value documented for instance method returning void
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:212:6-212:49
210 | 	/// - Parameter namespace: The namespace for this API request.
211 | 	///
212 + 	/// - Returns: A ``ResourceOrStatus`` instance.
    |      ╰─suggestion: Remove return value documentation
213 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
214 | 	func deleteAll(inNamespace namespace: NamespaceSelector? = nil) async throws {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/getStatus(in:name:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:232:23-232:44
230 | 	///   - name: The name of the resource to load.
231 | 	///
232 + 	/// - Returns: The ``KubernetesAPIResource``.
233 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
234 | 	func getStatus(in namespace: NamespaceSelector? = nil, name: String) async throws -> Resource {
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/updateStatus(in:name:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:245:24-245:45
243 | 	///   - namespace: The namespace for this API request.
244 | 	///   - name: The name of the resource to update.
245 + 	///   - resource: A ``KubernetesAPIResource`` instance to update.
246 | 	///
247 | 	/// - Returns: The updated ``KubernetesAPIResource``.
warning: 'KubernetesAPIResource' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/updateStatus(in:name:_:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:247:31-247:52
245 | 	///   - resource: A ``KubernetesAPIResource`` instance to update.
246 | 	///
247 + 	/// - Returns: The updated ``KubernetesAPIResource``.
248 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
249 | 	func updateStatus(in namespace: NamespaceSelector? = nil, name: String, _ resource: Resource) async throws -> Resource {
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/getScale(in:name:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:267:23-267:43
265 | 	///   - name: The name of the resource to load.
266 | 	///
267 + 	/// - Returns: The ``autoscaling.v1.Scale`` for the desired resource.
268 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
269 | 	func getScale(in namespace: NamespaceSelector? = nil, name: String) async throws -> autoscaling.v1.Scale {
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/updateScale(in:name:scale:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:280:34-280:54
278 | 	///   - namespace: The namespace for this API request.
279 | 	///   - name: The name of the resource to update.
280 + 	///   - scale: An instance of ``autoscaling.v1.Scale`` to replace.
281 | 	///
282 | 	/// - Returns: The updated ``autoscaling.v1.Scale`` for the desired resource.
warning: 'autoscaling.v1.Scale' doesn't exist at '/SwiftkubeClient/NamespacedGenericKubernetesClient/updateScale(in:name:scale:)'
   --> Sources/SwiftkubeClient/Client/NamespacedGenericKubernetesClient.swift:282:31-282:51
280 | 	///   - scale: An instance of ``autoscaling.v1.Scale`` to replace.
281 | 	///
282 + 	/// - Returns: The updated ``autoscaling.v1.Scale`` for the desired resource.
283 | 	/// - Throws: An error of type ``SwiftkubeClientError``.
284 | 	func updateScale(in namespace: NamespaceSelector? = nil, name: String, scale: autoscaling.v1.Scale) async throws -> autoscaling.v1.Scale {
warning: 'meta.v1.APIGroupList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverGroups()'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:48:16-48:36
46 | 	func serverVersion() async throws -> Info
47 |
48 + 	/// Loads a ``meta.v1.APIGroupList`` describing the available API Groups.
49 | 	///
50 | 	/// - Returns: A ``meta.v1.APIGroupList`` instance.
warning: 'meta.v1.APIGroupList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverGroups()'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:50:21-50:41
48 | 	/// Loads a ``meta.v1.APIGroupList`` describing the available API Groups.
49 | 	///
50 + 	/// - Returns: A ``meta.v1.APIGroupList`` instance.
51 | 	func serverGroups() async throws -> meta.v1.APIGroupList
52 |
warning: 'meta.v1.APIResourceList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverResources()'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:53:24-53:47
51 | 	func serverGroups() async throws -> meta.v1.APIGroupList
52 |
53 + 	/// Loads a list of ``meta.v1.APIResourceList`` resources describing the available API Resources.
54 | 	///
55 | 	/// - Returns: A list of ``meta.v1.APIResourceList`` resources.
warning: 'meta.v1.APIResourceList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverResources()'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:55:29-55:52
53 | 	/// Loads a list of ``meta.v1.APIResourceList`` resources describing the available API Resources.
54 | 	///
55 + 	/// - Returns: A list of ``meta.v1.APIResourceList`` resources.
56 | 	func serverResources() async throws -> [meta.v1.APIResourceList]
57 |
warning: 'meta.v1.APIResourceList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverResources(forGroupVersion:)'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:58:14-58:37
56 | 	func serverResources() async throws -> [meta.v1.APIResourceList]
57 |
58 + 	/// Loads ``meta.v1.APIResourceList`` describing the available resources for the given  version.
59 | 	///
60 | 	/// - Parameters:
warning: 'meta.v1.APIResourceList' doesn't exist at '/SwiftkubeClient/DiscoveryAPI/serverResources(forGroupVersion:)'
  --> Sources/SwiftkubeClient/Discovery/KubernetesClient+Discovery.swift:63:20-63:43
61 | 	///   - groupVersion: The version of the API group
62 | 	///
63 + 	/// - Returns:A ``meta.v1.APIResourceList`` instance.
64 | 	func serverResources(forGroupVersion groupVersion: String) async throws -> meta.v1.APIResourceList
65 | }
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/SwiftkubeClientTask'
  --> Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:29:7-29:26
27 | ///
28 | /// The task instance must be started explicitly via ``SwiftkubeClientTask/start()``, which returns an
29 + /// ``AsyncThrowingStream``, that starts yielding items immediately as they are received from the Kubernetes API server.
30 | ///
31 | /// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
warning: 'AsyncThrowingStream.BufferingPolicy.unbounded' doesn't exist at '/SwiftkubeClient/SwiftkubeClientTask'
  --> Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:31:82-31:127
29 | /// ``AsyncThrowingStream``, that starts yielding items immediately as they are received from the Kubernetes API server.
30 | ///
31 + /// The async stream buffers its results if there are no active consumers. The ``AsyncThrowingStream.BufferingPolicy.unbounded``
32 | /// buffering policy is used, which should be taken into consideration.
33 | ///
warning: 'AsyncThrowingStream' doesn't exist at '/SwiftkubeClient/SwiftkubeClientTask/start()'
  --> Sources/SwiftkubeClient/Watch/SwiftkubeClientTask.swift:87:34-87:53
85 | 	/// Starting a cancelled task has no effect. If this this task has been cancelled, then an empty stream is returned.
86 | 	///
87 + 	/// - Returns: An instance of ``AsyncThrowingStream`` emitting items as they received from the API server.
88 | 	public func start() -> AsyncThrowingStream<Output, Error> {
89 | 		if cancelled {Finished building documentation for 'SwiftkubeClient' (0.33s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftkube/client/main
Updating https://github.com/apple/swift-system.git
Updating https://github.com/apple/swift-log.git
Updating https://github.com/apple/swift-nio-http2.git
Updating https://github.com/apple/swift-http-types
Updating https://github.com/apple/swift-collections.git
Updating https://github.com/apple/swift-algorithms.git
Updating https://github.com/apple/swift-nio-ssl.git
Updated https://github.com/apple/swift-system.git (0.58s)
Updating https://github.com/swift-server/async-http-client.git
Updated https://github.com/swift-server/async-http-client.git (0.57s)
Updating https://github.com/apple/swift-metrics.git
Updated https://github.com/apple/swift-http-types (1.44s)
Updated https://github.com/apple/swift-collections.git (1.44s)
Updated https://github.com/apple/swift-log.git (1.44s)
Updated https://github.com/apple/swift-nio-http2.git (1.44s)
Updated https://github.com/apple/swift-algorithms.git (1.44s)
Updated https://github.com/apple/swift-nio-ssl.git (1.44s)
Updating https://github.com/apple/swift-nio-extras.git
Updating https://github.com/apple/swift-nio
Updating https://github.com/apple/swift-atomics.git
Updating https://github.com/apple/swift-nio-transport-services.git
Updating https://github.com/apple/swift-numerics.git
Updating https://github.com/jpsim/Yams.git
Updated https://github.com/apple/swift-metrics.git (0.49s)
Updating https://github.com/swiftkube/model.git
Updated https://github.com/apple/swift-nio-extras.git (0.50s)
Fetching https://github.com/swiftlang/swift-docc-plugin
Updated https://github.com/apple/swift-numerics.git (0.57s)
Updated https://github.com/swiftkube/model.git (0.45s)
Updated https://github.com/jpsim/Yams.git (0.77s)
Updated https://github.com/apple/swift-nio-transport-services.git (0.77s)
Updated https://github.com/apple/swift-nio (0.77s)
Updated https://github.com/apple/swift-atomics.git (0.77s)
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.32s)
Computing version for https://github.com/apple/swift-nio
Computed https://github.com/apple/swift-nio at 2.76.1 (0.72s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 5.1.3 (0.64s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.5.0 (0.49s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.1 (0.47s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.23.1 (0.50s)
Computing version for https://github.com/swiftkube/model.git
Computed https://github.com/swiftkube/model.git at 0.14.0 (0.63s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.0 (0.49s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (0.65s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (0.41s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.0 (0.47s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.23.0 (0.40s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.24.1 (0.44s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.34.1 (0.44s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.29.0 (0.56s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.52s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.3.0 (0.54s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.54s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.23s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.56s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Compiling SymbolKit Identifier.swift
[12/57] Compiling SymbolKit KindIdentifier.swift
[13/57] Compiling SymbolKit Location.swift
[14/57] Compiling SymbolKit Mutability.swift
[15/57] Emitting module SymbolKit
[16/57] Compiling SymbolKit Names.swift
[17/57] Compiling SymbolKit SPI.swift
[18/57] Compiling SymbolKit Snippet.swift
[19/57] Compiling SymbolKit Extension.swift
[20/57] Compiling SymbolKit SemanticVersion.swift
[21/57] Compiling SymbolKit AccessControl.swift
[22/57] Compiling SymbolKit Availability.swift
[23/57] Compiling SymbolKit AvailabilityItem.swift
[24/57] Compiling SymbolKit Domain.swift
[25/57] Compiling SymbolKit Mixin+Equals.swift
[26/57] Compiling SymbolKit Mixin+Hash.swift
[27/57] Compiling SymbolKit Mixin.swift
[28/57] Compiling SymbolKit LineList.swift
[29/57] Compiling SymbolKit Position.swift
[30/57] Compiling SymbolKit GenericConstraint.swift
[31/57] Compiling SymbolKit GenericParameter.swift
[32/57] Compiling SymbolKit Generics.swift
[33/57] Compiling SymbolKit Namespace.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit SourceRange.swift
[40/57] Compiling SymbolKit Metadata.swift
[41/57] Compiling SymbolKit Module.swift
[42/57] Compiling SymbolKit OperatingSystem.swift
[43/57] Compiling SymbolKit Platform.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets Snippet.swift
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.60s)
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/83] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[3/84] Compiling Atomics ManagedAtomic.swift
[4/84] Compiling Atomics ManagedAtomicLazyReference.swift
[5/84] Compiling Atomics AtomicStorage.swift
[6/84] Compiling Atomics AtomicValue.swift
[7/84] Compiling Atomics AtomicMemoryOrderings.swift
[8/84] Compiling Atomics DoubleWord.swift
[9/84] Compiling Yams Constructor.swift
[10/84] Compiling Yams Decoder.swift
[11/84] Compiling RealModule AlgebraicField.swift
[12/84] Compiling RealModule ApproximateEquality.swift
[13/84] Compiling RealModule Float80+Real.swift
[14/84] Compiling RealModule Real.swift
[15/85] Compiling Atomics UnsafeAtomic.swift
[16/85] Compiling Atomics UnsafeAtomicLazyReference.swift
[17/87] Compiling RealModule RealFunctions.swift
[20/87] Compiling Logging MetadataProvider.swift
[21/87] Compiling RealModule Float16+Real.swift
[22/87] Compiling RealModule Float+Real.swift
[23/87] Compiling RealModule ElementaryFunctions.swift
[28/87] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[29/87] Compiling RealModule AugmentedArithmetic.swift
[30/87] Compiling RealModule Double+Real.swift
[31/87] Compiling NIOConcurrencyHelpers NIOLock.swift
[32/87] Compiling Yams Mark.swift
[33/87] Compiling Yams Node.Mapping.swift
[34/87] Compiling Yams Emitter.swift
[35/87] Compiling Yams Encoder.swift
[36/87] Emitting module Logging
[37/87] Compiling Atomics IntegerOperations.swift
[38/87] Compiling Atomics Unmanaged extensions.swift
[39/87] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[40/87] Emitting module RealModule
[41/87] Emitting module _NIOBase64
[42/87] Compiling _NIOBase64 Base64.swift
[43/87] Compiling NIOConcurrencyHelpers lock.swift
[44/87] Compiling _NIODataStructures _TinyArray.swift
[45/87] Compiling _NIODataStructures Heap.swift
[46/87] Compiling _NIODataStructures PriorityQueue.swift
[47/87] Compiling Yams Node.Scalar.swift
[48/87] Compiling Yams Node.Sequence.swift
[49/87] Compiling Yams Node.swift
[50/87] Compiling Yams Parser.swift
[51/87] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[52/87] Compiling NIOConcurrencyHelpers atomics.swift
[53/87] Emitting module _NIODataStructures
[54/87] Emitting module NIOConcurrencyHelpers
[55/113] Emitting module InternalCollectionsUtilities
[56/113] Compiling Algorithms Split.swift
[57/113] Compiling Algorithms Stride.swift
[58/113] Compiling Algorithms Joined.swift
[59/113] Compiling Algorithms Keyed.swift
[60/113] Compiling Algorithms AdjacentPairs.swift
[61/113] Compiling Algorithms Chain.swift
[62/113] Emitting module CoreMetrics
[63/113] Compiling CoreMetrics Metrics.swift
[64/113] Compiling CoreMetrics Locks.swift
[65/113] Compiling Yams Resolver.swift
[66/113] Compiling Yams Tag.swift
[67/113] Compiling Yams Representer.swift
[68/113] Compiling Yams String+Yams.swift
[69/114] Compiling Logging LogHandler.swift
[70/114] Compiling Logging Locks.swift
[71/114] Compiling Logging Logging.swift
[72/132] Compiling DequeModule Deque._UnsafeHandle.swift
[73/132] Compiling DequeModule Deque.swift
[74/132] Compiling DequeModule Deque+Equatable.swift
[75/132] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[76/132] Compiling DequeModule Deque+Extras.swift
[77/132] Compiling DequeModule Deque+Hashable.swift
[78/132] Compiling DequeModule Deque+Testing.swift
[79/132] Compiling DequeModule Deque._Storage.swift
[80/132] Compiling Algorithms Suffix.swift
[81/132] Compiling Algorithms Trim.swift
[82/132] Compiling DequeModule Deque+Descriptions.swift
[83/132] Compiling Algorithms Reductions.swift
[84/132] Compiling Algorithms Rotate.swift
[85/132] Compiling Algorithms Combinations.swift
[86/132] Compiling Algorithms Compacted.swift
[87/132] Compiling Algorithms Cycle.swift
[88/132] Compiling Algorithms EitherSequence.swift
[89/132] Compiling Algorithms FirstNonNil.swift
[90/132] Compiling Algorithms FlattenCollection.swift
[91/132] Compiling Algorithms Grouped.swift
[92/132] Compiling Algorithms Indexed.swift
[93/132] Compiling Algorithms Intersperse.swift
[94/134] Emitting module Metrics
[95/134] Compiling Metrics Metrics.swift
[104/134] Compiling DequeModule Deque+CustomReflectable.swift
[105/134] Compiling Yams YamlError.swift
[108/134] Compiling DequeModule _DequeBufferHeader.swift
[109/134] Compiling DequeModule _DequeBuffer.swift
[116/134] Compiling DequeModule _DequeSlot.swift
[119/135] Compiling DequeModule Deque+Codable.swift
[120/135] Compiling DequeModule Deque+Collection.swift
[121/135] Emitting module Yams
[130/149] Compiling Algorithms Unique.swift
[131/149] Compiling Algorithms Windows.swift
[132/153] Compiling DequeModule _UnsafeWrappedBuffer.swift
[133/214] Emitting module DequeModule
[134/358] Emitting module Atomics
[135/420] Compiling NIOCore Linux.swift
[136/420] Compiling NIOCore MarkedCircularBuffer.swift
[137/420] Compiling NIOCore MulticastChannel.swift
[138/420] Compiling NIOCore NIOAny.swift
[139/420] Compiling NIOCore NIOCloseOnErrorHandler.swift
[140/420] Compiling NIOCore NIOLoopBound.swift
[141/426] Emitting module Algorithms
[142/426] Compiling NIOCore SocketOptionProvider.swift
[143/426] Compiling NIOCore SystemCallHelpers.swift
[144/426] Compiling NIOCore TimeAmount+Duration.swift
[145/426] Compiling NIOCore TypeAssistedChannelHandler.swift
[146/426] Compiling NIOCore UniversalBootstrapSupport.swift
[147/426] Compiling NIOCore Utilities.swift
[148/426] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[149/426] Compiling NIOCore NIOAsyncWriter.swift
[150/426] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[151/426] Compiling NIOCore BSDSocketAPI.swift
[152/426] Compiling NIOCore ByteBuffer-aux.swift
[153/426] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[154/426] Compiling NIOCore ByteBuffer-conversions.swift
[155/426] Compiling NIOCore FileHandle.swift
[156/426] Compiling NIOCore FileRegion.swift
[157/426] Compiling NIOCore Channel.swift
[158/426] Compiling NIOCore ChannelHandler.swift
[159/426] Compiling NIOCore ChannelHandlers.swift
[160/426] Compiling NIOCore ChannelInvoker.swift
[161/426] Compiling NIOCore ChannelOption.swift
[162/426] Compiling NIOCore ChannelPipeline.swift
[163/426] Compiling NIOCore CircularBuffer.swift
[164/426] Compiling NIOCore AddressedEnvelope.swift
[165/426] Compiling NIOCore AsyncAwaitSupport.swift
[166/426] Compiling NIOCore AsyncChannel.swift
[167/426] Compiling NIOCore AsyncChannelHandler.swift
[168/426] Compiling NIOCore AsyncChannelInboundStream.swift
[169/426] Compiling NIOCore AsyncChannelOutboundWriter.swift
[170/426] Compiling NIOCore NIOAsyncSequenceProducer.swift
[171/426] Compiling NIOCore ByteBuffer-core.swift
[172/426] Compiling NIOCore ByteBuffer-hex.swift
[173/426] Compiling NIOCore ByteBuffer-int.swift
[174/426] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[175/426] Compiling NIOCore ByteBuffer-multi-int.swift
[176/426] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[177/426] Compiling NIOCore ByteBuffer-views.swift
[180/449] Compiling NIOCore NIOScheduledCallback.swift
[181/449] Compiling NIOCore NIOSendable.swift
[182/449] Compiling NIOCore PointerHelpers.swift
[183/450] Compiling NIOCore RecvByteBufferAllocator.swift
[184/450] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[185/450] Compiling NIOCore SocketAddresses.swift
[186/450] Compiling NIOCore GlobalSingletons.swift
[187/450] Compiling NIOCore IO.swift
[188/450] Compiling NIOCore IOData.swift
[189/450] Compiling NIOCore IPProtocol.swift
[190/450] Compiling NIOCore IntegerBitPacking.swift
[191/450] Compiling NIOCore IntegerTypes.swift
[192/450] Compiling NIOCore Interfaces.swift
[193/450] Compiling SwiftkubeModel ValidatingAdmissionPolicyBindingSpec+admissionregistration.v1beta1.swift
[194/450] Compiling SwiftkubeModel ValidatingAdmissionPolicyList+admissionregistration.v1beta1.swift
[195/450] Compiling SwiftkubeModel ValidatingAdmissionPolicySpec+admissionregistration.v1beta1.swift
[196/450] Compiling SwiftkubeModel ValidatingAdmissionPolicyStatus+admissionregistration.v1beta1.swift
[197/450] Compiling SwiftkubeModel Validation+admissionregistration.v1beta1.swift
[198/450] Compiling SwiftkubeModel Variable+admissionregistration.v1beta1.swift
[199/450] Compiling SwiftkubeModel admissionregistration+v1beta1.swift
[200/450] Compiling SwiftkubeModel apiextensions.swift
[201/450] Compiling SwiftkubeModel CustomResourceColumnDefinition+apiextensions.v1.swift
[202/450] Compiling SwiftkubeModel CustomResourceConversion+apiextensions.v1.swift
[203/450] Compiling SwiftkubeModel CustomResourceDefinition+apiextensions.v1.swift
[204/450] Compiling SwiftkubeModel CustomResourceDefinitionCondition+apiextensions.v1.swift
[205/450] Compiling SwiftkubeModel CustomResourceDefinitionList+apiextensions.v1.swift
[206/450] Compiling SwiftkubeModel CustomResourceDefinitionNames+apiextensions.v1.swift
[207/450] Compiling SwiftkubeModel CustomResourceDefinitionSpec+apiextensions.v1.swift
[208/450] Compiling SwiftkubeModel CustomResourceDefinitionStatus+apiextensions.v1.swift
[209/450] Compiling SwiftkubeModel CustomResourceDefinitionVersion+apiextensions.v1.swift
[210/450] Compiling SwiftkubeModel CustomResourceSubresourceScale+apiextensions.v1.swift
[211/450] Compiling SwiftkubeModel CustomResourceSubresourceStatus+apiextensions.v1.swift
[212/450] Compiling SwiftkubeModel CustomResourceSubresources+apiextensions.v1.swift
[213/450] Compiling SwiftkubeModel CustomResourceValidation+apiextensions.v1.swift
[214/450] Compiling SwiftkubeModel ExternalDocumentation+apiextensions.v1.swift
[215/450] Compiling SwiftkubeModel ServiceReference+apiextensions.v1.swift
[216/450] Compiling SwiftkubeModel ValidationRule+apiextensions.v1.swift
[217/450] Compiling SwiftkubeModel WebhookClientConfig+apiextensions.v1.swift
[218/474] Compiling SwiftkubeModel WebhookConversion+apiextensions.v1.swift
[219/474] Compiling SwiftkubeModel apiextensions+v1.swift
[220/474] Compiling SwiftkubeModel apiregistration.swift
[221/474] Compiling SwiftkubeModel APIService+apiregistration.v1.swift
[222/474] Compiling SwiftkubeModel APIServiceCondition+apiregistration.v1.swift
[223/474] Compiling SwiftkubeModel APIServiceList+apiregistration.v1.swift
[224/474] Compiling SwiftkubeModel APIServiceSpec+apiregistration.v1.swift
[225/474] Compiling SwiftkubeModel APIServiceStatus+apiregistration.v1.swift
[226/474] Compiling SwiftkubeModel ServiceReference+apiregistration.v1.swift
[227/474] Compiling SwiftkubeModel apiregistration+v1.swift
[228/474] Compiling SwiftkubeModel apps.swift
[229/474] Compiling SwiftkubeModel ControllerRevision+apps.v1.swift
[230/474] Compiling SwiftkubeModel ControllerRevisionList+apps.v1.swift
[231/474] Compiling SwiftkubeModel DaemonSet+apps.v1.swift
[232/474] Compiling SwiftkubeModel DaemonSetCondition+apps.v1.swift
[233/474] Compiling SwiftkubeModel DaemonSetList+apps.v1.swift
[234/474] Compiling SwiftkubeModel DaemonSetSpec+apps.v1.swift
[235/474] Compiling SwiftkubeModel DaemonSetStatus+apps.v1.swift
[236/474] Compiling SwiftkubeModel DaemonSetUpdateStrategy+apps.v1.swift
[237/474] Compiling SwiftkubeModel Deployment+apps.v1.swift
[238/474] Compiling SwiftkubeModel DeploymentCondition+apps.v1.swift
[239/474] Compiling SwiftkubeModel DeploymentList+apps.v1.swift
[240/474] Compiling SwiftkubeModel DeploymentSpec+apps.v1.swift
[241/474] Compiling SwiftkubeModel DeploymentStatus+apps.v1.swift
[242/474] Compiling SwiftkubeModel DeploymentStrategy+apps.v1.swift
[260/474] Compiling SwiftkubeModel HPAScalingRules+autoscaling.v2.swift
[261/474] Compiling SwiftkubeModel HorizontalPodAutoscaler+autoscaling.v2.swift
[262/474] Compiling SwiftkubeModel HorizontalPodAutoscalerBehavior+autoscaling.v2.swift
[263/474] Compiling SwiftkubeModel HorizontalPodAutoscalerCondition+autoscaling.v2.swift
[264/474] Compiling SwiftkubeModel HorizontalPodAutoscalerList+autoscaling.v2.swift
[265/474] Compiling SwiftkubeModel HorizontalPodAutoscalerSpec+autoscaling.v2.swift
[266/474] Compiling SwiftkubeModel HorizontalPodAutoscalerStatus+autoscaling.v2.swift
[267/474] Compiling SwiftkubeModel MetricIdentifier+autoscaling.v2.swift
[268/474] Compiling SwiftkubeModel MetricSpec+autoscaling.v2.swift
[269/474] Compiling SwiftkubeModel MetricStatus+autoscaling.v2.swift
[270/474] Compiling SwiftkubeModel MetricTarget+autoscaling.v2.swift
[271/474] Compiling SwiftkubeModel MetricValueStatus+autoscaling.v2.swift
[272/474] Compiling SwiftkubeModel ObjectMetricSource+autoscaling.v2.swift
[273/474] Compiling SwiftkubeModel ObjectMetricStatus+autoscaling.v2.swift
[274/474] Compiling SwiftkubeModel PodsMetricSource+autoscaling.v2.swift
[275/474] Compiling SwiftkubeModel PodsMetricStatus+autoscaling.v2.swift
[276/474] Compiling SwiftkubeModel ResourceMetricSource+autoscaling.v2.swift
[277/474] Compiling SwiftkubeModel ResourceMetricStatus+autoscaling.v2.swift
[278/474] Compiling SwiftkubeModel autoscaling+v2.swift
[279/474] Compiling SwiftkubeModel batch.swift
[280/474] Compiling SwiftkubeModel CronJob+batch.v1.swift
[281/474] Compiling SwiftkubeModel CronJobList+batch.v1.swift
[282/474] Compiling SwiftkubeModel CronJobSpec+batch.v1.swift
[283/474] Compiling SwiftkubeModel CronJobStatus+batch.v1.swift
[284/474] Compiling SwiftkubeModel Job+batch.v1.swift
[285/474] Compiling SwiftkubeModel JobCondition+batch.v1.swift
[286/474] Compiling SwiftkubeModel JobList+batch.v1.swift
[287/474] Compiling SwiftkubeModel JobSpec+batch.v1.swift
[288/474] Compiling SwiftkubeModel JobStatus+batch.v1.swift
[289/474] Compiling SwiftkubeModel JobTemplateSpec+batch.v1.swift
[290/474] Compiling SwiftkubeModel PodFailurePolicy+batch.v1.swift
[304/546] Compiling NIOCore Codec.swift
[305/546] Compiling NIOCore ConvenienceOptionSupport.swift
[306/546] Compiling NIOCore DeadChannel.swift
[307/546] Compiling NIOCore DispatchQueue+WithFuture.swift
[308/546] Compiling NIOCore EventLoop+Deprecated.swift
[309/546] Compiling NIOCore EventLoop+SerialExecutor.swift
[310/546] Compiling NIOCore EventLoop.swift
[311/546] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[312/546] Compiling NIOCore EventLoopFuture+Deprecated.swift
[313/546] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[314/546] Compiling NIOCore EventLoopFuture.swift
[315/546] Compiling NIOCore FileDescriptor.swift
[351/570] Compiling SwiftkubeModel PodFailurePolicyOnExitCodesRequirement+batch.v1.swift
[352/570] Compiling SwiftkubeModel PodFailurePolicyOnPodConditionsPattern+batch.v1.swift
[353/570] Compiling SwiftkubeModel PodFailurePolicyRule+batch.v1.swift
[354/570] Compiling SwiftkubeModel UncountedTerminatedPods+batch.v1.swift
[355/570] Compiling SwiftkubeModel batch+v1.swift
[356/570] Compiling SwiftkubeModel certificates.swift
[357/570] Compiling SwiftkubeModel CertificateSigningRequest+certificates.v1.swift
[358/570] Compiling SwiftkubeModel CertificateSigningRequestCondition+certificates.v1.swift
[359/570] Compiling SwiftkubeModel CertificateSigningRequestList+certificates.v1.swift
[360/570] Compiling SwiftkubeModel CertificateSigningRequestSpec+certificates.v1.swift
[361/570] Compiling SwiftkubeModel CertificateSigningRequestStatus+certificates.v1.swift
[362/570] Compiling SwiftkubeModel certificates+v1.swift
[363/570] Compiling SwiftkubeModel ClusterTrustBundle+certificates.v1alpha1.swift
[364/570] Compiling SwiftkubeModel ClusterTrustBundleList+certificates.v1alpha1.swift
[365/570] Compiling SwiftkubeModel ClusterTrustBundleSpec+certificates.v1alpha1.swift
[366/570] Compiling SwiftkubeModel certificates+v1alpha1.swift
[367/570] Compiling SwiftkubeModel coordination.swift
[368/570] Compiling SwiftkubeModel Lease+coordination.v1.swift
[369/570] Compiling SwiftkubeModel LeaseList+coordination.v1.swift
[370/570] Compiling SwiftkubeModel LeaseSpec+coordination.v1.swift
[371/570] Compiling SwiftkubeModel coordination+v1.swift
[372/570] Compiling SwiftkubeModel core.swift
[373/570] Compiling SwiftkubeModel AWSElasticBlockStoreVolumeSource+core.v1.swift
[374/570] Compiling SwiftkubeModel Affinity+core.v1.swift
[375/594] Compiling SwiftkubeModel LifecycleHandler+core.v1.swift
[376/594] Compiling SwiftkubeModel LimitRange+core.v1.swift
[377/594] Compiling SwiftkubeModel LimitRangeItem+core.v1.swift
[378/594] Compiling SwiftkubeModel LimitRangeList+core.v1.swift
[379/594] Compiling SwiftkubeModel LimitRangeSpec+core.v1.swift
[380/594] Compiling SwiftkubeModel LoadBalancerIngress+core.v1.swift
[381/594] Compiling SwiftkubeModel LoadBalancerStatus+core.v1.swift
[382/594] Compiling SwiftkubeModel LocalObjectReference+core.v1.swift
[383/594] Compiling SwiftkubeModel LocalVolumeSource+core.v1.swift
[384/594] Compiling SwiftkubeModel ModifyVolumeStatus+core.v1.swift
[385/594] Compiling SwiftkubeModel NFSVolumeSource+core.v1.swift
[386/594] Compiling SwiftkubeModel Namespace+core.v1.swift
[387/594] Compiling SwiftkubeModel NamespaceCondition+core.v1.swift
[388/594] Compiling SwiftkubeModel NamespaceList+core.v1.swift
[389/594] Compiling SwiftkubeModel NamespaceSpec+core.v1.swift
[390/594] Compiling SwiftkubeModel NamespaceStatus+core.v1.swift
[391/594] Compiling SwiftkubeModel Node+core.v1.swift
[392/594] Compiling SwiftkubeModel NodeAddress+core.v1.swift
[393/594] Compiling SwiftkubeModel NodeAffinity+core.v1.swift
[394/594] Compiling SwiftkubeModel NodeCondition+core.v1.swift
[395/594] Compiling SwiftkubeModel NodeConfigSource+core.v1.swift
[396/594] Compiling SwiftkubeModel NodeConfigStatus+core.v1.swift
[397/594] Compiling SwiftkubeModel NodeDaemonEndpoints+core.v1.swift
[398/594] Compiling SwiftkubeModel NodeList+core.v1.swift
[399/618] Compiling SwiftkubeModel AttachedVolume+core.v1.swift
[400/618] Compiling SwiftkubeModel AzureDiskVolumeSource+core.v1.swift
[401/618] Compiling SwiftkubeModel AzureFilePersistentVolumeSource+core.v1.swift
[402/618] Compiling SwiftkubeModel AzureFileVolumeSource+core.v1.swift
[403/618] Compiling SwiftkubeModel Binding+core.v1.swift
[404/618] Compiling SwiftkubeModel CSIPersistentVolumeSource+core.v1.swift
[405/618] Compiling SwiftkubeModel CSIVolumeSource+core.v1.swift
[406/618] Compiling SwiftkubeModel Capabilities+core.v1.swift
[407/618] Compiling SwiftkubeModel CephFSPersistentVolumeSource+core.v1.swift
[408/618] Compiling SwiftkubeModel CephFSVolumeSource+core.v1.swift
[409/618] Compiling SwiftkubeModel CinderPersistentVolumeSource+core.v1.swift
[410/618] Compiling SwiftkubeModel CinderVolumeSource+core.v1.swift
[411/618] Compiling SwiftkubeModel ClaimSource+core.v1.swift
[412/618] Compiling SwiftkubeModel ClientIPConfig+core.v1.swift
[413/618] Compiling SwiftkubeModel ClusterTrustBundleProjection+core.v1.swift
[414/618] Compiling SwiftkubeModel ComponentCondition+core.v1.swift
[415/618] Compiling SwiftkubeModel ComponentStatus+core.v1.swift
[416/618] Compiling SwiftkubeModel ComponentStatusList+core.v1.swift
[417/618] Compiling SwiftkubeModel ConfigMap+core.v1.swift
[418/618] Compiling SwiftkubeModel ConfigMapEnvSource+core.v1.swift
[419/618] Compiling SwiftkubeModel ConfigMapKeySelector+core.v1.swift
[420/618] Compiling SwiftkubeModel ConfigMapList+core.v1.swift
[421/618] Compiling SwiftkubeModel ConfigMapNodeConfigSource+core.v1.swift
[422/618] Compiling SwiftkubeModel ConfigMapProjection+core.v1.swift
[423/642] Emitting module NIOCore
[424/642] Compiling SwiftkubeModel EphemeralVolumeSource+core.v1.swift
[425/642] Compiling SwiftkubeModel Event+core.v1.swift
[426/642] Compiling SwiftkubeModel EventList+core.v1.swift
[427/642] Compiling SwiftkubeModel EventSeries+core.v1.swift
[428/642] Compiling SwiftkubeModel EventSource+core.v1.swift
[429/642] Compiling SwiftkubeModel ExecAction+core.v1.swift
[430/642] Compiling SwiftkubeModel FCVolumeSource+core.v1.swift
[431/642] Compiling SwiftkubeModel FlexPersistentVolumeSource+core.v1.swift
[432/642] Compiling SwiftkubeModel FlexVolumeSource+core.v1.swift
[433/642] Compiling SwiftkubeModel FlockerVolumeSource+core.v1.swift
[434/642] Compiling SwiftkubeModel GCEPersistentDiskVolumeSource+core.v1.swift
[435/642] Compiling SwiftkubeModel GRPCAction+core.v1.swift
[436/642] Compiling SwiftkubeModel GitRepoVolumeSource+core.v1.swift
[437/642] Compiling SwiftkubeModel GlusterfsPersistentVolumeSource+core.v1.swift
[438/642] Compiling SwiftkubeModel GlusterfsVolumeSource+core.v1.swift
[439/642] Compiling SwiftkubeModel HTTPGetAction+core.v1.swift
[440/642] Compiling SwiftkubeModel HTTPHeader+core.v1.swift
[441/642] Compiling SwiftkubeModel HostAlias+core.v1.swift
[442/642] Compiling SwiftkubeModel HostIP+core.v1.swift
[443/642] Compiling SwiftkubeModel HostPathVolumeSource+core.v1.swift
[444/642] Compiling SwiftkubeModel ISCSIPersistentVolumeSource+core.v1.swift
[445/642] Compiling SwiftkubeModel ISCSIVolumeSource+core.v1.swift
[446/642] Compiling SwiftkubeModel KeyToPath+core.v1.swift
[447/642] Compiling SwiftkubeModel Lifecycle+core.v1.swift
[448/670] Compiling SwiftkubeModel ConfigMapVolumeSource+core.v1.swift
[449/670] Compiling SwiftkubeModel Container+core.v1.swift
[450/670] Compiling SwiftkubeModel ContainerImage+core.v1.swift
[451/670] Compiling SwiftkubeModel ContainerPort+core.v1.swift
[452/670] Compiling SwiftkubeModel ContainerResizePolicy+core.v1.swift
[453/670] Compiling SwiftkubeModel ContainerState+core.v1.swift
[454/670] Compiling SwiftkubeModel ContainerStateRunning+core.v1.swift
[455/670] Compiling SwiftkubeModel ContainerStateTerminated+core.v1.swift
[456/670] Compiling SwiftkubeModel ContainerStateWaiting+core.v1.swift
[457/670] Compiling SwiftkubeModel ContainerStatus+core.v1.swift
[458/670] Compiling SwiftkubeModel DaemonEndpoint+core.v1.swift
[459/670] Compiling SwiftkubeModel DownwardAPIProjection+core.v1.swift
[460/670] Compiling SwiftkubeModel DownwardAPIVolumeFile+core.v1.swift
[461/670] Compiling SwiftkubeModel DownwardAPIVolumeSource+core.v1.swift
[462/670] Compiling SwiftkubeModel EmptyDirVolumeSource+core.v1.swift
[463/670] Compiling SwiftkubeModel EndpointAddress+core.v1.swift
[464/670] Compiling SwiftkubeModel EndpointPort+core.v1.swift
[465/670] Compiling SwiftkubeModel EndpointSubset+core.v1.swift
[466/670] Compiling SwiftkubeModel Endpoints+core.v1.swift
[467/670] Compiling SwiftkubeModel EndpointsList+core.v1.swift
[468/670] Compiling SwiftkubeModel EnvFromSource+core.v1.swift
[469/670] Compiling SwiftkubeModel EnvVar+core.v1.swift
[470/670] Compiling SwiftkubeModel EnvVarSource+core.v1.swift
[471/670] Compiling SwiftkubeModel EphemeralContainer+core.v1.swift
[472/744] Compiling SwiftkubeModel NodeSelector+core.v1.swift
[473/744] Compiling SwiftkubeModel NodeSelectorRequirement+core.v1.swift
[474/744] Compiling SwiftkubeModel NodeSelectorTerm+core.v1.swift
[475/744] Compiling SwiftkubeModel NodeSpec+core.v1.swift
[476/744] Compiling SwiftkubeModel NodeStatus+core.v1.swift
[477/744] Compiling SwiftkubeModel NodeSystemInfo+core.v1.swift
[478/744] Compiling SwiftkubeModel ObjectFieldSelector+core.v1.swift
[479/744] Compiling SwiftkubeModel ObjectReference+core.v1.swift
[480/744] Compiling SwiftkubeModel PersistentVolume+core.v1.swift
[481/744] Compiling SwiftkubeModel PersistentVolumeClaim+core.v1.swift
[482/744] Compiling SwiftkubeModel PersistentVolumeClaimCondition+core.v1.swift
[483/744] Compiling SwiftkubeModel PersistentVolumeClaimList+core.v1.swift
[484/744] Compiling SwiftkubeModel PersistentVolumeClaimSpec+core.v1.swift
[485/744] Compiling SwiftkubeModel PersistentVolumeClaimStatus+core.v1.swift
[486/744] Compiling SwiftkubeModel PersistentVolumeClaimTemplate+core.v1.swift
[487/744] Compiling SwiftkubeModel PersistentVolumeClaimVolumeSource+core.v1.swift
[488/744] Compiling SwiftkubeModel PersistentVolumeList+core.v1.swift
[489/744] Compiling SwiftkubeModel PersistentVolumeSpec+core.v1.swift
[490/744] Compiling SwiftkubeModel PersistentVolumeStatus+core.v1.swift
[491/744] Compiling SwiftkubeModel PhotonPersistentDiskVolumeSource+core.v1.swift
[492/744] Compiling SwiftkubeModel Pod+core.v1.swift
[493/744] Compiling SwiftkubeModel PodAffinity+core.v1.swift
[494/744] Compiling SwiftkubeModel PodAffinityTerm+core.v1.swift
[495/744] Compiling SwiftkubeModel PodAntiAffinity+core.v1.swift
[496/768] Compiling NIOEmbedded AsyncTestingChannel.swift
[497/768] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[498/768] Emitting module NIOEmbedded
[499/768] Compiling NIOEmbedded Embedded.swift
[500/768] Compiling NIOPosix GetaddrinfoResolver.swift
[501/768] Compiling NIOPosix HappyEyeballs.swift
[502/768] Compiling NIOPosix IO.swift
[503/768] Compiling NIOPosix IntegerBitPacking.swift
[504/768] Compiling NIOPosix IntegerTypes.swift
[505/768] Compiling NIOPosix Linux.swift
[506/773] Compiling SwiftkubeModel NamedRuleWithOperations+admissionregistration.v1alpha1.swift
[507/773] Compiling SwiftkubeModel ParamKind+admissionregistration.v1alpha1.swift
[508/773] Compiling SwiftkubeModel ParamRef+admissionregistration.v1alpha1.swift
[509/773] Compiling SwiftkubeModel TypeChecking+admissionregistration.v1alpha1.swift
[510/773] Compiling SwiftkubeModel ValidatingAdmissionPolicy+admissionregistration.v1alpha1.swift
[511/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyBinding+admissionregistration.v1alpha1.swift
[512/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyBindingList+admissionregistration.v1alpha1.swift
[513/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyBindingSpec+admissionregistration.v1alpha1.swift
[514/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyList+admissionregistration.v1alpha1.swift
[515/773] Compiling SwiftkubeModel ValidatingAdmissionPolicySpec+admissionregistration.v1alpha1.swift
[516/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyStatus+admissionregistration.v1alpha1.swift
[517/773] Compiling SwiftkubeModel Validation+admissionregistration.v1alpha1.swift
[518/773] Compiling SwiftkubeModel Variable+admissionregistration.v1alpha1.swift
[519/773] Compiling SwiftkubeModel admissionregistration+v1alpha1.swift
[520/773] Compiling SwiftkubeModel AuditAnnotation+admissionregistration.v1beta1.swift
[521/773] Compiling SwiftkubeModel ExpressionWarning+admissionregistration.v1beta1.swift
[522/773] Compiling SwiftkubeModel MatchCondition+admissionregistration.v1beta1.swift
[523/773] Compiling SwiftkubeModel MatchResources+admissionregistration.v1beta1.swift
[524/773] Compiling SwiftkubeModel NamedRuleWithOperations+admissionregistration.v1beta1.swift
[525/773] Compiling SwiftkubeModel ParamKind+admissionregistration.v1beta1.swift
[526/773] Compiling SwiftkubeModel ParamRef+admissionregistration.v1beta1.swift
[527/773] Compiling SwiftkubeModel TypeChecking+admissionregistration.v1beta1.swift
[528/773] Compiling SwiftkubeModel ValidatingAdmissionPolicy+admissionregistration.v1beta1.swift
[529/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyBinding+admissionregistration.v1beta1.swift
[530/773] Compiling SwiftkubeModel ValidatingAdmissionPolicyBindingList+admissionregistration.v1beta1.swift
[531/773] Compiling SwiftkubeModel ReplicaSet+apps.v1.swift
[532/773] Compiling SwiftkubeModel ReplicaSetCondition+apps.v1.swift
[533/773] Compiling SwiftkubeModel ReplicaSetList+apps.v1.swift
[534/773] Compiling SwiftkubeModel ReplicaSetSpec+apps.v1.swift
[535/773] Compiling SwiftkubeModel ReplicaSetStatus+apps.v1.swift
[536/773] Compiling SwiftkubeModel RollingUpdateDaemonSet+apps.v1.swift
[537/773] Compiling SwiftkubeModel RollingUpdateDeployment+apps.v1.swift
[538/773] Compiling SwiftkubeModel RollingUpdateStatefulSetStrategy+apps.v1.swift
[539/773] Compiling SwiftkubeModel StatefulSet+apps.v1.swift
[540/773] Compiling SwiftkubeModel StatefulSetCondition+apps.v1.swift
[541/773] Compiling SwiftkubeModel StatefulSetList+apps.v1.swift
[542/773] Compiling SwiftkubeModel StatefulSetOrdinals+apps.v1.swift
[543/773] Compiling SwiftkubeModel StatefulSetPersistentVolumeClaimRetentionPolicy+apps.v1.swift
[544/773] Compiling SwiftkubeModel StatefulSetSpec+apps.v1.swift
[545/773] Compiling SwiftkubeModel StatefulSetStatus+apps.v1.swift
[546/773] Compiling SwiftkubeModel StatefulSetUpdateStrategy+apps.v1.swift
[547/773] Compiling SwiftkubeModel apps+v1.swift
[548/773] Compiling SwiftkubeModel authentication.swift
[549/773] Compiling SwiftkubeModel BoundObjectReference+authentication.v1.swift
[550/773] Compiling SwiftkubeModel SelfSubjectReview+authentication.v1.swift
[551/773] Compiling SwiftkubeModel SelfSubjectReviewStatus+authentication.v1.swift
[552/773] Compiling SwiftkubeModel TokenRequest+authentication.v1.swift
[553/773] Compiling SwiftkubeModel TokenRequestSpec+authentication.v1.swift
[554/773] Compiling SwiftkubeModel TokenRequestStatus+authentication.v1.swift
[555/773] Compiling SwiftkubeModel TokenReview+authentication.v1.swift
[556/773] Compiling SwiftkubeModel TokenReviewSpec+authentication.v1.swift
[557/773] Compiling SwiftkubeModel TokenReviewStatus+authentication.v1.swift
[558/773] Compiling SwiftkubeModel UserInfo+authentication.v1.swift
[559/773] Compiling SwiftkubeModel authentication+v1.swift
[560/773] Compiling SwiftkubeModel SelfSubjectReview+authentication.v1alpha1.swift
[561/773] Compiling SwiftkubeModel SelfSubjectReviewStatus+authentication.v1alpha1.swift
[562/773] Compiling SwiftkubeModel authentication+v1alpha1.swift
[563/773] Compiling SwiftkubeModel SelfSubjectReview+authentication.v1beta1.swift
[564/773] Compiling SwiftkubeModel SelfSubjectReviewStatus+authentication.v1beta1.swift
[565/773] Compiling SwiftkubeModel authentication+v1beta1.swift
[566/773] Compiling SwiftkubeModel authorization.swift
[567/773] Compiling SwiftkubeModel LocalSubjectAccessReview+authorization.v1.swift
[568/773] Compiling SwiftkubeModel NonResourceAttributes+authorization.v1.swift
[569/773] Compiling SwiftkubeModel NonResourceRule+authorization.v1.swift
[570/773] Compiling SwiftkubeModel ResourceAttributes+authorization.v1.swift
[571/773] Compiling SwiftkubeModel ResourceRule+authorization.v1.swift
[572/773] Compiling SwiftkubeModel SelfSubjectAccessReview+authorization.v1.swift
[573/773] Compiling SwiftkubeModel SelfSubjectAccessReviewSpec+authorization.v1.swift
[574/773] Compiling SwiftkubeModel SelfSubjectRulesReview+authorization.v1.swift
[575/773] Compiling SwiftkubeModel SelfSubjectRulesReviewSpec+authorization.v1.swift
[576/773] Compiling SwiftkubeModel SubjectAccessReview+authorization.v1.swift
[577/773] Compiling SwiftkubeModel SubjectAccessReviewSpec+authorization.v1.swift
[578/773] Compiling SwiftkubeModel SubjectAccessReviewStatus+authorization.v1.swift
[579/773] Compiling SwiftkubeModel SubjectRulesReviewStatus+authorization.v1.swift
[580/773] Emitting module SwiftkubeModel
[581/869] Compiling NIOPosix UnsafeTransfer.swift
[582/869] Compiling NIOPosix Utilities.swift
[583/869] Compiling NIOPosix VsockAddress.swift
[584/869] Compiling NIOPosix VsockChannelEvents.swift
[585/869] Compiling NIOPosix resource_bundle_accessor.swift
[586/869] Compiling NIOPosix PooledRecvBufferAllocator.swift
[587/869] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[588/869] Compiling NIOPosix PosixSingletons.swift
[589/869] Compiling NIOPosix RawSocketBootstrap.swift
[590/869] Compiling NIOPosix Resolver.swift
[591/869] Compiling NIOPosix Selectable.swift
[592/869] Compiling NIOPosix SelectableChannel.swift
[593/869] Compiling NIOPosix SelectableEventLoop.swift
[594/869] Compiling NIOPosix SelectorEpoll.swift
[595/869] Compiling NIOPosix SelectorGeneric.swift
[596/869] Compiling NIOPosix SelectorKqueue.swift
[597/869] Compiling NIOPosix SelectorUring.swift
[598/869] Compiling NIOPosix ServerSocket.swift
[599/869] Compiling NIOPosix Socket.swift
[600/869] Compiling NIOPosix SocketChannel.swift
[601/869] Compiling SwiftkubeModel PodCondition+core.v1.swift
[602/869] Compiling SwiftkubeModel PodDNSConfig+core.v1.swift
[603/869] Compiling SwiftkubeModel PodDNSConfigOption+core.v1.swift
[604/869] Compiling SwiftkubeModel PodIP+core.v1.swift
[605/869] Compiling SwiftkubeModel PodList+core.v1.swift
[606/869] Compiling SwiftkubeModel PodOS+core.v1.swift
[607/869] Compiling SwiftkubeModel PodReadinessGate+core.v1.swift
[608/869] Compiling SwiftkubeModel PodResourceClaim+core.v1.swift
[609/869] Compiling SwiftkubeModel PodResourceClaimStatus+core.v1.swift
[610/869] Compiling SwiftkubeModel PodSchedulingGate+core.v1.swift
[611/869] Compiling SwiftkubeModel PodSecurityContext+core.v1.swift
[612/869] Compiling SwiftkubeModel PodSpec+core.v1.swift
[613/869] Compiling SwiftkubeModel PodStatus+core.v1.swift
[614/869] Compiling SwiftkubeModel PodTemplate+core.v1.swift
[615/869] Compiling SwiftkubeModel PodTemplateList+core.v1.swift
[616/869] Compiling SwiftkubeModel PodTemplateSpec+core.v1.swift
[617/869] Compiling SwiftkubeModel PortStatus+core.v1.swift
[618/869] Compiling SwiftkubeModel PortworxVolumeSource+core.v1.swift
[619/869] Compiling SwiftkubeModel PreferredSchedulingTerm+core.v1.swift
[620/869] Compiling SwiftkubeModel Probe+core.v1.swift
[621/869] Compiling SwiftkubeModel ProjectedVolumeSource+core.v1.swift
[622/869] Compiling SwiftkubeModel QuobyteVolumeSource+core.v1.swift
[623/869] Compiling SwiftkubeModel RBDPersistentVolumeSource+core.v1.swift
[624/869] Compiling SwiftkubeModel RBDVolumeSource+core.v1.swift
[625/893] Emitting module NIOPosix
[626/893] Compiling NIOPosix SocketProtocols.swift
[627/893] Compiling NIOPosix System.swift
[628/893] Compiling NIOPosix Thread.swift
[629/893] Compiling NIOPosix ThreadPosix.swift
[630/893] Compiling NIOPosix ThreadWindows.swift
[631/893] Compiling NIOPosix BSDSocketAPICommon.swift
[632/893] Compiling NIOPosix BSDSocketAPIPosix.swift
[633/893] Compiling NIOPosix BSDSocketAPIWindows.swift
[634/893] Compiling NIOPosix BaseSocket.swift
[635/893] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[636/893] Compiling NIOPosix BaseSocketChannel.swift
[637/893] Compiling NIOPosix PendingWritesManager.swift
[638/893] Compiling NIOPosix PipeChannel.swift
[639/893] Compiling NIOPosix PipePair.swift
[640/893] Compiling NIOPosix PointerHelpers.swift
[641/893] Compiling NIOPosix Pool.swift
[642/893] Compiling NIOPosix BaseStreamSocketChannel.swift
[643/893] Compiling NIOPosix Bootstrap.swift
[644/893] Compiling NIOPosix ControlMessage.swift
[645/893] Compiling NIOPosix DatagramVectorReadManager.swift
[646/893] Compiling NIOPosix Errors+Any.swift
[647/893] Compiling NIOPosix FileDescriptor.swift
[648/893] Compiling NIOPosix LinuxCPUSet.swift
[649/893] Compiling NIOPosix LinuxUring.swift
[650/893] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[651/893] Compiling NIOPosix NIOThreadPool.swift
[652/893] Compiling NIOPosix NonBlockingFileIO.swift
[653/893] Compiling NIOPosix PendingDatagramWritesManager.swift
[654/893] Compiling SwiftkubeModel VolumeDevice+core.v1.swift
[655/893] Compiling SwiftkubeModel VolumeMount+core.v1.swift
[656/893] Compiling SwiftkubeModel VolumeNodeAffinity+core.v1.swift
[657/893] Compiling SwiftkubeModel VolumeProjection+core.v1.swift
[658/893] Compiling SwiftkubeModel VolumeResourceRequirements+core.v1.swift
[659/893] Compiling SwiftkubeModel VsphereVirtualDiskVolumeSource+core.v1.swift
[660/893] Compiling SwiftkubeModel WeightedPodAffinityTerm+core.v1.swift
[661/893] Compiling SwiftkubeModel WindowsSecurityContextOptions+core.v1.swift
[662/893] Compiling SwiftkubeModel core+v1.swift
[663/893] Compiling SwiftkubeModel discovery.swift
[664/893] Compiling SwiftkubeModel Endpoint+discovery.v1.swift
[665/893] Compiling SwiftkubeModel EndpointConditions+discovery.v1.swift
[666/893] Compiling SwiftkubeModel EndpointHints+discovery.v1.swift
[667/893] Compiling SwiftkubeModel EndpointPort+discovery.v1.swift
[668/893] Compiling SwiftkubeModel EndpointSlice+discovery.v1.swift
[669/893] Compiling SwiftkubeModel EndpointSliceList+discovery.v1.swift
[670/893] Compiling SwiftkubeModel ForZone+discovery.v1.swift
[671/893] Compiling SwiftkubeModel discovery+v1.swift
[672/893] Compiling SwiftkubeModel events.swift
[673/893] Compiling SwiftkubeModel Event+events.v1.swift
[674/893] Compiling SwiftkubeModel EventList+events.v1.swift
[675/893] Compiling SwiftkubeModel EventSeries+events.v1.swift
[676/893] Compiling SwiftkubeModel events+v1.swift
[677/893] Compiling SwiftkubeModel flowcontrol.swift
[678/917] Compiling SwiftkubeModel ReplicationController+core.v1.swift
[679/917] Compiling SwiftkubeModel ReplicationControllerCondition+core.v1.swift
[680/917] Compiling SwiftkubeModel ReplicationControllerList+core.v1.swift
[681/917] Compiling SwiftkubeModel ReplicationControllerSpec+core.v1.swift
[682/917] Compiling SwiftkubeModel ReplicationControllerStatus+core.v1.swift
[683/917] Compiling SwiftkubeModel ResourceClaim+core.v1.swift
[684/917] Compiling SwiftkubeModel ResourceFieldSelector+core.v1.swift
[685/917] Compiling SwiftkubeModel ResourceQuota+core.v1.swift
[686/917] Compiling SwiftkubeModel ResourceQuotaList+core.v1.swift
[687/917] Compiling SwiftkubeModel ResourceQuotaSpec+core.v1.swift
[688/917] Compiling SwiftkubeModel ResourceQuotaStatus+core.v1.swift
[689/917] Compiling SwiftkubeModel ResourceRequirements+core.v1.swift
[690/917] Compiling SwiftkubeModel SELinuxOptions+core.v1.swift
[691/917] Compiling SwiftkubeModel ScaleIOPersistentVolumeSource+core.v1.swift
[692/917] Compiling SwiftkubeModel ScaleIOVolumeSource+core.v1.swift
[693/917] Compiling SwiftkubeModel ScopeSelector+core.v1.swift
[694/917] Compiling SwiftkubeModel ScopedResourceSelectorRequirement+core.v1.swift
[695/917] Compiling SwiftkubeModel SeccompProfile+core.v1.swift
[696/917] Compiling SwiftkubeModel Secret+core.v1.swift
[697/917] Compiling SwiftkubeModel SecretEnvSource+core.v1.swift
[698/917] Compiling SwiftkubeModel SecretKeySelector+core.v1.swift
[699/917] Compiling SwiftkubeModel SecretList+core.v1.swift
[700/917] Compiling SwiftkubeModel SecretProjection+core.v1.swift
[701/917] Compiling SwiftkubeModel SecretReference+core.v1.swift
[702/919] Compiling SwiftkubeModel ExemptPriorityLevelConfiguration+flowcontrol.v1.swift
[703/919] Compiling SwiftkubeModel FlowDistinguisherMethod+flowcontrol.v1.swift
[704/919] Compiling SwiftkubeModel FlowSchema+flowcontrol.v1.swift
[705/919] Compiling SwiftkubeModel FlowSchemaCondition+flowcontrol.v1.swift
[706/919] Compiling SwiftkubeModel FlowSchemaList+flowcontrol.v1.swift
[707/919] Compiling SwiftkubeModel FlowSchemaSpec+flowcontrol.v1.swift
[708/919] Compiling SwiftkubeModel FlowSchemaStatus+flowcontrol.v1.swift
[709/919] Compiling SwiftkubeModel GroupSubject+flowcontrol.v1.swift
[710/919] Compiling SwiftkubeModel LimitResponse+flowcontrol.v1.swift
[711/919] Compiling SwiftkubeModel LimitedPriorityLevelConfiguration+flowcontrol.v1.swift
[712/919] Compiling SwiftkubeModel NonResourcePolicyRule+flowcontrol.v1.swift
[713/919] Compiling SwiftkubeModel PolicyRulesWithSubjects+flowcontrol.v1.swift
[714/919] Compiling SwiftkubeModel PriorityLevelConfiguration+flowcontrol.v1.swift
[715/919] Compiling SwiftkubeModel PriorityLevelConfigurationCondition+flowcontrol.v1.swift
[716/919] Compiling SwiftkubeModel PriorityLevelConfigurationList+flowcontrol.v1.swift
[717/919] Compiling SwiftkubeModel PriorityLevelConfigurationReference+flowcontrol.v1.swift
[718/919] Compiling SwiftkubeModel PriorityLevelConfigurationSpec+flowcontrol.v1.swift
[719/919] Compiling SwiftkubeModel PriorityLevelConfigurationStatus+flowcontrol.v1.swift
[720/919] Compiling SwiftkubeModel QueuingConfiguration+flowcontrol.v1.swift
[721/919] Compiling SwiftkubeModel ResourcePolicyRule+flowcontrol.v1.swift
[722/919] Compiling SwiftkubeModel ServiceAccountSubject+flowcontrol.v1.swift
[723/919] Compiling SwiftkubeModel Subject+flowcontrol.v1.swift
[724/919] Compiling SwiftkubeModel UserSubject+flowcontrol.v1.swift
[725/919] Compiling SwiftkubeModel flowcontrol+v1.swift
[726/919] Emitting module NIO
[727/919] Compiling NIO Exports.swift
[728/919] Compiling SwiftkubeModel ExemptPriorityLevelConfiguration+flowcontrol.v1beta3.swift
[729/919] Compiling SwiftkubeModel FlowDistinguisherMethod+flowcontrol.v1beta3.swift
[730/919] Compiling SwiftkubeModel FlowSchema+flowcontrol.v1beta3.swift
[731/919] Compiling SwiftkubeModel FlowSchemaCondition+flowcontrol.v1beta3.swift
[732/919] Compiling SwiftkubeModel FlowSchemaList+flowcontrol.v1beta3.swift
[733/919] Compiling SwiftkubeModel FlowSchemaSpec+flowcontrol.v1beta3.swift
[734/919] Compiling SwiftkubeModel FlowSchemaStatus+flowcontrol.v1beta3.swift
[735/919] Compiling SwiftkubeModel GroupSubject+flowcontrol.v1beta3.swift
[736/919] Compiling SwiftkubeModel LimitResponse+flowcontrol.v1beta3.swift
[737/919] Compiling SwiftkubeModel LimitedPriorityLevelConfiguration+flowcontrol.v1beta3.swift
[738/919] Compiling SwiftkubeModel NonResourcePolicyRule+flowcontrol.v1beta3.swift
[739/919] Compiling SwiftkubeModel PolicyRulesWithSubjects+flowcontrol.v1beta3.swift
[740/919] Compiling SwiftkubeModel PriorityLevelConfiguration+flowcontrol.v1beta3.swift
[741/919] Compiling SwiftkubeModel PriorityLevelConfigurationCondition+flowcontrol.v1beta3.swift
[742/919] Compiling SwiftkubeModel PriorityLevelConfigurationList+flowcontrol.v1beta3.swift
[743/919] Compiling SwiftkubeModel PriorityLevelConfigurationReference+flowcontrol.v1beta3.swift
[744/919] Compiling SwiftkubeModel PriorityLevelConfigurationSpec+flowcontrol.v1beta3.swift
[745/919] Compiling SwiftkubeModel PriorityLevelConfigurationStatus+flowcontrol.v1beta3.swift
[746/919] Compiling SwiftkubeModel QueuingConfiguration+flowcontrol.v1beta3.swift
[747/919] Compiling SwiftkubeModel ResourcePolicyRule+flowcontrol.v1beta3.swift
[748/919] Compiling SwiftkubeModel ServiceAccountSubject+flowcontrol.v1beta3.swift
[749/919] Compiling SwiftkubeModel Subject+flowcontrol.v1beta3.swift
[750/919] Compiling SwiftkubeModel UserSubject+flowcontrol.v1beta3.swift
[751/919] Compiling SwiftkubeModel flowcontrol+v1beta3.swift
[752/919] Compiling SwiftkubeModel SecretVolumeSource+core.v1.swift
[753/919] Compiling SwiftkubeModel SecurityContext+core.v1.swift
[754/919] Compiling SwiftkubeModel Service+core.v1.swift
[755/919] Compiling SwiftkubeModel ServiceAccount+core.v1.swift
[756/919] Compiling SwiftkubeModel ServiceAccountList+core.v1.swift
[757/919] Compiling SwiftkubeModel ServiceAccountTokenProjection+core.v1.swift
[758/919] Compiling SwiftkubeModel ServiceList+core.v1.swift
[759/919] Compiling SwiftkubeModel ServicePort+core.v1.swift
[760/919] Compiling SwiftkubeModel ServiceSpec+core.v1.swift
[761/919] Compiling SwiftkubeModel ServiceStatus+core.v1.swift
[762/919] Compiling SwiftkubeModel SessionAffinityConfig+core.v1.swift
[763/919] Compiling SwiftkubeModel SleepAction+core.v1.swift
[764/919] Compiling SwiftkubeModel StorageOSPersistentVolumeSource+core.v1.swift
[765/919] Compiling SwiftkubeModel StorageOSVolumeSource+core.v1.swift
[766/919] Compiling SwiftkubeModel Sysctl+core.v1.swift
[767/919] Compiling SwiftkubeModel TCPSocketAction+core.v1.swift
[768/919] Compiling SwiftkubeModel Taint+core.v1.swift
[769/919] Compiling SwiftkubeModel Toleration+core.v1.swift
[770/919] Compiling SwiftkubeModel TopologySelectorLabelRequirement+core.v1.swift
[771/919] Compiling SwiftkubeModel TopologySelectorTerm+core.v1.swift
[772/919] Compiling SwiftkubeModel TopologySpreadConstraint+core.v1.swift
[773/919] Compiling SwiftkubeModel TypedLocalObjectReference+core.v1.swift
[774/919] Compiling SwiftkubeModel TypedObjectReference+core.v1.swift
[775/919] Compiling SwiftkubeModel Volume+core.v1.swift
[776/958] Compiling NIOTLS TLSEvents.swift
[777/958] Compiling NIOSOCKS SelectedAuthenticationMethod.swift
[778/958] Compiling NIOSOCKS SOCKSResponse.swift
[779/958] Compiling NIOSOCKS ClientStateMachine.swift
[780/959] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[781/959] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[782/959] Compiling NIOSOCKS SOCKSRequest.swift
[783/959] Compiling NIOSOCKS Messages.swift
[784/959] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[785/959] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[786/959] Compiling NIOSOCKS Helpers.swift
[787/959] Compiling NIOSOCKS Errors.swift
[788/959] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[789/959] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[790/959] Emitting module NIOSOCKS
[791/959] Compiling NIOSOCKS ServerStateMachine.swift
[792/959] Compiling NIOTLS ProtocolNegotiationHandlerStateMachine.swift
[793/959] Emitting module NIOTLS
[794/959] Compiling NIOTLS ApplicationProtocolNegotiationHandler.swift
[795/959] Compiling NIOTLS NIOTypedApplicationProtocolNegotiationHandler.swift
[796/959] Compiling NIOTLS SNIHandler.swift
[797/959] Compiling SwiftkubeModel node+v1.swift
[798/959] Compiling SwiftkubeModel policy.swift
[799/959] Compiling SwiftkubeModel Eviction+policy.v1.swift
[800/959] Compiling SwiftkubeModel PodDisruptionBudget+policy.v1.swift
[801/959] Compiling SwiftkubeModel PodDisruptionBudgetList+policy.v1.swift
[802/959] Compiling SwiftkubeModel PodDisruptionBudgetSpec+policy.v1.swift
[803/959] Compiling SwiftkubeModel PodDisruptionBudgetStatus+policy.v1.swift
[804/959] Compiling SwiftkubeModel policy+v1.swift
[805/959] Compiling SwiftkubeModel rbac.swift
[806/959] Compiling SwiftkubeModel AggregationRule+rbac.v1.swift
[807/959] Compiling SwiftkubeModel ClusterRole+rbac.v1.swift
[808/959] Compiling SwiftkubeModel ClusterRoleBinding+rbac.v1.swift
[809/959] Compiling SwiftkubeModel ClusterRoleBindingList+rbac.v1.swift
[810/959] Compiling SwiftkubeModel ClusterRoleList+rbac.v1.swift
[811/959] Compiling SwiftkubeModel PolicyRule+rbac.v1.swift
[812/959] Compiling SwiftkubeModel Role+rbac.v1.swift
[813/959] Compiling SwiftkubeModel RoleBinding+rbac.v1.swift
[814/959] Compiling SwiftkubeModel RoleBindingList+rbac.v1.swift
[815/959] Compiling SwiftkubeModel RoleList+rbac.v1.swift
[816/959] Compiling SwiftkubeModel RoleRef+rbac.v1.swift
[817/959] Compiling SwiftkubeModel Subject+rbac.v1.swift
[818/959] Compiling SwiftkubeModel rbac+v1.swift
[819/959] Compiling SwiftkubeModel resource.swift
[820/959] Compiling SwiftkubeModel AllocationResult+resource.v1alpha2.swift
[821/959] Compiling SwiftkubeModel IngressTLS+networking.v1.swift
[822/959] Compiling SwiftkubeModel NetworkPolicy+networking.v1.swift
[823/959] Compiling SwiftkubeModel NetworkPolicyEgressRule+networking.v1.swift
[824/959] Compiling SwiftkubeModel NetworkPolicyIngressRule+networking.v1.swift
[825/959] Compiling SwiftkubeModel NetworkPolicyList+networking.v1.swift
[826/959] Compiling SwiftkubeModel NetworkPolicyPeer+networking.v1.swift
[827/959] Compiling SwiftkubeModel NetworkPolicyPort+networking.v1.swift
[828/959] Compiling SwiftkubeModel NetworkPolicySpec+networking.v1.swift
[829/959] Compiling SwiftkubeModel ServiceBackendPort+networking.v1.swift
[830/959] Compiling SwiftkubeModel networking+v1.swift
[831/959] Compiling SwiftkubeModel IPAddress+networking.v1alpha1.swift
[832/959] Compiling SwiftkubeModel IPAddressList+networking.v1alpha1.swift
[833/959] Compiling SwiftkubeModel IPAddressSpec+networking.v1alpha1.swift
[834/959] Compiling SwiftkubeModel ParentReference+networking.v1alpha1.swift
[835/959] Compiling SwiftkubeModel ServiceCIDR+networking.v1alpha1.swift
[836/959] Compiling SwiftkubeModel ServiceCIDRList+networking.v1alpha1.swift
[837/959] Compiling SwiftkubeModel ServiceCIDRSpec+networking.v1alpha1.swift
[838/959] Compiling SwiftkubeModel ServiceCIDRStatus+networking.v1alpha1.swift
[839/959] Compiling SwiftkubeModel networking+v1alpha1.swift
[840/959] Compiling SwiftkubeModel node.swift
[841/959] Compiling SwiftkubeModel Overhead+node.v1.swift
[842/959] Compiling SwiftkubeModel RuntimeClass+node.v1.swift
[843/959] Compiling SwiftkubeModel RuntimeClassList+node.v1.swift
[844/959] Compiling SwiftkubeModel Scheduling+node.v1.swift
[845/959] Compiling SwiftkubeModel ServerAddressByClientCIDR+meta.v1.swift
[846/959] Compiling SwiftkubeModel Status+meta.v1.swift
[847/959] Compiling SwiftkubeModel StatusCause+meta.v1.swift
[848/959] Compiling SwiftkubeModel StatusDetails+meta.v1.swift
[849/959] Compiling SwiftkubeModel WatchEvent+meta.v1.swift
[850/959] Compiling SwiftkubeModel meta+v1.swift
[851/959] Compiling SwiftkubeModel networking.swift
[852/959] Compiling SwiftkubeModel HTTPIngressPath+networking.v1.swift
[853/959] Compiling SwiftkubeModel HTTPIngressRuleValue+networking.v1.swift
[854/959] Compiling SwiftkubeModel IPBlock+networking.v1.swift
[855/959] Compiling SwiftkubeModel Ingress+networking.v1.swift
[856/959] Compiling SwiftkubeModel IngressBackend+networking.v1.swift
[857/959] Compiling SwiftkubeModel IngressClass+networking.v1.swift
[858/959] Compiling SwiftkubeModel IngressClassList+networking.v1.swift
[859/959] Compiling SwiftkubeModel IngressClassParametersReference+networking.v1.swift
[860/959] Compiling SwiftkubeModel IngressClassSpec+networking.v1.swift
[861/959] Compiling SwiftkubeModel IngressList+networking.v1.swift
[862/959] Compiling SwiftkubeModel IngressLoadBalancerIngress+networking.v1.swift
[863/959] Compiling SwiftkubeModel IngressLoadBalancerStatus+networking.v1.swift
[864/959] Compiling SwiftkubeModel IngressPortStatus+networking.v1.swift
[865/959] Compiling SwiftkubeModel IngressRule+networking.v1.swift
[866/959] Compiling SwiftkubeModel IngressServiceBackend+networking.v1.swift
[867/959] Compiling SwiftkubeModel IngressSpec+networking.v1.swift
[868/959] Compiling SwiftkubeModel IngressStatus+networking.v1.swift
[869/959] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[870/959] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[871/959] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[872/959] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[873/959] Emitting module NIOHTTP1
[874/960] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[875/960] Emitting module NIOFoundationCompat
[876/989] Compiling SwiftkubeModel internal.swift
[877/989] Compiling SwiftkubeModel ServerStorageVersion+internal.v1alpha1.swift
[878/989] Compiling SwiftkubeModel StorageVersion+internal.v1alpha1.swift
[879/989] Compiling SwiftkubeModel StorageVersionCondition+internal.v1alpha1.swift
[880/989] Compiling SwiftkubeModel StorageVersionList+internal.v1alpha1.swift
[881/989] Compiling SwiftkubeModel StorageVersionSpec+internal.v1alpha1.swift
[882/989] Compiling SwiftkubeModel StorageVersionStatus+internal.v1alpha1.swift
[883/989] Compiling SwiftkubeModel internal+v1alpha1.swift
[884/989] Compiling SwiftkubeModel meta.swift
[885/989] Compiling SwiftkubeModel APIGroup+meta.v1.swift
[886/989] Compiling SwiftkubeModel APIGroupList+meta.v1.swift
[887/989] Compiling SwiftkubeModel APIResource+meta.v1.swift
[888/989] Compiling SwiftkubeModel APIResourceList+meta.v1.swift
[889/989] Compiling SwiftkubeModel APIVersions+meta.v1.swift
[890/989] Compiling SwiftkubeModel Condition+meta.v1.swift
[891/989] Compiling SwiftkubeModel DeleteOptions+meta.v1.swift
[892/989] Compiling SwiftkubeModel GroupVersionForDiscovery+meta.v1.swift
[893/989] Compiling SwiftkubeModel LabelSelector+meta.v1.swift
[894/989] Compiling SwiftkubeModel LabelSelectorRequirement+meta.v1.swift
[895/989] Compiling SwiftkubeModel ListMeta+meta.v1.swift
[896/989] Compiling SwiftkubeModel ManagedFieldsEntry+meta.v1.swift
[897/989] Compiling SwiftkubeModel ObjectMeta+meta.v1.swift
[898/989] Compiling SwiftkubeModel OwnerReference+meta.v1.swift
[899/989] Compiling SwiftkubeModel Preconditions+meta.v1.swift
[900/1011] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[901/1011] Compiling NIOTransportServices NIOFilterEmptyWritesHandler.swift
[902/1011] Compiling NIOTransportServices AcceptHandler.swift
[903/1011] Compiling NIOTransportServices SocketAddress+NWEndpoint.swift
[904/1011] Compiling NIOTransportServices StateManagedChannel.swift
[905/1011] Compiling NIOTransportServices NIOTSConnectionBootstrap.swift
[906/1011] Compiling NIOTransportServices NIOTSEventLoop.swift
[907/1011] Compiling NIOTransportServices NIOTSBootstraps.swift
[908/1011] Compiling NIOTransportServices NIOTSChannelOptions.swift
[909/1011] Compiling NIOTransportServices NIOTSDatagramListener.swift
[910/1011] Compiling NIOTransportServices NIOTSDatagramListenerChannel.swift
[911/1011] Compiling NIOTransportServices NIOTSDatagramBootstrap.swift
[912/1011] Compiling NIOTransportServices NIOTSDatagramChannel.swift
[913/1029] Compiling SwiftkubeModel PodSchedulingContext+resource.v1alpha2.swift
[914/1029] Compiling SwiftkubeModel PodSchedulingContextList+resource.v1alpha2.swift
[915/1029] Compiling SwiftkubeModel PodSchedulingContextSpec+resource.v1alpha2.swift
[916/1029] Compiling SwiftkubeModel PodSchedulingContextStatus+resource.v1alpha2.swift
[917/1029] Compiling SwiftkubeModel ResourceClaim+resource.v1alpha2.swift
[918/1029] Compiling SwiftkubeModel ResourceClaimConsumerReference+resource.v1alpha2.swift
[919/1029] Compiling SwiftkubeModel ResourceClaimList+resource.v1alpha2.swift
[920/1029] Compiling SwiftkubeModel ResourceClaimParametersReference+resource.v1alpha2.swift
[921/1029] Compiling SwiftkubeModel ResourceClaimSchedulingStatus+resource.v1alpha2.swift
[922/1029] Compiling SwiftkubeModel ResourceClaimSpec+resource.v1alpha2.swift
[923/1029] Compiling SwiftkubeModel ResourceClaimStatus+resource.v1alpha2.swift
[924/1029] Compiling SwiftkubeModel ResourceClaimTemplate+resource.v1alpha2.swift
[925/1029] Compiling SwiftkubeModel ResourceClaimTemplateList+resource.v1alpha2.swift
[926/1029] Compiling SwiftkubeModel ResourceClaimTemplateSpec+resource.v1alpha2.swift
[927/1029] Compiling SwiftkubeModel ResourceClass+resource.v1alpha2.swift
[928/1029] Compiling SwiftkubeModel ResourceClassList+resource.v1alpha2.swift
[929/1029] Compiling SwiftkubeModel ResourceClassParametersReference+resource.v1alpha2.swift
[930/1029] Compiling SwiftkubeModel ResourceHandle+resource.v1alpha2.swift
[931/1029] Compiling SwiftkubeModel resource+v1alpha2.swift
[932/1029] Compiling SwiftkubeModel scheduling.swift
[933/1029] Compiling SwiftkubeModel PriorityClass+scheduling.v1.swift
[934/1029] Compiling SwiftkubeModel PriorityClassList+scheduling.v1.swift
[935/1029] Compiling SwiftkubeModel scheduling+v1.swift
[936/1029] Compiling SwiftkubeModel storage.swift
[937/1029] Compiling NIOHTTPCompression HTTPResponseDecompressor.swift
[938/1029] Compiling NIOHPACK IntegerCoding.swift
[939/1030] Compiling NIOSSL String+unsafeUninitializedCapacity.swift
[940/1030] Compiling NIOSSL SubjectAlternativeName.swift
[941/1030] Compiling NIOSSL NIOSSLSecureBytes.swift
[945/1033] Compiling NIOHPACK DynamicHeaderTable.swift
[946/1033] Compiling NIOHPACK HPACKDecoder.swift
[949/1033] Compiling NIOHPACK IndexedHeaderTable.swift
[950/1033] Compiling NIOHPACK HuffmanTables.swift
[951/1033] Compiling NIOHTTPCompression HTTPRequestCompressor.swift
[952/1033] Compiling NIOHTTPCompression HTTPDecompression.swift
[953/1033] Emitting module NIOHTTPCompression
[954/1033] Compiling NIOHTTPCompression HTTPRequestDecompressor.swift
[955/1033] Compiling NIOHTTPCompression HTTPResponseCompressor.swift
[956/1033] Compiling NIOHTTPCompression HTTPCompression.swift
[957/1033] Compiling NIOHPACK HuffmanCoding.swift
[958/1033] Emitting module NIOSSL
[959/1033] Compiling NIOHPACK HeaderTables.swift
[960/1033] Compiling NIOHPACK HPACKEncoder.swift
[961/1033] Compiling NIOHPACK HPACKHeader.swift
[962/1033] Compiling NIOHPACK HPACKErrors.swift
[965/1033] Emitting module NIOHPACK
[966/1033] Compiling NIOHPACK StaticHeaderTable.swift
[967/1033] Compiling SwiftkubeModel CSIDriver+storage.v1.swift
[968/1033] Compiling SwiftkubeModel CSIDriverList+storage.v1.swift
[969/1033] Compiling SwiftkubeModel CSIDriverSpec+storage.v1.swift
[970/1033] Compiling SwiftkubeModel CSINode+storage.v1.swift
[971/1033] Compiling SwiftkubeModel CSINodeDriver+storage.v1.swift
[972/1033] Compiling SwiftkubeModel CSINodeList+storage.v1.swift
[973/1033] Compiling SwiftkubeModel CSINodeSpec+storage.v1.swift
[974/1033] Compiling SwiftkubeModel CSIStorageCapacity+storage.v1.swift
[975/1033] Compiling SwiftkubeModel CSIStorageCapacityList+storage.v1.swift
[976/1033] Compiling SwiftkubeModel StorageClass+storage.v1.swift
[977/1033] Compiling SwiftkubeModel StorageClassList+storage.v1.swift
[978/1033] Compiling SwiftkubeModel TokenRequest+storage.v1.swift
[979/1033] Compiling SwiftkubeModel VolumeAttachment+storage.v1.swift
[980/1033] Compiling SwiftkubeModel VolumeAttachmentList+storage.v1.swift
[981/1033] Compiling SwiftkubeModel VolumeAttachmentSource+storage.v1.swift
[982/1033] Compiling SwiftkubeModel VolumeAttachmentSpec+storage.v1.swift
[983/1033] Compiling SwiftkubeModel VolumeAttachmentStatus+storage.v1.swift
[984/1033] Compiling SwiftkubeModel VolumeError+storage.v1.swift
[985/1033] Compiling SwiftkubeModel VolumeNodeResources+storage.v1.swift
[986/1033] Compiling SwiftkubeModel storage+v1.swift
[987/1033] Compiling SwiftkubeModel VolumeAttributesClass+storage.v1alpha1.swift
[988/1033] Compiling SwiftkubeModel VolumeAttributesClassList+storage.v1alpha1.swift
[989/1033] Compiling SwiftkubeModel storage+v1alpha1.swift
[990/1033] Compiling SwiftkubeModel SwiftkubeModel.swift
[991/1033] Compiling NIOTransportServices NIOTSListenerChannel.swift
[992/1033] Compiling NIOTransportServices NIOTSNetworkEvents.swift
[993/1033] Compiling NIOTransportServices NIOTSSingletons.swift
[994/1033] Compiling NIOTransportServices NIOTSConnectionChannel.swift
[995/1033] Compiling NIOTransportServices NIOTSErrors.swift
[996/1033] Compiling NIOTransportServices NIOTSListenerBootstrap.swift
[999/1033] Compiling NIOTransportServices NIOTSEventLoopGroup.swift
[1000/1033] Compiling NIOTransportServices StateManagedListenerChannel.swift
[1001/1033] Compiling NIOTransportServices StateManagedNWConnectionChannel.swift
[1002/1033] Compiling NIOSSL Zeroization.swift
[1003/1033] Compiling NIOSSL SSLCertificateExtensions.swift
[1004/1033] Compiling NIOSSL SSLConnection.swift
[1005/1033] Compiling NIOSSL SSLContext.swift
[1021/1033] Emitting module NIOTransportServices
[1031/1095] Compiling NIOHTTP2 ReceivingWindowUpdateState.swift
[1032/1095] Compiling NIOHTTP2 MaySendFrames.swift
[1033/1095] Compiling NIOHTTP2 QuiescingState.swift
[1034/1095] Compiling NIOHTTP2 RemotelyQuiescingState.swift
[1035/1095] Compiling NIOHTTP2 SendAndReceiveGoawayState.swift
[1036/1095] Compiling NIOHTTP2 LocallyQuiescingState.swift
[1040/1095] Compiling NIOHTTP2 StateMachineResult.swift
[1041/1095] Compiling NIOHTTP2 ContentLengthVerifier.swift
[1042/1095] Compiling NIOHTTP2 DOSHeuristics.swift
[1043/1095] Compiling NIOHTTP2 ReceivingRstStreamState.swift
[1046/1095] Compiling NIOHTTP2 SendingDataState.swift
[1047/1095] Compiling NIOHTTP2 SendingGoawayState.swift
[1048/1095] Compiling NIOHTTP2 SendingHeadersState.swift
[1049/1095] Compiling NIOHTTP2 SendingPushPromiseState.swift
[1050/1101] Compiling NIOHTTP2 SendingRstStreamState.swift
[1051/1101] Compiling NIOHTTP2 SendingWindowUpdateState.swift
[1052/1101] Compiling NIOHTTP2 HTTP2SettingsState.swift
[1053/1101] Compiling NIOHTTP2 HasExtendedConnectSettings.swift
[1054/1101] Compiling NIOHTTP2 HasFlowControlWindows.swift
[1055/1101] Compiling NIOHTTP2 HasLocalSettings.swift
[1056/1101] Compiling NIOHTTP2 HasRemoteSettings.swift
[1057/1101] Compiling NIOHTTP2 HTTP2Settings.swift
[1058/1101] Compiling NIOHTTP2 HTTP2Stream.swift
[1059/1101] Compiling NIOHTTP2 HTTP2StreamChannel+OutboundStreamMultiplexer.swift
[1060/1101] Compiling NIOHTTP2 HTTP2StreamChannel.swift
[1061/1101] Compiling NIOHTTP2 HTTP2StreamDelegate.swift
[1062/1101] Compiling NIOHTTP2 HTTP2StreamID.swift
[1063/1101] Compiling NIOHTTP2 HTTP2StreamMultiplexer.swift
[1064/1101] Compiling NIOHTTP2 HTTP2ToHTTP1Codec.swift
[1065/1101] Compiling NIOHTTP2 HTTP2UserEvents.swift
[1066/1101] Compiling NIOHTTP2 InboundEventBuffer.swift
[1067/1101] Compiling NIOHTTP2 InboundWindowManager.swift
[1068/1101] Compiling NIOHTTP2 MultiplexerAbstractChannel.swift
[1069/1101] Compiling NIOHTTP2 Error+Any.swift
[1070/1101] Compiling NIOHTTP2 ConcurrentStreamBuffer.swift
[1071/1101] Compiling NIOHTTP2 ControlFrameBuffer.swift
[1072/1101] Compiling NIOHTTP2 OutboundFlowControlBuffer.swift
[1073/1101] Compiling NIOHTTP2 OutboundFrameBuffer.swift
[1074/1101] Compiling NIOHTTP2 HPACKHeaders+Validation.swift
[1075/1101] Compiling NIOHTTP2 HTTP2ChannelHandler+InboundStreamMultiplexer.swift
[1076/1101] Emitting module NIOHTTP2
[1077/1101] Compiling NIOHTTP2 StreamChannelFlowController.swift
[1078/1101] Compiling NIOHTTP2 StreamChannelList.swift
[1079/1101] Compiling NIOHTTP2 StreamMap.swift
[1080/1101] Compiling NIOHTTP2 StreamStateMachine.swift
[1081/1101] Compiling NIOHTTP2 UnsafeTransfer.swift
[1082/1101] Compiling NIOHTTP2 WatermarkedFlowController.swift
[1083/1101] Compiling NIOHTTP2 ConnectionStateMachine.swift
[1084/1101] Compiling NIOHTTP2 ConnectionStreamsState.swift
[1085/1101] Compiling NIOHTTP2 MayReceiveFrames.swift
[1086/1101] Compiling NIOHTTP2 ReceivingDataState.swift
[1087/1101] Compiling NIOHTTP2 ReceivingGoAwayState.swift
[1088/1101] Compiling NIOHTTP2 ReceivingHeadersState.swift
[1089/1101] Compiling NIOHTTP2 ReceivingPushPromiseState.swift
[1090/1101] Compiling NIOHTTP2 HTTP2ChannelHandler+InlineStreamMultiplexer.swift
[1091/1101] Compiling NIOHTTP2 HTTP2ChannelHandler.swift
[1092/1101] Compiling NIOHTTP2 HTTP2CommonInboundStreamMultiplexer.swift
[1093/1101] Compiling NIOHTTP2 HTTP2ConnectionStateChange.swift
[1094/1101] Compiling NIOHTTP2 HTTP2Error.swift
[1095/1101] Compiling NIOHTTP2 HTTP2ErrorCode.swift
[1096/1101] Compiling NIOHTTP2 HTTP2FlowControlWindow.swift
[1097/1101] Compiling NIOHTTP2 HTTP2Frame.swift
[1098/1101] Compiling NIOHTTP2 HTTP2FrameEncoder.swift
[1099/1101] Compiling NIOHTTP2 HTTP2FrameParser.swift
[1100/1101] Compiling NIOHTTP2 HTTP2PingData.swift
[1101/1101] Compiling NIOHTTP2 HTTP2PipelineHelpers.swift
[1102/1159] Compiling AsyncHTTPClient AnyAsyncSequence.swift
[1103/1159] Compiling AsyncHTTPClient AnyAsyncSequenceProucerDelete.swift
[1104/1159] Compiling AsyncHTTPClient AsyncLazySequence.swift
[1105/1159] Compiling AsyncHTTPClient HTTPClient+execute.swift
[1106/1159] Compiling AsyncHTTPClient HTTPClient+shutdown.swift
[1107/1159] Compiling AsyncHTTPClient HTTPClientRequest+Prepared.swift
[1108/1159] Compiling AsyncHTTPClient HTTPClientRequest.swift
[1109/1165] Emitting module AsyncHTTPClient
[1110/1165] Compiling AsyncHTTPClient HTTPConnectionPool+RequestQueue.swift
[1111/1165] Compiling AsyncHTTPClient HTTPConnectionPool+StateMachine.swift
[1112/1165] Compiling AsyncHTTPClient ConnectionTarget.swift
[1113/1165] Compiling AsyncHTTPClient DeconstructedURL.swift
[1114/1165] Compiling AsyncHTTPClient FileDownloadDelegate.swift
[1115/1165] Compiling AsyncHTTPClient FoundationExtensions.swift
[1116/1165] Compiling AsyncHTTPClient ConnectionPool.swift
[1117/1165] Compiling AsyncHTTPClient HTTP1ProxyConnectHandler.swift
[1118/1165] Compiling AsyncHTTPClient SOCKSEventsHandler.swift
[1119/1165] Compiling AsyncHTTPClient TLSEventsHandler.swift
[1120/1165] Compiling AsyncHTTPClient HTTP1ClientChannelHandler.swift
[1121/1165] Compiling AsyncHTTPClient HTTP1Connection.swift
[1122/1165] Compiling AsyncHTTPClient HTTP1ConnectionStateMachine.swift
[1123/1165] Compiling AsyncHTTPClient HTTPClientResponse.swift
[1124/1165] Compiling AsyncHTTPClient SingleIteratorPrecondition.swift
[1125/1165] Compiling AsyncHTTPClient Transaction+StateMachine.swift
[1126/1165] Compiling AsyncHTTPClient Transaction.swift
[1127/1165] Compiling AsyncHTTPClient Base64.swift
[1128/1165] Compiling AsyncHTTPClient BestEffortHashableTLSConfiguration.swift
[1129/1165] Compiling AsyncHTTPClient Configuration+BrowserLike.swift
[1130/1165] Compiling AsyncHTTPClient HTTPConnectionPool.swift
[1131/1165] Compiling AsyncHTTPClient HTTPExecutableRequest.swift
[1132/1165] Compiling AsyncHTTPClient HTTPRequestStateMachine+Demand.swift
[1133/1165] Compiling AsyncHTTPClient HTTPRequestStateMachine.swift
[1134/1165] Compiling AsyncHTTPClient RequestBodyLength.swift
[1135/1165] Compiling AsyncHTTPClient RequestFramingMetadata.swift
[1136/1165] Compiling AsyncHTTPClient HTTP2ClientRequestHandler.swift
[1137/1165] Compiling AsyncHTTPClient HTTP2Connection.swift
[1138/1165] Compiling AsyncHTTPClient HTTP2IdleHandler.swift
[1139/1165] Compiling AsyncHTTPClient HTTPConnectionEvent.swift
[1140/1165] Compiling AsyncHTTPClient HTTPConnectionPool+Factory.swift
[1141/1165] Compiling AsyncHTTPClient HTTPConnectionPool+Manager.swift
[1142/1165] Compiling AsyncHTTPClient SSLContextCache.swift
[1143/1165] Compiling AsyncHTTPClient Scheme.swift
[1144/1165] Compiling AsyncHTTPClient Singleton.swift
[1145/1165] Compiling AsyncHTTPClient StringConvertibleInstances.swift
[1146/1165] Compiling AsyncHTTPClient UnsafeTransfer.swift
[1147/1165] Compiling AsyncHTTPClient Utils.swift
[1148/1165] Compiling AsyncHTTPClient NWWaitingHandler.swift
[1149/1165] Compiling AsyncHTTPClient TLSConfiguration.swift
[1150/1165] Compiling AsyncHTTPClient RedirectState.swift
[1151/1165] Compiling AsyncHTTPClient RequestBag+StateMachine.swift
[1152/1165] Compiling AsyncHTTPClient RequestBag.swift
[1153/1165] Compiling AsyncHTTPClient RequestValidation.swift
[1154/1165] Compiling AsyncHTTPClient RequestOptions.swift
[1155/1165] Compiling AsyncHTTPClient HTTPConnectionPool+Backoff.swift
[1156/1165] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1Connections.swift
[1157/1165] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP1StateMachine.swift
[1158/1165] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2Connections.swift
[1159/1165] Compiling AsyncHTTPClient HTTPConnectionPool+HTTP2StateMachine.swift
[1160/1165] Compiling AsyncHTTPClient HTTPClient+HTTPCookie.swift
[1161/1165] Compiling AsyncHTTPClient HTTPClient+Proxy.swift
[1162/1165] Compiling AsyncHTTPClient HTTPClient.swift
[1163/1165] Compiling AsyncHTTPClient HTTPHandler.swift
[1164/1165] Compiling AsyncHTTPClient LRUCache.swift
[1165/1165] Compiling AsyncHTTPClient NWErrorHandler.swift
[1166/1214] Compiling SwiftkubeClient KubernetesClient+flowcontrol.v1.swift
[1167/1214] Compiling SwiftkubeClient KubernetesClient+flowcontrol.v1beta3.swift
[1168/1214] Compiling SwiftkubeClient KubernetesClient+internal.v1alpha1.swift
[1169/1214] Compiling SwiftkubeClient KubernetesClient+networking.v1.swift
[1170/1214] Compiling SwiftkubeClient KubernetesClient+networking.v1alpha1.swift
[1171/1219] Compiling SwiftkubeClient KubernetesClient+batch.v1.swift
[1172/1219] Compiling SwiftkubeClient KubernetesClient+certificates.v1.swift
[1173/1219] Compiling SwiftkubeClient KubernetesClient+certificates.v1alpha1.swift
[1174/1219] Compiling SwiftkubeClient KubernetesClient+coordination.v1.swift
[1175/1219] Compiling SwiftkubeClient KubernetesClient+discovery.v1.swift
[1176/1219] Compiling SwiftkubeClient KubernetesClient+events.v1.swift
[1177/1219] Compiling SwiftkubeClient KubernetesClient+admissionregistration.v1.swift
[1178/1219] Compiling SwiftkubeClient KubernetesClient+admissionregistration.v1alpha1.swift
[1179/1219] Compiling SwiftkubeClient KubernetesClient+admissionregistration.v1beta1.swift
[1180/1219] Compiling SwiftkubeClient KubernetesClient+apiextensions.v1.swift
[1181/1219] Compiling SwiftkubeClient KubernetesClient+apiregistration.v1.swift
[1182/1219] Compiling SwiftkubeClient KubernetesClient+apps.v1.swift
[1183/1219] Compiling SwiftkubeClient KubernetesClient+node.v1.swift
[1184/1219] Compiling SwiftkubeClient KubernetesClient+policy.v1.swift
[1185/1219] Compiling SwiftkubeClient KubernetesClient+rbac.v1.swift
[1186/1219] Compiling SwiftkubeClient KubernetesClient+resource.v1alpha2.swift
[1187/1219] Compiling SwiftkubeClient KubernetesClient+scheduling.v1.swift
[1188/1219] Compiling SwiftkubeClient KubernetesClient+Discovery.swift
[1189/1219] Compiling SwiftkubeClient KubernetesClient+Metrics.swift
[1190/1219] Compiling SwiftkubeClient UnstructuredResource+YAML.swift
[1191/1219] Compiling SwiftkubeClient SwiftkubeClient.swift
[1192/1219] Compiling SwiftkubeClient DataStreamer.swift
[1193/1219] Compiling SwiftkubeClient KubernetesClient+storage.v1.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1194/1219] Compiling SwiftkubeClient KubernetesClient+storage.v1alpha1.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1195/1219] Compiling SwiftkubeClient ClusterScopedGenericKubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1196/1219] Compiling SwiftkubeClient GenericKubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1197/1219] Compiling SwiftkubeClient KubernetesClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1198/1219] Compiling SwiftkubeClient KubernetesClient+authentication.v1.swift
[1199/1219] Compiling SwiftkubeClient KubernetesClient+authentication.v1alpha1.swift
[1200/1219] Compiling SwiftkubeClient KubernetesClient+authentication.v1beta1.swift
[1201/1219] Compiling SwiftkubeClient KubernetesClient+authorization.v1.swift
[1202/1219] Compiling SwiftkubeClient KubernetesClient+autoscaling.v1.swift
[1203/1219] Compiling SwiftkubeClient KubernetesClient+autoscaling.v2.swift
[1204/1219] Emitting module SwiftkubeClient
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:63:18: warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 61 | 			let string = try decoder.singleValueContainer().decode(String.self)
 62 |
 63 | 			if let date = timeFormatter.date(from: string) {
    |                  `- warning: capture of 'timeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 64 | 				return date
 65 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftkubeClient/Client/KubernetesClient.swift:67:18: warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 65 | 			}
 66 |
 67 | 			if let date = microTimeFormatter.date(from: string) {
    |                  `- warning: capture of 'microTimeFormatter' with non-sendable type 'ISO8601DateFormatter' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 68 | 				return date
 69 | 			}
Foundation.ISO8601DateFormatter:2:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.12, *)
 2 | open class ISO8601DateFormatter : Formatter, NSSecureCoding {
   |            `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
 3 |     open var timeZone: TimeZone! { get set }
 4 |     open var formatOptions: ISO8601DateFormatter.Options { get set }
[1205/1219] Compiling SwiftkubeClient KubernetesRequest.swift
[1206/1219] Compiling SwiftkubeClient NamespacedGenericKubernetesClient+Pod.swift
[1207/1219] Compiling SwiftkubeClient NamespacedGenericKubernetesClient.swift
[1208/1219] Compiling SwiftkubeClient RequestBuilder.swift
[1209/1219] Compiling SwiftkubeClient RequestHandlerType.swift
[1210/1219] Compiling SwiftkubeClient LineStreamer.swift
[1211/1219] Compiling SwiftkubeClient ResourceEventStreamer.swift
[1212/1219] Compiling SwiftkubeClient RetryStrategy.swift
[1213/1219] Compiling SwiftkubeClient SwiftkubeClientTask.swift
[1214/1219] Compiling SwiftkubeClient WatchEvent.swift
[1215/1219] Compiling SwiftkubeClient Selectors.swift
[1216/1219] Compiling SwiftkubeClient Authentication.swift
[1217/1219] Compiling SwiftkubeClient KubeConfig.swift
[1218/1219] Compiling SwiftkubeClient KubernetesClientConfig.swift
[1219/1219] Compiling SwiftkubeClient DiscoveryRequestBuilder.swift
Build of target: 'SwiftkubeClient' complete! (13.18s)
    1140
8	/Users/admin/builder/spi-builder-workspace/.docs/swiftkube/client/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftkube/client/main
File count: 1140
Doc size:   8.0MB
Preparing doc bundle ...
Uploading prod-swiftkube-client-main-df8fcc6a.zip to s3://spi-docs-inbox/prod-swiftkube-client-main-df8fcc6a.zip
Copying... [12%]
Copying... [23%]
Copying... [31%]
Copying... [43%]
Copying... [50%]
Copying... [62%]
Copying... [74%]
Copying... [81%]
Copying... [93%]
Copying... [100%]
Done.