aws-sdk-chime 1.25.0 → 1.26.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/lib/aws-sdk-chime.rb +1 -1
- data/lib/aws-sdk-chime/client.rb +10 -1
- data/lib/aws-sdk-chime/client_api.rb +9 -0
- data/lib/aws-sdk-chime/types.rb +36 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d1fb9f19d9227451e3125e27fe2680804e7b70a4085d192fcd9a968b87157ca
|
4
|
+
data.tar.gz: d3814016706152a993ac56832b9e8c23b4a2b85a2871143f388d1a5ffca90bd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfb6518ed1b4daa13c005f27fad0b9adcc2c6ebeaa500c21a767478280dace3647f9a0eb8882f5f2bc7853fecafd029f327a289e75e66ce3b7d7a00bae12d110
|
7
|
+
data.tar.gz: 388fd6e85790f2083b5de700a6413bc89d871e4aac97662838cdbda1bf2f43eeeeb816859a1a90d5b8e7c87817c062d0865e7733246f5dee6d3476a4b82a99d2
|
data/lib/aws-sdk-chime.rb
CHANGED
data/lib/aws-sdk-chime/client.rb
CHANGED
@@ -2633,6 +2633,8 @@ module Aws::Chime
|
|
2633
2633
|
#
|
2634
2634
|
# resp.streaming_configuration.data_retention_in_hours #=> Integer
|
2635
2635
|
# resp.streaming_configuration.disabled #=> Boolean
|
2636
|
+
# resp.streaming_configuration.streaming_notification_targets #=> Array
|
2637
|
+
# resp.streaming_configuration.streaming_notification_targets[0].notification_target #=> String, one of "EventBridge", "SNS", "SQS"
|
2636
2638
|
#
|
2637
2639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetVoiceConnectorStreamingConfiguration AWS API Documentation
|
2638
2640
|
#
|
@@ -3755,6 +3757,11 @@ module Aws::Chime
|
|
3755
3757
|
# streaming_configuration: { # required
|
3756
3758
|
# data_retention_in_hours: 1, # required
|
3757
3759
|
# disabled: false,
|
3760
|
+
# streaming_notification_targets: [
|
3761
|
+
# {
|
3762
|
+
# notification_target: "EventBridge", # required, accepts EventBridge, SNS, SQS
|
3763
|
+
# },
|
3764
|
+
# ],
|
3758
3765
|
# },
|
3759
3766
|
# })
|
3760
3767
|
#
|
@@ -3762,6 +3769,8 @@ module Aws::Chime
|
|
3762
3769
|
#
|
3763
3770
|
# resp.streaming_configuration.data_retention_in_hours #=> Integer
|
3764
3771
|
# resp.streaming_configuration.disabled #=> Boolean
|
3772
|
+
# resp.streaming_configuration.streaming_notification_targets #=> Array
|
3773
|
+
# resp.streaming_configuration.streaming_notification_targets[0].notification_target #=> String, one of "EventBridge", "SNS", "SQS"
|
3765
3774
|
#
|
3766
3775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutVoiceConnectorStreamingConfiguration AWS API Documentation
|
3767
3776
|
#
|
@@ -4879,7 +4888,7 @@ module Aws::Chime
|
|
4879
4888
|
params: params,
|
4880
4889
|
config: config)
|
4881
4890
|
context[:gem_name] = 'aws-sdk-chime'
|
4882
|
-
context[:gem_version] = '1.
|
4891
|
+
context[:gem_version] = '1.26.0'
|
4883
4892
|
Seahorse::Client::Request.new(handlers, context)
|
4884
4893
|
end
|
4885
4894
|
|
@@ -232,6 +232,7 @@ module Aws::Chime
|
|
232
232
|
NonEmptyString128 = Shapes::StringShape.new(name: 'NonEmptyString128')
|
233
233
|
NonEmptyStringList = Shapes::ListShape.new(name: 'NonEmptyStringList')
|
234
234
|
NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
|
235
|
+
NotificationTarget = Shapes::StringShape.new(name: 'NotificationTarget')
|
235
236
|
NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
|
236
237
|
NumberSelectionBehavior = Shapes::StringShape.new(name: 'NumberSelectionBehavior')
|
237
238
|
OrderedPhoneNumber = Shapes::StructureShape.new(name: 'OrderedPhoneNumber')
|
@@ -309,6 +310,8 @@ module Aws::Chime
|
|
309
310
|
SigninDelegateGroup = Shapes::StructureShape.new(name: 'SigninDelegateGroup')
|
310
311
|
SigninDelegateGroupList = Shapes::ListShape.new(name: 'SigninDelegateGroupList')
|
311
312
|
StreamingConfiguration = Shapes::StructureShape.new(name: 'StreamingConfiguration')
|
313
|
+
StreamingNotificationTarget = Shapes::StructureShape.new(name: 'StreamingNotificationTarget')
|
314
|
+
StreamingNotificationTargetList = Shapes::ListShape.new(name: 'StreamingNotificationTargetList')
|
312
315
|
String = Shapes::StringShape.new(name: 'String')
|
313
316
|
String128 = Shapes::StringShape.new(name: 'String128')
|
314
317
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
@@ -1315,8 +1318,14 @@ module Aws::Chime
|
|
1315
1318
|
|
1316
1319
|
StreamingConfiguration.add_member(:data_retention_in_hours, Shapes::ShapeRef.new(shape: DataRetentionInHours, required: true, location_name: "DataRetentionInHours"))
|
1317
1320
|
StreamingConfiguration.add_member(:disabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Disabled"))
|
1321
|
+
StreamingConfiguration.add_member(:streaming_notification_targets, Shapes::ShapeRef.new(shape: StreamingNotificationTargetList, location_name: "StreamingNotificationTargets"))
|
1318
1322
|
StreamingConfiguration.struct_class = Types::StreamingConfiguration
|
1319
1323
|
|
1324
|
+
StreamingNotificationTarget.add_member(:notification_target, Shapes::ShapeRef.new(shape: NotificationTarget, required: true, location_name: "NotificationTarget"))
|
1325
|
+
StreamingNotificationTarget.struct_class = Types::StreamingNotificationTarget
|
1326
|
+
|
1327
|
+
StreamingNotificationTargetList.member = Shapes::ShapeRef.new(shape: StreamingNotificationTarget)
|
1328
|
+
|
1320
1329
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
1321
1330
|
|
1322
1331
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -4177,6 +4177,11 @@ module Aws::Chime
|
|
4177
4177
|
# streaming_configuration: { # required
|
4178
4178
|
# data_retention_in_hours: 1, # required
|
4179
4179
|
# disabled: false,
|
4180
|
+
# streaming_notification_targets: [
|
4181
|
+
# {
|
4182
|
+
# notification_target: "EventBridge", # required, accepts EventBridge, SNS, SQS
|
4183
|
+
# },
|
4184
|
+
# ],
|
4180
4185
|
# },
|
4181
4186
|
# }
|
4182
4187
|
#
|
@@ -4662,6 +4667,11 @@ module Aws::Chime
|
|
4662
4667
|
# {
|
4663
4668
|
# data_retention_in_hours: 1, # required
|
4664
4669
|
# disabled: false,
|
4670
|
+
# streaming_notification_targets: [
|
4671
|
+
# {
|
4672
|
+
# notification_target: "EventBridge", # required, accepts EventBridge, SNS, SQS
|
4673
|
+
# },
|
4674
|
+
# ],
|
4665
4675
|
# }
|
4666
4676
|
#
|
4667
4677
|
# @!attribute [rw] data_retention_in_hours
|
@@ -4672,11 +4682,36 @@ module Aws::Chime
|
|
4672
4682
|
# When true, media streaming to Amazon Kinesis is turned off.
|
4673
4683
|
# @return [Boolean]
|
4674
4684
|
#
|
4685
|
+
# @!attribute [rw] streaming_notification_targets
|
4686
|
+
# The streaming notification targets.
|
4687
|
+
# @return [Array<Types::StreamingNotificationTarget>]
|
4688
|
+
#
|
4675
4689
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StreamingConfiguration AWS API Documentation
|
4676
4690
|
#
|
4677
4691
|
class StreamingConfiguration < Struct.new(
|
4678
4692
|
:data_retention_in_hours,
|
4679
|
-
:disabled
|
4693
|
+
:disabled,
|
4694
|
+
:streaming_notification_targets)
|
4695
|
+
include Aws::Structure
|
4696
|
+
end
|
4697
|
+
|
4698
|
+
# The targeted recipient for a streaming configuration notification.
|
4699
|
+
#
|
4700
|
+
# @note When making an API call, you may pass StreamingNotificationTarget
|
4701
|
+
# data as a hash:
|
4702
|
+
#
|
4703
|
+
# {
|
4704
|
+
# notification_target: "EventBridge", # required, accepts EventBridge, SNS, SQS
|
4705
|
+
# }
|
4706
|
+
#
|
4707
|
+
# @!attribute [rw] notification_target
|
4708
|
+
# The streaming notification target.
|
4709
|
+
# @return [String]
|
4710
|
+
#
|
4711
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/StreamingNotificationTarget AWS API Documentation
|
4712
|
+
#
|
4713
|
+
class StreamingNotificationTarget < Struct.new(
|
4714
|
+
:notification_target)
|
4680
4715
|
include Aws::Structure
|
4681
4716
|
end
|
4682
4717
|
|
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.26.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: 2020-05-
|
11
|
+
date: 2020-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|