Build Information
Failed to build SwiftBedrockLibrary, reference main (158dfa), with Swift 6.0 for macOS (SPM) on 9 Feb 2026 21:08:52 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
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
[4/297] Copying PrivacyInfo.xcprivacy
[12/297] Write sources
[12/297] Copying PrivacyInfo.xcprivacy
[12/297] Write sources
[20/297] Copying PrivacyInfo.xcprivacy
[20/297] Write sources
[47/297] Write swift-version-5BDAB9E9C0126B9D.txt
[48/297] Compiling rate_limiters.c
[49/297] Compiling mqtt5_types.c
[50/297] Compiling mqtt5_encoder.c
[51/297] Compiling mqtt5_topic_alias.c
[52/297] Compiling mqtt5_listener.c
[53/297] Compiling mqtt5_options_storage.c
[54/297] Compiling mqtt5_client.c
[55/297] Compiling mqtt5_to_mqtt3_adapter.c
[56/326] Compiling mqtt5_decoder.c
[57/334] Compiling mqtt5_callbacks.c
[58/471] Compiling topic_tree.c
[59/503] Compiling shared.c
[60/503] Compiling mqtt5_utils.c
[61/503] Compiling request_response_subscription_set.c
[62/503] Compiling subscription_manager.c
[63/503] Compiling packets.c
[64/503] Compiling protocol_adapter.c
[65/503] Compiling request_response_client.c
[66/503] Compiling mqtt_subscription_set.c
[67/503] Compiling mqtt311_decoder.c
[68/503] Compiling mqtt.c
[69/503] Compiling fixed_header.c
[70/503] Compiling mqtt311_listener.c
[71/503] Compiling client_impl_shared.c
[72/503] Compiling client_channel_handler.c
[73/503] Compiling client.c
[74/503] Compiling tracing.c
[75/503] Compiling stream.c
[76/503] Compiling statistics.c
[77/503] Compiling tls_channel_handler.c
[78/503] Compiling standard_retry_strategy.c
[79/503] Compiling socket_shared.c
[80/503] Compiling tls_channel_handler_shared.c
[81/503] Compiling socket_channel_handler.c
[82/503] Compiling socket.c
[83/503] Compiling retry_strategy.c
[84/503] Compiling shared_library.c
[85/503] Compiling socket.c
[86/503] Compiling pipe.c
[87/503] Compiling host_resolver.c
[88/503] Compiling pkcs11_tls_op_handler.c
[89/503] Compiling no_retry_strategy.c
[90/503] Compiling pem.c
[91/503] Compiling message_pool.c
[92/503] Compiling pkcs11_lib.c
[93/503] Compiling future.c
[94/503] Compiling exponential_backoff_retry_strategy.c
[95/503] Compiling io.c
[96/503] Compiling host_resolver.c
[97/503] Compiling event_loop.c
[99/503] Compiling Logging MetadataProvider.swift
[100/503] Emitting module Logging
[101/503] Compiling Logging Locks.swift
[102/503] Compiling Logging LogHandler.swift
[103/503] Compiling Logging Logging.swift
[103/503] Compiling channel_bootstrap.c
[104/503] Compiling secure_transport_tls_channel_handler.c
[105/503] Compiling darwin_pki_utils.c
[106/536] Compiling kqueue_event_loop.c
[107/536] Compiling channel.c
[108/536] Compiling nw_socket.c
[109/536] Compiling alpn_handler.c
[110/536] Compiling dispatch_queue_event_loop.c
[111/536] Compiling async_stream.c
[112/536] Compiling websocket_encoder.c
[113/536] Compiling strutil.c
[114/536] Compiling websocket_decoder.c
[115/536] Compiling statistics.c
[116/536] Compiling websocket_bootstrap.c
[117/536] Compiling websocket.c
[118/536] Compiling random_access_set.c
[120/536] Compiling SmithyRetriesAPI RetryErrorInfoProvider.swift
[120/536] Compiling request_response.c
[122/536] Compiling SmithyRetriesAPI RetryErrorType.swift
[122/536] Compiling no_proxy.c
[123/536] Compiling http.c
[124/536] Compiling proxy_strategy.c
[125/536] Compiling proxy_connection.c
[126/536] Compiling hpack_huffman_static.c
[127/536] Compiling hpack_encoder.c
[128/536] Compiling hpack_decoder.c
[130/536] Emitting module Smithy
[130/539] Compiling hpack.c
[131/539] Compiling http2_stream_manager.c
[132/539] Compiling h2_frames.c
[133/539] Compiling h1_stream.c
[134/539] Compiling h2_stream.c
[135/539] Compiling h2_decoder.c
[136/539] Compiling h1_encoder.c
[137/539] Compiling h1_decoder.c
[138/539] Compiling connection_monitor.c
[139/539] Compiling h2_connection.c
[140/539] Compiling connection_manager.c
[141/539] Compiling h1_connection.c
[142/539] Compiling event_stream_rpc_server.c
[143/539] Compiling connection.c
[144/539] Compiling event_stream_rpc.c
[145/539] Compiling huffman_testing.c
[146/539] Compiling event_stream_rpc_client.c
[147/539] Compiling huffman.c
[148/539] Compiling compression.c
[149/539] Compiling event_stream_channel_handler.c
[150/539] Compiling event_stream.c
[152/539] Emitting module OpenTelemetryApi
[152/549] Compiling xml_parser.c
[153/549] Compiling thread_scheduler.c
[154/549] Compiling thread_shared.c
[155/549] Compiling task_scheduler.c
[156/549] Compiling system_info.c
[157/549] Compiling uuid.c
[158/549] Compiling string.c
[159/549] Compiling statistics.c
[160/549] Compiling uri.c
[161/549] Compiling ring_buffer.c
[162/549] Compiling ref_count.c
[163/549] Compiling process_common.c
[164/549] Compiling priority_queue.c
[165/549] Compiling time.c
[166/549] Compiling system_resource_utils.c
[167/549] Compiling rw_lock.c
[168/549] Compiling process.c
[169/549] Compiling thread.c
[170/549] Compiling mutex.c
[171/549] Compiling environment.c
[172/549] Compiling device_random.c
[173/549] Compiling system_info.c
[174/549] Compiling file.c
[175/549] Compiling condition_variable.c
[176/549] Compiling system_info.c
[177/549] Compiling cross_process_lock.c
[178/549] Compiling clock.c
[179/549] Compiling file_direct_io.c
[180/549] Compiling math.c
[181/549] Compiling lru_cache.c
[183/549] Compiling SmithyRetriesAPI RetryStrategy.swift
[184/549] Compiling SmithyRetriesAPI RetryToken.swift
[185/549] Compiling SmithyRetriesAPI RetryStrategyOptions.swift
[186/549] Compiling Smithy BooleanDocument.swift
[187/549] Compiling Smithy ByteDocument.swift
[188/549] Compiling Smithy Document.swift
[189/549] Compiling Smithy DoubleDocument.swift
[190/549] Compiling SmithyTimestamps TimestampSerdeUtils.swift
[191/549] Compiling Smithy TimestampDocument.swift
[192/549] Compiling Smithy ShapeType.swift
[193/549] Compiling Smithy SmithyDocument.swift
[194/549] Emitting module SmithyTimestamps
[195/549] Compiling SmithyTimestamps DateFormatters.swift
[195/549] Compiling log_writer.c
[196/549] Compiling memtrace.c
[197/549] Compiling logging.c
[198/549] Compiling log_formatter.c
[199/549] Compiling linked_hash_table.c
[201/549] Compiling Smithy FloatDocument.swift
[202/549] Compiling Smithy IntegerDocument.swift
[203/549] Compiling Smithy ListDocument.swift
[204/549] Compiling Smithy LongDocument.swift
[205/549] Compiling Smithy DocumentError.swift
[206/549] Compiling Smithy BigDecimalDocument.swift
[207/549] Compiling Smithy BigIntegerDocument.swift
[208/549] Compiling Smithy BlobDocument.swift
[209/549] Compiling Smithy LogAgent.swift
[210/549] Compiling Smithy LogAgentLevel.swift
[211/549] Compiling Smithy SwiftLog+LogAgent.swift
[212/549] Compiling Smithy RequestMessage.swift
[213/549] Compiling Smithy RequestMessageBuilder.swift
[214/549] Compiling Smithy RequestMessageSerializer.swift
[215/549] Compiling Smithy NullDocument.swift
[216/549] Compiling Smithy ShortDocument.swift
[217/549] Compiling Smithy StringDocument.swift
[218/549] Compiling Smithy StringMapDocument.swift
[219/549] Compiling Smithy Attribute.swift
[220/549] Compiling Smithy ByteStream.swift
[221/549] Compiling Smithy ClientError.swift
[222/549] Compiling Smithy Context.swift
[223/549] Compiling Smithy ResponseMessage.swift
[224/549] Compiling Smithy ResponseMessageDeserializer.swift
[225/549] Compiling Smithy Stream.swift
[225/549] Compiling lifo_cache.c
[226/549] Compiling log_channel.c
[238/549] Compiling Smithy URI.swift
[240/549] Compiling Smithy URIQueryItem.swift
[241/549] Compiling Smithy URIScheme.swift
[242/549] Compiling OpenTelemetryApi DefaultStableMeter.swift
[243/549] Compiling OpenTelemetryApi DefaultStableMeterProvider.swift
[244/549] Compiling OpenTelemetryApi DoubleCounter.swift
[245/549] Compiling OpenTelemetryApi DoubleCounterBuilder.swift
[246/549] Compiling OpenTelemetryApi DoubleGauge.swift
[247/549] Compiling OpenTelemetryApi DoubleGaugeBuilder.swift
[248/549] Compiling OpenTelemetryApi DoubleHistogram.swift
[249/549] Compiling OpenTelemetryApi DoubleHistogramBuilder.swift
[250/549] Compiling OpenTelemetryApi DoubleUpDownCounter.swift
[251/549] Compiling OpenTelemetryApi DoubleUpDownCounterBuilder.swift
[252/549] Compiling OpenTelemetryApi LongCounter.swift
[255/549] Compiling OpenTelemetryApi Severity.swift
[256/549] Compiling OpenTelemetryApi DefaultMeterProvider.swift
[257/549] Compiling OpenTelemetryApi BoundMeasureMetric.swift
[258/549] Compiling OpenTelemetryApi DoubleObserverMetric.swift
[259/549] Compiling OpenTelemetryApi DoubleObserverMetricHandle.swift
[260/549] Compiling OpenTelemetryApi IntObserverMetric.swift
[261/549] Compiling OpenTelemetryApi IntObserverMetricHandle.swift
[262/549] Compiling OpenTelemetryApi MeasureMetric.swift
[263/549] Compiling OpenTelemetryApi BoundHistogramMetric.swift
[264/549] Compiling OpenTelemetryApi HistogramMetric.swift
[265/549] Compiling OpenTelemetryApi BoundCounterMetric.swift
[266/549] Compiling OpenTelemetryApi CounterMetric.swift
[267/549] Compiling OpenTelemetryApi LabelSet.swift
[268/549] Compiling OpenTelemetryApi Meter.swift
[269/549] Compiling OpenTelemetryApi MeterProvider.swift
[270/549] Compiling OpenTelemetryApi ProxyMeter.swift
[271/549] Compiling OpenTelemetryApi BoundRawCounterMetric.swift
[272/549] Compiling OpenTelemetryApi BoundRawHistogramMetric.swift
[273/549] Compiling OpenTelemetryApi RawCounterMetric.swift
[274/549] Compiling OpenTelemetryApi RawHistogramMetric.swift
[275/549] Compiling SmithyRetriesAPI RetryBackoffStrategy.swift
[276/549] Compiling SmithyRetriesAPI RetryError.swift
[277/549] Emitting module SmithyRetriesAPI
[278/549] Compiling SmithyRetriesAPI RetryErrorInfo.swift
[279/549] Compiling OpenTelemetryApi LongCounterBuilder.swift
[280/549] Compiling OpenTelemetryApi LongGauge.swift
[281/549] Compiling OpenTelemetryApi LongGaugeBuilder.swift
[282/549] Compiling OpenTelemetryApi LongHistogram.swift
[283/549] Compiling OpenTelemetryApi LongHistogramBuilder.swift
[284/549] Compiling OpenTelemetryApi LongUpDownCounter.swift
[285/549] Compiling OpenTelemetryApi LongUpDownCounterBuilder.swift
[286/549] Compiling OpenTelemetryApi MeterBuilder.swift
[287/549] Compiling OpenTelemetryApi ObservableDoubleCounter.swift
[288/549] Compiling OpenTelemetryApi ObservableDoubleGauge.swift
[289/549] Compiling OpenTelemetryApi ObservableDoubleMeasurement.swift
[289/549] Compiling fifo_cache.c
[290/549] Compiling json.c
[291/549] Compiling host_utils.c
[292/549] Compiling tags.c
[293/549] Compiling file.c
[294/576] Compiling hash_table.c
[296/586] Emitting module DataCompression
[297/586] Compiling DataCompression DataCompression.swift
[298/594] Emitting module SmithySerialization
[299/594] Compiling SmithySerialization ResponseDecodingError.swift
[300/606] Compiling SmithyHTTPAPI ALPNProtocol.swift
[301/606] Compiling SmithyHTTPAPI Context+HTTP.swift
[302/606] Compiling SmithyHTTPAPI Endpoint.swift
[303/606] Compiling SmithyHTTPAPI EndpointPropertyValue.swift
[304/606] Compiling SmithyTelemetryAPI LoggerProvider.swift
[305/606] Compiling SmithyTelemetryAPI AsyncMeasurement.swift
[306/606] Compiling SmithyTelemetryAPI Histogram.swift
[307/606] Compiling SmithyTelemetryAPI Meter.swift
[308/606] Compiling SmithyTelemetryAPI MeterProvider.swift
[309/606] Compiling SmithyTelemetryAPI MonotonicCounter.swift
[310/606] Compiling SmithyTelemetryAPI SpanKind.swift
[311/606] Compiling SmithyTelemetryAPI TraceSpan.swift
[312/606] Compiling SmithyTelemetryAPI UpDownCounter.swift
[313/606] Compiling SmithyTelemetryAPI TelemetryProvider.swift
[321/616] Compiling strings.c
[322/620] Compiling streaming.c
[324/620] Compiling SmithyIdentityAPI IdentityResolver.swift
[334/629] Compiling serialization.c
[336/629] Compiling SmithyTelemetryAPI TraceSpanStatus.swift
[337/629] Compiling SmithyTelemetryAPI Tracer.swift
[358/630] Compiling SmithyReadWrite WritingClosure.swift
[358/630] Compiling maps.c
[360/630] Emitting module SmithyReadWrite
[361/630] Compiling SmithyReadWrite WireResponseOutputClosure.swift
[362/630] Compiling SmithyReadWrite SmithyWriter.swift
[363/630] Compiling SmithyReadWrite DataProviding.swift
[364/630] Compiling SmithyReadWrite SmithyReader.swift
[365/630] Compiling SmithyReadWrite WireResponseErrorClosure.swift
[366/630] Compiling SmithyReadWrite ReadingClosure.swift
[366/630] Compiling ints.c
[368/630] Compiling SmithyIdentityAPI Identity.swift
[369/630] Compiling SmithyIdentityAPI Context+FlowType.swift
[370/630] Compiling SmithyIdentityAPI FlowType.swift
[371/630] Compiling SmithyIdentityAPI Context+IdentityResolver.swift
[374/630] Emitting module SmithyTelemetryAPI
[376/630] Compiling unicode.c
[378/630] Compiling SmithyIdentityAPI ClientConfigDefaultIdentityResolver.swift
[379/630] Emitting module SmithyIdentityAPI
[380/630] Compiling SmithyIdentityAPI Context+AuthSchemePreference.swift
[381/630] Compiling SmithyEventStreamsAPI UnmarshalClosure.swift
[382/630] Compiling OpenTelemetryApi ObservableDoubleUpDownCounter.swift
[383/630] Compiling OpenTelemetryApi ObservableLongCounter.swift
[384/630] Compiling OpenTelemetryApi ObservableLongGauge.swift
[385/630] Compiling OpenTelemetryApi ObservableLongMeasurement.swift
[386/630] Compiling OpenTelemetryApi ObservableLongUpDownCounter.swift
[387/630] Compiling OpenTelemetryApi StableMeter.swift
[388/630] Compiling OpenTelemetryApi StableMeterProvider.swift
[389/630] Compiling OpenTelemetryApi OpenTelemetry.swift
[390/630] Compiling OpenTelemetryApi ContextPropagators.swift
[391/630] Compiling SwiftProtobuf duration.pb.swift
[392/630] Compiling SwiftProtobuf empty.pb.swift
[393/630] Compiling SwiftProtobuf field_mask.pb.swift
[394/630] Compiling SwiftProtobuf source_context.pb.swift
[395/630] Compiling SwiftProtobuf struct.pb.swift
[396/630] Compiling SwiftProtobuf timestamp.pb.swift
[397/630] Compiling SwiftProtobuf type.pb.swift
[398/630] Compiling SwiftProtobuf wrappers.pb.swift
[399/630] Compiling SwiftProtobuf resource_bundle_accessor.swift
[400/630] Compiling OpenTelemetryApi W3CTraceContextPropagator.swift
[401/630] Compiling OpenTelemetryApi SemanticAttributes.swift
[402/630] Compiling OpenTelemetryApi Span.swift
[403/630] Compiling OpenTelemetryApi SpanBuilder.swift
[404/630] Compiling SmithyRetries ExponentialBackOffJitterType.swift
[405/630] Compiling SmithyRetries ExponentialBackoffStrategy.swift
[406/630] Compiling SmithyRetries ExponentialBackoffStrategyOptions.swift
[407/630] Compiling SmithyChecksumsAPI Context+Checksum.swift
[408/630] Compiling OpenTelemetryApi SpanContext.swift
[409/630] Compiling OpenTelemetryApi SpanException.swift
[410/630] Compiling OpenTelemetryApi SpanId.swift
[411/630] Compiling OpenTelemetryApi SpanKind.swift
[412/630] Compiling OpenTelemetryApi Status.swift
[413/630] Compiling OpenTelemetryApi TraceFlags.swift
[414/630] Compiling OpenTelemetryApi TraceId.swift
[415/630] Compiling OpenTelemetryApi TraceState.swift
[416/630] Compiling OpenTelemetryApi Tracer.swift
[417/630] Compiling OpenTelemetryApi TracerProvider.swift
[418/639] Compiling SmithyEventStreamsAPI MessageEncoder.swift
[419/639] Compiling SmithyEventStreamsAPI MessageType.swift
[420/639] Compiling SmithyChecksumsAPI Checksum.swift
[421/639] Emitting module SmithyChecksumsAPI
[422/639] Compiling SmithyChecksumsAPI ChecksumAlgorithm.swift
[422/639] Compiling stack.c
[424/639] Compiling SmithyRetries RetryQuotaRepository.swift
[425/639] Compiling SmithyRetries DefaultRetryStrategy.swift
[426/639] Compiling SmithyRetries RetryQuota.swift
[427/639] Compiling SmithyRetries DefaultRetryStrategy+Error.swift
[428/639] Compiling SmithyRetries DefaultRetryToken.swift
[429/639] Emitting module SmithyRetries
[430/639] Compiling SmithyRetries ClientSideRateLimiter.swift
[430/639] Compiling memory_utils.c
[431/648] Compiling encoders.c
[432/648] Compiling loaders.c
[434/648] Compiling SmithyEventStreamsAPI MessageDecoder.swift
[435/648] Compiling SmithyEventStreamsAPI MarshalClosure.swift
[436/648] Compiling SmithyEventStreamsAPI Header.swift
[437/648] Emitting module SmithyEventStreamsAPI
[438/648] Compiling SmithyEventStreamsAPI Context+EventStreamsAPI.swift
[439/648] Compiling SmithyEventStreamsAPI Message.swift
[440/648] Compiling SmithyEventStreamsAPI EventStreamError.swift
[440/648] Compiling encoding.c
[442/648] Compiling SmithyTelemetryAPI TracerProvider.swift
[442/648] Compiling floats_ctrls.c
[443/648] Compiling builder_callbacks.c
[444/648] Compiling common.c
[445/648] Compiling callbacks.c
[446/648] Compiling arrays.c
[447/648] Compiling bytestrings.c
[448/648] Compiling allocators.c
[449/648] Compiling cbor.c
[450/654] Compiling error.c
[462/829] Compiling OpenTelemetrySdk DoubleObservableGaugeHandle.swift
[463/829] Compiling OpenTelemetrySdk DoubleObservableGaugeSdk.swift
[464/829] Compiling OpenTelemetrySdk DoubleObserverMetricHandle.swift
[465/829] Compiling OpenTelemetrySdk DoubleObserverMetricHandleSdk.swift
[466/829] Compiling OpenTelemetrySdk AggregationType.swift
[467/829] Compiling OpenTelemetrySdk Metric.swift
[468/829] Compiling OpenTelemetrySdk MetricData.swift
[469/829] Compiling OpenTelemetrySdk MetricExporter.swift
[470/829] Compiling OpenTelemetrySdk MetricProcessor.swift
[471/829] Compiling OpenTelemetrySdk MetricProcessorSdk.swift
[471/829] Compiling encoding.c
[473/829] Emitting module SwiftProtobuf
[474/829] Compiling OpenTelemetrySdk LongLastValueAggregator.swift
[475/829] Compiling OpenTelemetrySdk LongSumAggregator.swift
[476/829] Compiling OpenTelemetrySdk StableAggregator.swift
[477/829] Compiling OpenTelemetrySdk SumAggregation.swift
[478/829] Compiling OpenTelemetrySdk SumAggregator.swift
[479/829] Compiling OpenTelemetrySdk CallbackRegistration.swift
[480/829] Compiling OpenTelemetrySdk ExemplarData.swift
[481/829] Compiling OpenTelemetrySdk Base2ExponentialHistogramIndexer.swift
[482/829] Compiling OpenTelemetrySdk DoubleBase2ExponentialHistogramBuckets.swift
[483/829] Compiling OpenTelemetrySdk MultiWritableMetricStorage.swift
[484/829] Compiling OpenTelemetrySdk StableMeterProviderSharedState.swift
[485/829] Compiling OpenTelemetrySdk StableMeterSharedState.swift
[486/829] Compiling OpenTelemetrySdk StableObservableMeasurement.swift
[487/829] Compiling OpenTelemetrySdk SynchronousMetricStorage.swift
[488/829] Compiling OpenTelemetrySdk ValueAtQuantile.swift
[489/829] Compiling OpenTelemetrySdk AttributeProcessor.swift
[490/829] Compiling OpenTelemetrySdk RegisteredView.swift
[491/829] Compiling OpenTelemetrySdk StableView.swift
[492/829] Compiling OpenTelemetrySdk StableViewRegistry.swift
[492/829] Compiling device_random.c
[493/829] Compiling cJSON.c
[497/829] Compiling SmithyHTTPAPI HTTPStatusCode.swift
[500/829] Compiling SmithyHTTPAPI HTTPResponse.swift
[501/829] Compiling SmithyHTTPAPI HTTPRequest.swift
[502/829] Compiling SmithyHTTPAPI HTTPClient.swift
[503/829] Compiling SmithyHTTPAPI HTTPMethodType.swift
[504/829] Compiling SmithyHTTPAPI HTTPClientError.swift
[505/829] Emitting module SmithyHTTPAPI
[506/829] Compiling SmithyHTTPAPI Headers.swift
[506/830] Compiling condition_variable.c
[507/830] Compiling date_time.c
[508/830] Compiling command_line_parser.c
[509/830] Compiling common.c
[511/830] Compiling SmithyEventStreamsAuthAPI MessageSigner.swift
[511/830] Compiling cache.c
[512/830] Compiling cbor.c
[514/830] Compiling SmithyEventStreamsAuthAPI MessageEncoderStream.swift
[515/830] Emitting module SmithyEventStreamsAuthAPI
[516/830] Compiling SmithyEventStreamsAuthAPI MessageDecoderStream.swift
[517/830] Compiling SmithyEventStreamsAuthAPI MessageDataSigner.swift
[518/830] Compiling SmithyEventStreamsAuthAPI Context+EventStreamsAuthAPI.swift
[518/830] Compiling assert.c
[520/830] Emitting module SmithyFormURL
[521/830] Compiling SmithyFormURL NodeInfo.swift
[522/830] Compiling SmithyFormURL Writer.swift
[522/830] Compiling codegen.c
[523/830] Compiling cpuid.c
[524/830] Compiling array_list.c
[526/830] Compiling SmithyJSON Reader+JSONDeserialization.swift
[527/830] Compiling SmithyJSON Writer.swift
[528/830] Compiling SmithyJSON Writer+JSONSerialization.swift
[528/830] Compiling allocator_sba.c
[530/830] Compiling SmithyHTTPAPI URL+getQueryItems.swift
[530/830] Compiling allocator.c
[531/830] Compiling byte_buf.c
[532/830] Compiling crc_util.c
[534/830] Compiling SmithyJSON NodeInfo.swift
[535/830] Compiling SmithyJSON Document+Init.swift
[536/830] Compiling SmithyJSON Document+JSONUtils.swift
[537/830] Compiling SmithyJSON JSONNode.swift
[538/830] Emitting module SmithyJSON
[539/830] Compiling SmithyJSON Reader.swift
[539/830] Compiling crc_sw.c
[540/830] Compiling crc64_sw.c
[541/830] Compiling crc64.c
[542/830] Compiling crc32.c
[543/830] Compiling checksums.c
[544/830] Compiling symmetric_cipher.c
[545/830] Compiling ref_hkdf.c
[546/830] Compiling ed25519_noop.c
[547/852] Compiling hkdf.c
[548/852] Compiling ed25519.c
[549/852] Compiling hmac.c
[550/852] Compiling rsa.c
[551/852] Compiling hash.c
[552/852] Compiling securityframework_ecc.c
[553/852] Compiling ecc.c
[555/852] Compiling SmithyXML Writer.swift
[556/852] Compiling SmithyXML Writer+libxml2.swift
[556/852] Compiling securityframework_rsa.c
[557/852] Compiling der.c
[558/852] Compiling commoncrypto_sha256.c
[559/852] Compiling commoncrypto_platform_init.c
[560/852] Compiling commoncrypto_sha1.c
[561/852] Compiling commoncrypto_md5.c
[562/852] Compiling commoncrypto_sha512.c
[563/852] Compiling commoncrypto_hmac.c
[565/852] Compiling SmithyXML NodeInfo.swift
[566/852] Emitting module SmithyXML
[567/852] Compiling SmithyXML Reader+libxml2.swift
[568/852] Compiling SmithyXML Reader.swift
[568/852] Compiling cal.c
[569/852] Compiling commoncrypto_aes.c
[570/852] Compiling token_provider_sso_profile.c
[571/852] Compiling token_provider_sso_session.c
[572/852] Compiling sigv4_http_request.c
[573/852] Compiling signing_config.c
[574/852] Compiling signing_result.c
[575/852] Compiling sso_token_utils.c
[576/852] Compiling signing.c
[577/852] Compiling signable_chunk.c
[578/852] Compiling signable_trailer.c
[579/852] Compiling signable_http_request.c
[580/852] Compiling signable.c
[582/852] Compiling SmithyHTTPAuthAPI AWSSignedBodyHeader.swift
[583/852] Compiling SmithyHTTPAuthAPI AWSSignedBodyValue.swift
[584/852] Compiling SmithyHTTPAuthAPI Signer.swift
[585/852] Compiling SmithyHTTPAuthAPI AWSSignatureType.swift
[586/852] Compiling SmithyHTTPAuthAPI SigningAlgorithm.swift
[586/853] Compiling key_derivation.c
[587/853] Compiling credentials_provider_x509.c
[589/853] Compiling SmithyHTTPAuthAPI SigningPropertyKeys.swift
[590/853] Compiling SmithyHTTPAuthAPI IdentityResolverConfiguration.swift
[591/853] Compiling SmithyHTTPAuthAPI Context+HTTPAuth.swift
[592/853] Compiling SmithyHTTPAuthAPI Context+RequestSignature.swift
[593/853] Emitting module SmithyHTTPAuthAPI
[594/853] Compiling SmithyHTTPAuthAPI AuthSchemeResolver.swift
[595/853] Compiling SmithyHTTPAuthAPI AuthSchemeResolverParameters.swift
[596/853] Compiling SmithyHTTPAuthAPI Context+Chunked.swift
[597/853] Compiling SmithyHTTPAuthAPI Context+EstimatedSkew.swift
[598/853] Compiling SmithyHTTPAuthAPI AuthOption.swift
[599/853] Compiling SmithyHTTPAuthAPI AuthScheme.swift
[600/853] Compiling SmithyHTTPAuthAPI ReprioritizeAuthOptions.swift
[601/853] Compiling SmithyHTTPAuthAPI SelectedAuthScheme.swift
[601/853] Compiling login_token_utils.c
[603/853] Emitting module SmithyHTTPClientAPI
[604/853] Compiling SmithyHTTPClientAPI HttpClientConfiguration.swift
[605/853] Compiling SmithyHTTPClientAPI TLSConfiguration.swift
[606/853] Compiling SmithyHTTPClientAPI HttpTelemetry.swift
[606/853] Compiling credentials_utils.c
[607/853] Compiling credentials_provider_sts_web_identity.c
[608/853] Compiling credentials_provider_static.c
[609/853] Compiling credentials_provider_sts.c
[610/853] Compiling credentials_provider_sso.c
[611/853] Compiling credentials_provider_process.c
[612/853] Compiling credentials_provider_login.c
[613/853] Compiling credentials_provider_environment.c
[614/853] Compiling credentials_provider_imds.c
[615/853] Compiling credentials_provider_profile.c
[616/853] Compiling credentials_provider_delegate.c
[617/853] Compiling credentials_provider_ecs.c
[618/853] Compiling credentials_provider_default_chain.c
[619/853] Compiling credentials_provider_chain.c
[620/853] Compiling credentials_provider_cached.c
[621/853] Compiling credentials_provider_anonymous.c
[622/853] Compiling credentials_provider_cognito.c
[623/853] Compiling credentials.c
[624/853] Write sources
[631/853] Compiling aws_profile.c
[632/853] Write sources
[638/853] Compiling SmithyHTTPAuthAPI SigningFlags.swift
[638/853] Compiling auth.c
[639/853] Compiling aws_http_credentials_provider.c
[640/853] Compiling aws_signing.c
[641/853] Compiling aws_imds_client.c
[643/859] Compiling AWSSDKDynamic Partitions.swift
[644/859] Compiling AWSSDKDynamic PackageVersion.swift
[645/859] Emitting module AWSSDKDynamic
[646/932] Compiling OpenTelemetrySdk HistogramExemplarReservoir.swift
[647/932] Compiling OpenTelemetrySdk LongToDoubleExemplarReservoir.swift
[648/932] Compiling OpenTelemetrySdk ReservoirCell.swift
[649/932] Compiling OpenTelemetrySdk ReservoirCellSelector.swift
[650/932] Compiling OpenTelemetrySdk CollectionRegistration.swift
[651/932] Compiling OpenTelemetrySdk MetricProducer.swift
[652/932] Compiling OpenTelemetrySdk StableMetricExporter.swift
[653/932] Compiling OpenTelemetrySdk StablePeriodicMeterReaderBuilder.swift
[654/932] Compiling OpenTelemetrySdk StablePeriodicMetricReaderSdk.swift
[655/932] Compiling OpenTelemetrySdk Instrument.swift
[656/932] Compiling OpenTelemetrySdk InstrumentBuilder.swift
[657/932] Compiling OpenTelemetrySdk InstrumentDescriptor.swift
[658/932] Compiling OpenTelemetrySdk InstrumentSelector.swift
[659/932] Compiling OpenTelemetrySdk InstrumentSelectorBuilder.swift
[660/932] Compiling OpenTelemetrySdk InstrumentType.swift
[661/932] Compiling OpenTelemetrySdk InstrumentValueType.swift
[662/932] Compiling OpenTelemetrySdk LongCounterMeterBuilderSdk.swift
[663/932] Compiling OpenTelemetrySdk LongCounterSdk.swift
[664/932] Compiling OpenTelemetrySdk LongGaugeBuilderSdk.swift
[665/951] Compiling AWSSDKIdentityAPI S3ExpressIdentityResolver.swift
[666/951] Emitting module AWSSDKIdentityAPI
[667/951] Compiling AWSSDKIdentityAPI S3ExpressIdentity.swift
[668/951] Compiling OpenTelemetrySdk Clock.swift
[669/951] Compiling OpenTelemetrySdk ComponentRegistry.swift
[670/951] Compiling OpenTelemetrySdk ExportResult.swift
[671/951] Compiling OpenTelemetrySdk InstrumentationLibraryInfo.swift
[672/951] Compiling OpenTelemetrySdk WorkerThread.swift
[673/951] Compiling OpenTelemetrySdk autoreleasepool.swift
[674/951] Compiling OpenTelemetrySdk Locks.swift
[675/951] Compiling OpenTelemetrySdk MillisClock.swift
[676/951] Compiling OpenTelemetrySdk MonotonicClock.swift
[677/951] Compiling OpenTelemetrySdk ReadableLogRecord.swift
[678/951] Compiling OpenTelemetrySdk InMemoryLogRecordExporter.swift
[679/951] Compiling OpenTelemetrySdk LogRecordExporter.swift
[680/951] Compiling OpenTelemetrySdk MultiLogRecordExporter.swift
[681/951] Compiling OpenTelemetrySdk NoopLogRecordExporter.swift
[682/951] Compiling OpenTelemetrySdk LogLimits.swift
[683/951] Compiling OpenTelemetrySdk LogRecordBuilderSdk.swift
[684/951] Compiling OpenTelemetrySdk LoggerBuilderSdk.swift
[685/951] Compiling OpenTelemetrySdk LoggerProviderBuilder.swift
[686/951] Compiling OpenTelemetrySdk LoggerProviderSdk.swift
[687/951] Compiling OpenTelemetrySdk LoggerSdk.swift
[688/951] Compiling OpenTelemetrySdk NoopStableMeterProviderBuilder.swift
[689/951] Compiling OpenTelemetrySdk ObservableInstrumentSdk.swift
[690/951] Compiling OpenTelemetrySdk RegisteredReader.swift
[691/951] Compiling OpenTelemetrySdk StableMeterProviderBuilder.swift
[692/951] Compiling OpenTelemetrySdk StableMeterProviderSdk.swift
[693/951] Compiling OpenTelemetrySdk StableMeterSdk.swift
[694/951] Compiling OpenTelemetrySdk StableMetricReader.swift
[695/951] Compiling OpenTelemetrySdk AsynchronousMetricStorage.swift
[696/951] Compiling OpenTelemetrySdk EmptyMetricStorage.swift
[697/951] Compiling AwsCommonRuntimeKit EC.swift
[698/951] Compiling AwsCommonRuntimeKit Hash.swift
[699/951] Compiling AwsCommonRuntimeKit Lock.swift
[700/951] Compiling AwsCommonRuntimeKit Logger.swift
[701/951] Compiling AwsCommonRuntimeKit ShutdownCallbackCore.swift
[702/951] Compiling AwsCommonRuntimeKit Utilities.swift
[703/951] Compiling AwsCommonRuntimeKit EventStreamHeader.swift
[704/951] Compiling AwsCommonRuntimeKit EventStreamMessage.swift
[705/951] Compiling AwsCommonRuntimeKit AWSString.swift
[706/951] Compiling AwsCommonRuntimeKit Allocator.swift
[707/951] Compiling AwsCommonRuntimeKit ByteBuffer.swift
[708/951] Compiling AwsCommonRuntimeKit CBOR.swift
[709/951] Compiling AwsCommonRuntimeKit CStruct.swift
[710/951] Compiling AwsCommonRuntimeKit Checksums.swift
[711/951] Compiling AwsCommonRuntimeKit CommonRuntimeError.swift
[712/951] Compiling AwsCommonRuntimeKit ContinuationCore.swift
[713/951] Compiling AwsCommonRuntimeKit TLSSecitemOptions.swift
[714/951] Compiling AwsCommonRuntimeKit ExponentialBackoffJitterMode.swift
[715/951] Compiling AwsCommonRuntimeKit RetryError.swift
[716/951] Compiling AwsCommonRuntimeKit RetryStrategy.swift
[717/951] Emitting module OpenTelemetrySdk
[718/951] Compiling OpenTelemetrySdk DoublePointData.swift
[719/951] Compiling OpenTelemetrySdk EmptyExponentialHistogramBuckets.swift
[720/951] Compiling OpenTelemetrySdk ExponentialHistogramBuckets.swift
[721/951] Compiling OpenTelemetrySdk ExponentialHistogramPointData.swift
[722/951] Compiling OpenTelemetrySdk HistogramPointData.swift
[723/951] Compiling OpenTelemetrySdk LongPointData.swift
[724/951] Compiling OpenTelemetrySdk SummaryPointData.swift
[725/951] Compiling OpenTelemetrySdk PointData.swift
[726/951] Compiling OpenTelemetrySdk StableMetricData.swift
[727/951] Compiling OpenTelemetrySdk DoubleCounterMeterBuilderSdk.swift
[728/951] Compiling OpenTelemetrySdk DoubleGaugeBuilderSdk.swift
[729/951] Compiling OpenTelemetrySdk DoubleGaugeSdk.swift
[730/951] Compiling OpenTelemetrySdk DoubleHistogramMeterBuilderSdk.swift
[731/951] Compiling OpenTelemetrySdk DoubleHistogramMeterSdk.swift
[732/951] Compiling OpenTelemetrySdk DoubleUpDownCounterBuilderSdk.swift
[733/951] Compiling OpenTelemetrySdk DoubleUpDownCounterSdk.swift
[734/951] Compiling OpenTelemetrySdk ExemplarFilter.swift
[735/951] Compiling OpenTelemetrySdk ExemplarReservoir.swift
[736/951] Compiling OpenTelemetrySdk FilteredExemplarReservoir.swift
[737/951] Compiling AwsCommonRuntimeKit HTTP2ClientConnection.swift
[738/951] Compiling AwsCommonRuntimeKit HTTP2Error.swift
[739/951] Compiling AwsCommonRuntimeKit HTTP2Settings.swift
[740/951] Compiling AwsCommonRuntimeKit HTTP2Stream.swift
[741/951] Compiling AwsCommonRuntimeKit HTTP2StreamManager.swift
[742/951] Compiling AwsCommonRuntimeKit HTTP2StreamManagerOptions.swift
[743/951] Compiling AwsCommonRuntimeKit SocketDomain.swift
[744/951] Compiling AwsCommonRuntimeKit SocketOptions.swift
[745/951] Compiling AwsCommonRuntimeKit SocketType.swift
[746/951] Compiling AwsCommonRuntimeKit Stream.swift
[747/951] Compiling AwsCommonRuntimeKit StreamCore.swift
[748/951] Compiling AwsCommonRuntimeKit TLSConnectionOptions.swift
[749/951] Compiling AwsCommonRuntimeKit TLSContext.swift
[750/951] Compiling AwsCommonRuntimeKit TLSContextOptions.swift
[751/951] Compiling OpenTelemetrySdk BoundHistogramMetricSdk.swift
[752/951] Compiling OpenTelemetrySdk BoundHistogramMetricSdkBase.swift
[753/951] Compiling OpenTelemetrySdk BoundMeasureMetricSdk.swift
[754/951] Compiling OpenTelemetrySdk BoundMeasureMetricSdkBase.swift
[755/951] Compiling OpenTelemetrySdk CounterMetricSdk.swift
[756/951] Compiling OpenTelemetrySdk CounterMetricSdkBase.swift
[757/951] Compiling OpenTelemetrySdk LongGaugeSdk.swift
[758/951] Compiling OpenTelemetrySdk LongHistogramMeterBuilderSdk.swift
[759/951] Compiling OpenTelemetrySdk LongHistogramMeterSdk.swift
[760/951] Compiling OpenTelemetrySdk LongUpDownCounterBuilderSdk.swift
[761/951] Compiling OpenTelemetrySdk LongUpDownCounterSdk.swift
[762/951] Compiling OpenTelemetrySdk Measurement.swift
[763/951] Compiling OpenTelemetrySdk MeterBuilderSdk.swift
[764/951] Compiling OpenTelemetrySdk MetricDescriptor.swift
[774/951] Compiling OpenTelemetrySdk MetricStorage.swift
[775/951] Compiling OpenTelemetrySdk MetricStorageRegistry.swift
[776/951] Compiling OpenTelemetrySdk MeterProviderSdk.swift
[777/951] Compiling OpenTelemetrySdk MeterSdk.swift
[778/951] Compiling OpenTelemetrySdk MeterSharedState.swift
[779/951] Compiling OpenTelemetrySdk BoundRawCounterMetricSdk.swift
[780/951] Compiling OpenTelemetrySdk BoundRawCounterMetricSdkBase.swift
[781/951] Compiling OpenTelemetrySdk BoundRawHistogramMetricSdk.swift
[782/951] Compiling OpenTelemetrySdk BoundRawHistogramMetricSdkBase.swift
[783/951] Compiling OpenTelemetrySdk RawCounterMetricSdk.swift
[784/951] Compiling OpenTelemetrySdk RawCounterMetricSdkBase.swift
[785/951] Compiling OpenTelemetrySdk RawHistogramMetricSdk.swift
[786/951] Compiling OpenTelemetrySdk RawHistogramMetricSdkBase.swift
[787/951] Compiling OpenTelemetrySdk RecordStatus.swift
[788/951] Compiling OpenTelemetrySdk AdaptingCircularBufferCounter.swift
[789/951] Compiling OpenTelemetrySdk AdaptingIntegerArray.swift
[790/951] Compiling OpenTelemetrySdk Aggregation.swift
[791/951] Compiling OpenTelemetrySdk AggregationSelector.swift
[792/951] Compiling OpenTelemetrySdk AggregationTemporality.swift
[793/951] Compiling OpenTelemetrySdk AggregatorFactory.swift
[794/951] Compiling OpenTelemetrySdk AggregatorHandle.swift
[795/951] Compiling AwsCommonRuntimeKit RetryToken.swift
[796/951] Compiling AwsCommonRuntimeKit Mqtt5Client.swift
[797/951] Compiling AwsCommonRuntimeKit Mqtt5Enums.swift
[798/951] Compiling AwsCommonRuntimeKit Mqtt5Options.swift
[799/951] Compiling AwsCommonRuntimeKit HTTPProxyAuthenticationType.swift
[800/951] Compiling AwsCommonRuntimeKit HTTPProxyConnectionType.swift
[801/951] Compiling AwsCommonRuntimeKit HTTPProxyEnvSettings.swift
[802/951] Compiling AwsCommonRuntimeKit HTTPProxyEnvType.swift
[803/951] Compiling AwsCommonRuntimeKit HTTPProxyOptions.swift
[804/951] Compiling AwsCommonRuntimeKit HTTPRequest.swift
[805/951] Compiling AwsCommonRuntimeKit HTTPRequestBase.swift
[806/951] Compiling AwsCommonRuntimeKit HTTPRequestOptions.swift
[807/951] Compiling AwsCommonRuntimeKit HTTPClientConnection.swift
[808/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManager.swift
[809/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerCallbackCore.swift
[810/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionManagerMetrics.swift
[811/951] Compiling AwsCommonRuntimeKit HTTPClientConnectionOptions.swift
[812/951] Compiling AwsCommonRuntimeKit HTTPHeader.swift
[813/951] Compiling AwsCommonRuntimeKit HTTPHeaderBlock.swift
[814/951] Compiling AwsCommonRuntimeKit HTTPMonitoringOptions.swift
[815/951] Compiling AwsCommonRuntimeKit HTTPStream.swift
[816/951] Compiling AwsCommonRuntimeKit HTTPStreamCallbackCore.swift
[817/951] Compiling AwsCommonRuntimeKit HTTPVersion.swift
[818/951] Compiling AwsCommonRuntimeKit ClientBootstrap.swift
[819/951] Compiling AwsCommonRuntimeKit EventLoopGroup.swift
[820/951] Compiling AwsCommonRuntimeKit HostAddress.swift
[821/951] Compiling AwsCommonRuntimeKit HostAddressType.swift
[822/951] Compiling AwsCommonRuntimeKit HostResolver.swift
[823/951] Compiling AwsCommonRuntimeKit CommonRuntimeKit.swift
[824/951] Compiling AwsCommonRuntimeKit Credentials.swift
[825/951] Compiling AwsCommonRuntimeKit CredentialsProvider.swift
[826/951] Compiling AwsCommonRuntimeKit IAMProfile.swift
[827/951] Compiling AwsCommonRuntimeKit IMDSClient.swift
[828/951] Compiling AwsCommonRuntimeKit IMDSInstanceInfo.swift
[829/951] Compiling AwsCommonRuntimeKit Signer.swift
[830/951] Compiling AwsCommonRuntimeKit SigningConfig.swift
[831/951] Compiling AwsCommonRuntimeKit EventStreamMessageDecoder.swift
[832/951] Compiling AwsCommonRuntimeKit HTTP1Stream.swift
[833/951] Compiling OpenTelemetrySdk IdGenerator.swift
[834/951] Compiling OpenTelemetrySdk EnvironmentContextPropagator.swift
[835/951] Compiling OpenTelemetrySdk RandomIdsGenerator.swift
[836/951] Compiling OpenTelemetrySdk ReadableSpan.swift
[837/951] Compiling OpenTelemetrySdk RecordEventsReadableSpan.swift
[838/951] Compiling OpenTelemetrySdk Sampler.swift
[839/951] Compiling OpenTelemetrySdk Samplers.swift
[840/951] Compiling OpenTelemetrySdk SpanBuilderSdk.swift
[841/951] Compiling OpenTelemetrySdk SpanLimits.swift
[842/951] Compiling OpenTelemetrySdk SpanProcessor.swift
[843/951] Compiling OpenTelemetrySdk BatchSpanProcessor.swift
[844/951] Compiling OpenTelemetrySdk MultiSpanProcessor.swift
[845/951] Compiling OpenTelemetrySdk NoopSpanProcessor.swift
[846/951] Compiling OpenTelemetrySdk SimpleSpanProcessor.swift
[847/951] Compiling OpenTelemetrySdk TracerProviderBuilder.swift
[848/951] Compiling OpenTelemetrySdk TracerProviderSdk.swift
[849/951] Compiling OpenTelemetrySdk TracerSdk.swift
[850/951] Compiling OpenTelemetrySdk TracerSharedState.swift
[851/951] Compiling OpenTelemetrySdk Version.swift
[879/953] Emitting module InMemoryExporter
[880/953] Compiling InMemoryExporter InMemoryExporter.swift
[881/974] Emitting module OpenTelemetryProtocolExporterCommon
[882/976] Compiling OpenTelemetryProtocolExporterCommon CommonAdapter.swift
[883/976] Compiling OpenTelemetryProtocolExporterCommon Constants.swift
[884/976] Compiling OpenTelemetryProtocolExporterCommon EnvVarHeaders.swift
[885/976] Compiling OpenTelemetryProtocolExporterCommon ResourceAdapter.swift
[886/976] Compiling OpenTelemetryProtocolExporterCommon LogRecordAdapter.swift
[887/976] Compiling OpenTelemetryProtocolExporterCommon resource.pb.swift
[888/976] Compiling OpenTelemetryProtocolExporterCommon trace.pb.swift
[889/976] Compiling OpenTelemetryProtocolExporterCommon trace_service.pb.swift
[890/976] Compiling OpenTelemetryProtocolExporterCommon OtlpSpan.swift
[891/976] Compiling OpenTelemetryProtocolExporterCommon MetricsAdapter.swift
[892/976] Compiling OpenTelemetryProtocolExporterCommon common.pb.swift
[893/976] Compiling OpenTelemetryProtocolExporterCommon SpanAdapter.swift
[894/976] Compiling OpenTelemetryProtocolExporterCommon TraceProtoUtils.swift
[895/976] Compiling OpenTelemetryProtocolExporterCommon logs.pb.swift
[896/976] Compiling OpenTelemetryProtocolExporterCommon logs_service.pb.swift
[897/976] Compiling OpenTelemetryProtocolExporterCommon profiles.pb.swift
[898/976] Compiling OpenTelemetryProtocolExporterCommon profiles_service.pb.swift
[899/976] Compiling OpenTelemetryProtocolExporterCommon ExporterMetrics.swift
[900/976] Compiling OpenTelemetryProtocolExporterCommon Headers.swift
[901/976] Compiling OpenTelemetryProtocolExporterCommon OtlpConfiguration.swift
[902/976] Compiling OpenTelemetryProtocolExporterCommon metrics.pb.swift
[903/976] Compiling OpenTelemetryProtocolExporterCommon metrics_service.pb.swift
[904/985] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpExporterBase.swift
[905/985] Compiling OpenTelemetryProtocolExporterHttp OltpHTTPMetricExporter.swift
[906/985] Compiling OpenTelemetryProtocolExporterHttp StableOtlpHTTPMetricExporter.swift
[907/985] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpLogExporter.swift
[908/985] Compiling OpenTelemetryProtocolExporterHttp StableOtlpHTTPExporterBase.swift
[909/985] Compiling OpenTelemetryProtocolExporterHttp Lock.swift
[910/985] Emitting module OpenTelemetryProtocolExporterHttp
[911/985] Compiling OpenTelemetryProtocolExporterHttp HTTPClient.swift
[912/985] Compiling OpenTelemetryProtocolExporterHttp OtlpHttpTraceExporter.swift
[913/985] Emitting module AwsCommonRuntimeKit
[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] Emitting module AWSSDKCommon
[995/1025] Compiling SmithyIdentity AWSCredentialIdentityResolverCRTAdapter.swift
[996/1025] Compiling SmithyIdentity AWSCredentialIdentityUtilityInitializers.swift
[997/1026] Compiling AWSSDKCommon FileBasedConfiguration.swift
[998/1026] Compiling AWSSDKCommon FileBasedConfigurationKeys.swift
[999/1026] Compiling AWSSDKCommon CRTFileBasedConfiguration.swift
[1000/1026] Compiling AWSSDKCommon FieldResolver.swift
[1001/1026] Emitting module SmithyIdentity
[1002/1026] Compiling SmithyIdentity AWSCredentialIdentityResolvedByCRT.swift
[1003/1026] Compiling SmithyIdentity AWSCredentialIdentity.swift
[1004/1026] Compiling SmithyIdentity AWSCredentialIdentityResolver.swift
[1005/1026] Compiling SmithyIdentity BearerTokenIdentityResolver.swift
[1006/1026] Compiling SmithyIdentity StaticBearerTokenIdentityResolver.swift
[1007/1026] Compiling SmithyIdentity CustomAWSCredentialIdentityResolver.swift
[1008/1026] Compiling SmithyIdentity StaticAWSCredentialIdentityResolver.swift
[1009/1026] Compiling SmithyIdentity BearerTokenIdentity.swift
[1010/1026] Compiling SmithyStreams NSLock+Extension.swift
[1011/1026] Compiling SmithyStreams StreamableHttpBody.swift
[1012/1026] Emitting module SmithyStreams
[1013/1026] Compiling SmithyStreams BufferedStream.swift
[1014/1026] Compiling SmithyStreams FileStream.swift
[1015/1026] Compiling SmithyEventStreams Message+CRT.swift
[1016/1026] Compiling SmithyEventStreams Header+CRT.swift
[1017/1026] Compiling SmithyIdentity CRTAWSCredentialIdentity.swift
[1018/1026] Compiling SmithyCBOR Writer.swift
[1019/1030] Compiling SmithyCBOR NodeInfo.swift
[1020/1030] Emitting module SmithyCBOR
[1021/1030] Compiling SmithyCBOR Reader.swift
[1022/1030] Compiling SmithyEventStreams DefaultMessageEncoder.swift
[1023/1030] Compiling SmithyEventStreams DefaultMessageDecoder.swift
[1024/1030] Emitting module SmithyEventStreams
[1025/1030] Compiling SmithyEventStreams DefaultMessageDecoderStream.swift
[1026/1030] Compiling SmithyEventStreams DefaultMessageEncoderStream.swift
[1027/1030] Compiling SmithyHTTPClient SdkHttpRequestBuilder+HTTPRequestBase.swift
[1028/1030] Compiling SmithyHTTPClient Headers+Extension.swift
[1029/1030] Compiling SmithyHTTPClient SdkHttpRequest+CRT.swift
[1030/1030] Emitting module SmithyHTTPClient
[1031/1049] Compiling SmithyHTTPAuth BearerTokenSigner.swift
[1032/1049] Compiling SmithyChecksums SHA256.swift
[1033/1049] Compiling SmithyChecksums SigningConfig+Extension.swift
[1034/1050] Compiling SmithyHTTPAuth SigV4AuthScheme.swift
[1035/1050] Compiling SmithyChecksums SHA1.swift
[1036/1050] Compiling SmithyHTTPAuth DefaultIdentityResolverConfiguration.swift
[1037/1050] Compiling SmithyHTTPAuth CRTAdapters.swift
[1038/1050] Compiling SmithyHTTPAuth BearerTokenAuthScheme.swift
[1039/1050] Compiling SmithyHTTPAuth AWSSigningConfig.swift
[1040/1050] Emitting module SmithyHTTPAuth
[1041/1050] Compiling SmithyHTTPAuth SigV4Signer.swift
[1042/1050] Compiling SmithyChecksums MD5.swift
[1043/1050] Compiling SmithyChecksums ChunkedStream.swift
[1044/1050] Compiling SmithyChecksums ChecksumAlgorithm.swift
[1045/1050] Compiling SmithyChecksums CRC64NVME.swift
[1046/1050] Compiling SmithyChecksums CRC32.swift
[1047/1050] Compiling SmithyChecksums CRC32C.swift
[1048/1050] Compiling SmithyChecksums ChunkedReader.swift
[1049/1050] Emitting module SmithyChecksums
[1050/1050] Compiling SmithyChecksums ValidatingBufferedStream.swift
[1051/1188] Compiling AWSSDKChecksums Context+Checksum.swift
[1052/1188] Compiling AWSSDKChecksums AWSChunkedUtil.swift
[1053/1188] Compiling AWSSDKChecksums AWSChecksumCalculationMode.swift
[1054/1188] Emitting module AWSSDKChecksums
[1055/1194] Compiling AWSSDKHTTPAuth SigV4AAuthScheme.swift
[1056/1194] Compiling AWSSDKHTTPAuth CustomSigningPropertiesSetter.swift
[1057/1194] Compiling AWSSDKHTTPAuth SigV4S3ExpressAuthScheme.swift
[1058/1194] Compiling AWSSDKHTTPAuth SigV4AuthScheme.swift
[1059/1194] Emitting module AWSSDKHTTPAuth
[1060/1194] Compiling AWSSDKHTTPAuth AWSSigV4Signer.swift
[1061/1194] Compiling ClientRuntime Client.swift
[1062/1194] Compiling ClientRuntime ClientBuilder.swift
[1063/1194] Compiling ClientRuntime ClockSkewProvider.swift
[1064/1194] Compiling ClientRuntime ClockSkewStore.swift
[1065/1194] Compiling ClientRuntime DefaultClockSkewProvider.swift
[1066/1194] Compiling ClientRuntime ClientConfigDefaultsProvider.swift
[1067/1194] Compiling ClientRuntime ClientConfiguration.swift
[1068/1194] Compiling ClientRuntime Context+Config.swift
[1069/1194] Compiling ClientRuntime ContextBuilder+withSmithyDefaultConfig.swift
[1070/1194] Compiling ClientRuntime DefaultClientConfiguration.swift
[1071/1194] Compiling ClientRuntime DefaultHttpClientConfiguration.swift
[1072/1194] Compiling ClientRuntime DefaultIdempotencyTokenGenerator.swift
[1073/1194] Compiling ClientRuntime DefaultSDKRuntimeConfiguration.swift
[1074/1194] Compiling ClientRuntime IdempotencyTokenGenerator.swift
[1075/1194] Compiling ClientRuntime IdentityPropertyKeys.swift
[1076/1194] Compiling ClientRuntime LoggerProvider.swift
[1077/1194] Compiling ClientRuntime SDKLogHandlerFactory.swift
[1078/1194] Compiling ClientRuntime SDKLogLevel.swift
[1079/1194] Compiling ClientRuntime SDKLoggingSystem.swift
[1080/1194] Compiling ClientRuntime AsyncMeasurement.swift
[1081/1194] Compiling ClientRuntime Histogram.swift
[1082/1194] Compiling ClientRuntime Meter.swift
[1083/1194] Compiling ClientRuntime MeterProvider.swift
[1084/1194] Compiling ClientRuntime MonotonicCounter.swift
[1085/1194] Compiling ClientRuntime UpDownCounter.swift
[1086/1194] Compiling ClientRuntime OTelProvider.swift
[1087/1194] Compiling ClientRuntime OTelTracing.swift
[1088/1194] Compiling ClientRuntime OTelUtils.swift
[1089/1194] Compiling ClientRuntime TelemetryProvider.swift
[1090/1208] Compiling ClientRuntime NSLock+Extension.swift
[1091/1208] Compiling ClientRuntime Number+Extension.swift
[1092/1208] Compiling ClientRuntime String+Extensions.swift
[1093/1208] Compiling ClientRuntime DefaultRetryErrorInfoProvider.swift
[1094/1208] Compiling ClientRuntime CharacterSet+Extension.swift
[1095/1208] Compiling ClientRuntime Double+Extension.swift
[1096/1208] Compiling ClientRuntime HeaderUtils.swift
[1097/1208] Compiling ClientRuntime TimestampFormatter.swift
[1098/1208] Compiling ClientRuntime TelemetryContext.swift
[1099/1208] Compiling ClientRuntime TelemetryContextManager.swift
[1100/1208] Compiling ClientRuntime TelemetryScope.swift
[1101/1208] Compiling ClientRuntime DefaultTelemetry.swift
[1102/1208] Compiling ClientRuntime ClientLogMode.swift
[1103/1208] Compiling ClientRuntime LogLevel+StringExtension.swift
[1104/1208] Compiling ClientRuntime QueryItemProvider.swift
[1105/1208] Compiling ClientRuntime URLPathProvider.swift
[1106/1208] Compiling ClientRuntime QueryItemMiddleware.swift
[1107/1208] Compiling ClientRuntime BlobBodyMiddleware.swift
[1108/1208] Compiling ClientRuntime BlobStreamBodyMiddleware.swift
[1109/1208] Compiling ClientRuntime BodyMiddleware.swift
[1110/1208] Compiling ClientRuntime EnumBodyMiddleware.swift
[1111/1208] Compiling ClientRuntime EventStreamBodyMiddleware.swift
[1112/1208] Compiling ClientRuntime PayloadBodyMiddleware.swift
[1113/1208] Compiling ClientRuntime StringBodyMiddleware.swift
[1114/1208] Compiling ClientRuntime SignerMiddleware.swift
[1115/1208] Compiling ClientRuntime URLHostMiddleware.swift
[1116/1208] Compiling ClientRuntime URLPathMiddleware.swift
[1117/1208] Compiling ClientRuntime SdkHttpClient.swift
[1118/1208] Compiling ClientRuntime String+URLPercentEncoding.swift
[1119/1214] Compiling ClientRuntime Endpoint+CRT.swift
[1120/1214] Compiling ClientRuntime HTTP2Stream+ByteStream.swift
[1121/1214] Compiling ClientRuntime SDKDefaultIO.swift
[1122/1214] Compiling ClientRuntime HTTPError.swift
[1123/1214] Compiling ClientRuntime HTTPResponse+WireDataProviding.swift
[1124/1214] Compiling ClientRuntime HttpClientConfiguration.swift
[1125/1214] Compiling ClientRuntime AuthSchemeMiddleware.swift
[1126/1214] Compiling ClientRuntime ContentLengthMiddleware.swift
[1127/1214] Compiling ClientRuntime ContentMD5Middleware.swift
[1128/1214] Compiling ClientRuntime ContentTypeMiddleware.swift
[1129/1214] Compiling ClientRuntime DeserializeMiddleware.swift
[1130/1214] Compiling ClientRuntime HeaderMiddleware.swift
[1131/1214] Compiling ClientRuntime LoggerMiddleware.swift
[1132/1214] Compiling ClientRuntime MutateHeadersMiddleware.swift
[1133/1214] Compiling ClientRuntime HeaderProvider.swift
[1134/1214] Compiling AWSSDKEventStreamsAuth Context+AWSEventStreamsAuth.swift
[1135/1214] Compiling AWSSDKEventStreamsAuth Context+Signing.swift
[1136/1214] Compiling AWSSDKEventStreamsAuth String+hexaData.swift
[1137/1214] Compiling AWSSDKEventStreamsAuth AWSSigV4Signer+EventStreams.swift
[1138/1214] Emitting module AWSSDKEventStreamsAuth
[1139/1214] Compiling AWSSDKEventStreamsAuth AWSMessageSigner.swift
[1140/1214] Compiling ClientRuntime TLSConfiguration.swift
[1141/1214] Compiling ClientRuntime FoundationStreamBridge.swift
[1142/1214] Compiling ClientRuntime URLSessionConfiguration+HTTPClientConfiguration.swift
[1143/1214] Compiling ClientRuntime URLSessionHTTPClient.swift
[1144/1214] Compiling ClientRuntime URLSessionTLSOptions.swift
[1145/1214] Compiling ClientRuntime URLSessionTLSResolverUtils.swift
[1146/1214] Compiling ClientRuntime UnknownHttpServiceError.swift
[1147/1214] Compiling ClientRuntime ModeledError.swift
[1148/1214] Compiling ClientRuntime ServiceError.swift
[1149/1214] Compiling ClientRuntime ByteStream+FileHandle.swift
[1150/1214] Compiling ClientRuntime ByteStream+Validating.swift
[1151/1214] Compiling ClientRuntime UnknownServiceError.swift
[1152/1214] Compiling ClientRuntime ApplyEndpoint.swift
[1153/1214] Compiling ClientRuntime ApplySigner.swift
[1154/1214] Compiling ClientRuntime AuthSchemeSelector.swift
[1155/1214] Compiling ClientRuntime SpanContext.swift
[1156/1214] Compiling ClientRuntime SpanKind.swift
[1157/1214] Compiling ClientRuntime TraceSpan.swift
[1158/1214] Compiling ClientRuntime TraceSpanStatus.swift
[1159/1214] Compiling ClientRuntime Tracer.swift
[1160/1214] Compiling ClientRuntime TracerProvider.swift
[1161/1214] Compiling ClientRuntime Initialize.swift
[1162/1214] Compiling ClientRuntime PlatformOperatingSystem.swift
[1163/1214] Compiling ClientRuntime PlatformOperationSystemVersion.swift
[1164/1214] Compiling ClientRuntime SwiftVersion.swift
[1165/1214] Compiling ClientRuntime RpcV2CborError.swift
[1166/1214] Compiling ClientRuntime RpcV2CborQueryCompatible.swift
[1167/1214] Compiling ClientRuntime RpcV2CborValidateResponseHeaderMiddleware.swift
[1168/1214] Compiling ClientRuntime resource_bundle_accessor.swift
[1169/1214] Emitting module ClientRuntime
[1170/1214] Compiling ClientRuntime ExecuteRequest.swift
[1171/1214] Compiling ClientRuntime Orchestrator.swift
[1172/1214] Compiling ClientRuntime OrchestratorBuilder.swift
[1173/1214] Compiling ClientRuntime OrchestratorTelemetry.swift
[1174/1214] Compiling ClientRuntime PaginateToken.swift
[1175/1214] Compiling ClientRuntime PaginatorSequence.swift
[1176/1214] Compiling ClientRuntime AuthSchemePlugin.swift
[1177/1214] Compiling ClientRuntime DefaultClientPlugin.swift
[1178/1214] Compiling ClientRuntime HttpClientPlugin.swift
[1179/1214] Compiling ClientRuntime Plugin.swift
[1180/1214] Compiling ClientRuntime RetryPlugin.swift
[1181/1214] Compiling ClientRuntime TelemetryPlugin.swift
[1182/1214] Compiling ClientRuntime AsyncSequence+Extension.swift
[1183/1214] Compiling ClientRuntime FileHandle+Extension.swift
[1184/1214] Compiling ClientRuntime Indirect.swift
[1185/1214] Compiling ClientRuntime CRTResolvedEndpoint.swift
[1186/1214] Compiling ClientRuntime CRTResolvedEndpointType.swift
[1187/1214] Compiling ClientRuntime CredentialScope.swift
[1188/1214] Compiling ClientRuntime DefaultEndpointResolver.swift
[1189/1214] Compiling ClientRuntime EndpointError.swift
[1190/1214] Compiling ClientRuntime EndpointResolverMiddleware.swift
[1191/1214] Compiling ClientRuntime EndpointsAuthSchemeResolver.swift
[1192/1214] Compiling ClientRuntime EndpointsRequestContext.swift
[1193/1214] Compiling ClientRuntime EndpointsRequestContextProviding.swift
[1194/1214] Compiling ClientRuntime EndpointsRuleEngine.swift
[1195/1214] Compiling ClientRuntime PartitionDefinition.swift
[1196/1214] Compiling ClientRuntime ServiceEndpointMetadata.swift
[1197/1214] Compiling ClientRuntime SmithyEndpoint.swift
[1198/1214] Compiling ClientRuntime StaticEndpointResolver.swift
[1199/1214] Compiling ClientRuntime Context+Idempotency.swift
[1200/1214] Compiling ClientRuntime IdempotencyTokenMiddleware.swift
[1201/1214] Compiling ClientRuntime AnyInterceptor.swift
[1202/1214] Compiling ClientRuntime DefaultInterceptorContext.swift
[1203/1214] Compiling ClientRuntime HttpInterceptorProvider.swift
[1204/1214] Compiling ClientRuntime Interceptor.swift
[1205/1214] Compiling ClientRuntime InterceptorContext.swift
[1206/1214] Compiling ClientRuntime InterceptorProvider.swift
[1207/1214] Compiling ClientRuntime Interceptors.swift
[1208/1214] Compiling ClientRuntime SendableHttpInterceptorProviderBox.swift
[1209/1214] Compiling ClientRuntime SendableInterceptorProviderBox.swift
[1210/1214] Compiling ClientRuntime BaseError.swift
[1211/1214] Compiling ClientRuntime CRTClientEngine.swift
[1212/1214] Compiling ClientRuntime CRTClientEngineConfig.swift
[1213/1214] Compiling ClientRuntime CRTClientEngineLogHandlerFactory.swift
[1214/1214] Compiling ClientRuntime CRTClientTLSOptions.swift
[1215/1280] Compiling AWSClientRuntime IMDSRegionProvider.swift
[1216/1280] Compiling AWSClientRuntime ProfileRegionProvider.swift
[1217/1280] Compiling AWSClientRuntime RegionProvider.swift
[1218/1280] Compiling AWSClientRuntime RegionResolver.swift
[1219/1280] Compiling AWSClientRuntime AWSRetryConfig.swift
[1220/1280] Compiling AWSClientRuntime AWSRetryErrorInfoProvider.swift
[1221/1280] Compiling AWSClientRuntime AWSRetryMode.swift
[1222/1287] Emitting module AWSClientRuntime
[1223/1287] Compiling AWSClientRuntime EndpointResolverMiddleware.swift
[1224/1287] Compiling AWSClientRuntime Partition.swift
[1225/1287] Compiling AWSClientRuntime ServiceEndpointMetadata+Extension.swift
[1226/1287] Compiling AWSClientRuntime Environment.swift
[1227/1287] Compiling AWSClientRuntime AWSS3ServiceError.swift
[1228/1287] Compiling AWSClientRuntime AWSServiceError.swift
[1229/1287] Compiling AWSClientRuntime InvalidAccessKeyId.swift
[1230/1287] Compiling AWSClientRuntime AWSClientConfigDefaultsProvider.swift
[1231/1287] Compiling AWSClientRuntime AWSServiceClient.swift
[1232/1287] Compiling AWSClientRuntime AWSClockSkewProvider.swift
[1233/1287] Compiling AWSClientRuntime AWSChecksumsConfig.swift
[1234/1287] Compiling AWSClientRuntime AWSDefaultClientConfiguration.swift
[1235/1287] Compiling AWSClientRuntime AWSRegionClientConfiguration.swift
[1236/1287] Compiling AWSClientRuntime AuthSchemeConfig.swift
[1237/1287] Compiling AWSClientRuntime AuthTokenGenerator.swift
[1238/1287] Compiling AWSClientRuntime DefaultAWSClientPlugin.swift
[1239/1287] Compiling AWSClientRuntime RegionPlugin.swift
[1240/1287] Compiling AWSClientRuntime Data+Extension.swift
[1241/1287] Compiling AWSClientRuntime String+Extension.swift
[1242/1287] Compiling AWSClientRuntime TimeInterval+Extension.swift
[1243/1287] Compiling AWSClientRuntime AWSJSONError.swift
[1244/1287] Compiling AWSClientRuntime AwsQueryCompatibleErrorDetails.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 BedrockAPIKeyInterceptor.swift
[1253/1287] Compiling AWSClientRuntime Context+usesBearerServiceEnvVars.swift
[1254/1287] Compiling AWSClientRuntime AWSEndpoint.swift
[1255/1287] Compiling AWSClientRuntime AWSEndpointConfig.swift
[1256/1287] Compiling AWSClientRuntime AWSPartitionDefinition.swift
[1257/1287] Compiling AWSClientRuntime AccountIDEndpointMode.swift
[1258/1287] Compiling AWSClientRuntime Context+AccountIDEndpointMode.swift
[1259/1287] Compiling AWSClientRuntime Context+ResolvedAccountID.swift
[1260/1287] Compiling AWSClientRuntime AWSQueryCompatibleUtils.swift
[1261/1287] Compiling AWSClientRuntime AWSQueryError.swift
[1262/1287] Compiling AWSClientRuntime EC2QueryError.swift
[1263/1287] Compiling AWSClientRuntime RestJSONError.swift
[1264/1287] Compiling AWSClientRuntime RestXMLError.swift
[1265/1287] Compiling AWSClientRuntime DefaultRegionResolver.swift
[1266/1287] Compiling AWSClientRuntime EnvironmentRegionProvider.swift
[1267/1287] Compiling AWSClientRuntime FrameworkMetadata.swift
[1268/1287] Compiling AWSClientRuntime InternalMetadata.swift
[1269/1287] Compiling AWSClientRuntime LanguageMetadata.swift
[1270/1287] Compiling AWSClientRuntime OSMetadata.swift
[1271/1287] Compiling AWSClientRuntime SDKMetadata.swift
[1272/1287] Compiling AWSClientRuntime UserAgentMetadata.swift
[1273/1287] Compiling AWSClientRuntime resource_bundle_accessor.swift
[1274/1287] Compiling AWSClientRuntime AmzSdkRequestMiddleware.swift
[1275/1287] Compiling AWSClientRuntime FlexibleChecksumsRequestMiddleware.swift
[1276/1287] Compiling AWSClientRuntime FlexibleChecksumsResponseMiddleware.swift
[1277/1287] Compiling AWSClientRuntime Route53TrimHostedZoneMiddleware.swift
[1278/1287] Compiling AWSClientRuntime Sha256TreeHashMiddleware.swift
[1279/1287] Compiling AWSClientRuntime UserAgentMiddleware.swift
[1280/1287] Compiling AWSClientRuntime XAmzTargetMiddleware.swift
[1281/1287] Compiling AWSClientRuntime UnknownAWSHTTPErrorCandidate.swift
[1282/1287] Compiling AWSClientRuntime UnknownAWSHTTPServiceError.swift
[1283/1287] Compiling AWSClientRuntime HttpResponse+AWS.swift
[1284/1287] Compiling AWSClientRuntime IMDSClient.swift
[1285/1287] Compiling AWSClientRuntime IMDSConfig.swift
[1286/1287] Compiling AWSClientRuntime AWSS3ErrorWith200StatusXMLMiddleware.swift
[1287/1287] Compiling AWSClientRuntime AmzSdkInvocationIdMiddleware.swift
[1288/1317] Compiling InternalAWSSSO Plugins.swift
[1289/1317] Compiling InternalAWSCognitoIdentity Plugins.swift
[1290/1317] Compiling InternalAWSCognitoIdentity Endpoints.swift
[1291/1317] Compiling InternalAWSCognitoIdentity Models.swift
[1292/1317] Compiling InternalAWSSSO Models.swift
[1293/1317] Compiling InternalAWSSSO Endpoints.swift
[1294/1317] Emitting module InternalAWSSSO
[1295/1317] Compiling InternalAWSSSO SSOClient.swift
[1296/1317] Compiling InternalAWSSSO AuthSchemeResolver.swift
[1297/1317] Compiling InternalAWSSignin Plugins.swift
[1298/1317] Compiling InternalAWSSignin AuthSchemeResolver.swift
[1299/1317] Compiling InternalAWSSignin Models.swift
[1300/1317] Emitting module InternalAWSSignin
[1301/1317] Compiling InternalAWSSignin SigninClient.swift
[1302/1317] Compiling InternalAWSSignin Endpoints.swift
[1303/1317] Compiling InternalAWSSSOOIDC Plugins.swift
[1304/1317] Compiling InternalAWSSSOOIDC Endpoints.swift
[1305/1317] Compiling InternalAWSSSOOIDC Models.swift
[1306/1317] Compiling InternalAWSSSOOIDC AuthSchemeResolver.swift
[1307/1317] Compiling InternalAWSSSOOIDC SSOOIDCClient.swift
[1308/1317] Emitting module InternalAWSSSOOIDC
[1309/1317] Compiling InternalAWSCognitoIdentity AuthSchemeResolver.swift
[1310/1317] Emitting module InternalAWSCognitoIdentity
[1311/1317] Compiling InternalAWSCognitoIdentity CognitoIdentityClient.swift
[1312/1317] Compiling InternalAWSSTS Plugins.swift
[1313/1317] Compiling InternalAWSSTS Models.swift
[1314/1317] Compiling InternalAWSSTS AuthSchemeResolver.swift
[1315/1317] Compiling InternalAWSSTS Endpoints.swift
[1316/1317] Compiling InternalAWSSTS STSClient.swift
[1317/1317] Emitting module InternalAWSSTS
[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 AWSCredentialIdentity.swift
[1323/1355] Compiling AWSSDKIdentity AWSCredentialIdentityResolverError.swift
[1324/1355] Compiling AWSSDKIdentity CachedAWSCredentialIdentityResolver.swift
[1325/1355] Compiling AWSSDKIdentity CognitoAWSCredentialIdentityResolver.swift
[1326/1355] Compiling AWSSDKIdentity DefaultS3ExpressIdentityResolver.swift
[1327/1355] Compiling AWSSDKIdentity S3ExpressCachedElement.swift
[1328/1355] Compiling AWSSDKIdentity S3ExpressClientError.swift
[1329/1355] Compiling AWSSDKIdentity StaticAWSCredentialIdentityResolver.swift
[1330/1355] Compiling AWSSDKIdentity AWSIdentityPropertyKeys.swift
[1331/1355] Compiling AWSSDKIdentity DefaultBearerTokenIdentityResolverChain.swift
[1332/1355] Compiling AWSSDKIdentity SSOBearerTokenIdentityResolver.swift
[1333/1355] Compiling AWSSDKIdentity S3ExpressCreateSessionClient.swift
[1334/1355] Compiling AWSSDKIdentity S3ExpressIdentity.swift
[1335/1355] Compiling AWSSDKIdentity S3ExpressIdentityResolver.swift
[1336/1355] Compiling AWSSDKIdentity IMDSToken.swift
[1337/1355] Compiling AWSSDKIdentity IMDSTokenProvider.swift
[1338/1355] Compiling AWSSDKIdentity IdentityProvidingCognitoIdentityClient.swift
[1339/1355] Compiling AWSSDKIdentity IdentityProvidingSSOClient.swift
[1340/1355] Compiling AWSSDKIdentity CustomAWSCredentialIdentityResolver.swift
[1341/1355] Compiling AWSSDKIdentity DefaultAWSCredentialIdentityResolverChain.swift
[1342/1355] Compiling AWSSDKIdentity ECSAWSCredentialIdentityResolver.swift
[1343/1355] Compiling AWSSDKIdentity EnvironmentAWSCredentialIdentityResolver.swift
[1344/1355] Compiling AWSSDKIdentity SSOAWSCredentialIdentityResolver.swift
[1345/1355] Compiling AWSSDKIdentity STSAssumeRoleAWSCredentialIdentityResolver.swift
[1346/1355] Compiling AWSSDKIdentity STSWebIdentityAWSCredentialIdentityResolver.swift
[1347/1355] Compiling AWSSDKIdentity SharedConfigStaticAWSCredentialIdentityResolver.swift
[1348/1355] Compiling AWSSDKIdentity IMDSAWSCredentialIdentityResolver.swift
[1349/1355] Compiling AWSSDKIdentity LoginAWSCredentialIdentityResolver.swift
[1350/1355] Compiling AWSSDKIdentity ProcessAWSCredentialIdentityResolver.swift
[1351/1355] Compiling AWSSDKIdentity ProfileAWSCredentialIdentityResolver.swift
[1352/1355] Compiling AWSSDKIdentity CredentialFeatureID.swift
[1353/1355] Compiling AWSSDKIdentity CredentialFeatureIDInterceptor.swift
[1354/1355] Compiling AWSSDKIdentity IMDSClient.swift
[1355/1355] Compiling AWSSDKIdentity IMDSError.swift
[1356/1379] Compiling AWSBedrockRuntime Plugins.swift
[1357/1379] Compiling AWSBedrock Plugins.swift
[1358/1379] Compiling AWSBedrockAgentRuntime Plugins.swift
[1359/1379] Compiling AWSSSOOIDC SSOOIDCClient.swift
[1360/1379] Compiling AWSSSOOIDC Plugins.swift
[1361/1379] Compiling AWSSSOOIDC Endpoints.swift
[1362/1379] Compiling AWSSSOOIDC AuthSchemeResolver.swift
[1363/1379] Emitting module AWSSSOOIDC
[1364/1379] Compiling AWSSSOOIDC Models.swift
[1365/1379] Compiling AWSBedrockRuntime Endpoints.swift
[1366/1379] Emitting module AWSBedrockRuntime
[1367/1379] Compiling AWSBedrockRuntime BedrockRuntimeClient.swift
[1368/1379] Compiling AWSBedrockRuntime AuthSchemeResolver.swift
[1369/1379] Compiling AWSBedrockRuntime Models.swift
[1370/1379] Compiling AWSBedrockAgentRuntime Endpoints.swift
[1371/1379] Compiling AWSBedrockAgentRuntime BedrockAgentRuntimeClient.swift
[1372/1379] Compiling AWSBedrockAgentRuntime AuthSchemeResolver.swift
[1373/1379] Emitting module AWSBedrockAgentRuntime
[1374/1379] Compiling AWSBedrockAgentRuntime Models.swift
[1375/1379] Compiling AWSBedrock Endpoints.swift
[1376/1379] Compiling AWSBedrock AuthSchemeResolver.swift
[1377/1379] Compiling AWSBedrock BedrockClient.swift
[1378/1379] Emitting module AWSBedrock
[1379/1379] Compiling AWSBedrock Models.swift
[1380/1474] Compiling BedrockService InvokeModelRequest.swift
[1381/1474] Compiling BedrockService InvokeModelResponse.swift
[1382/1474] Compiling BedrockService Protocols.swift
[1383/1474] Compiling BedrockService TextCompletion.swift
[1384/1474] Compiling BedrockService ConverseFeature.swift
[1385/1474] Compiling BedrockService ConverseModality.swift
[1386/1474] Compiling BedrockService CrossRegionInference.swift
[1387/1474] Compiling BedrockService EmbeddingsModality.swift
[1388/1474] Compiling BedrockService ImageModality.swift
[1389/1474] Compiling BedrockService Modality.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1390/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,
[1391/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 |
[1392/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 |
[1393/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 |
[1394/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 |
[1395/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 |
[1396/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 |
[1397/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 |
[1398/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 |
[1399/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 |
[1400/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 |
[1401/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
[1402/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
[1403/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
[1404/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
[1405/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
[1406/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
[1407/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
[1408/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
[1409/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
[1410/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
[1411/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
[1412/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)
[1413/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)
[1414/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)
[1415/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)
[1416/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)
[1417/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)
[1418/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)
[1419/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)
[1420/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)
[1421/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)
[1422/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)
[1423/1484] Compiling BedrockService AnthropicGlobalModels.swift
[1424/1484] Compiling BedrockService AnthropicRequestBody.swift
[1425/1484] Compiling BedrockService AnthropicResponseBody.swift
[1426/1484] Compiling BedrockService BedrockModel.swift
[1427/1484] Compiling BedrockService CohereBedrockModels.swift
[1428/1484] Compiling BedrockService DeepSeek.swift
[1429/1484] Compiling BedrockService DeepSeekBedrockModels.swift
[1430/1484] Compiling BedrockService DeepSeekRequestBody.swift
[1431/1484] Compiling BedrockService DeepSeekResponseBody.swift
[1432/1484] Compiling BedrockService JambaBedrockModels.swift
[1433/1484] Compiling BedrockService AmazonImage.swift
[1434/1484] Compiling BedrockService AmazonImageRequestBody.swift
[1435/1484] Compiling BedrockService AmazonImageResponseBody.swift
[1436/1484] Compiling BedrockService Nova.swift
[1437/1484] Compiling BedrockService NovaBedrockModels.swift
[1438/1484] Compiling BedrockService NovaImageResolutionValidator.swift
[1439/1484] Compiling BedrockService NovaRequestBody.swift
[1440/1484] Compiling BedrockService NovaResponseBody.swift
[1441/1484] Compiling BedrockService TaskType.swift
[1442/1484] Compiling BedrockService TitanImageResolutionValidator.swift
[1443/1484] 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)
[1444/1484] 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)
[1445/1484] 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)
[1446/1484] 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)
[1447/1484] 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)
[1448/1484] 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)
[1449/1484] 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)
[1450/1484] 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)
[1451/1484] 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)
[1452/1484] 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)
[1453/1484] Compiling BedrockService Llama.swift
[1454/1484] Compiling BedrockService LlamaBedrockModels.swift
[1455/1484] Compiling BedrockService LlamaRequestBody.swift
[1456/1484] Compiling BedrockService LlamaResponseBody.swift
[1457/1484] Compiling BedrockService MistralBedrockModels.swift
[1458/1484] Compiling BedrockService OpenAI.swift
[1459/1484] Compiling BedrockService OpenAIBedrockModels.swift
[1460/1484] Compiling BedrockService OpenAIRequestBody.swift
[1461/1484] Compiling BedrockService OpenAIResponseBody.swift
[1462/1484] Compiling BedrockService Region.swift
[1463/1484] Compiling BedrockService ConverseRequest.swift
[1464/1484] Compiling BedrockService ConverseRequestBuilder.swift
[1465/1484] Compiling BedrockService History.swift
[1466/1484] Compiling BedrockService JSON.swift
[1467/1484] Compiling BedrockService Message.swift
[1468/1484] Compiling BedrockService Role.swift
[1469/1484] Compiling BedrockService BedrockService+ConverseStreaming.swift
[1470/1484] Compiling BedrockService ConverseReplyStream.swift
[1471/1484] Compiling BedrockService ConverseRequestStreaming.swift
[1472/1484] Compiling BedrockService ConverseResponseStreaming.swift
[1473/1484] Compiling BedrockService ConverseStreamElement.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/awslabs/aws-crt-swift
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/smithy-lang/smithy-swift
Fetching https://github.com/awslabs/aws-sdk-swift
Fetching https://github.com/apple/swift-argument-parser.git
[1/5899] Fetching swift-log
[178/38660] Fetching swift-log, aws-crt-swift
[919/55831] Fetching swift-log, aws-crt-swift, swift-argument-parser
[12124/132425] Fetching swift-log, aws-crt-swift, swift-argument-parser, smithy-swift
Fetched https://github.com/awslabs/aws-crt-swift from cache (2.08s)
Fetched https://github.com/apple/swift-log.git from cache (2.08s)
[74085/93765] Fetching swift-argument-parser, smithy-swift
[93766/985259] Fetching swift-argument-parser, smithy-swift, aws-sdk-swift
Fetched https://github.com/smithy-lang/smithy-swift from cache (406.17s)
Fetched https://github.com/apple/swift-argument-parser.git from cache (406.17s)
Fetched https://github.com/awslabs/aws-sdk-swift from cache (406.17s)
Computing version for https://github.com/smithy-lang/smithy-swift
Computed https://github.com/smithy-lang/smithy-swift at 0.181.0 (2.93s)
Fetching https://github.com/open-telemetry/opentelemetry-swift
Fetching https://github.com/swift-server/async-http-client.git
[1/19869] Fetching opentelemetry-swift
[2/34869] Fetching opentelemetry-swift, async-http-client
Fetched https://github.com/swift-server/async-http-client.git from cache (1.80s)
Fetched https://github.com/open-telemetry/opentelemetry-swift from cache (1.80s)
Computing version for https://github.com/awslabs/aws-crt-swift
Computed https://github.com/awslabs/aws-crt-swift at 0.56.1 (0.47s)
Computing version for https://github.com/awslabs/aws-sdk-swift
Computed https://github.com/awslabs/aws-sdk-swift at 1.6.50 (5.92s)
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.57s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.9.1 (0.44s)
Computing version for https://github.com/open-telemetry/opentelemetry-swift
Computed https://github.com/open-telemetry/opentelemetry-swift at 1.17.1 (0.61s)
Fetching https://github.com/undefinedlabs/opentracing-objc
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-protobuf.git
Fetching https://github.com/undefinedlabs/Thrift-Swift
Fetching https://github.com/grpc/grpc-swift.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-metrics.git
[1/508] Fetching opentracing-objc
[42/1160] Fetching opentracing-objc, thrift-swift
[166/2980] Fetching opentracing-objc, thrift-swift, swift-atomics
[681/5546] Fetching opentracing-objc, thrift-swift, swift-atomics, swift-metrics
[5547/56935] Fetching opentracing-objc, thrift-swift, swift-atomics, swift-metrics, grpc-swift
[8117/138914] Fetching opentracing-objc, thrift-swift, swift-atomics, swift-metrics, grpc-swift, swift-nio
[109403/181200] Fetching opentracing-objc, thrift-swift, swift-atomics, swift-metrics, grpc-swift, swift-nio, swift-protobuf
Fetched https://github.com/apple/swift-nio.git from cache (4.41s)
Fetched https://github.com/apple/swift-metrics.git from cache (4.41s)
Fetched https://github.com/undefinedlabs/opentracing-objc from cache (4.41s)
Fetched https://github.com/undefinedlabs/Thrift-Swift from cache (4.41s)
Fetched https://github.com/grpc/grpc-swift.git from cache (4.77s)
Fetched https://github.com/apple/swift-protobuf.git from cache (4.77s)
Fetched https://github.com/apple/swift-atomics.git from cache (4.77s)
Computing version for https://github.com/undefinedlabs/opentracing-objc
Computed https://github.com/undefinedlabs/opentracing-objc at 0.5.2 (2.42s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.43s)
Computing version for https://github.com/grpc/grpc-swift.git
Computed https://github.com/grpc/grpc-swift.git at 1.26.1 (0.63s)
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-nio-http2.git
[1/2809] Fetching swift-nio-transport-services
[58/9246] Fetching swift-nio-transport-services, swift-nio-extras
[428/21135] Fetching swift-nio-transport-services, swift-nio-extras, swift-nio-http2
[1483/40613] Fetching swift-nio-transport-services, swift-nio-extras, swift-nio-http2, swift-collections
[2541/55909] 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.24s)
[8556/49472] Fetching swift-nio-transport-services, swift-nio-http2, swift-collections, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.24s)
[5941/46663] Fetching swift-nio-http2, swift-collections, swift-nio-ssl
Fetched https://github.com/apple/swift-collections.git from cache (2.14s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.14s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (2.14s)
Computing version for https://github.com/undefinedlabs/Thrift-Swift
Computed https://github.com/undefinedlabs/Thrift-Swift at 1.1.2 (2.37s)
Computing version for https://github.com/apple/swift-metrics.git
Computed https://github.com/apple/swift-metrics.git at 2.7.1 (0.42s)
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.45s)
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.44s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.34.1 (0.47s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.53s)
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.50s)
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-asn1.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-http-types.git
[1/951] Fetching swift-http-types
[106/7003] Fetching swift-http-types, swift-algorithms
[228/8695] Fetching swift-http-types, swift-algorithms, swift-asn1
[330/9899] Fetching swift-http-types, swift-algorithms, swift-asn1, swift-http-structured-headers
[379/12473] Fetching swift-http-types, swift-algorithms, swift-asn1, swift-http-structured-headers, swift-service-lifecycle
[1038/19570] Fetching swift-http-types, swift-algorithms, swift-asn1, swift-http-structured-headers, swift-service-lifecycle, swift-certificates
[2002/25655] Fetching swift-http-types, swift-algorithms, swift-asn1, swift-http-structured-headers, swift-service-lifecycle, swift-certificates, swift-async-algorithms
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (1.05s)
[13246/23081] Fetching swift-http-types, swift-algorithms, swift-asn1, swift-http-structured-headers, swift-certificates, swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms.git from cache (1.27s)
Fetched https://github.com/apple/swift-asn1.git from cache (1.28s)
Fetched https://github.com/apple/swift-http-types.git from cache (1.28s)
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (1.28s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.28s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.28s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.94.0 (0.60s)
Fetching https://github.com/apple/swift-system.git
[1/5552] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.22s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.53s)
Fetching https://github.com/apple/swift-numerics.git
[1/6409] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.19s)
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.43s)
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.51s)
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.46s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.1 (2.46s)
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.44s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.17.1 (0.59s)
Fetching https://github.com/apple/swift-crypto.git
[1/17521] Fetching swift-crypto
Fetched https://github.com/apple/swift-crypto.git from cache (2.06s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.43s)
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.44s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.47s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 4.2.0 (1.21s)
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.46s)
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.23s)
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.44s)
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.99s)
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.44s)
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-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-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-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-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 4.2.0
Creating working copy for https://github.com/smithy-lang/smithy-swift
Working copy of https://github.com/smithy-lang/smithy-swift resolved at 0.181.0
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.50
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-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.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/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-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.17.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-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
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-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.94.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/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/undefinedlabs/Thrift-Swift
Working copy of https://github.com/undefinedlabs/Thrift-Swift resolved at 1.1.2
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-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-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/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-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/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-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-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-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/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-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
BUILD FAILURE 6.0 macosSpm