aws-sdk-ivs 1.83.0 → 1.84.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +15 -1
- data/lib/aws-sdk-ivs/client_api.rb +1 -0
- data/lib/aws-sdk-ivs/types.rb +15 -1
- data/lib/aws-sdk-ivs.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 20ce3ae5031ef094d90431d604a042379b9e01e93fb6a5205a6e7a99890e2a2d
|
|
4
|
+
data.tar.gz: 0150e9ac841f0965622179762cdb48afb5bd830a3247bd6eac172b0c410eb4fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e01e860b8665405572918b66e8335edce41b1ba5d26e344255f9854364a4ef25c3ba14eca8fe46af617a2eb005aa359954d95c44a97b78a9a3b5cd116675d5ab
|
|
7
|
+
data.tar.gz: a7bee232e90f9bf9b9c745c82620228234eb3da1d49b5d02548bc96819bda5a4149b59c518d539c9a90efb4946a59aeb16dfa9b221c0eae8dc43df6891185b66
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.84.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
|
@@ -657,6 +657,17 @@ module Aws::IVS
|
|
|
657
657
|
# @option params [required, Array<Types::MediaTailorPlaybackConfiguration>] :media_tailor_playback_configurations
|
|
658
658
|
# List of integration configurations with media tailor resources.
|
|
659
659
|
#
|
|
660
|
+
# @option params [Hash<String,String>] :tags
|
|
661
|
+
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
|
662
|
+
# [Best practices and strategies][1] in *Tagging Amazon Web Services
|
|
663
|
+
# Resources and Tag Editor* for details, including restrictions that
|
|
664
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
|
665
|
+
# has no service-specific constraints beyond what is documented there.
|
|
666
|
+
#
|
|
667
|
+
#
|
|
668
|
+
#
|
|
669
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
|
670
|
+
#
|
|
660
671
|
# @return [Types::CreateAdConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
661
672
|
#
|
|
662
673
|
# * {Types::CreateAdConfigurationResponse#ad_configuration #ad_configuration} => Types::AdConfiguration
|
|
@@ -670,6 +681,9 @@ module Aws::IVS
|
|
|
670
681
|
# playback_configuration_arn: "MediaTailorPlaybackConfigurationArn",
|
|
671
682
|
# },
|
|
672
683
|
# ],
|
|
684
|
+
# tags: {
|
|
685
|
+
# "TagKey" => "TagValue",
|
|
686
|
+
# },
|
|
673
687
|
# })
|
|
674
688
|
#
|
|
675
689
|
# @example Response structure
|
|
@@ -2506,7 +2520,7 @@ module Aws::IVS
|
|
|
2506
2520
|
tracer: tracer
|
|
2507
2521
|
)
|
|
2508
2522
|
context[:gem_name] = 'aws-sdk-ivs'
|
|
2509
|
-
context[:gem_version] = '1.
|
|
2523
|
+
context[:gem_version] = '1.84.0'
|
|
2510
2524
|
Seahorse::Client::Request.new(handlers, context)
|
|
2511
2525
|
end
|
|
2512
2526
|
|
|
@@ -385,6 +385,7 @@ module Aws::IVS
|
|
|
385
385
|
|
|
386
386
|
CreateAdConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: AdConfigurationName, location_name: "name"))
|
|
387
387
|
CreateAdConfigurationRequest.add_member(:media_tailor_playback_configurations, Shapes::ShapeRef.new(shape: MediaTailorPlaybackConfigurationsList, required: true, location_name: "mediaTailorPlaybackConfigurations"))
|
|
388
|
+
CreateAdConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
388
389
|
CreateAdConfigurationRequest.struct_class = Types::CreateAdConfigurationRequest
|
|
389
390
|
|
|
390
391
|
CreateAdConfigurationResponse.add_member(:ad_configuration, Shapes::ShapeRef.new(shape: AdConfiguration, required: true, location_name: "adConfiguration"))
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
|
@@ -833,11 +833,25 @@ module Aws::IVS
|
|
|
833
833
|
# List of integration configurations with media tailor resources.
|
|
834
834
|
# @return [Array<Types::MediaTailorPlaybackConfiguration>]
|
|
835
835
|
#
|
|
836
|
+
# @!attribute [rw] tags
|
|
837
|
+
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
|
838
|
+
# See [Best practices and strategies][1] in *Tagging Amazon Web
|
|
839
|
+
# Services Resources and Tag Editor* for details, including
|
|
840
|
+
# restrictions that apply to tags and "Tag naming limits and
|
|
841
|
+
# requirements"; Amazon IVS has no service-specific constraints
|
|
842
|
+
# beyond what is documented there.
|
|
843
|
+
#
|
|
844
|
+
#
|
|
845
|
+
#
|
|
846
|
+
# [1]: https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html
|
|
847
|
+
# @return [Hash<String,String>]
|
|
848
|
+
#
|
|
836
849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateAdConfigurationRequest AWS API Documentation
|
|
837
850
|
#
|
|
838
851
|
class CreateAdConfigurationRequest < Struct.new(
|
|
839
852
|
:name,
|
|
840
|
-
:media_tailor_playback_configurations
|
|
853
|
+
:media_tailor_playback_configurations,
|
|
854
|
+
:tags)
|
|
841
855
|
SENSITIVE = []
|
|
842
856
|
include Aws::Structure
|
|
843
857
|
end
|
data/lib/aws-sdk-ivs.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -148,7 +148,8 @@ module Aws
|
|
|
148
148
|
{
|
|
149
149
|
playback_configuration_arn: ::String?
|
|
150
150
|
},
|
|
151
|
-
]
|
|
151
|
+
],
|
|
152
|
+
?tags: Hash[::String, ::String]
|
|
152
153
|
) -> _CreateAdConfigurationResponseSuccess
|
|
153
154
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAdConfigurationResponseSuccess
|
|
154
155
|
|
data/sig/types.rbs
CHANGED
|
@@ -185,6 +185,7 @@ module Aws::IVS
|
|
|
185
185
|
class CreateAdConfigurationRequest
|
|
186
186
|
attr_accessor name: ::String
|
|
187
187
|
attr_accessor media_tailor_playback_configurations: ::Array[Types::MediaTailorPlaybackConfiguration]
|
|
188
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
188
189
|
SENSITIVE: []
|
|
189
190
|
end
|
|
190
191
|
|