aws-sdk-chime 1.60.0 → 1.64.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +30 -3
- data/lib/aws-sdk-chime/client_api.rb +13 -0
- data/lib/aws-sdk-chime/types.rb +76 -2
- data/lib/aws-sdk-chime.rb +1 -1
- 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: dc2a6519a8cc7b29750a7b3b49c09e646cc2385c6f215f31407a18bf8c205aa8
|
4
|
+
data.tar.gz: 3429b44f00472e1c439682cac52f4093ef493fa7b621a347bd996d1268cb15e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc2b2024e0bd3d97bba9292540928a2edebb81375faacb7542d93315d27bb31e299719965bb5054de1c3570e846b1bd1f1e7cf40c1a7b283ed120133fdf159ed
|
7
|
+
data.tar.gz: 5e4b50911025eba5721f4883866652548749548fd16e5d8d84f8ab337afcc321f6b0cb1beb4f6b865c9268225c959e7e939de0e8f6e2171f6e806cd23c405d6c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-12-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.63.0 (2021-11-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.62.0 (2021-11-18)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Adds new Transcribe API parameters to StartMeetingTranscription, including support for content identification and redaction (PII & PHI), partial results stabilization, and custom language models.
|
18
|
+
|
19
|
+
1.61.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.60.0 (2021-10-22)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
30
31
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
33
|
|
@@ -73,6 +74,7 @@ module Aws::Chime
|
|
73
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
76
|
add_plugin(Aws::Plugins::HttpChecksum)
|
77
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
76
78
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
79
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
80
|
|
@@ -119,7 +121,9 @@ module Aws::Chime
|
|
119
121
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
122
|
# are very aggressive. Construct and pass an instance of
|
121
123
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
124
|
+
# enable retries and extended timeouts. Instance profile credential
|
125
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
126
|
+
# to true.
|
123
127
|
#
|
124
128
|
# @option options [required, String] :region
|
125
129
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +177,10 @@ module Aws::Chime
|
|
173
177
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
178
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
179
|
#
|
180
|
+
# @option options [String] :defaults_mode ("legacy")
|
181
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
182
|
+
# accepted modes and the configuration defaults that are included.
|
183
|
+
#
|
176
184
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
185
|
# Set to true to disable SDK automatically adding host prefix
|
178
186
|
# to default service endpoint when available.
|
@@ -275,6 +283,15 @@ module Aws::Chime
|
|
275
283
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
284
|
# requests are made, and retries are disabled.
|
277
285
|
#
|
286
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
287
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
288
|
+
# will be used if available.
|
289
|
+
#
|
290
|
+
# @option options [Boolean] :use_fips_endpoint
|
291
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
292
|
+
# When a `fips` region is used, the region is normalized and this config
|
293
|
+
# is set to `true`.
|
294
|
+
#
|
278
295
|
# @option options [Boolean] :validate_params (true)
|
279
296
|
# When `true`, request parameters are validated before
|
280
297
|
# sending the request.
|
@@ -286,7 +303,7 @@ module Aws::Chime
|
|
286
303
|
# seconds to wait when opening a HTTP session before raising a
|
287
304
|
# `Timeout::Error`.
|
288
305
|
#
|
289
|
-
# @option options [
|
306
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
307
|
# number of seconds to wait for response data. This value can
|
291
308
|
# safely be set per-request on the session.
|
292
309
|
#
|
@@ -302,6 +319,9 @@ module Aws::Chime
|
|
302
319
|
# disables this behaviour. This value can safely be set per
|
303
320
|
# request on the session.
|
304
321
|
#
|
322
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
323
|
+
# in seconds.
|
324
|
+
#
|
305
325
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
326
|
# HTTP debug output will be sent to the `:logger`.
|
307
327
|
#
|
@@ -7280,6 +7300,12 @@ module Aws::Chime
|
|
7280
7300
|
# vocabulary_filter_name: "String",
|
7281
7301
|
# vocabulary_name: "String",
|
7282
7302
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
7303
|
+
# enable_partial_results_stabilization: false,
|
7304
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
7305
|
+
# content_identification_type: "PII", # accepts PII
|
7306
|
+
# content_redaction_type: "PII", # accepts PII
|
7307
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
7308
|
+
# language_model_name: "TranscribeLanguageModelName",
|
7283
7309
|
# },
|
7284
7310
|
# engine_transcribe_medical_settings: {
|
7285
7311
|
# language_code: "en-US", # required, accepts en-US
|
@@ -7287,6 +7313,7 @@ module Aws::Chime
|
|
7287
7313
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
7288
7314
|
# vocabulary_name: "String",
|
7289
7315
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
7316
|
+
# content_identification_type: "PHI", # accepts PHI
|
7290
7317
|
# },
|
7291
7318
|
# },
|
7292
7319
|
# })
|
@@ -8471,7 +8498,7 @@ module Aws::Chime
|
|
8471
8498
|
params: params,
|
8472
8499
|
config: config)
|
8473
8500
|
context[:gem_name] = 'aws-sdk-chime'
|
8474
|
-
context[:gem_version] = '1.
|
8501
|
+
context[:gem_version] = '1.64.0'
|
8475
8502
|
Seahorse::Client::Request.new(handlers, context)
|
8476
8503
|
end
|
8477
8504
|
|
@@ -561,11 +561,17 @@ module Aws::Chime
|
|
561
561
|
ThrottledClientException = Shapes::StructureShape.new(name: 'ThrottledClientException')
|
562
562
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
563
563
|
TollFreePrefix = Shapes::StringShape.new(name: 'TollFreePrefix')
|
564
|
+
TranscribeContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeContentIdentificationType')
|
565
|
+
TranscribeContentRedactionType = Shapes::StringShape.new(name: 'TranscribeContentRedactionType')
|
564
566
|
TranscribeLanguageCode = Shapes::StringShape.new(name: 'TranscribeLanguageCode')
|
567
|
+
TranscribeLanguageModelName = Shapes::StringShape.new(name: 'TranscribeLanguageModelName')
|
568
|
+
TranscribeMedicalContentIdentificationType = Shapes::StringShape.new(name: 'TranscribeMedicalContentIdentificationType')
|
565
569
|
TranscribeMedicalLanguageCode = Shapes::StringShape.new(name: 'TranscribeMedicalLanguageCode')
|
566
570
|
TranscribeMedicalRegion = Shapes::StringShape.new(name: 'TranscribeMedicalRegion')
|
567
571
|
TranscribeMedicalSpecialty = Shapes::StringShape.new(name: 'TranscribeMedicalSpecialty')
|
568
572
|
TranscribeMedicalType = Shapes::StringShape.new(name: 'TranscribeMedicalType')
|
573
|
+
TranscribePartialResultsStability = Shapes::StringShape.new(name: 'TranscribePartialResultsStability')
|
574
|
+
TranscribePiiEntityTypes = Shapes::StringShape.new(name: 'TranscribePiiEntityTypes')
|
569
575
|
TranscribeRegion = Shapes::StringShape.new(name: 'TranscribeRegion')
|
570
576
|
TranscribeVocabularyFilterMethod = Shapes::StringShape.new(name: 'TranscribeVocabularyFilterMethod')
|
571
577
|
TranscriptionConfiguration = Shapes::StructureShape.new(name: 'TranscriptionConfiguration')
|
@@ -1435,6 +1441,7 @@ module Aws::Chime
|
|
1435
1441
|
EngineTranscribeMedicalSettings.add_member(:type, Shapes::ShapeRef.new(shape: TranscribeMedicalType, required: true, location_name: "Type"))
|
1436
1442
|
EngineTranscribeMedicalSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
1437
1443
|
EngineTranscribeMedicalSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeMedicalRegion, location_name: "Region"))
|
1444
|
+
EngineTranscribeMedicalSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeMedicalContentIdentificationType, location_name: "ContentIdentificationType"))
|
1438
1445
|
EngineTranscribeMedicalSettings.struct_class = Types::EngineTranscribeMedicalSettings
|
1439
1446
|
|
1440
1447
|
EngineTranscribeSettings.add_member(:language_code, Shapes::ShapeRef.new(shape: TranscribeLanguageCode, required: true, location_name: "LanguageCode"))
|
@@ -1442,6 +1449,12 @@ module Aws::Chime
|
|
1442
1449
|
EngineTranscribeSettings.add_member(:vocabulary_filter_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyFilterName"))
|
1443
1450
|
EngineTranscribeSettings.add_member(:vocabulary_name, Shapes::ShapeRef.new(shape: String, location_name: "VocabularyName"))
|
1444
1451
|
EngineTranscribeSettings.add_member(:region, Shapes::ShapeRef.new(shape: TranscribeRegion, location_name: "Region"))
|
1452
|
+
EngineTranscribeSettings.add_member(:enable_partial_results_stabilization, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnablePartialResultsStabilization"))
|
1453
|
+
EngineTranscribeSettings.add_member(:partial_results_stability, Shapes::ShapeRef.new(shape: TranscribePartialResultsStability, location_name: "PartialResultsStability"))
|
1454
|
+
EngineTranscribeSettings.add_member(:content_identification_type, Shapes::ShapeRef.new(shape: TranscribeContentIdentificationType, location_name: "ContentIdentificationType"))
|
1455
|
+
EngineTranscribeSettings.add_member(:content_redaction_type, Shapes::ShapeRef.new(shape: TranscribeContentRedactionType, location_name: "ContentRedactionType"))
|
1456
|
+
EngineTranscribeSettings.add_member(:pii_entity_types, Shapes::ShapeRef.new(shape: TranscribePiiEntityTypes, location_name: "PiiEntityTypes"))
|
1457
|
+
EngineTranscribeSettings.add_member(:language_model_name, Shapes::ShapeRef.new(shape: TranscribeLanguageModelName, location_name: "LanguageModelName"))
|
1445
1458
|
EngineTranscribeSettings.struct_class = Types::EngineTranscribeSettings
|
1446
1459
|
|
1447
1460
|
EventsConfiguration.add_member(:bot_id, Shapes::ShapeRef.new(shape: String, location_name: "BotId"))
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -4353,6 +4353,7 @@ module Aws::Chime
|
|
4353
4353
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
4354
4354
|
# vocabulary_name: "String",
|
4355
4355
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
4356
|
+
# content_identification_type: "PHI", # accepts PHI
|
4356
4357
|
# }
|
4357
4358
|
#
|
4358
4359
|
# @!attribute [rw] language_code
|
@@ -4377,6 +4378,11 @@ module Aws::Chime
|
|
4377
4378
|
# specify a Region, Amazon Chime uses the meeting's Region.
|
4378
4379
|
# @return [String]
|
4379
4380
|
#
|
4381
|
+
# @!attribute [rw] content_identification_type
|
4382
|
+
# Set this field to `PHI` to identify personal health information in
|
4383
|
+
# the transcription output.
|
4384
|
+
# @return [String]
|
4385
|
+
#
|
4380
4386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeMedicalSettings AWS API Documentation
|
4381
4387
|
#
|
4382
4388
|
class EngineTranscribeMedicalSettings < Struct.new(
|
@@ -4384,7 +4390,8 @@ module Aws::Chime
|
|
4384
4390
|
:specialty,
|
4385
4391
|
:type,
|
4386
4392
|
:vocabulary_name,
|
4387
|
-
:region
|
4393
|
+
:region,
|
4394
|
+
:content_identification_type)
|
4388
4395
|
SENSITIVE = []
|
4389
4396
|
include Aws::Structure
|
4390
4397
|
end
|
@@ -4400,6 +4407,12 @@ module Aws::Chime
|
|
4400
4407
|
# vocabulary_filter_name: "String",
|
4401
4408
|
# vocabulary_name: "String",
|
4402
4409
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
4410
|
+
# enable_partial_results_stabilization: false,
|
4411
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
4412
|
+
# content_identification_type: "PII", # accepts PII
|
4413
|
+
# content_redaction_type: "PII", # accepts PII
|
4414
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
4415
|
+
# language_model_name: "TranscribeLanguageModelName",
|
4403
4416
|
# }
|
4404
4417
|
#
|
4405
4418
|
# @!attribute [rw] language_code
|
@@ -4423,6 +4436,47 @@ module Aws::Chime
|
|
4423
4436
|
# Region, Amazon Chime uses the meeting's Region.
|
4424
4437
|
# @return [String]
|
4425
4438
|
#
|
4439
|
+
# @!attribute [rw] enable_partial_results_stabilization
|
4440
|
+
# Generates partial transcription results that are less likely to
|
4441
|
+
# change as meeting attendees speak. It does so by only allowing the
|
4442
|
+
# last few words from the partial results to change.
|
4443
|
+
# @return [Boolean]
|
4444
|
+
#
|
4445
|
+
# @!attribute [rw] partial_results_stability
|
4446
|
+
# The stabity level of a partial results transcription. Determines how
|
4447
|
+
# stable you want the transcription results to be. A higher level
|
4448
|
+
# means the transcription results are less likely to change.
|
4449
|
+
# @return [String]
|
4450
|
+
#
|
4451
|
+
# @!attribute [rw] content_identification_type
|
4452
|
+
# Set this field to `PII` to identify personal health information in
|
4453
|
+
# the transcription output.
|
4454
|
+
# @return [String]
|
4455
|
+
#
|
4456
|
+
# @!attribute [rw] content_redaction_type
|
4457
|
+
# Set this field to `PII` to redact personally identifiable
|
4458
|
+
# information in the transcription output. Content redaction is
|
4459
|
+
# performed only upon complete transcription of the audio segments.
|
4460
|
+
# @return [String]
|
4461
|
+
#
|
4462
|
+
# @!attribute [rw] pii_entity_types
|
4463
|
+
# Lists the PII entity types you want to identify or redact. To
|
4464
|
+
# specify entity types, you must enable `ContentIdentificationType` or
|
4465
|
+
# `ContentRedactionType`.
|
4466
|
+
#
|
4467
|
+
# `PIIEntityTypes` must be comma-separated. The available values are:
|
4468
|
+
# `BANK_ACCOUNT_NUMBER`, `BANK_ROUTING, CREDIT_DEBIT_NUMBER`,
|
4469
|
+
# `CREDIT_DEBIT_CVV`, `CREDIT_DEBIT_EXPIRY`, `PIN`, `EMAIL`,
|
4470
|
+
# `ADDRESS`, `NAME`, `PHONE`, `SSN`, and `ALL`.
|
4471
|
+
#
|
4472
|
+
# `PiiEntityTypes` is an optional parameter with a default value of
|
4473
|
+
# `ALL`.
|
4474
|
+
# @return [String]
|
4475
|
+
#
|
4476
|
+
# @!attribute [rw] language_model_name
|
4477
|
+
# The name of the language model used during transcription.
|
4478
|
+
# @return [String]
|
4479
|
+
#
|
4426
4480
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/EngineTranscribeSettings AWS API Documentation
|
4427
4481
|
#
|
4428
4482
|
class EngineTranscribeSettings < Struct.new(
|
@@ -4430,7 +4484,13 @@ module Aws::Chime
|
|
4430
4484
|
:vocabulary_filter_method,
|
4431
4485
|
:vocabulary_filter_name,
|
4432
4486
|
:vocabulary_name,
|
4433
|
-
:region
|
4487
|
+
:region,
|
4488
|
+
:enable_partial_results_stabilization,
|
4489
|
+
:partial_results_stability,
|
4490
|
+
:content_identification_type,
|
4491
|
+
:content_redaction_type,
|
4492
|
+
:pii_entity_types,
|
4493
|
+
:language_model_name)
|
4434
4494
|
SENSITIVE = []
|
4435
4495
|
include Aws::Structure
|
4436
4496
|
end
|
@@ -9325,6 +9385,12 @@ module Aws::Chime
|
|
9325
9385
|
# vocabulary_filter_name: "String",
|
9326
9386
|
# vocabulary_name: "String",
|
9327
9387
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
9388
|
+
# enable_partial_results_stabilization: false,
|
9389
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
9390
|
+
# content_identification_type: "PII", # accepts PII
|
9391
|
+
# content_redaction_type: "PII", # accepts PII
|
9392
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
9393
|
+
# language_model_name: "TranscribeLanguageModelName",
|
9328
9394
|
# },
|
9329
9395
|
# engine_transcribe_medical_settings: {
|
9330
9396
|
# language_code: "en-US", # required, accepts en-US
|
@@ -9332,6 +9398,7 @@ module Aws::Chime
|
|
9332
9398
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
9333
9399
|
# vocabulary_name: "String",
|
9334
9400
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
9401
|
+
# content_identification_type: "PHI", # accepts PHI
|
9335
9402
|
# },
|
9336
9403
|
# },
|
9337
9404
|
# }
|
@@ -9701,6 +9768,12 @@ module Aws::Chime
|
|
9701
9768
|
# vocabulary_filter_name: "String",
|
9702
9769
|
# vocabulary_name: "String",
|
9703
9770
|
# region: "us-east-2", # accepts us-east-2, us-east-1, us-west-2, ap-northeast-2, ap-southeast-2, ap-northeast-1, ca-central-1, eu-central-1, eu-west-1, eu-west-2, sa-east-1, auto
|
9771
|
+
# enable_partial_results_stabilization: false,
|
9772
|
+
# partial_results_stability: "low", # accepts low, medium, high
|
9773
|
+
# content_identification_type: "PII", # accepts PII
|
9774
|
+
# content_redaction_type: "PII", # accepts PII
|
9775
|
+
# pii_entity_types: "TranscribePiiEntityTypes",
|
9776
|
+
# language_model_name: "TranscribeLanguageModelName",
|
9704
9777
|
# },
|
9705
9778
|
# engine_transcribe_medical_settings: {
|
9706
9779
|
# language_code: "en-US", # required, accepts en-US
|
@@ -9708,6 +9781,7 @@ module Aws::Chime
|
|
9708
9781
|
# type: "CONVERSATION", # required, accepts CONVERSATION, DICTATION
|
9709
9782
|
# vocabulary_name: "String",
|
9710
9783
|
# region: "us-east-1", # accepts us-east-1, us-east-2, us-west-2, ap-southeast-2, ca-central-1, eu-west-1, auto
|
9784
|
+
# content_identification_type: "PHI", # accepts PHI
|
9711
9785
|
# },
|
9712
9786
|
# }
|
9713
9787
|
#
|
data/lib/aws-sdk-chime.rb
CHANGED
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.64.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: 2021-
|
11
|
+
date: 2021-12-21 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.125.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.125.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|