aws-sdk-chime 1.64.0 → 1.67.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chime/client.rb +12 -5
- data/lib/aws-sdk-chime/client_api.rb +2 -0
- data/lib/aws-sdk-chime/types.rb +14 -7
- 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: 753e90b5451f5d7a17e674d93c0d99c2475d5343f163cdeea64cdfefaedd9248
|
4
|
+
data.tar.gz: 0ad0d4db1aa92f019756305d2f20d0cec89ee1faa7cc563f4aebe52035ad1893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6d7be818022f7f943813972f952ad02ce74b3b0af9ebc39ba9b4b0fdc3a4f001579f694ce94a5af8fb758f37fb8844c9e0919a8c1ad2b4bfbd46d66e962b445
|
7
|
+
data.tar.gz: cef5dd0a6b103ab87781cf90d8af4756495d65f79223dd47b9f5d444548eff40d611bea47c9a4a50f5e1c966e89db6dff16f57b361661a2c8c0d73b9dc7b3fc7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.67.0 (2022-03-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Chime VoiceConnector Logging APIs will now support MediaMetricLogs. Also CreateMeetingDialOut now returns AccessDeniedException.
|
8
|
+
|
9
|
+
1.66.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.65.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.64.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.67.0
|
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::Chime
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -950,7 +954,7 @@ module Aws::Chime
|
|
950
954
|
# not need to pass this option.**
|
951
955
|
#
|
952
956
|
# @option params [Array<Types::Tag>] :tags
|
953
|
-
# Tags assigned to the `
|
957
|
+
# Tags assigned to the `AppInstance`.
|
954
958
|
#
|
955
959
|
# @return [Types::CreateAppInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
956
960
|
#
|
@@ -4578,6 +4582,7 @@ module Aws::Chime
|
|
4578
4582
|
# @example Response structure
|
4579
4583
|
#
|
4580
4584
|
# resp.logging_configuration.enable_sip_logs #=> Boolean
|
4585
|
+
# resp.logging_configuration.enable_media_metric_logs #=> Boolean
|
4581
4586
|
#
|
4582
4587
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorLoggingConfiguration AWS API Documentation
|
4583
4588
|
#
|
@@ -6645,12 +6650,14 @@ module Aws::Chime
|
|
6645
6650
|
# voice_connector_id: "NonEmptyString", # required
|
6646
6651
|
# logging_configuration: { # required
|
6647
6652
|
# enable_sip_logs: false,
|
6653
|
+
# enable_media_metric_logs: false,
|
6648
6654
|
# },
|
6649
6655
|
# })
|
6650
6656
|
#
|
6651
6657
|
# @example Response structure
|
6652
6658
|
#
|
6653
6659
|
# resp.logging_configuration.enable_sip_logs #=> Boolean
|
6660
|
+
# resp.logging_configuration.enable_media_metric_logs #=> Boolean
|
6654
6661
|
#
|
6655
6662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorLoggingConfiguration AWS API Documentation
|
6656
6663
|
#
|
@@ -8196,9 +8203,9 @@ module Aws::Chime
|
|
8196
8203
|
req.send_request(options)
|
8197
8204
|
end
|
8198
8205
|
|
8199
|
-
#
|
8200
|
-
#
|
8201
|
-
#
|
8206
|
+
# Invokes the AWS Lambda function associated with the SIP media
|
8207
|
+
# application and transaction ID in an update request. The Lambda
|
8208
|
+
# function can then return a new set of actions.
|
8202
8209
|
#
|
8203
8210
|
# @option params [required, String] :sip_media_application_id
|
8204
8211
|
# The ID of the SIP media application handling the call.
|
@@ -8498,7 +8505,7 @@ module Aws::Chime
|
|
8498
8505
|
params: params,
|
8499
8506
|
config: config)
|
8500
8507
|
context[:gem_name] = 'aws-sdk-chime'
|
8501
|
-
context[:gem_version] = '1.
|
8508
|
+
context[:gem_version] = '1.67.0'
|
8502
8509
|
Seahorse::Client::Request.new(handlers, context)
|
8503
8510
|
end
|
8504
8511
|
|
@@ -1969,6 +1969,7 @@ module Aws::Chime
|
|
1969
1969
|
ListVoiceConnectorsResponse.struct_class = Types::ListVoiceConnectorsResponse
|
1970
1970
|
|
1971
1971
|
LoggingConfiguration.add_member(:enable_sip_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableSIPLogs"))
|
1972
|
+
LoggingConfiguration.add_member(:enable_media_metric_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableMediaMetricLogs"))
|
1972
1973
|
LoggingConfiguration.struct_class = Types::LoggingConfiguration
|
1973
1974
|
|
1974
1975
|
LogoutUserRequest.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location: "uri", location_name: "accountId"))
|
@@ -3168,6 +3169,7 @@ module Aws::Chime
|
|
3168
3169
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceededException)
|
3169
3170
|
o.errors << Shapes::ShapeRef.new(shape: ThrottledClientException)
|
3170
3171
|
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedClientException)
|
3172
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
3171
3173
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
3172
3174
|
o.errors << Shapes::ShapeRef.new(shape: ServiceFailureException)
|
3173
3175
|
end)
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -1777,7 +1777,7 @@ module Aws::Chime
|
|
1777
1777
|
# @return [String]
|
1778
1778
|
#
|
1779
1779
|
# @!attribute [rw] tags
|
1780
|
-
# Tags assigned to the `
|
1780
|
+
# Tags assigned to the `AppInstance`.
|
1781
1781
|
# @return [Array<Types::Tag>]
|
1782
1782
|
#
|
1783
1783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateAppInstanceRequest AWS API Documentation
|
@@ -4449,8 +4449,8 @@ module Aws::Chime
|
|
4449
4449
|
# @return [String]
|
4450
4450
|
#
|
4451
4451
|
# @!attribute [rw] content_identification_type
|
4452
|
-
# Set this field to `PII` to identify
|
4453
|
-
# the transcription output.
|
4452
|
+
# Set this field to `PII` to identify personally identifiable
|
4453
|
+
# information in the transcription output.
|
4454
4454
|
# @return [String]
|
4455
4455
|
#
|
4456
4456
|
# @!attribute [rw] content_redaction_type
|
@@ -7192,17 +7192,23 @@ module Aws::Chime
|
|
7192
7192
|
#
|
7193
7193
|
# {
|
7194
7194
|
# enable_sip_logs: false,
|
7195
|
+
# enable_media_metric_logs: false,
|
7195
7196
|
# }
|
7196
7197
|
#
|
7197
7198
|
# @!attribute [rw] enable_sip_logs
|
7198
|
-
#
|
7199
|
-
#
|
7199
|
+
# Boolean that enables SIP message logs to CloudWatch logs.
|
7200
|
+
# @return [Boolean]
|
7201
|
+
#
|
7202
|
+
# @!attribute [rw] enable_media_metric_logs
|
7203
|
+
# Boolean that enables logging of detailed media metrics for Voice
|
7204
|
+
# Connectors to CloudWatch logs.
|
7200
7205
|
# @return [Boolean]
|
7201
7206
|
#
|
7202
7207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/LoggingConfiguration AWS API Documentation
|
7203
7208
|
#
|
7204
7209
|
class LoggingConfiguration < Struct.new(
|
7205
|
-
:enable_sip_logs
|
7210
|
+
:enable_sip_logs,
|
7211
|
+
:enable_media_metric_logs)
|
7206
7212
|
SENSITIVE = []
|
7207
7213
|
include Aws::Structure
|
7208
7214
|
end
|
@@ -7328,7 +7334,7 @@ module Aws::Chime
|
|
7328
7334
|
# @return [String]
|
7329
7335
|
#
|
7330
7336
|
# @!attribute [rw] event_ingestion_url
|
7331
|
-
# The event ingestion URL.
|
7337
|
+
# The event ingestion URL to which you send client meeting events.
|
7332
7338
|
# @return [String]
|
7333
7339
|
#
|
7334
7340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/MediaPlacement AWS API Documentation
|
@@ -8285,6 +8291,7 @@ module Aws::Chime
|
|
8285
8291
|
# voice_connector_id: "NonEmptyString", # required
|
8286
8292
|
# logging_configuration: { # required
|
8287
8293
|
# enable_sip_logs: false,
|
8294
|
+
# enable_media_metric_logs: false,
|
8288
8295
|
# },
|
8289
8296
|
# }
|
8290
8297
|
#
|
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.67.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:
|
11
|
+
date: 2022-03-11 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|