Build Information
Failed to build SwiftBedrockLibrary, reference 1.10.0 (158dfa), with Swift 6.0 for macOS (SPM) on 11 Feb 2026 02:34:13 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
Revision (git rev-parse @):
158dfa6dd7294346ba4568be6905256a666c1677
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/build-on-aws/swift-bedrock-library.git at 1.10.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/build-on-aws/swift-bedrock-library.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin GRPCSwiftPlugin
[2/2] Compiling plugin GenerateManual
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:129:24: warning: 'path' is deprecated: renamed to 'url'
127 | let configurationFilePath = sourceFiles.first(
128 | where: {
129 | $0.path.lastComponent == Self.configurationFileName
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
130 | }
131 | )?.path
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:129:29: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
127 | let configurationFilePath = sourceFiles.first(
128 | where: {
129 | $0.path.lastComponent == Self.configurationFileName
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`.
130 | }
131 | )?.path
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:131:16: warning: 'path' is deprecated: renamed to 'url'
129 | $0.path.lastComponent == Self.configurationFileName
130 | }
131 | )?.path
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
132 | else {
133 | throw PluginError.noConfigFound(Self.configurationFileName)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:135:64: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
133 | throw PluginError.noConfigFound(Self.configurationFileName)
134 | }
135 | let data = try Data(contentsOf: URL(fileURLWithPath: "\(configurationFilePath)"))
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
136 | let configuration = try JSONDecoder().decode(Configuration.self, from: data)
137 | try validateConfiguration(configuration)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:143:26: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`.
141 | if let configuredProtocPath = configuration.protocPath {
142 | // The user set the config path in the file. So let's take that
143 | protocPath = Path(configuredProtocPath)
| `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`.
144 | } else if let environmentPath = ProcessInfo.processInfo.environment["PROTOC_PATH"] {
145 | // The user set the env variable. So let's take that
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:146:26: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`.
144 | } else if let environmentPath = ProcessInfo.processInfo.environment["PROTOC_PATH"] {
145 | // The user set the env variable. So let's take that
146 | protocPath = Path(environmentPath)
| `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`.
147 | } else {
148 | // The user didn't set anything so let's try see if SPM can find a binary for us
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:149:45: warning: 'path' is deprecated: renamed to 'url'
147 | } else {
148 | // The user didn't set anything so let's try see if SPM can find a binary for us
149 | protocPath = try tool("protoc").path
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
150 | }
151 | let protocGenSwiftPath = try tool("protoc-gen-swift").path
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:151:63: warning: 'path' is deprecated: renamed to 'url'
149 | protocPath = try tool("protoc").path
150 | }
151 | let protocGenSwiftPath = try tool("protoc-gen-swift").path
| |- warning: 'path' is deprecated: renamed to 'url'
| `- note: use 'url' instead
152 |
153 | return configuration.invocations.map { invocation in
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:155:50: warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`.
153 | return configuration.invocations.map { invocation in
154 | self.invokeProtoc(
155 | directory: configurationFilePath.removingLastComponent(),
| `- warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`.
156 | invocation: invocation,
157 | protocPath: protocPath,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:182:41: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
180 | // Construct the `protoc` arguments.
181 | var protocArgs = [
182 | "--plugin=protoc-gen-swift=\(protocGenSwiftPath)",
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
183 | "--swift_out=\(outputDirectory)",
184 | ]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:183:27: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
181 | var protocArgs = [
182 | "--plugin=protoc-gen-swift=\(protocGenSwiftPath)",
183 | "--swift_out=\(outputDirectory)",
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
184 | ]
185 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:188:27: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
186 | let protoDirectory =
187 | if let protoPath = invocation.protoPath {
188 | directory.appending(protoPath)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
189 | } else {
190 | directory
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:194:29: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
192 |
193 | protocArgs.append("-I")
194 | protocArgs.append("\(protoDirectory)")
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`.
195 |
196 | // Add the visibility if it was set
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:222:46: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
220 | // Append the file to the protoc args so that it is used for generating
221 | protocArgs.append("\(file)")
222 | inputFiles.append(protoDirectory.appending(file))
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
223 |
224 | // The name of the output file is based on the name of the input file.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:229:54: warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
227 | file.removeLast(5)
228 | file.append("pb.swift")
229 | let protobufOutputPath = outputDirectory.appending(file)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`.
230 |
231 | // Add the outputPath as an output file
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:238:24: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
236 | // system know when to invoke the command. The output paths are passed on to
237 | // the rule engine in the build system.
238 | return Command.buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`.
239 | displayName: "Generating swift files from proto files",
240 | executable: protocPath,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:268:42: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
266 | }
267 | return try createBuildCommands(
268 | pluginWorkDirectory: context.pluginWorkDirectory,
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL'
| `- note: use 'pluginWorkDirectoryURL' instead
269 | sourceFiles: swiftTarget.sourceFiles,
270 | tool: context.tool
[3/3] Compiling plugin SwiftProtobufPlugin
Building for debugging...
[3/297] Write sources
[9/297] Copying PrivacyInfo.xcprivacy
[9/297] Write sources
[9/297] Copying PrivacyInfo.xcprivacy
[10/297] Write sources
[17/297] Copying PrivacyInfo.xcprivacy
[17/297] Write sources
[17/297] Copying PrivacyInfo.xcprivacy
[17/297] Write sources
[49/297] Write swift-version-5BDAB9E9C0126B9D.txt
[50/297] Compiling rate_limiters.c
[51/297] Compiling mqtt5_utils.c
[52/297] Compiling mqtt5_types.c
[53/297] Compiling mqtt5_topic_alias.c
[54/330] Compiling mqtt5_encoder.c
[55/396] Compiling mqtt5_listener.c
[56/396] Compiling mqtt5_decoder.c
[57/403] Compiling mqtt5_client.c
[58/403] Compiling mqtt5_to_mqtt3_adapter.c
[59/403] Compiling mqtt5_callbacks.c
[60/503] Compiling shared.c
[61/503] Compiling subscription_manager.c
[62/503] Compiling topic_tree.c
[63/503] Compiling mqtt5_options_storage.c
[64/503] Compiling request_response_subscription_set.c
[65/503] Compiling protocol_adapter.c
[66/503] Compiling packets.c
[67/503] Compiling request_response_client.c
[68/503] Compiling mqtt_subscription_set.c
[69/503] Compiling mqtt311_listener.c
[70/503] Compiling mqtt311_decoder.c
[71/503] Compiling fixed_header.c
[72/503] Compiling mqtt.c
[73/503] Compiling client_impl_shared.c
[74/503] Compiling client_channel_handler.c
[75/503] Compiling client.c
[76/503] Compiling tracing.c
[77/503] Compiling tls_channel_handler_shared.c
[78/503] Compiling statistics.c
[79/503] Compiling standard_retry_strategy.c
[80/503] Compiling socket_shared.c
[81/503] Compiling stream.c
[82/503] Compiling socket.c
[83/503] Compiling socket_channel_handler.c
[84/503] Compiling tls_channel_handler.c
[85/503] Compiling retry_strategy.c
[86/503] Compiling shared_library.c
[87/503] Compiling pipe.c
[88/503] Compiling host_resolver.c
[89/503] Compiling socket.c
[90/503] Compiling pkcs11_tls_op_handler.c
[91/503] Compiling no_retry_strategy.c
[92/503] Compiling pkcs11_lib.c
[93/503] Compiling pem.c
[94/503] Compiling message_pool.c
[95/503] Compiling future.c
[96/503] Compiling exponential_backoff_retry_strategy.c
[97/503] Compiling io.c
[98/503] Compiling host_resolver.c
[100/503] Compiling Logging MetadataProvider.swift
[100/503] Compiling event_loop.c
[102/503] Emitting module Logging
[103/503] Compiling Logging Locks.swift
[104/503] Compiling Logging Logging.swift
[105/503] Compiling Logging LogHandler.swift
[105/503] Compiling channel_bootstrap.c
[106/503] Compiling darwin_pki_utils.c
[107/536] Compiling dispatch_queue_event_loop.c
[108/536] Compiling nw_socket.c
[109/536] Compiling secure_transport_tls_channel_handler.c
[110/536] Compiling async_stream.c
[111/536] Compiling channel.c
[112/536] Compiling alpn_handler.c
[113/536] Compiling kqueue_event_loop.c
[114/536] Compiling websocket_encoder.c
[115/536] Compiling websocket_decoder.c
[116/536] Compiling strutil.c
[117/536] Compiling statistics.c
[118/536] Compiling random_access_set.c
[119/536] Compiling websocket_bootstrap.c
[120/536] Compiling websocket.c
[121/536] Compiling no_proxy.c
[122/536] Compiling proxy_strategy.c
[123/536] Compiling request_response.c
[124/536] Compiling proxy_connection.c
[125/536] Compiling http.c
[127/536] Compiling Smithy LogAgent.swift
[128/536] Compiling Smithy LogAgentLevel.swift
[129/536] Compiling Smithy SwiftLog+LogAgent.swift
[129/539] Compiling hpack_huffman_static.c
[130/539] Compiling hpack_decoder.c
[132/539] Emitting module Smithy
[132/539] Compiling hpack_encoder.c
[133/539] Compiling http2_stream_manager.c
[134/539] Compiling hpack.c
[135/539] Compiling h2_frames.c
[136/539] Compiling h2_stream.c
[137/539] Compiling h1_stream.c
[138/539] Compiling h2_decoder.c
[139/539] Compiling h1_decoder.c
[140/539] Compiling h1_encoder.c
[141/539] Compiling h2_connection.c
[142/539] Compiling connection_monitor.c
[143/539] Compiling h1_connection.c
[144/539] Compiling connection.c
[145/539] Compiling connection_manager.c
[146/539] Compiling event_stream_rpc_server.c
[147/539] Compiling event_stream_rpc.c
[148/539] Compiling huffman_testing.c
[149/539] Compiling huffman.c
[150/539] Compiling event_stream_rpc_client.c
[151/539] Compiling compression.c
[152/539] Compiling event_stream_channel_handler.c
[153/539] Compiling event_stream.c
[154/539] Compiling xml_parser.c
[155/539] Compiling thread_scheduler.c
[156/539] Compiling thread_shared.c
[157/539] Compiling uri.c
[158/539] Compiling task_scheduler.c
[159/539] Compiling system_info.c
[160/539] Compiling uuid.c
[161/539] Compiling string.c
[162/539] Compiling statistics.c
[163/539] Compiling ref_count.c
[164/539] Compiling process_common.c
[165/539] Compiling time.c
[166/539] Compiling ring_buffer.c
[167/539] Compiling priority_queue.c
[168/539] Compiling system_resource_utils.c
[169/539] Compiling rw_lock.c
[171/539] Compiling Smithy RequestMessage.swift
[172/539] Compiling Smithy RequestMessageBuilder.swift
[173/539] Compiling Smithy RequestMessageSerializer.swift
[174/539] Compiling Smithy ResponseMessage.swift
[175/539] Compiling Smithy ResponseMessageDeserializer.swift
[176/539] Compiling Smithy Stream.swift
[176/539] Compiling process.c
[178/539] Compiling SmithyRetriesAPI RetryToken.swift
[179/539] Compiling SmithyRetriesAPI RetryStrategy.swift
[180/539] Compiling SmithyRetriesAPI RetryErrorType.swift
[181/539] Compiling SmithyRetriesAPI RetryStrategyOptions.swift
[181/539] Compiling mutex.c
[183/539] Compiling Smithy BooleanDocument.swift
[184/539] Compiling Smithy ByteDocument.swift
[185/539] Compiling Smithy Document.swift
[186/539] Compiling Smithy DoubleDocument.swift
[187/539] Compiling Smithy NullDocument.swift
[188/539] Compiling Smithy ShortDocument.swift
[189/539] Compiling Smithy StringDocument.swift
[190/539] Compiling Smithy StringMapDocument.swift
[191/539] Compiling Smithy TimestampDocument.swift
[192/539] Compiling Smithy ShapeType.swift
[193/539] Compiling Smithy SmithyDocument.swift
[194/539] Compiling Smithy FloatDocument.swift
[195/539] Compiling Smithy IntegerDocument.swift
[196/539] Compiling Smithy ListDocument.swift
[197/539] Compiling Smithy LongDocument.swift
[198/539] Emitting module OpenTelemetryApi
[198/539] Compiling thread.c
[200/549] Compiling Smithy DocumentError.swift
[201/549] Compiling Smithy BigDecimalDocument.swift
[202/549] Compiling Smithy BigIntegerDocument.swift
[203/549] Compiling Smithy BlobDocument.swift
[204/549] Compiling Smithy Attribute.swift
[205/549] Compiling Smithy ByteStream.swift
[206/549] Compiling Smithy ClientError.swift
[207/549] Compiling Smithy Context.swift
[218/549] Compiling file.c
[219/549] Compiling system_info.c
[220/549] Compiling environment.c
[222/549] Compiling SmithyRetriesAPI RetryError.swift
[223/549] Compiling SmithyRetriesAPI RetryErrorInfoProvider.swift
[224/549] Emitting module SmithyRetriesAPI
[225/549] Compiling SmithyRetriesAPI RetryBackoffStrategy.swift
[226/549] Compiling SmithyRetriesAPI RetryErrorInfo.swift
[226/549] Compiling device_random.c
[228/549] Emitting module SmithyTimestamps
[229/549] Compiling SmithyTimestamps TimestampSerdeUtils.swift
[230/549] Compiling SmithyTimestamps DateFormatters.swift
[230/549] Compiling condition_variable.c
[231/549] Compiling cross_process_lock.c
[232/549] Compiling clock.c
[233/549] Compiling system_info.c
[245/549] Compiling Smithy URI.swift
[246/549] Compiling Smithy URIQueryItem.swift
[247/549] Compiling Smithy URIScheme.swift
[248/549] Compiling OpenTelemetryApi TaskLocalContextManager.swift
[249/549] Compiling OpenTelemetryApi StringUtils.swift
[250/549] Compiling OpenTelemetryApi SwiftExtensions.swift
[251/549] Compiling OpenTelemetryApi TracestateUtils.swift
[252/549] Compiling OpenTelemetryApi DefaultLogger.swift
[253/549] Compiling OpenTelemetryApi DefaultLoggerProvider.swift
[254/549] Compiling OpenTelemetryApi EventBuilder.swift
[255/549] Compiling OpenTelemetryApi LogRecordBuilder.swift
[256/549] Compiling OpenTelemetryApi Logger.swift
[257/549] Emitting module DataCompression
[258/549] Compiling DataCompression DataCompression.swift
[258/549] Compiling math.c
[259/549] Compiling file_direct_io.c
[260/549] Compiling lru_cache.c
[262/549] Compiling OpenTelemetryApi LoggerBuilder.swift
[263/549] Compiling OpenTelemetryApi LoggerProvider.swift
[264/549] Compiling OpenTelemetryApi Severity.swift
[265/549] Compiling OpenTelemetryApi DefaultMeterProvider.swift
[266/549] Compiling OpenTelemetryApi BoundMeasureMetric.swift
[267/549] Compiling OpenTelemetryApi DoubleObserverMetric.swift
[268/549] Compiling OpenTelemetryApi DoubleObserverMetricHandle.swift
[269/549] Compiling OpenTelemetryApi IntObserverMetric.swift
[270/549] Compiling OpenTelemetryApi IntObserverMetricHandle.swift
[271/549] Compiling OpenTelemetryApi MeasureMetric.swift
[272/549] Compiling OpenTelemetryApi BoundHistogramMetric.swift
[273/549] Compiling OpenTelemetryApi LongCounterBuilder.swift
[274/549] Compiling OpenTelemetryApi LongGauge.swift
[275/549] Compiling OpenTelemetryApi LongGaugeBuilder.swift
[276/549] Compiling OpenTelemetryApi LongHistogram.swift
[277/549] Compiling OpenTelemetryApi LongHistogramBuilder.swift
[278/549] Compiling OpenTelemetryApi LongUpDownCounter.swift
[279/549] Compiling OpenTelemetryApi LongUpDownCounterBuilder.swift
[280/549] Compiling OpenTelemetryApi MeterBuilder.swift
[281/549] Compiling OpenTelemetryApi ObservableDoubleCounter.swift
[282/549] Compiling OpenTelemetryApi ObservableDoubleGauge.swift
[283/549] Compiling OpenTelemetryApi ObservableDoubleMeasurement.swift
[284/549] Compiling OpenTelemetryApi ObservableDoubleUpDownCounter.swift
[285/549] Compiling OpenTelemetryApi ObservableLongCounter.swift
[286/549] Compiling OpenTelemetryApi ObservableLongGauge.swift
[287/549] Compiling OpenTelemetryApi ObservableLongMeasurement.swift
[288/549] Compiling OpenTelemetryApi ObservableLongUpDownCounter.swift
[289/549] Compiling OpenTelemetryApi StableMeter.swift
[290/549] Compiling OpenTelemetryApi StableMeterProvider.swift
[291/549] Compiling OpenTelemetryApi OpenTelemetry.swift
[292/549] Compiling OpenTelemetryApi ContextPropagators.swift
[293/549] Compiling OpenTelemetryApi DefaultContextPropagators.swift
[294/549] Compiling OpenTelemetryApi DefaultTracer.swift
[294/559] Compiling logging.c
[295/559] Compiling linked_hash_table.c
[296/559] Compiling lifo_cache.c
[297/559] Compiling log_writer.c
[298/559] Compiling memtrace.c
[299/559] Compiling log_formatter.c
[300/559] Compiling host_utils.c
[301/559] Compiling log_channel.c
[302/559] Compiling fifo_cache.c
[303/559] Compiling json.c
[304/559] Compiling tags.c
[305/559] Compiling strings.c
[306/559] Compiling streaming.c
[307/559] Compiling serialization.c
[308/559] Compiling maps.c
[309/559] Compiling ints.c
[313/559] Compiling unicode.c
[314/559] Compiling stack.c
[315/559] Compiling memory_utils.c
[316/559] Compiling hash_table.c
[317/559] Compiling file.c
[318/559] Compiling loaders.c
[319/559] Compiling encoders.c
[320/559] Compiling floats_ctrls.c
[321/559] Compiling builder_callbacks.c
[334/620] Compiling SmithyRetries RetryQuotaRepository.swift
[335/620] Emitting module SmithySerialization
[336/620] Compiling SmithySerialization ResponseDecodingError.swift
[337/620] Compiling SmithyRetries ExponentialBackOffJitterType.swift
[338/620] Compiling SmithyRetries ExponentialBackoffStrategyOptions.swift
[339/620] Compiling SmithyRetries ExponentialBackoffStrategy.swift
[349/629] Compiling encoding.c
[371/629] Emitting module SwiftProtobuf
[372/629] Compiling SmithyRetries DefaultRetryToken.swift
[373/629] Compiling SmithyRetries RetryQuota.swift
[373/629] Compiling common.c
[375/629] Compiling SwiftProtobuf field_mask.pb.swift
[376/629] Compiling SwiftProtobuf source_context.pb.swift
[377/629] Compiling SwiftProtobuf struct.pb.swift
[378/629] Compiling SwiftProtobuf timestamp.pb.swift
[379/629] Compiling SwiftProtobuf type.pb.swift
[380/629] Compiling SwiftProtobuf wrappers.pb.swift
[381/629] Compiling SwiftProtobuf resource_bundle_accessor.swift
[382/629] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[383/629] Compiling OpenTelemetryApi SemanticAttributes.swift
[384/629] Compiling OpenTelemetryApi Span.swift
[385/629] Compiling OpenTelemetryApi SpanBuilder.swift
[386/629] Compiling OpenTelemetryApi Baggage.swift
[387/629] Compiling OpenTelemetryApi BaggageBuilder.swift
[388/629] Compiling OpenTelemetryApi BaggageManager.swift
[389/629] Compiling OpenTelemetryApi BaggageManagerProvider.swift
[390/629] Compiling OpenTelemetryApi DefaultBaggage.swift
[391/629] Compiling OpenTelemetryApi DefaultBaggageBuilder.swift
[392/629] Compiling OpenTelemetryApi DefaultBaggageManager.swift
[393/629] Compiling OpenTelemetryApi DefaultBaggageManagerProvider.swift
[394/629] Compiling OpenTelemetryApi EmptyBaggage.swift
[395/629] Compiling SwiftProtobuf duration.pb.swift
[396/629] Compiling SwiftProtobuf empty.pb.swift
[397/629] Compiling SmithyRetries DefaultRetryStrategy.swift
[398/629] Compiling SmithyRetries DefaultRetryStrategy+Error.swift
[399/629] Emitting module SmithyRetries
[400/629] Compiling SmithyRetries ClientSideRateLimiter.swift
[401/629] Compiling SmithyEventStreamsAPI UnmarshalClosure.swift
[401/629] Compiling callbacks.c
[402/629] Compiling bytestrings.c
[404/629] Compiling SmithyReadWrite SmithyWriter.swift
[405/629] Compiling SmithyReadWrite WireResponseOutputClosure.swift
[406/629] Compiling SmithyIdentityAPI ClientConfigDefaultIdentityResolver.swift
[415/629] Compiling arrays.c
[417/629] Compiling SmithyEventStreamsAPI MessageType.swift
[418/629] Compiling SmithyTelemetryAPI Tracer.swift
[419/630] Compiling SmithyIdentityAPI Identity.swift
[420/630] Compiling SmithyIdentityAPI IdentityResolver.swift
[421/630] Compiling SmithyTelemetryAPI SpanKind.swift
[422/630] Compiling SmithyTelemetryAPI TraceSpan.swift
[423/630] Compiling SmithyTelemetryAPI MeterProvider.swift
[424/630] Compiling SmithyTelemetryAPI MonotonicCounter.swift
[431/630] Compiling SmithyEventStreamsAPI MessageEncoder.swift
[431/630] Compiling allocators.c
[433/630] Compiling SmithyChecksumsAPI Context+Checksum.swift
[434/630] Compiling SmithyChecksumsAPI Checksum.swift
[435/630] Compiling SmithyChecksumsAPI ChecksumAlgorithm.swift
[436/630] Emitting module SmithyChecksumsAPI
[437/630] Compiling SmithyIdentityAPI Context+FlowType.swift
[437/630] Compiling cbor.c
[439/630] Compiling SmithyTelemetryAPI TraceSpanStatus.swift
[442/630] Compiling SmithyTelemetryAPI LoggerProvider.swift
[443/630] Compiling SmithyTelemetryAPI AsyncMeasurement.swift
[444/630] Compiling SmithyTelemetryAPI Histogram.swift
[445/630] Compiling SmithyTelemetryAPI Meter.swift
[446/630] Compiling SmithyTelemetryAPI UpDownCounter.swift
[447/630] Compiling SmithyTelemetryAPI TelemetryProvider.swift
[449/630] Compiling error.c
[451/630] Compiling SmithyReadWrite WireResponseErrorClosure.swift
[452/630] Compiling SmithyReadWrite SmithyReader.swift
[453/630] Emitting module SmithyReadWrite
[454/630] Compiling SmithyReadWrite ReadingClosure.swift
[455/630] Compiling SmithyReadWrite WritingClosure.swift
[456/630] Compiling SmithyReadWrite DataProviding.swift
[457/630] Compiling SmithyIdentityAPI Context+AuthSchemePreference.swift
[458/630] Emitting module SmithyIdentityAPI
[458/630] Compiling encoding.c
[459/630] Compiling device_random.c
[461/630] Compiling SmithyEventStreamsAPI MessageDecoder.swift
[462/630] Compiling SmithyEventStreamsAPI MarshalClosure.swift
[463/630] Compiling SmithyEventStreamsAPI Context+EventStreamsAPI.swift
[464/630] Compiling SmithyEventStreamsAPI Header.swift
[465/630] Emitting module SmithyEventStreamsAPI
[466/630] Compiling SmithyEventStreamsAPI Message.swift
[467/630] Compiling SmithyEventStreamsAPI EventStreamError.swift
[468/630] Compiling SmithyIdentityAPI FlowType.swift
[469/630] Compiling SmithyIdentityAPI Context+IdentityResolver.swift
[469/630] Compiling date_time.c
[470/630] Compiling cJSON.c
[472/630] Compiling SmithyHTTPAPI ALPNProtocol.swift
[473/630] Compiling SmithyHTTPAPI Context+HTTP.swift
[474/630] Emitting module SmithyTelemetryAPI
[475/630] Compiling SmithyHTTPAPI Endpoint.swift
[476/630] Compiling SmithyHTTPAPI EndpointPropertyValue.swift
[476/630] Compiling condition_variable.c
[477/654] Compiling command_line_parser.c
[478/654] Compiling common.c
[480/654] Compiling SmithyTelemetryAPI TracerProvider.swift
[481/654] Compiling SmithyHTTPAPI HTTPStatusCode.swift
[482/654] Compiling SmithyHTTPAPI Headers.swift
[483/654] Compiling SmithyHTTPAPI HTTPResponse.swift
[483/655] Compiling cache.c
[485/655] Compiling SmithyHTTPAPI HTTPMethodType.swift
[486/655] Compiling SmithyHTTPAPI HTTPClientError.swift
[487/655] Compiling SmithyHTTPAPI HTTPClient.swift
[492/655] Emitting module SmithyHTTPAPI
[493/655] Compiling SmithyHTTPAPI HTTPRequest.swift
[503/655] Compiling cbor.c
[504/655] Compiling codegen.c
[505/655] Compiling assert.c
[506/655] Compiling array_list.c
[508/655] Compiling SmithyEventStreamsAuthAPI MessageSigner.swift
[509/655] Compiling SmithyEventStreamsAuthAPI MessageEncoderStream.swift
[509/655] Compiling cpuid.c
[510/655] Compiling byte_buf.c
[511/655] Compiling allocator_sba.c
[512/655] Compiling crc_util.c
[514/655] Emitting module SmithyEventStreamsAuthAPI
[515/655] Compiling SmithyEventStreamsAuthAPI Context+EventStreamsAuthAPI.swift
[516/655] Compiling SmithyEventStreamsAuthAPI MessageDataSigner.swift
[517/655] Compiling SmithyEventStreamsAuthAPI MessageDecoderStream.swift
[517/655] Compiling allocator.c
[519/655] Compiling SmithyJSON NodeInfo.swift
[520/655] Compiling SmithyJSON JSONNode.swift
[520/655] Compiling crc_sw.c
[521/655] Compiling crc64_sw.c
[522/655] Compiling crc64.c
[523/655] Compiling crc32.c
[524/655] Compiling checksums.c
[525/655] Compiling symmetric_cipher.c
[526/655] Compiling ed25519_noop.c
[527/655] Compiling ref_hkdf.c
[529/655] Compiling SmithyHTTPAPI URL+getQueryItems.swift
[529/655] Compiling rsa.c
[531/655] Compiling SmithyJSON Document+Init.swift
[532/655] Compiling SmithyJSON Document+JSONUtils.swift
[533/655] Emitting module SmithyJSON
[533/655] Compiling hmac.c
[534/655] Compiling hkdf.c
[535/655] Compiling hash.c
[536/655] Compiling ed25519.c
[537/655] Compiling ecc.c
[539/655] Compiling SmithyJSON Writer+JSONSerialization.swift
[540/655] Compiling SmithyJSON Writer.swift
[541/655] Compiling SmithyJSON Reader.swift
[542/655] Compiling SmithyJSON Reader+JSONDeserialization.swift
[543/655] Compiling OpenTelemetryApi SpanContext.swift
[544/655] Compiling OpenTelemetryApi SpanException.swift
[545/655] Compiling OpenTelemetryApi SpanId.swift
[546/655] Compiling OpenTelemetryApi SpanKind.swift
[547/655] Compiling OpenTelemetryApi Status.swift
[548/655] Compiling OpenTelemetryApi TraceFlags.swift
[549/655] Compiling OpenTelemetryApi TraceId.swift
[550/655] Compiling OpenTelemetryApi TraceState.swift
[551/655] Compiling OpenTelemetryApi Tracer.swift
[552/655] Compiling OpenTelemetryApi TracerProvider.swift
[552/655] Compiling der.c
[553/655] Compiling securityframework_rsa.c
[554/659] Compiling securityframework_ecc.c
[555/677] Compiling commoncrypto_platform_init.c
[556/677] Compiling commoncrypto_sha1.c
[557/677] Compiling commoncrypto_sha256.c
[558/677] Compiling commoncrypto_md5.c
[559/677] Compiling commoncrypto_sha512.c
[560/677] Compiling cal.c
[561/677] Compiling commoncrypto_hmac.c
[563/677] Compiling SmithyFormURL NodeInfo.swift
[564/677] Emitting module SmithyFormURL
[565/677] Compiling SmithyFormURL Writer.swift
[565/677] Compiling commoncrypto_aes.c
[566/677] Compiling token_provider_sso_session.c
[567/677] Compiling sso_token_utils.c
[578/677] Compiling SmithyXML Writer.swift
[579/677] Compiling SmithyXML NodeInfo.swift
[580/677] Compiling SmithyXML Writer+libxml2.swift
[580/677] Compiling sigv4_http_request.c
[581/677] Compiling signing_result.c
[583/677] Compiling SmithyXML Reader.swift
[584/677] Emitting module SmithyXML
[585/677] Compiling SmithyXML Reader+libxml2.swift
[585/683] Compiling token_provider_sso_profile.c
[586/852] Compiling signing_config.c
[587/852] Compiling signable_chunk.c
[588/852] Compiling signing.c
[589/852] Compiling signable.c
[590/852] Compiling signable_trailer.c
[591/852] Compiling signable_http_request.c
[593/852] Compiling SmithyHTTPClientAPI TLSConfiguration.swift
[593/852] Compiling key_derivation.c
[595/852] Compiling OpenTelemetrySdk DoubleHistogramMeterBuilderSdk.swift
[596/852] Compiling OpenTelemetrySdk DoubleHistogramMeterSdk.swift
[597/852] Compiling SmithyHTTPAuthAPI SigningAlgorithm.swift
[598/852] Compiling OpenTelemetrySdk DoubleGaugeBuilderSdk.swift
[599/852] Compiling OpenTelemetrySdk DoubleGaugeSdk.swift
[599/853] Compiling credentials_provider_x509.c
[600/853] Compiling credentials_utils.c
[601/853] Compiling credentials_provider_sts_web_identity.c
[602/853] Compiling credentials_provider_static.c
[603/853] Compiling login_token_utils.c
[604/853] Compiling credentials_provider_sts.c
[606/853] Compiling SmithyHTTPClientAPI HttpTelemetry.swift
[607/853] Compiling SmithyHTTPClientAPI HttpClientConfiguration.swift
[608/853] Emitting module SmithyHTTPClientAPI
[608/853] Compiling credentials_provider_process.c
[609/853] Compiling credentials_provider_sso.c
[611/853] Compiling OpenTelemetrySdk HistogramPointData.swift
[612/853] Compiling OpenTelemetrySdk LongPointData.swift
[613/853] Compiling OpenTelemetrySdk DoubleUpDownCounterBuilderSdk.swift
[614/853] Compiling OpenTelemetrySdk DoubleUpDownCounterSdk.swift
[615/853] Compiling OpenTelemetrySdk ExponentialHistogramBuckets.swift
[616/853] Compiling OpenTelemetrySdk ExponentialHistogramPointData.swift
[617/853] Compiling OpenTelemetrySdk SummaryPointData.swift
[618/853] Compiling OpenTelemetrySdk PointData.swift
[619/853] Compiling OpenTelemetrySdk DoublePointData.swift
[620/853] Compiling OpenTelemetrySdk EmptyExponentialHistogramBuckets.swift
[621/853] Emitting module SmithyHTTPAuthAPI
[622/853] Compiling OpenTelemetrySdk StableMetricData.swift
[623/853] Compiling OpenTelemetrySdk DoubleCounterMeterBuilderSdk.swift
[623/853] Compiling credentials_provider_imds.c
[624/853] Compiling credentials_provider_profile.c
[625/853] Compiling credentials_provider_environment.c
[626/853] Compiling credentials_provider_login.c
[627/853] Compiling credentials_provider_delegate.c
[628/853] Compiling credentials_provider_default_chain.c
[629/853] Compiling credentials_provider_chain.c
[630/853] Compiling credentials_provider_anonymous.c
[631/853] Compiling credentials_provider_ecs.c
[632/853] Compiling credentials_provider_cached.c
[633/853] Compiling credentials.c
[634/853] Write sources
[636/853] Compiling credentials_provider_cognito.c
[637/853] Write sources
[641/853] Compiling aws_profile.c
[642/853] Write sources
[646/853] Compiling auth.c
[647/853] Compiling aws_http_credentials_provider.c
[649/853] Compiling SmithyHTTPAuthAPI SigningFlags.swift
[649/853] Compiling aws_signing.c
[650/856] Compiling aws_imds_client.c
[652/859] Compiling AWSSDKDynamic PackageVersion.swift
[653/859] Emitting module AWSSDKDynamic
[654/859] Compiling AWSSDKDynamic Partitions.swift
[655/932] Emitting module AWSSDKIdentityAPI
[656/932] Compiling AWSSDKIdentityAPI S3ExpressIdentity.swift
[657/932] Compiling AWSSDKIdentityAPI S3ExpressIdentityResolver.swift
[658/932] Compiling OpenTelemetrySdk LastValueAggregator.swift
[659/932] Compiling OpenTelemetrySdk MaxValueAggregator.swift
[660/932] Compiling OpenTelemetrySdk MeasureMinMaxSumCountAggregator.swift
[661/932] Compiling OpenTelemetrySdk BoundCounterMetricSdk.swift
[662/932] Compiling OpenTelemetrySdk BoundCounterMetricSdkBase.swift
[663/932] Compiling OpenTelemetrySdk BoundHistogramMetricSdk.swift
[664/932] Compiling OpenTelemetrySdk BoundHistogramMetricSdkBase.swift
[665/932] Compiling OpenTelemetrySdk BoundMeasureMetricSdk.swift
[666/932] Compiling OpenTelemetrySdk BoundMeasureMetricSdkBase.swift
[667/932] Emitting module OpenTelemetrySdk
[668/932] Compiling OpenTelemetrySdk HistogramExemplarReservoir.swift
[669/932] Compiling OpenTelemetrySdk LongToDoubleExemplarReservoir.swift
[670/932] Compiling OpenTelemetrySdk ReservoirCell.swift
[671/932] Compiling OpenTelemetrySdk ReservoirCellSelector.swift
[672/932] Compiling OpenTelemetrySdk CollectionRegistration.swift
[673/932] Compiling OpenTelemetrySdk MetricProducer.swift
[674/932] Compiling OpenTelemetrySdk StableMetricExporter.swift
[675/932] Compiling OpenTelemetrySdk StablePeriodicMeterReaderBuilder.swift
[676/932] Compiling OpenTelemetrySdk StablePeriodicMetricReaderSdk.swift
[677/932] Compiling OpenTelemetrySdk Instrument.swift
[678/932] Compiling OpenTelemetrySdk InstrumentBuilder.swift
[679/932] Compiling OpenTelemetrySdk InstrumentDescriptor.swift
[680/932] Compiling OpenTelemetrySdk InstrumentSelector.swift
[681/932] Compiling OpenTelemetrySdk InstrumentSelectorBuilder.swift
[682/932] Compiling OpenTelemetrySdk InstrumentType.swift
[683/932] Compiling OpenTelemetrySdk InstrumentValueType.swift
[684/932] Compiling OpenTelemetrySdk LongCounterMeterBuilderSdk.swift
[685/932] Compiling OpenTelemetrySdk LongCounterSdk.swift
[686/932] Compiling OpenTelemetrySdk LongGaugeBuilderSdk.swift
[687/951] Compiling OpenTelemetrySdk LoggerSharedState.swift
[688/951] Compiling OpenTelemetrySdk BatchLogRecordProcessor.swift
[689/951] Compiling OpenTelemetrySdk LogRecordProcessor.swift
[690/951] Compiling OpenTelemetrySdk MultiLogRecordProcessor.swift
[691/951] Compiling OpenTelemetrySdk NoopLogRecordProcessor.swift
[692/951] Compiling OpenTelemetrySdk SimpleLogRecordProcessor.swift
[693/951] Compiling OpenTelemetrySdk Aggregator.swift
[694/951] Compiling OpenTelemetrySdk CounterSumAggregator.swift
[695/951] Compiling OpenTelemetrySdk HistogramAggregator.swift
[705/951] Compiling OpenTelemetrySdk CounterMetricSdk.swift
[706/951] Compiling OpenTelemetrySdk CounterMetricSdkBase.swift
[707/951] Compiling OpenTelemetrySdk Base2ExponentialHistogramAggregation.swift
[708/951] Compiling OpenTelemetrySdk DefaultAggregation.swift
[709/951] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramAggregator.swift
[710/951] Compiling OpenTelemetrySdk DoubleExplicitBucketHistogramAggregator.swift
[711/951] Compiling OpenTelemetrySdk DoubleLastValueAggregator.swift
[712/951] Compiling OpenTelemetrySdk DoubleSumAggregator.swift
[713/951] Compiling OpenTelemetrySdk DropAggregation.swift
[714/951] Compiling OpenTelemetrySdk DropAggregator.swift
[715/951] Compiling OpenTelemetrySdk ExplicitBucketHistogramAggregation.swift
[716/951] Compiling OpenTelemetrySdk LastValueAggregation.swift
[717/951] Compiling OpenTelemetrySdk LongLastValueAggregator.swift
[718/951] Compiling OpenTelemetrySdk LongSumAggregator.swift
[719/951] Compiling OpenTelemetrySdk StableAggregator.swift
[720/951] Compiling OpenTelemetrySdk SumAggregation.swift
[721/951] Compiling OpenTelemetrySdk SumAggregator.swift
[722/951] Compiling OpenTelemetrySdk CallbackRegistration.swift
[723/951] Compiling OpenTelemetrySdk ExemplarData.swift
[724/951] Compiling OpenTelemetrySdk Base2ExponentialHistogramIndexer.swift
[725/951] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramBuckets.swift
[726/951] Compiling AwsCommonRuntimeKit RetryStrategy.swift
[727/951] Compiling AwsCommonRuntimeKit RetryToken.swift
[728/951] Compiling AwsCommonRuntimeKit Mqtt5Client.swift
[729/951] Compiling AwsCommonRuntimeKit Mqtt5Enums.swift
[730/951] Compiling AwsCommonRuntimeKit Mqtt5Options.swift
[731/951] Compiling AwsCommonRuntimeKit EventStreamMessageDecoder.swift
[732/951] Compiling AwsCommonRuntimeKit HTTP1Stream.swift
[733/951] Compiling AwsCommonRuntimeKit HTTP2ClientConnection.swift
[734/951] Compiling AwsCommonRuntimeKit HTTP2Error.swift
[735/951] Compiling AwsCommonRuntimeKit HTTP2Settings.swift
[736/951] Compiling AwsCommonRuntimeKit HTTP2Stream.swift
[737/951] Compiling AwsCommonRuntimeKit HTTP2StreamManager.swift
[738/951] Compiling AwsCommonRuntimeKit HTTP2StreamManagerOptions.swift
[739/951] Compiling AwsCommonRuntimeKit HTTPStream.swift
[740/951] Compiling AwsCommonRuntimeKit HTTPStreamCallbackCore.swift
[741/951] Compiling AwsCommonRuntimeKit HTTPVersion.swift
[742/951] Compiling AwsCommonRuntimeKit ClientBootstrap.swift
[743/951] Compiling AwsCommonRuntimeKit EventLoopGroup.swift
[744/951] Compiling AwsCommonRuntimeKit HostAddress.swift
[745/951] Compiling AwsCommonRuntimeKit CommonRuntimeKit.swift
[746/951] Compiling AwsCommonRuntimeKit Credentials.swift
[747/951] Compiling AwsCommonRuntimeKit CredentialsProvider.swift
[748/951] Compiling AwsCommonRuntimeKit IAMProfile.swift
[749/951] Compiling AwsCommonRuntimeKit IMDSClient.swift
[750/951] Compiling AwsCommonRuntimeKit IMDSInstanceInfo.swift
[751/951] Compiling AwsCommonRuntimeKit Signer.swift
[752/951] Compiling AwsCommonRuntimeKit SigningConfig.swift
[753/951] Compiling AwsCommonRuntimeKit AWSString.swift
[754/951] Compiling AwsCommonRuntimeKit Allocator.swift
[755/951] Compiling AwsCommonRuntimeKit ByteBuffer.swift
[756/951] Compiling AwsCommonRuntimeKit CBOR.swift
[757/951] Compiling AwsCommonRuntimeKit CStruct.swift
[758/951] Compiling AwsCommonRuntimeKit Checksums.swift
[759/951] Compiling AwsCommonRuntimeKit CommonRuntimeError.swift
[760/951] Compiling AwsCommonRuntimeKit ContinuationCore.swift
[761/951] Compiling AwsCommonRuntimeKit TLSSecitemOptions.swift
[762/951] Compiling AwsCommonRuntimeKit ExponentialBackoffJitterMode.swift
[763/951] Compiling AwsCommonRuntimeKit RetryError.swift
[764/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManager.swift
[765/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerCallbackCore.swift
[766/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerMetrics.swift
[767/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionOptions.swift
[768/951] Compiling AwsCommonRuntimeKit HTTPHeader.swift
[769/951] Compiling AwsCommonRuntimeKit HTTPHeaderBlock.swift
[770/951] Compiling AwsCommonRuntimeKit HTTPMonitoringOptions.swift
[771/951] Compiling AwsCommonRuntimeKit HTTPProxyAuthenticationType.swift
[772/951] Compiling AwsCommonRuntimeKit HTTPProxyConnectionType.swift
[773/951] Compiling AwsCommonRuntimeKit HTTPProxyEnvSettings.swift
[774/951] Compiling AwsCommonRuntimeKit HTTPProxyEnvType.swift
[775/951] Compiling AwsCommonRuntimeKit HTTPProxyOptions.swift
[776/951] Compiling AwsCommonRuntimeKit HTTPRequest.swift
[777/951] Compiling AwsCommonRuntimeKit HTTPRequestBase.swift
[778/951] Compiling AwsCommonRuntimeKit HTTPRequestOptions.swift
[779/951] Compiling OpenTelemetrySdk IntObserverMetricHandle.swift
[780/951] Compiling OpenTelemetrySdk IntObserverMetricHandleSdk.swift
[781/951] Compiling OpenTelemetrySdk LabelSetSdk.swift
[782/951] Compiling OpenTelemetrySdk MeasureMetricSdk.swift
[783/951] Compiling OpenTelemetrySdk MeterProviderBuilder.swift
[784/951] Compiling AwsCommonRuntimeKit HostAddressType.swift
[785/951] Compiling AwsCommonRuntimeKit HostResolver.swift
[786/951] Compiling AwsCommonRuntimeKit EC.swift
[787/951] Compiling AwsCommonRuntimeKit Hash.swift
[788/951] Compiling AwsCommonRuntimeKit Lock.swift
[789/951] Compiling AwsCommonRuntimeKit Logger.swift
[790/951] Compiling AwsCommonRuntimeKit ShutdownCallbackCore.swift
[791/951] Compiling AwsCommonRuntimeKit Utilities.swift
[792/951] Compiling AwsCommonRuntimeKit EventStreamHeader.swift
[793/951] Compiling AwsCommonRuntimeKit EventStreamMessage.swift
[794/951] Compiling AwsCommonRuntimeKit SocketDomain.swift
[795/951] Compiling AwsCommonRuntimeKit SocketOptions.swift
[796/951] Compiling AwsCommonRuntimeKit SocketType.swift
[797/951] Compiling AwsCommonRuntimeKit Stream.swift
[798/951] Compiling AwsCommonRuntimeKit StreamCore.swift
[799/951] Compiling AwsCommonRuntimeKit TLSConnectionOptions.swift
[800/951] Compiling AwsCommonRuntimeKit TLSContext.swift
[801/951] Compiling AwsCommonRuntimeKit TLSContextOptions.swift
[802/951] Compiling AwsCommonRuntimeKit HTTPClientConnection.swift
[803/951] Compiling OpenTelemetrySdk Clock.swift
[804/951] Compiling OpenTelemetrySdk ComponentRegistry.swift
[805/951] Compiling OpenTelemetrySdk ExportResult.swift
[806/951] Compiling OpenTelemetrySdk InstrumentationLibraryInfo.swift
[807/951] Compiling OpenTelemetrySdk WorkerThread.swift
[808/951] Compiling OpenTelemetrySdk autoreleasepool.swift
[809/951] Compiling OpenTelemetrySdk Locks.swift
[810/951] Compiling OpenTelemetrySdk MillisClock.swift
[811/951] Compiling OpenTelemetrySdk MonotonicClock.swift
[812/951] Compiling OpenTelemetrySdk ReadableLogRecord.swift
[813/951] Compiling OpenTelemetrySdk InMemoryLogRecordExporter.swift
[814/951] Compiling OpenTelemetrySdk LogRecordExporter.swift
[815/951] Compiling OpenTelemetrySdk MultiLogRecordExporter.swift
[816/951] Compiling OpenTelemetrySdk NoopLogRecordExporter.swift
[817/951] Compiling OpenTelemetrySdk LogLimits.swift
[818/951] Compiling OpenTelemetrySdk LogRecordBuilderSdk.swift
[819/951] Compiling OpenTelemetrySdk LoggerBuilderSdk.swift
[820/951] Compiling OpenTelemetrySdk LoggerProviderBuilder.swift
[821/951] Compiling OpenTelemetrySdk LoggerProviderSdk.swift
[822/951] Compiling OpenTelemetrySdk LoggerSdk.swift
[823/951] Compiling OpenTelemetrySdk MultiWritableMetricStorage.swift
[824/951] Compiling OpenTelemetrySdk StableMeterProviderSharedState.swift
[825/951] Compiling OpenTelemetrySdk StableMeterSharedState.swift
[826/951] Compiling OpenTelemetrySdk StableObservableMeasurement.swift
[827/951] Compiling OpenTelemetrySdk SynchronousMetricStorage.swift
[828/951] Compiling OpenTelemetrySdk ValueAtQuantile.swift
[829/951] Compiling OpenTelemetrySdk AttributeProcessor.swift
[830/951] Compiling OpenTelemetrySdk RegisteredView.swift
[831/951] Compiling OpenTelemetrySdk StableView.swift
[832/951] Compiling OpenTelemetrySdk StableViewRegistry.swift
[833/951] Compiling OpenTelemetrySdk ViewBuilder.swift
[834/951] Compiling OpenTelemetrySdk EnvVarResource.swift
[835/951] Compiling OpenTelemetrySdk Resource.swift
[836/951] Compiling OpenTelemetrySdk ResourceAttributes.swift
[837/951] Compiling OpenTelemetrySdk ArrayWithCapacity.swift
[838/951] Compiling OpenTelemetrySdk AttributesDictionary.swift
[839/951] Compiling OpenTelemetrySdk SpanData.swift
[840/951] Compiling OpenTelemetrySdk MultiSpanExporter.swift
[841/951] Compiling OpenTelemetrySdk SpanExporter.swift
[860/951] Compiling OpenTelemetrySdk IdGenerator.swift
[861/951] Compiling OpenTelemetrySdk EnvironmentContextPropagator.swift
[862/951] Compiling OpenTelemetrySdk RandomIdsGenerator.swift
[863/951] Compiling OpenTelemetrySdk ReadableSpan.swift
[864/951] Compiling OpenTelemetrySdk RecordEventsReadableSpan.swift
[865/951] Compiling OpenTelemetrySdk Sampler.swift
[866/951] Compiling OpenTelemetrySdk Samplers.swift
[867/951] Compiling OpenTelemetrySdk SpanBuilderSdk.swift
[868/951] Compiling OpenTelemetrySdk SpanLimits.swift
[869/951] Compiling OpenTelemetrySdk SpanProcessor.swift
[870/951] Compiling OpenTelemetrySdk BatchSpanProcessor.swift
[871/951] Compiling OpenTelemetrySdk MultiSpanProcessor.swift
[872/951] Compiling OpenTelemetrySdk NoopSpanProcessor.swift
[873/951] Compiling OpenTelemetrySdk SimpleSpanProcessor.swift
[874/951] Compiling OpenTelemetrySdk TracerProviderBuilder.swift
[875/951] Compiling OpenTelemetrySdk TracerProviderSdk.swift
[876/951] Compiling OpenTelemetrySdk TracerSdk.swift
[877/951] Compiling OpenTelemetrySdk TracerSharedState.swift
[878/951] Compiling OpenTelemetrySdk Version.swift
[879/974] Emitting module InMemoryExporter
[880/974] Compiling InMemoryExporter InMemoryExporter.swift
[881/974] Compiling OpenTelemetryProtocolExporterCommon logs.pb.swift
[882/974] Compiling OpenTelemetryProtocolExporterCommon logs_service.pb.swift
[883/976] Emitting module OpenTelemetryProtocolExporterCommon
[884/976] Compiling OpenTelemetryProtocolExporterCommon MetricsAdapter.swift
[885/976] Compiling OpenTelemetryProtocolExporterCommon common.pb.swift
[886/976] Compiling OpenTelemetryProtocolExporterCommon SpanAdapter.swift
[887/976] Compiling OpenTelemetryProtocolExporterCommon TraceProtoUtils.swift
[888/976] Compiling OpenTelemetryProtocolExporterCommon resource.pb.swift
[889/976] Compiling OpenTelemetryProtocolExporterCommon trace.pb.swift
[890/976] Compiling OpenTelemetryProtocolExporterCommon trace_service.pb.swift
[891/976] Compiling OpenTelemetryProtocolExporterCommon OtlpSpan.swift
[892/976] Compiling OpenTelemetryProtocolExporterCommon ExporterMetrics.swift
[893/976] Compiling OpenTelemetryProtocolExporterCommon Headers.swift
[894/976] Compiling OpenTelemetryProtocolExporterCommon OtlpConfiguration.swift
[895/976] Compiling OpenTelemetryProtocolExporterCommon profiles.pb.swift
[896/976] Compiling OpenTelemetryProtocolExporterCommon profiles_service.pb.swift
[897/976] Compiling OpenTelemetryProtocolExporterCommon ResourceAdapter.swift
[898/976] Compiling OpenTelemetryProtocolExporterCommon LogRecordAdapter.swift
[899/976] Compiling OpenTelemetryProtocolExporterCommon CommonAdapter.swift
[900/976] Compiling OpenTelemetryProtocolExporterCommon Constants.swift
[901/976] Compiling OpenTelemetryProtocolExporterCommon EnvVarHeaders.swift
[902/976] Compiling OpenTelemetryProtocolExporterCommon metrics.pb.swift
[903/976] Compiling OpenTelemetryProtocolExporterCommon metrics_service.pb.swift
[904/985] Emitting module AwsCommonRuntimeKit
[905/993] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpLogExporter.swift
[906/993] Compiling OpenTelemetryProtocolExporterHttp StableOtlpHTTPExporterBase.swift
[907/993] Compiling OpenTelemetryProtocolExporterHttp Lock.swift
[908/993] Compiling OpenTelemetryProtocolExporterHttp OltpHTTPMetricExporter.swift
[909/993] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpExporterBase.swift
[910/993] Compiling OpenTelemetryProtocolExporterHttp HTTPClient.swift
[911/993] Compiling OpenTelemetryProtocolExporterHttp StableOtlpHTTPMetricExporter.swift
[912/993] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpTraceExporter.swift
[913/993] Emitting module OpenTelemetryProtocolExporterHttp
[986/993] Compiling AwsCommonRuntimeKit Mqtt5Packets.swift
[987/993] Compiling AwsCommonRuntimeKit MqttRequestResponseClient.swift
[988/993] Compiling AwsCommonRuntimeKit FileBasedConfiguration.swift
[989/993] Compiling AwsCommonRuntimeKit EndpointProperty.swift
[990/993] Compiling AwsCommonRuntimeKit EndpointsRequestContext.swift
[991/993] Compiling AwsCommonRuntimeKit EndpointsRuleEngine.swift
[992/993] Compiling AwsCommonRuntimeKit ResolvedEndpointType.swift
[993/993] Compiling AwsCommonRuntimeKit resource_bundle_accessor.swift
[994/1025] Compiling SmithyStreams StreamableHttpBody.swift
[995/1025] Emitting module AWSSDKCommon
[996/1025] Compiling AWSSDKCommon FieldResolver.swift
[997/1025] Compiling SmithyStreams NSLock+Extension.swift
[998/1025] Emitting module SmithyStreams
[999/1025] Compiling SmithyStreams FileStream.swift
[1000/1025] Compiling SmithyStreams BufferedStream.swift
[1001/1025] Compiling SmithyIdentity AWSCredentialIdentityResolvedByCRT.swift
[1002/1025] Compiling SmithyIdentity AWSCredentialIdentityResolverCRTAdapter.swift
[1003/1025] Compiling SmithyIdentity AWSCredentialIdentityUtilityInitializers.swift
[1004/1026] Compiling SmithyIdentity CustomAWSCredentialIdentityResolver.swift
[1005/1026] Compiling AWSSDKCommon CRTFileBasedConfiguration.swift
[1006/1026] Compiling SmithyIdentity BearerTokenIdentityResolver.swift
[1007/1026] Compiling SmithyIdentity StaticBearerTokenIdentityResolver.swift
[1008/1026] Compiling AWSSDKCommon FileBasedConfiguration.swift
[1009/1026] Compiling AWSSDKCommon FileBasedConfigurationKeys.swift
[1010/1030] Compiling SmithyIdentity StaticAWSCredentialIdentityResolver.swift
[1011/1030] Compiling SmithyIdentity BearerTokenIdentity.swift
[1012/1030] Emitting module SmithyIdentity
[1013/1030] Compiling SmithyIdentity AWSCredentialIdentity.swift
[1014/1030] Compiling SmithyIdentity AWSCredentialIdentityResolver.swift
[1015/1030] Emitting module SmithyCBOR
[1016/1030] Compiling SmithyEventStreams Header+CRT.swift
[1017/1030] Compiling SmithyEventStreams Message+CRT.swift
[1018/1030] Compiling SmithyIdentity CRTAWSCredentialIdentity.swift
[1019/1030] Compiling SmithyCBOR Writer.swift
[1020/1030] Compiling SmithyCBOR NodeInfo.swift
[1021/1030] Compiling SmithyCBOR Reader.swift
[1022/1030] Emitting module SmithyHTTPClient
[1023/1030] Compiling SmithyHTTPClient SdkHttpRequest+CRT.swift
[1024/1030] Compiling SmithyHTTPClient Headers+Extension.swift
[1025/1030] Compiling SmithyHTTPClient SdkHttpRequestBuilder+HTTPRequestBase.swift
[1026/1030] Compiling SmithyEventStreams DefaultMessageEncoder.swift
[1027/1030] Compiling SmithyEventStreams DefaultMessageDecoderStream.swift
[1028/1030] Emitting module SmithyEventStreams
[1029/1030] Compiling SmithyEventStreams DefaultMessageDecoder.swift
[1030/1030] Compiling SmithyEventStreams DefaultMessageEncoderStream.swift
[1031/1049] Compiling SmithyChecksums SigningConfig+Extension.swift
[1032/1050] Compiling SmithyChecksums SHA1.swift
[1033/1050] Compiling SmithyChecksums SHA256.swift
[1034/1050] Compiling SmithyChecksums MD5.swift
[1035/1050] Compiling SmithyHTTPAuth BearerTokenSigner.swift
[1036/1050] Compiling SmithyHTTPAuth SigV4Signer.swift
[1037/1050] Compiling SmithyHTTPAuth CRTAdapters.swift
[1038/1050] Compiling SmithyHTTPAuth DefaultIdentityResolverConfiguration.swift
[1039/1050] Compiling SmithyHTTPAuth AWSSigningConfig.swift
[1040/1050] Emitting module SmithyHTTPAuth
[1041/1050] Compiling SmithyHTTPAuth SigV4AuthScheme.swift
[1042/1050] Compiling SmithyHTTPAuth BearerTokenAuthScheme.swift
[1043/1050] Compiling SmithyChecksums ChunkedStream.swift
[1044/1050] Compiling SmithyChecksums ChecksumAlgorithm.swift
[1045/1050] Compiling SmithyChecksums CRC64NVME.swift
[1046/1050] Emitting module SmithyChecksums
[1047/1050] Compiling SmithyChecksums ChunkedReader.swift
[1048/1050] Compiling SmithyChecksums CRC32.swift
[1049/1050] Compiling SmithyChecksums CRC32C.swift
[1050/1050] Compiling SmithyChecksums ValidatingBufferedStream.swift
[1051/1188] Compiling AWSSDKChecksums AWSChunkedUtil.swift
[1052/1188] Compiling AWSSDKChecksums AWSChecksumCalculationMode.swift
[1053/1188] Emitting module AWSSDKChecksums
[1054/1188] Compiling AWSSDKChecksums Context+Checksum.swift
[1055/1194] Compiling AWSSDKHTTPAuth SigV4AuthScheme.swift
[1056/1194] Compiling AWSSDKHTTPAuth SigV4AAuthScheme.swift
[1057/1194] Compiling AWSSDKHTTPAuth SigV4S3ExpressAuthScheme.swift
[1058/1194] Compiling AWSSDKHTTPAuth CustomSigningPropertiesSetter.swift
[1059/1194] Emitting module AWSSDKHTTPAuth
[1060/1194] Compiling AWSSDKHTTPAuth AWSSigV4Signer.swift
[1061/1194] Emitting module ClientRuntime
[1062/1208] Compiling ClientRuntime NSLock+Extension.swift
[1063/1208] Compiling ClientRuntime Number+Extension.swift
[1064/1208] Compiling ClientRuntime String+Extensions.swift
[1065/1208] Compiling ClientRuntime DefaultRetryErrorInfoProvider.swift
[1066/1208] Compiling ClientRuntime CharacterSet+Extension.swift
[1067/1208] Compiling ClientRuntime Double+Extension.swift
[1068/1208] Compiling ClientRuntime HeaderUtils.swift
[1069/1208] Compiling ClientRuntime TimestampFormatter.swift
[1070/1208] Compiling ClientRuntime TelemetryContext.swift
[1071/1208] Compiling ClientRuntime TelemetryContextManager.swift
[1072/1208] Compiling ClientRuntime TelemetryScope.swift
[1073/1208] Compiling ClientRuntime DefaultTelemetry.swift
[1074/1208] Compiling ClientRuntime ClientLogMode.swift
[1075/1208] Compiling ClientRuntime LogLevel+StringExtension.swift
[1076/1214] Compiling AWSSDKEventStreamsAuth Context+Signing.swift
[1077/1214] Compiling AWSSDKEventStreamsAuth String+hexaData.swift
[1078/1214] Compiling AWSSDKEventStreamsAuth Context+AWSEventStreamsAuth.swift
[1079/1214] Emitting module AWSSDKEventStreamsAuth
[1080/1214] Compiling AWSSDKEventStreamsAuth AWSSigV4Signer+EventStreams.swift
[1081/1214] Compiling AWSSDKEventStreamsAuth AWSMessageSigner.swift
[1082/1214] Compiling ClientRuntime TLSConfiguration.swift
[1083/1214] Compiling ClientRuntime FoundationStreamBridge.swift
[1084/1214] Compiling ClientRuntime URLSessionConfiguration+HTTPClientConfiguration.swift
[1085/1214] Compiling ClientRuntime URLSessionHTTPClient.swift
[1086/1214] Compiling ClientRuntime URLSessionTLSOptions.swift
[1087/1214] Compiling ClientRuntime URLSessionTLSResolverUtils.swift
[1088/1214] Compiling ClientRuntime UnknownHttpServiceError.swift
[1089/1214] Compiling ClientRuntime ModeledError.swift
[1090/1214] Compiling ClientRuntime ServiceError.swift
[1091/1214] Compiling ClientRuntime ByteStream+FileHandle.swift
[1092/1214] Compiling ClientRuntime ByteStream+Validating.swift
[1093/1214] Compiling ClientRuntime UnknownServiceError.swift
[1094/1214] Compiling ClientRuntime ApplyEndpoint.swift
[1095/1214] Compiling ClientRuntime ApplySigner.swift
[1096/1214] Compiling ClientRuntime AuthSchemeSelector.swift
[1097/1214] Compiling ClientRuntime SpanContext.swift
[1098/1214] Compiling ClientRuntime SpanKind.swift
[1099/1214] Compiling ClientRuntime TraceSpan.swift
[1100/1214] Compiling ClientRuntime TraceSpanStatus.swift
[1101/1214] Compiling ClientRuntime Tracer.swift
[1102/1214] Compiling ClientRuntime TracerProvider.swift
[1103/1214] Compiling ClientRuntime Initialize.swift
[1104/1214] Compiling ClientRuntime PlatformOperatingSystem.swift
[1105/1214] Compiling ClientRuntime PlatformOperationSystemVersion.swift
[1106/1214] Compiling ClientRuntime SwiftVersion.swift
[1107/1214] Compiling ClientRuntime RpcV2CborError.swift
[1108/1214] Compiling ClientRuntime RpcV2CborQueryCompatible.swift
[1109/1214] Compiling ClientRuntime RpcV2CborValidateResponseHeaderMiddleware.swift
[1110/1214] Compiling ClientRuntime resource_bundle_accessor.swift
[1111/1214] Compiling ClientRuntime ExecuteRequest.swift
[1112/1214] Compiling ClientRuntime Orchestrator.swift
[1113/1214] Compiling ClientRuntime OrchestratorBuilder.swift
[1114/1214] Compiling ClientRuntime OrchestratorTelemetry.swift
[1115/1214] Compiling ClientRuntime PaginateToken.swift
[1116/1214] Compiling ClientRuntime PaginatorSequence.swift
[1117/1214] Compiling ClientRuntime AuthSchemePlugin.swift
[1118/1214] Compiling ClientRuntime DefaultClientPlugin.swift
[1119/1214] Compiling ClientRuntime HttpClientPlugin.swift
[1120/1214] Compiling ClientRuntime Plugin.swift
[1121/1214] Compiling ClientRuntime RetryPlugin.swift
[1122/1214] Compiling ClientRuntime TelemetryPlugin.swift
[1123/1214] Compiling ClientRuntime AsyncSequence+Extension.swift
[1124/1214] Compiling ClientRuntime FileHandle+Extension.swift
[1125/1214] Compiling ClientRuntime Indirect.swift
[1126/1214] Compiling ClientRuntime QueryItemProvider.swift
[1127/1214] Compiling ClientRuntime URLPathProvider.swift
[1128/1214] Compiling ClientRuntime QueryItemMiddleware.swift
[1129/1214] Compiling ClientRuntime BlobBodyMiddleware.swift
[1130/1214] Compiling ClientRuntime BlobStreamBodyMiddleware.swift
[1131/1214] Compiling ClientRuntime BodyMiddleware.swift
[1132/1214] Compiling ClientRuntime EnumBodyMiddleware.swift
[1133/1214] Compiling ClientRuntime EventStreamBodyMiddleware.swift
[1134/1214] Compiling ClientRuntime PayloadBodyMiddleware.swift
[1135/1214] Compiling ClientRuntime StringBodyMiddleware.swift
[1136/1214] Compiling ClientRuntime SignerMiddleware.swift
[1137/1214] Compiling ClientRuntime URLHostMiddleware.swift
[1138/1214] Compiling ClientRuntime URLPathMiddleware.swift
[1139/1214] Compiling ClientRuntime SdkHttpClient.swift
[1140/1214] Compiling ClientRuntime String+URLPercentEncoding.swift
[1141/1214] Compiling ClientRuntime CRTResolvedEndpoint.swift
[1142/1214] Compiling ClientRuntime CRTResolvedEndpointType.swift
[1143/1214] Compiling ClientRuntime CredentialScope.swift
[1144/1214] Compiling ClientRuntime DefaultEndpointResolver.swift
[1145/1214] Compiling ClientRuntime EndpointError.swift
[1146/1214] Compiling ClientRuntime EndpointResolverMiddleware.swift
[1147/1214] Compiling ClientRuntime EndpointsAuthSchemeResolver.swift
[1148/1214] Compiling ClientRuntime EndpointsRequestContext.swift
[1149/1214] Compiling ClientRuntime EndpointsRequestContextProviding.swift
[1150/1214] Compiling ClientRuntime EndpointsRuleEngine.swift
[1151/1214] Compiling ClientRuntime PartitionDefinition.swift
[1152/1214] Compiling ClientRuntime ServiceEndpointMetadata.swift
[1153/1214] Compiling ClientRuntime SmithyEndpoint.swift
[1154/1214] Compiling ClientRuntime StaticEndpointResolver.swift
[1155/1214] Compiling ClientRuntime Context+Idempotency.swift
[1156/1214] Compiling ClientRuntime Client.swift
[1157/1214] Compiling ClientRuntime ClientBuilder.swift
[1158/1214] Compiling ClientRuntime ClockSkewProvider.swift
[1159/1214] Compiling ClientRuntime ClockSkewStore.swift
[1160/1214] Compiling ClientRuntime DefaultClockSkewProvider.swift
[1161/1214] Compiling ClientRuntime ClientConfigDefaultsProvider.swift
[1162/1214] Compiling ClientRuntime ClientConfiguration.swift
[1163/1214] Compiling ClientRuntime Context+Config.swift
[1164/1214] Compiling ClientRuntime ContextBuilder+withSmithyDefaultConfig.swift
[1165/1214] Compiling ClientRuntime DefaultClientConfiguration.swift
[1166/1214] Compiling ClientRuntime DefaultHttpClientConfiguration.swift
[1167/1214] Compiling ClientRuntime DefaultIdempotencyTokenGenerator.swift
[1168/1214] Compiling ClientRuntime DefaultSDKRuntimeConfiguration.swift
[1169/1214] Compiling ClientRuntime IdempotencyTokenGenerator.swift
[1170/1214] Compiling ClientRuntime IdentityPropertyKeys.swift
[1171/1214] Compiling ClientRuntime Endpoint+CRT.swift
[1172/1214] Compiling ClientRuntime HTTP2Stream+ByteStream.swift
[1173/1214] Compiling ClientRuntime SDKDefaultIO.swift
[1174/1214] Compiling ClientRuntime HTTPError.swift
[1175/1214] Compiling ClientRuntime HTTPResponse+WireDataProviding.swift
[1176/1214] Compiling ClientRuntime HttpClientConfiguration.swift
[1177/1214] Compiling ClientRuntime AuthSchemeMiddleware.swift
[1178/1214] Compiling ClientRuntime ContentLengthMiddleware.swift
[1179/1214] Compiling ClientRuntime ContentMD5Middleware.swift
[1180/1214] Compiling ClientRuntime ContentTypeMiddleware.swift
[1181/1214] Compiling ClientRuntime DeserializeMiddleware.swift
[1182/1214] Compiling ClientRuntime HeaderMiddleware.swift
[1183/1214] Compiling ClientRuntime LoggerMiddleware.swift
[1184/1214] Compiling ClientRuntime MutateHeadersMiddleware.swift
[1185/1214] Compiling ClientRuntime HeaderProvider.swift
[1186/1214] Compiling ClientRuntime IdempotencyTokenMiddleware.swift
[1187/1214] Compiling ClientRuntime AnyInterceptor.swift
[1188/1214] Compiling ClientRuntime DefaultInterceptorContext.swift
[1189/1214] Compiling ClientRuntime HttpInterceptorProvider.swift
[1190/1214] Compiling ClientRuntime Interceptor.swift
[1191/1214] Compiling ClientRuntime InterceptorContext.swift
[1192/1214] Compiling ClientRuntime InterceptorProvider.swift
[1193/1214] Compiling ClientRuntime Interceptors.swift
[1194/1214] Compiling ClientRuntime SendableHttpInterceptorProviderBox.swift
[1195/1214] Compiling ClientRuntime SendableInterceptorProviderBox.swift
[1196/1214] Compiling ClientRuntime BaseError.swift
[1197/1214] Compiling ClientRuntime CRTClientEngine.swift
[1198/1214] Compiling ClientRuntime CRTClientEngineConfig.swift
[1199/1214] Compiling ClientRuntime CRTClientEngineLogHandlerFactory.swift
[1200/1214] Compiling ClientRuntime CRTClientTLSOptions.swift
[1201/1214] Compiling ClientRuntime LoggerProvider.swift
[1202/1214] Compiling ClientRuntime SDKLogHandlerFactory.swift
[1203/1214] Compiling ClientRuntime SDKLogLevel.swift
[1204/1214] Compiling ClientRuntime SDKLoggingSystem.swift
[1205/1214] Compiling ClientRuntime AsyncMeasurement.swift
[1206/1214] Compiling ClientRuntime Histogram.swift
[1207/1214] Compiling ClientRuntime Meter.swift
[1208/1214] Compiling ClientRuntime MeterProvider.swift
[1209/1214] Compiling ClientRuntime MonotonicCounter.swift
[1210/1214] Compiling ClientRuntime UpDownCounter.swift
[1211/1214] Compiling ClientRuntime OTelProvider.swift
[1212/1214] Compiling ClientRuntime OTelTracing.swift
[1213/1214] Compiling ClientRuntime OTelUtils.swift
[1214/1214] Compiling ClientRuntime TelemetryProvider.swift
[1215/1280] Emitting module AWSClientRuntime
[1216/1287] Compiling AWSClientRuntime UnknownAWSHTTPErrorCandidate.swift
[1217/1287] Compiling AWSClientRuntime UnknownAWSHTTPServiceError.swift
[1218/1287] Compiling AWSClientRuntime HttpResponse+AWS.swift
[1219/1287] Compiling AWSClientRuntime IMDSClient.swift
[1220/1287] Compiling AWSClientRuntime IMDSConfig.swift
[1221/1287] Compiling AWSClientRuntime AWSS3ErrorWith200StatusXMLMiddleware.swift
[1222/1287] Compiling AWSClientRuntime AmzSdkInvocationIdMiddleware.swift
[1223/1287] Compiling AWSClientRuntime IMDSRegionProvider.swift
[1224/1287] Compiling AWSClientRuntime ProfileRegionProvider.swift
[1225/1287] Compiling AWSClientRuntime RegionProvider.swift
[1226/1287] Compiling AWSClientRuntime RegionResolver.swift
[1227/1287] Compiling AWSClientRuntime AWSRetryConfig.swift
[1228/1287] Compiling AWSClientRuntime AWSRetryErrorInfoProvider.swift
[1229/1287] Compiling AWSClientRuntime AWSRetryMode.swift
[1230/1287] Compiling AWSClientRuntime EndpointResolverMiddleware.swift
[1231/1287] Compiling AWSClientRuntime Partition.swift
[1232/1287] Compiling AWSClientRuntime ServiceEndpointMetadata+Extension.swift
[1233/1287] Compiling AWSClientRuntime Environment.swift
[1234/1287] Compiling AWSClientRuntime AWSS3ServiceError.swift
[1235/1287] Compiling AWSClientRuntime AWSServiceError.swift
[1236/1287] Compiling AWSClientRuntime InvalidAccessKeyId.swift
[1237/1287] Compiling AWSClientRuntime AWSClientConfigDefaultsProvider.swift
[1238/1287] Compiling AWSClientRuntime AWSServiceClient.swift
[1239/1287] Compiling AWSClientRuntime AWSClockSkewProvider.swift
[1240/1287] Compiling AWSClientRuntime AWSChecksumsConfig.swift
[1241/1287] Compiling AWSClientRuntime AWSDefaultClientConfiguration.swift
[1242/1287] Compiling AWSClientRuntime AWSRegionClientConfiguration.swift
[1243/1287] Compiling AWSClientRuntime AuthSchemeConfig.swift
[1244/1287] Compiling AWSClientRuntime AuthTokenGenerator.swift
[1245/1287] Compiling AWSClientRuntime APIMetadata.swift
[1246/1287] Compiling AWSClientRuntime AWSUserAgentMetadata.swift
[1247/1287] Compiling AWSClientRuntime AdditionalMetadata.swift
[1248/1287] Compiling AWSClientRuntime AppIDConfig.swift
[1249/1287] Compiling AWSClientRuntime AppIDMetadata.swift
[1250/1287] Compiling AWSClientRuntime BusinessMetrics.swift
[1251/1287] Compiling AWSClientRuntime ExecutionEnvMetadata.swift
[1252/1287] Compiling AWSClientRuntime DefaultAWSClientPlugin.swift
[1253/1287] Compiling AWSClientRuntime RegionPlugin.swift
[1254/1287] Compiling AWSClientRuntime Data+Extension.swift
[1255/1287] Compiling AWSClientRuntime String+Extension.swift
[1256/1287] Compiling AWSClientRuntime TimeInterval+Extension.swift
[1257/1287] Compiling AWSClientRuntime AWSJSONError.swift
[1258/1287] Compiling AWSClientRuntime AwsQueryCompatibleErrorDetails.swift
[1259/1287] Compiling AWSClientRuntime AWSQueryCompatibleUtils.swift
[1260/1287] Compiling AWSClientRuntime AWSQueryError.swift
[1261/1287] Compiling AWSClientRuntime EC2QueryError.swift
[1262/1287] Compiling AWSClientRuntime RestJSONError.swift
[1263/1287] Compiling AWSClientRuntime RestXMLError.swift
[1264/1287] Compiling AWSClientRuntime DefaultRegionResolver.swift
[1265/1287] Compiling AWSClientRuntime EnvironmentRegionProvider.swift
[1266/1287] Compiling AWSClientRuntime FrameworkMetadata.swift
[1267/1287] Compiling AWSClientRuntime InternalMetadata.swift
[1268/1287] Compiling AWSClientRuntime LanguageMetadata.swift
[1269/1287] Compiling AWSClientRuntime OSMetadata.swift
[1270/1287] Compiling AWSClientRuntime SDKMetadata.swift
[1271/1287] Compiling AWSClientRuntime UserAgentMetadata.swift
[1272/1287] Compiling AWSClientRuntime resource_bundle_accessor.swift
[1273/1287] Compiling AWSClientRuntime BedrockAPIKeyInterceptor.swift
[1274/1287] Compiling AWSClientRuntime Context+usesBearerServiceEnvVars.swift
[1275/1287] Compiling AWSClientRuntime AWSEndpoint.swift
[1276/1287] Compiling AWSClientRuntime AWSEndpointConfig.swift
[1277/1287] Compiling AWSClientRuntime AWSPartitionDefinition.swift
[1278/1287] Compiling AWSClientRuntime AccountIDEndpointMode.swift
[1279/1287] Compiling AWSClientRuntime Context+AccountIDEndpointMode.swift
[1280/1287] Compiling AWSClientRuntime Context+ResolvedAccountID.swift
[1281/1287] Compiling AWSClientRuntime AmzSdkRequestMiddleware.swift
[1282/1287] Compiling AWSClientRuntime FlexibleChecksumsRequestMiddleware.swift
[1283/1287] Compiling AWSClientRuntime FlexibleChecksumsResponseMiddleware.swift
[1284/1287] Compiling AWSClientRuntime Route53TrimHostedZoneMiddleware.swift
[1285/1287] Compiling AWSClientRuntime Sha256TreeHashMiddleware.swift
[1286/1287] Compiling AWSClientRuntime UserAgentMiddleware.swift
[1287/1287] Compiling AWSClientRuntime XAmzTargetMiddleware.swift
[1288/1317] Compiling InternalAWSCognitoIdentity Plugins.swift
[1289/1317] Compiling InternalAWSCognitoIdentity Models.swift
[1290/1317] Compiling InternalAWSCognitoIdentity Endpoints.swift
[1291/1317] Compiling InternalAWSSSO Models.swift
[1292/1317] Compiling InternalAWSSSO AuthSchemeResolver.swift
[1293/1317] Compiling InternalAWSSSO Plugins.swift
[1294/1317] Compiling InternalAWSSSO Endpoints.swift
[1295/1317] Emitting module InternalAWSSSO
[1296/1317] Compiling InternalAWSSSO SSOClient.swift
[1297/1317] Compiling InternalAWSSSOOIDC Plugins.swift
[1298/1317] Compiling InternalAWSSSOOIDC Endpoints.swift
[1299/1317] Compiling InternalAWSSSOOIDC AuthSchemeResolver.swift
[1300/1317] Compiling InternalAWSSSOOIDC SSOOIDCClient.swift
[1301/1317] Compiling InternalAWSSSOOIDC Models.swift
[1302/1317] Emitting module InternalAWSSSOOIDC
[1303/1317] Compiling InternalAWSSignin Plugins.swift
[1304/1317] Emitting module InternalAWSSignin
[1305/1317] Compiling InternalAWSSignin AuthSchemeResolver.swift
[1306/1317] Compiling InternalAWSSignin Endpoints.swift
[1307/1317] Compiling InternalAWSSignin SigninClient.swift
[1308/1317] Compiling InternalAWSSignin Models.swift
[1309/1317] Compiling InternalAWSSTS Plugins.swift
[1310/1317] Compiling InternalAWSSTS Models.swift
[1311/1317] Emitting module InternalAWSSTS
[1312/1317] Compiling InternalAWSSTS Endpoints.swift
[1313/1317] Compiling InternalAWSSTS STSClient.swift
[1314/1317] Compiling InternalAWSSTS AuthSchemeResolver.swift
[1315/1317] Compiling InternalAWSCognitoIdentity AuthSchemeResolver.swift
[1316/1317] Emitting module InternalAWSCognitoIdentity
[1317/1317] Compiling InternalAWSCognitoIdentity CognitoIdentityClient.swift
[1318/1352] Compiling AWSSDKIdentity IdentityProvidingSSOOIDCClient.swift
[1319/1352] Compiling AWSSDKIdentity IdentityProvidingSTSClient.swift
[1320/1352] Compiling AWSSDKIdentity Context+S3ExpressIdentity.swift
[1321/1352] Emitting module AWSSDKIdentity
[1322/1355] Compiling AWSSDKIdentity DefaultS3ExpressIdentityResolver.swift
[1323/1355] Compiling AWSSDKIdentity S3ExpressCachedElement.swift
[1324/1355] Compiling AWSSDKIdentity S3ExpressClientError.swift
[1325/1355] Compiling AWSSDKIdentity CustomAWSCredentialIdentityResolver.swift
[1326/1355] Compiling AWSSDKIdentity DefaultAWSCredentialIdentityResolverChain.swift
[1327/1355] Compiling AWSSDKIdentity ECSAWSCredentialIdentityResolver.swift
[1328/1355] Compiling AWSSDKIdentity EnvironmentAWSCredentialIdentityResolver.swift
[1329/1355] Compiling AWSSDKIdentity CredentialFeatureID.swift
[1330/1355] Compiling AWSSDKIdentity CredentialFeatureIDInterceptor.swift
[1331/1355] Compiling AWSSDKIdentity IMDSClient.swift
[1332/1355] Compiling AWSSDKIdentity IMDSError.swift
[1333/1355] Compiling AWSSDKIdentity AWSCredentialIdentity.swift
[1334/1355] Compiling AWSSDKIdentity AWSCredentialIdentityResolverError.swift
[1335/1355] Compiling AWSSDKIdentity CachedAWSCredentialIdentityResolver.swift
[1336/1355] Compiling AWSSDKIdentity CognitoAWSCredentialIdentityResolver.swift
[1337/1355] Compiling AWSSDKIdentity StaticAWSCredentialIdentityResolver.swift
[1338/1355] Compiling AWSSDKIdentity AWSIdentityPropertyKeys.swift
[1339/1355] Compiling AWSSDKIdentity DefaultBearerTokenIdentityResolverChain.swift
[1340/1355] Compiling AWSSDKIdentity SSOBearerTokenIdentityResolver.swift
[1341/1355] Compiling AWSSDKIdentity IMDSToken.swift
[1342/1355] Compiling AWSSDKIdentity IMDSTokenProvider.swift
[1343/1355] Compiling AWSSDKIdentity IdentityProvidingCognitoIdentityClient.swift
[1344/1355] Compiling AWSSDKIdentity IdentityProvidingSSOClient.swift
[1345/1355] Compiling AWSSDKIdentity SSOAWSCredentialIdentityResolver.swift
[1346/1355] Compiling AWSSDKIdentity STSAssumeRoleAWSCredentialIdentityResolver.swift
[1347/1355] Compiling AWSSDKIdentity STSWebIdentityAWSCredentialIdentityResolver.swift
[1348/1355] Compiling AWSSDKIdentity SharedConfigStaticAWSCredentialIdentityResolver.swift
[1349/1355] Compiling AWSSDKIdentity S3ExpressCreateSessionClient.swift
[1350/1355] Compiling AWSSDKIdentity S3ExpressIdentity.swift
[1351/1355] Compiling AWSSDKIdentity S3ExpressIdentityResolver.swift
[1352/1355] Compiling AWSSDKIdentity IMDSAWSCredentialIdentityResolver.swift
[1353/1355] Compiling AWSSDKIdentity LoginAWSCredentialIdentityResolver.swift
[1354/1355] Compiling AWSSDKIdentity ProcessAWSCredentialIdentityResolver.swift
[1355/1355] Compiling AWSSDKIdentity ProfileAWSCredentialIdentityResolver.swift
[1356/1379] Compiling AWSBedrockRuntime Plugins.swift
[1357/1379] Compiling AWSSSOOIDC Plugins.swift
[1358/1379] Compiling AWSSSOOIDC Endpoints.swift
[1359/1379] Compiling AWSSSOOIDC SSOOIDCClient.swift
[1360/1379] Compiling AWSSSOOIDC AuthSchemeResolver.swift
[1361/1379] Emitting module AWSSSOOIDC
[1362/1379] Compiling AWSSSOOIDC Models.swift
[1363/1379] Compiling AWSBedrockAgentRuntime Plugins.swift
[1364/1379] Compiling AWSBedrockRuntime Endpoints.swift
[1365/1379] Emitting module AWSBedrockRuntime
[1366/1379] Compiling AWSBedrockRuntime AuthSchemeResolver.swift
[1367/1379] Compiling AWSBedrockRuntime BedrockRuntimeClient.swift
[1368/1379] Compiling AWSBedrockRuntime Models.swift
[1369/1379] Compiling AWSBedrockAgentRuntime Endpoints.swift
[1370/1379] Emitting module AWSBedrockAgentRuntime
[1371/1379] Compiling AWSBedrockAgentRuntime Models.swift
[1372/1379] Compiling AWSBedrockAgentRuntime AuthSchemeResolver.swift
[1373/1379] Compiling AWSBedrockAgentRuntime BedrockAgentRuntimeClient.swift
[1374/1379] Compiling AWSBedrock Plugins.swift
[1375/1379] Compiling AWSBedrock BedrockClient.swift
[1376/1379] Compiling AWSBedrock Endpoints.swift
[1377/1379] Compiling AWSBedrock AuthSchemeResolver.swift
[1378/1379] Emitting module AWSBedrock
[1379/1379] Compiling AWSBedrock Models.swift
[1380/1474] Compiling BedrockService TitanRequestBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1381/1474] Compiling BedrockService TitanResponseBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1382/1474] Compiling BedrockService TitanText.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1383/1474] Compiling BedrockService TitanTextBedrockModels.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1384/1474] Compiling BedrockService TitanEmbeddings.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1385/1474] Compiling BedrockService TitanEmbeddingsBedrockModels.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1386/1474] Compiling BedrockService TitanEmbeddingsRequestBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1387/1474] Compiling BedrockService TitanEmbeddingsResponseBody.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1388/1474] Compiling BedrockService Anthropic.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1389/1474] Compiling BedrockService AnthropicBedrockModels.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1390/1484] Compiling BedrockService AmazonImage.swift
[1391/1484] Compiling BedrockService AmazonImageRequestBody.swift
[1392/1484] Compiling BedrockService AmazonImageResponseBody.swift
[1393/1484] Compiling BedrockService Nova.swift
[1394/1484] Compiling BedrockService NovaBedrockModels.swift
[1395/1484] Compiling BedrockService NovaImageResolutionValidator.swift
[1396/1484] Compiling BedrockService NovaRequestBody.swift
[1397/1484] Compiling BedrockService NovaResponseBody.swift
[1398/1484] Compiling BedrockService TaskType.swift
[1399/1484] Compiling BedrockService TitanImageResolutionValidator.swift
[1400/1484] Compiling BedrockService InvokeModelRequest.swift
[1401/1484] Compiling BedrockService InvokeModelResponse.swift
[1402/1484] Compiling BedrockService Protocols.swift
[1403/1484] Compiling BedrockService TextCompletion.swift
[1404/1484] Compiling BedrockService ConverseFeature.swift
[1405/1484] Compiling BedrockService ConverseModality.swift
[1406/1484] Compiling BedrockService CrossRegionInference.swift
[1407/1484] Compiling BedrockService EmbeddingsModality.swift
[1408/1484] Compiling BedrockService ImageModality.swift
[1409/1484] Compiling BedrockService Modality.swift
[1410/1484] Compiling BedrockService BedrockAuthentication+JWT.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1411/1484] Compiling BedrockService BedrockAuthentication.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1412/1484] Compiling BedrockService BedrockClientProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1413/1484] Compiling BedrockService ModelSummary.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1414/1484] Compiling BedrockService BedrockConfigProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1415/1484] Compiling BedrockService BedrockRuntimeAgentProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1416/1484] Compiling BedrockService BedrockService+RuntimeAgent.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1417/1484] Compiling BedrockService RetrieveRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1418/1484] Compiling BedrockService RetrieveResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1419/1484] Compiling BedrockService BedrockRuntimeClientProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1420/1484] Compiling BedrockService BedrockService+Converse.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:32:47: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
30 | logger: Logging.Logger
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
34 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:33:54: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
31 | ) async throws -> BedrockAgentRuntimeClient {
32 | let config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration = try await prepareConfig(
33 | initialConfig: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
34 | authentication: authentication,
35 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeAgent/BedrockService+RuntimeAgent.swift:37:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
35 | logger: logger
36 | )
37 | return BedrockAgentRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfig) instead
38 | }
39 | /// Retrieves information from a knowledge base for RAG applications
[1421/1484] Compiling BedrockService AnthropicGlobalModels.swift
[1422/1484] Compiling BedrockService AnthropicRequestBody.swift
[1423/1484] Compiling BedrockService AnthropicResponseBody.swift
[1424/1484] Compiling BedrockService BedrockModel.swift
[1425/1484] Compiling BedrockService CohereBedrockModels.swift
[1426/1484] Compiling BedrockService DeepSeek.swift
[1427/1484] Compiling BedrockService DeepSeekBedrockModels.swift
[1428/1484] Compiling BedrockService DeepSeekRequestBody.swift
[1429/1484] Compiling BedrockService DeepSeekResponseBody.swift
[1430/1484] Compiling BedrockService JambaBedrockModels.swift
[1431/1484] Compiling BedrockService StandardConverse.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1432/1484] Compiling BedrockService TextModality.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1433/1484] Compiling BedrockService ConverseParameters.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1434/1484] Compiling BedrockService EmbeddingsParameters.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1435/1484] Compiling BedrockService ImageGenerationParameters.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1436/1484] Compiling BedrockService ParameterName.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1437/1484] Compiling BedrockService Parameters.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1438/1484] Compiling BedrockService TextGenerationParameters.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1439/1484] Compiling BedrockService BedrockService.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1440/1484] Compiling BedrockService BedrockServiceError.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:149:35: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
147 | -> BedrockClient
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
151 | authentication: authentication,
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:150:42: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
148 | {
149 | let config: BedrockClient.BedrockClientConfiguration = try await prepareConfig(
150 | initialConfig: BedrockClient.BedrockClientConfiguration(region: region.rawValue),
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
151 | authentication: authentication,
152 | logger: logger
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:154:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
152 | logger: logger
153 | )
154 | return BedrockClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockClient.BedrockClientConfig) instead
155 | }
156 |
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:171:42: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
169 | -> BedrockRuntimeClient
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
173 | region: region.rawValue
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:172:49: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
170 | {
171 | let config: BedrockRuntimeClient.BedrockRuntimeClientConfiguration = try await prepareConfig(
172 | initialConfig: BedrockRuntimeClient.BedrockRuntimeClientConfiguration(
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
173 | region: region.rawValue
174 | ),
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockService.swift:178:16: warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
176 | logger: logger
177 | )
178 | return BedrockRuntimeClient(config: config)
| `- warning: 'init(config:)' is deprecated: Use init(config: BedrockRuntimeClient.BedrockRuntimeClientConfig) instead
179 | }
180 |
[1441/1484] Compiling BedrockService ResponseMetaData.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1442/1484] Compiling BedrockService ToolUseStart.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1443/1484] Compiling BedrockService Tool.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1444/1484] Compiling BedrockService BedrockService+ImageParameterValidation.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1445/1484] Compiling BedrockService BedrockService+InvokeModelEmbeddings.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1446/1484] Compiling BedrockService BedrockService+InvokeModelImage.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1447/1484] Compiling BedrockService BedrockService+InvokeModelText.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1448/1484] Compiling BedrockService ContentType.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1449/1484] Compiling BedrockService Embeddings.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1450/1484] Compiling BedrockService ImageGenerationOutput.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
[1451/1484] Compiling BedrockService ImageResolution.swift
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1452/1484] Compiling BedrockService ConverseRequest.swift
[1453/1484] Compiling BedrockService ConverseRequestBuilder.swift
[1454/1484] Compiling BedrockService History.swift
[1455/1484] Compiling BedrockService JSON.swift
[1456/1484] Compiling BedrockService Message.swift
[1457/1484] Compiling BedrockService Role.swift
[1458/1484] Compiling BedrockService BedrockService+ConverseStreaming.swift
[1459/1484] Compiling BedrockService ConverseReplyStream.swift
[1460/1484] Compiling BedrockService ConverseRequestStreaming.swift
[1461/1484] Compiling BedrockService ConverseResponseStreaming.swift
[1462/1484] Compiling BedrockService ConverseStreamElement.swift
[1463/1484] Emitting module BedrockService
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:38:25: warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
36 |
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
| `- warning: 'BedrockClientConfiguration' is deprecated: Use BedrockClientConfig instead. This class will be removed in a future version.
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
40 | BedrockConfigProtocol
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:39:32: warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
37 | }
38 | extension BedrockClient.BedrockClientConfiguration: @retroactive @unchecked Sendable, BedrockConfigProtocol {}
39 | extension BedrockRuntimeClient.BedrockRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockRuntimeClientConfiguration' is deprecated: Use BedrockRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockConfigProtocol.swift:42:37: warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
40 | BedrockConfigProtocol
41 | {}
42 | extension BedrockAgentRuntimeClient.BedrockAgentRuntimeClientConfiguration: @retroactive @unchecked Sendable,
| `- warning: 'BedrockAgentRuntimeClientConfiguration' is deprecated: Use BedrockAgentRuntimeClientConfig instead. This class will be removed in a future version.
43 | BedrockConfigProtocol
44 | {}
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/BedrockRuntimeClient/Parameters/EmbeddingsParameters.swift:45:5: error: unexpected ',' separator
43 | maxInputChars: Int? = nil,
44 | outputVectorSize: Int? = nil,
45 | ) throws {
| `- error: unexpected ',' separator
46 | if let prompt = prompt {
47 | try self.prompt.validateValue(prompt)
/Users/admin/builder/spi-builder-workspace/Sources/BedrockService/Models/Amazon/TitanEmbeddings/TitanEmbeddings.swift:43:5: error: unexpected ',' separator
41 | vectorSize: Int,
42 | normalize: Bool,
43 | ) throws -> BedrockBodyCodable {
| `- error: unexpected ',' separator
44 | TitanEmbeddingsBody(
45 | prompt: text,
[1464/1484] Compiling BedrockService Llama.swift
[1465/1484] Compiling BedrockService LlamaBedrockModels.swift
[1466/1484] Compiling BedrockService LlamaRequestBody.swift
[1467/1484] Compiling BedrockService LlamaResponseBody.swift
[1468/1484] Compiling BedrockService MistralBedrockModels.swift
[1469/1484] Compiling BedrockService OpenAI.swift
[1470/1484] Compiling BedrockService OpenAIBedrockModels.swift
[1471/1484] Compiling BedrockService OpenAIRequestBody.swift
[1472/1484] Compiling BedrockService OpenAIResponseBody.swift
[1473/1484] Compiling BedrockService Region.swift
[1474/1484] Compiling BedrockService Content.swift
[1475/1484] Compiling BedrockService DocumentBlock.swift
[1476/1484] Compiling BedrockService DocumentToJSON.swift
[1477/1484] Compiling BedrockService ImageBlock.swift
[1478/1484] Compiling BedrockService JSONtoDocument.swift
[1479/1484] Compiling BedrockService ReasoningBlock.swift
[1480/1484] Compiling BedrockService S3Location.swift
[1481/1484] Compiling BedrockService ToolResultBlock.swift
[1482/1484] Compiling BedrockService ToolUseBlock.swift
[1483/1484] Compiling BedrockService VideoBlock.swift
[1484/1484] Compiling BedrockService ConverseReply.swift
Fetching https://github.com/smithy-lang/smithy-swift
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/awslabs/aws-crt-swift
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/awslabs/aws-sdk-swift
[1/5899] Fetching swift-log
[237/38691] Fetching swift-log, aws-crt-swift
[624/55862] Fetching swift-log, aws-crt-swift, swift-argument-parser
[11482/132587] Fetching swift-log, aws-crt-swift, swift-argument-parser, smithy-swift
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.79s)
Fetched https://github.com/awslabs/aws-crt-swift from cache (1.79s)
[63443/82624] Fetching swift-log, smithy-swift
Fetched https://github.com/apple/swift-log.git from cache (2.32s)
Fetched https://github.com/smithy-lang/smithy-swift from cache (2.32s)
[1/893772] Fetching aws-sdk-swift
Fetched https://github.com/awslabs/aws-sdk-swift from cache (195.92s)
Computing version for https://github.com/smithy-lang/smithy-swift
Computed https://github.com/smithy-lang/smithy-swift at 0.182.0 (3.45s)
Fetching https://github.com/swift-server/async-http-client.git
Fetching https://github.com/open-telemetry/opentelemetry-swift
[1/19869] Fetching opentelemetry-swift
[399/34898] Fetching opentelemetry-swift, async-http-client
Fetched https://github.com/open-telemetry/opentelemetry-swift from cache (1.70s)
Fetched https://github.com/swift-server/async-http-client.git from cache (1.71s)
Computing version for https://github.com/awslabs/aws-crt-swift
Computed https://github.com/awslabs/aws-crt-swift at 0.56.1 (0.55s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.2.3 (0.64s)
Computing version for https://github.com/awslabs/aws-sdk-swift
Computed https://github.com/awslabs/aws-sdk-swift at 1.6.52 (6.39s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.9.1 (0.47s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift
Computed https://github.com/open-telemetry/opentelemetry-swift at 1.17.1 (0.66s)
Fetching https://github.com/apple/swift-protobuf.git
Fetching https://github.com/undefinedlabs/opentracing-objc
Fetching https://github.com/undefinedlabs/Thrift-Swift
Fetching https://github.com/grpc/grpc-swift.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-metrics.git
Fetching https://github.com/apple/swift-nio.git
[1/508] Fetching opentracing-objc
[271/3074] Fetching opentracing-objc, swift-metrics
[451/4894] Fetching opentracing-objc, swift-metrics, swift-atomics
[2010/5546] Fetching opentracing-objc, swift-metrics, swift-atomics, thrift-swift
[5130/56935] Fetching opentracing-objc, swift-metrics, swift-atomics, thrift-swift, grpc-swift
[8631/138963] Fetching opentracing-objc, swift-metrics, swift-atomics, thrift-swift, grpc-swift, swift-nio
[110150/181272] Fetching opentracing-objc, swift-metrics, swift-atomics, thrift-swift, grpc-swift, swift-nio, swift-protobuf
Fetched https://github.com/grpc/grpc-swift.git from cache (2.47s)
Fetched https://github.com/undefinedlabs/Thrift-Swift from cache (2.47s)
[59457/129231] Fetching opentracing-objc, swift-metrics, swift-atomics, swift-nio, swift-protobuf
Fetched https://github.com/apple/swift-metrics.git from cache (4.37s)
Fetched https://github.com/apple/swift-atomics.git from cache (4.37s)
Fetched https://github.com/apple/swift-nio.git from cache (4.37s)
Fetched https://github.com/undefinedlabs/opentracing-objc from cache (4.75s)
Fetched https://github.com/apple/swift-protobuf.git from cache (4.75s)
Computing version for https://github.com/undefinedlabs/opentracing-objc
Computed https://github.com/undefinedlabs/opentracing-objc at 0.5.2 (2.53s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.47s)
Computing version for https://github.com/grpc/grpc-swift.git
Computed https://github.com/grpc/grpc-swift.git at 1.26.1 (0.66s)
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-collections.git
[1/2809] Fetching swift-nio-transport-services
[114/9246] Fetching swift-nio-transport-services, swift-nio-extras
[1962/21157] Fetching swift-nio-transport-services, swift-nio-extras, swift-nio-http2
[2820/40650] Fetching swift-nio-transport-services, swift-nio-extras, swift-nio-http2, swift-collections
[5359/55946] Fetching swift-nio-transport-services, swift-nio-extras, swift-nio-http2, swift-collections, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.67s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.67s)
[27256/37598] Fetching swift-nio-transport-services, swift-collections, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (2.02s)
Fetched https://github.com/apple/swift-collections.git from cache (2.02s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.02s)
Computing version for https://github.com/undefinedlabs/Thrift-Swift
Computed https://github.com/undefinedlabs/Thrift-Swift at 1.1.2 (2.48s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.1 (0.47s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.39.0 (0.50s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.26.0 (0.48s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.34.1 (0.51s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.57s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.32.1 (0.54s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-certificates.git
[1/2574] Fetching swift-service-lifecycle
[207/4266] Fetching swift-service-lifecycle, swift-asn1
[309/5217] Fetching swift-service-lifecycle, swift-asn1, swift-http-types
[443/6421] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers
[1362/13518] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers, swift-certificates
[1422/19613] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers, swift-certificates, swift-async-algorithms
[2371/25665] Fetching swift-service-lifecycle, swift-asn1, swift-http-types, swift-http-structured-headers, swift-certificates, swift-async-algorithms, swift-algorithms
Fetched https://github.com/apple/swift-asn1.git from cache (1.22s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.22s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.25s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.25s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.25s)
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.25s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.25s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.94.0 (0.63s)
Fetching https://github.com/apple/swift-system.git
[1/5552] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.15s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.59s)
Fetching https://github.com/apple/swift-numerics.git
[1/6410] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.11s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.9.1 (0.48s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.1 (0.56s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.0 (0.49s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.1 (2.58s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.50s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.17.1 (0.66s)
Fetching https://github.com/apple/swift-crypto.git
[1/17521] Fetching swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (2.00s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.49s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.6.0 (0.48s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.49s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 4.2.0 (1.18s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.30.3 (0.48s)
Fetching https://github.com/apple/swift-distributed-tracing.git
[1/5648] Fetching swift-distributed-tracing
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (1.16s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.3.1 (0.47s)
Fetching https://github.com/apple/swift-service-context.git
[1/1162] Fetching swift-service-context
Fetched https://github.com/apple/swift-service-context.git from cache (0.95s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (0.45s)
Creating working copy for https://github.com/undefinedlabs/Thrift-Swift
Working copy of https://github.com/undefinedlabs/Thrift-Swift resolved at 1.1.2
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.30.3
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.39.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.1
Creating working copy for https://github.com/undefinedlabs/opentracing-objc
Working copy of https://github.com/undefinedlabs/opentracing-objc resolved at 0.5.2
Creating working copy for https://github.com/apple/swift-metrics.git
Working copy of https://github.com/apple/swift-metrics.git resolved at 2.7.1
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.3.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.9.1
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.2.3
Creating working copy for https://github.com/open-telemetry/opentelemetry-swift
Working copy of https://github.com/open-telemetry/opentelemetry-swift resolved at 1.17.1
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 4.2.0
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.34.1
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.32.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.0
Creating working copy for https://github.com/awslabs/aws-crt-swift
Working copy of https://github.com/awslabs/aws-crt-swift resolved at 0.56.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.94.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.9.1
Creating working copy for https://github.com/awslabs/aws-sdk-swift
Working copy of https://github.com/awslabs/aws-sdk-swift resolved at 1.6.52
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.26.0
Creating working copy for https://github.com/grpc/grpc-swift.git
Working copy of https://github.com/grpc/grpc-swift.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.6.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.17.1
Creating working copy for https://github.com/smithy-lang/smithy-swift
Working copy of https://github.com/smithy-lang/smithy-swift resolved at 0.182.0
BUILD FAILURE 6.0 macosSpm