aws-sdk-chime 1.88.0 → 1.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +19 -2
- data/lib/aws-sdk-chime/types.rb +16 -16
- data/lib/aws-sdk-chime.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbc80e01a34250a4ed524b61030e77632e502d733d670aa83d8dfc66e59e0d0d
|
4
|
+
data.tar.gz: 108a1974b1ee8f3dedb5125499072694033de5ac25538cf8e6ca109ecf214534
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36a7cadf4be8f5a3b199d2bf7d5d3812fde88efa77b52b21fc8cd1e922b158c899b3fe0e8d7509c69ae429b8eedab3047470e26462dfe44467e3e82f3285f02c
|
7
|
+
data.tar.gz: 162177e5eda9c5b4daa8c71c1d658ab399d9c260d38d523a4bcb3a98fdb3af2ae6dca519e542492ca7be57ebd47b3e0ced428b30eca80cfbd855ac45cb585601
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.90.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.89.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.88.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.90.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::Chime
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::Chime::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::Chime
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -10314,14 +10326,19 @@ module Aws::Chime
|
|
10314
10326
|
# @api private
|
10315
10327
|
def build_request(operation_name, params = {})
|
10316
10328
|
handlers = @handlers.for(operation_name)
|
10329
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
10330
|
+
Aws::Telemetry.module_to_tracer_name('Aws::Chime')
|
10331
|
+
)
|
10317
10332
|
context = Seahorse::Client::RequestContext.new(
|
10318
10333
|
operation_name: operation_name,
|
10319
10334
|
operation: config.api.operation(operation_name),
|
10320
10335
|
client: self,
|
10321
10336
|
params: params,
|
10322
|
-
config: config
|
10337
|
+
config: config,
|
10338
|
+
tracer: tracer
|
10339
|
+
)
|
10323
10340
|
context[:gem_name] = 'aws-sdk-chime'
|
10324
|
-
context[:gem_version] = '1.
|
10341
|
+
context[:gem_version] = '1.90.0'
|
10325
10342
|
Seahorse::Client::Request.new(handlers, context)
|
10326
10343
|
end
|
10327
10344
|
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -481,7 +481,7 @@ module Aws::Chime
|
|
481
481
|
:voice_connector_group_id,
|
482
482
|
:e164_phone_numbers,
|
483
483
|
:force_associate)
|
484
|
-
SENSITIVE = []
|
484
|
+
SENSITIVE = [:e164_phone_numbers]
|
485
485
|
include Aws::Structure
|
486
486
|
end
|
487
487
|
|
@@ -520,7 +520,7 @@ module Aws::Chime
|
|
520
520
|
:voice_connector_id,
|
521
521
|
:e164_phone_numbers,
|
522
522
|
:force_associate)
|
523
|
-
SENSITIVE = []
|
523
|
+
SENSITIVE = [:e164_phone_numbers]
|
524
524
|
include Aws::Structure
|
525
525
|
end
|
526
526
|
|
@@ -2250,7 +2250,7 @@ module Aws::Chime
|
|
2250
2250
|
class CreatePhoneNumberOrderRequest < Struct.new(
|
2251
2251
|
:product_type,
|
2252
2252
|
:e164_phone_numbers)
|
2253
|
-
SENSITIVE = []
|
2253
|
+
SENSITIVE = [:e164_phone_numbers]
|
2254
2254
|
include Aws::Structure
|
2255
2255
|
end
|
2256
2256
|
|
@@ -2311,7 +2311,7 @@ module Aws::Chime
|
|
2311
2311
|
:number_selection_behavior,
|
2312
2312
|
:geo_match_level,
|
2313
2313
|
:geo_match_params)
|
2314
|
-
SENSITIVE = [:name]
|
2314
|
+
SENSITIVE = [:participant_phone_numbers, :name]
|
2315
2315
|
include Aws::Structure
|
2316
2316
|
end
|
2317
2317
|
|
@@ -2427,7 +2427,7 @@ module Aws::Chime
|
|
2427
2427
|
:to_phone_number,
|
2428
2428
|
:sip_media_application_id,
|
2429
2429
|
:sip_headers)
|
2430
|
-
SENSITIVE = [:from_phone_number, :to_phone_number]
|
2430
|
+
SENSITIVE = [:from_phone_number, :to_phone_number, :sip_headers]
|
2431
2431
|
include Aws::Structure
|
2432
2432
|
end
|
2433
2433
|
|
@@ -3096,7 +3096,7 @@ module Aws::Chime
|
|
3096
3096
|
class DeleteVoiceConnectorTerminationCredentialsRequest < Struct.new(
|
3097
3097
|
:voice_connector_id,
|
3098
3098
|
:usernames)
|
3099
|
-
SENSITIVE = []
|
3099
|
+
SENSITIVE = [:usernames]
|
3100
3100
|
include Aws::Structure
|
3101
3101
|
end
|
3102
3102
|
|
@@ -3425,7 +3425,7 @@ module Aws::Chime
|
|
3425
3425
|
class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest < Struct.new(
|
3426
3426
|
:voice_connector_group_id,
|
3427
3427
|
:e164_phone_numbers)
|
3428
|
-
SENSITIVE = []
|
3428
|
+
SENSITIVE = [:e164_phone_numbers]
|
3429
3429
|
include Aws::Structure
|
3430
3430
|
end
|
3431
3431
|
|
@@ -3456,7 +3456,7 @@ module Aws::Chime
|
|
3456
3456
|
class DisassociatePhoneNumbersFromVoiceConnectorRequest < Struct.new(
|
3457
3457
|
:voice_connector_id,
|
3458
3458
|
:e164_phone_numbers)
|
3459
|
-
SENSITIVE = []
|
3459
|
+
SENSITIVE = [:e164_phone_numbers]
|
3460
3460
|
include Aws::Structure
|
3461
3461
|
end
|
3462
3462
|
|
@@ -4723,7 +4723,7 @@ module Aws::Chime
|
|
4723
4723
|
:account_id,
|
4724
4724
|
:user_email_list,
|
4725
4725
|
:user_type)
|
4726
|
-
SENSITIVE = []
|
4726
|
+
SENSITIVE = [:user_email_list]
|
4727
4727
|
include Aws::Structure
|
4728
4728
|
end
|
4729
4729
|
|
@@ -5934,7 +5934,7 @@ module Aws::Chime
|
|
5934
5934
|
#
|
5935
5935
|
class ListVoiceConnectorTerminationCredentialsResponse < Struct.new(
|
5936
5936
|
:usernames)
|
5937
|
-
SENSITIVE = []
|
5937
|
+
SENSITIVE = [:usernames]
|
5938
5938
|
include Aws::Structure
|
5939
5939
|
end
|
5940
5940
|
|
@@ -7495,7 +7495,7 @@ module Aws::Chime
|
|
7495
7495
|
class SearchAvailablePhoneNumbersResponse < Struct.new(
|
7496
7496
|
:e164_phone_numbers,
|
7497
7497
|
:next_token)
|
7498
|
-
SENSITIVE = []
|
7498
|
+
SENSITIVE = [:e164_phone_numbers]
|
7499
7499
|
include Aws::Structure
|
7500
7500
|
end
|
7501
7501
|
|
@@ -7517,7 +7517,7 @@ module Aws::Chime
|
|
7517
7517
|
class SelectedVideoStreams < Struct.new(
|
7518
7518
|
:attendee_ids,
|
7519
7519
|
:external_user_ids)
|
7520
|
-
SENSITIVE = []
|
7520
|
+
SENSITIVE = [:external_user_ids]
|
7521
7521
|
include Aws::Structure
|
7522
7522
|
end
|
7523
7523
|
|
@@ -8150,7 +8150,7 @@ module Aws::Chime
|
|
8150
8150
|
:meeting_id,
|
8151
8151
|
:attendee_id,
|
8152
8152
|
:tag_keys)
|
8153
|
-
SENSITIVE = []
|
8153
|
+
SENSITIVE = [:tag_keys]
|
8154
8154
|
include Aws::Structure
|
8155
8155
|
end
|
8156
8156
|
|
@@ -8167,7 +8167,7 @@ module Aws::Chime
|
|
8167
8167
|
class UntagMeetingRequest < Struct.new(
|
8168
8168
|
:meeting_id,
|
8169
8169
|
:tag_keys)
|
8170
|
-
SENSITIVE = []
|
8170
|
+
SENSITIVE = [:tag_keys]
|
8171
8171
|
include Aws::Structure
|
8172
8172
|
end
|
8173
8173
|
|
@@ -8184,7 +8184,7 @@ module Aws::Chime
|
|
8184
8184
|
class UntagResourceRequest < Struct.new(
|
8185
8185
|
:resource_arn,
|
8186
8186
|
:tag_keys)
|
8187
|
-
SENSITIVE = [:resource_arn]
|
8187
|
+
SENSITIVE = [:resource_arn, :tag_keys]
|
8188
8188
|
include Aws::Structure
|
8189
8189
|
end
|
8190
8190
|
|
@@ -8687,7 +8687,7 @@ module Aws::Chime
|
|
8687
8687
|
:sip_media_application_id,
|
8688
8688
|
:transaction_id,
|
8689
8689
|
:arguments)
|
8690
|
-
SENSITIVE = []
|
8690
|
+
SENSITIVE = [:arguments]
|
8691
8691
|
include Aws::Structure
|
8692
8692
|
end
|
8693
8693
|
|
data/lib/aws-sdk-chime.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.90.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|