aws-sdk-ivs 1.25.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b19909d1d191c3f913db51f3fd303d90583a0a2a2a92deb3287d33509005c475
4
- data.tar.gz: 2e4fc07bef70b46a69b67b75f0c902bdc250f9804fadea9d58196fc66075a7a4
3
+ metadata.gz: 1b72fbdf6075d13c4bce50cc4e44e19ffc3df87a5510ebfa2ff3422aa09216ef
4
+ data.tar.gz: a0f2fe736208d85ce845cefb8d4ef3482ad814c087909912c04f09713385152e
5
5
  SHA512:
6
- metadata.gz: aa2c88e14d0029723d4833c1a43fc528f85394fec6188b444f24f7a66dfdc09a6e0d1825ba161ce5e265e6837c069373a8f266e93d982f3c34e7f3af50bf55df
7
- data.tar.gz: aac8d418c0a0c0ece8ae44b6d6686487daa3d04439c5161f6d129fb11de060dabe705a7dfdb898ec76978812b0518fb0dd68d6b17fe1e2bb1069e2154e55bdd4
6
+ metadata.gz: 57c79001e2b8c75c6396f1e5644d5cccac074024f31f5d97fb2f892bef3172009085457b686e5dcc8a2337f0358ffd03d21b783eab6d86042a0ac4fd6e7798a1
7
+ data.tar.gz: 2713954ac93a003c438f8f5998b217d958ce448c5f818270489ff2dfa7afd2ac55a94d7dff7bf5c95bf2307e1f0b1e4270c6c9500c546def09df141384a8fe7d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2023-02-16)
5
+ ------------------
6
+
7
+ * Feature - Doc-only update. Updated text description in DeleteChannel, Stream, and StreamSummary.
8
+
9
+ 1.26.0 (2023-01-20)
10
+ ------------------
11
+
12
+ * Feature - API and Doc update. Update to arns field in BatchGetStreamKey. Also updates to operations and structures.
13
+
4
14
  1.25.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -414,7 +414,7 @@ module Aws::IVS
414
414
  # Performs GetStreamKey on multiple ARNs simultaneously.
415
415
  #
416
416
  # @option params [required, Array<String>] :arns
417
- # Array of ARNs, one per channel.
417
+ # Array of ARNs, one per stream key.
418
418
  #
419
419
  # @return [Types::BatchGetStreamKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
420
420
  #
@@ -1503,7 +1503,8 @@ module Aws::IVS
1503
1503
  # must be URL-encoded.
1504
1504
  #
1505
1505
  # @option params [required, Hash<String,String>] :tags
1506
- # Array of tags to be added or updated. See [Tagging Amazon Web Services
1506
+ # Array of tags to be added or updated. Array of maps, each of the form
1507
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1507
1508
  # Resources][1] for more information, including restrictions that apply
1508
1509
  # to tags and "Tag naming limits and requirements"; Amazon IVS has no
1509
1510
  # service-specific constraints beyond what is documented there.
@@ -1539,7 +1540,8 @@ module Aws::IVS
1539
1540
  # URL-encoded.
1540
1541
  #
1541
1542
  # @option params [required, Array<String>] :tag_keys
1542
- # Array of tags to be removed. See [Tagging Amazon Web Services
1543
+ # Array of tags to be removed. Array of maps, each of the form
1544
+ # s`tring:string (key:value)`. See [Tagging Amazon Web Services
1543
1545
  # Resources][1] for more information, including restrictions that apply
1544
1546
  # to tags and "Tag naming limits and requirements"; Amazon IVS has no
1545
1547
  # service-specific constraints beyond what is documented there.
@@ -1659,7 +1661,7 @@ module Aws::IVS
1659
1661
  params: params,
1660
1662
  config: config)
1661
1663
  context[:gem_name] = 'aws-sdk-ivs'
1662
- context[:gem_version] = '1.25.0'
1664
+ context[:gem_version] = '1.27.0'
1663
1665
  Seahorse::Client::Request.new(handlers, context)
1664
1666
  end
1665
1667
 
@@ -14,36 +14,39 @@ module Aws::IVS
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
- end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://ivs-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
- end
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- return Aws::Endpoints::Endpoint.new(url: "https://ivs-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
- end
37
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
- return Aws::Endpoints::Endpoint.new(url: "https://ivs.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://ivs-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://ivs-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://ivs.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://ivs.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://ivs.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -107,7 +107,7 @@ module Aws::IVS
107
107
  end
108
108
 
109
109
  # @!attribute [rw] arns
110
- # Array of ARNs, one per channel.
110
+ # Array of ARNs, one per stream key.
111
111
  # @return [Array<String>]
112
112
  #
113
113
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/BatchGetStreamKeyRequest AWS API Documentation
@@ -171,11 +171,11 @@ module Aws::IVS
171
171
  # @return [String]
172
172
  #
173
173
  # @!attribute [rw] tags
174
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
175
- # See [Tagging Amazon Web Services Resources][1] for more information,
176
- # including restrictions that apply to tags and "Tag naming limits
177
- # and requirements"; Amazon IVS has no service-specific constraints
178
- # beyond what is documented there.
174
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
175
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
176
+ # Resources][1] for more information, including restrictions that
177
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
178
+ # has no service-specific constraints beyond what is documented there.
179
179
  #
180
180
  #
181
181
  #
@@ -260,11 +260,11 @@ module Aws::IVS
260
260
  # @return [String]
261
261
  #
262
262
  # @!attribute [rw] tags
263
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
264
- # See [Tagging Amazon Web Services Resources][1] for more information,
265
- # including restrictions that apply to tags and "Tag naming limits
266
- # and requirements"; Amazon IVS has no service-specific constraints
267
- # beyond what is documented there.
263
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
264
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
265
+ # Resources][1] for more information, including restrictions that
266
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
267
+ # has no service-specific constraints beyond what is documented there.
268
268
  #
269
269
  #
270
270
  #
@@ -1030,6 +1030,8 @@ module Aws::IVS
1030
1030
  end
1031
1031
 
1032
1032
  # @!attribute [rw] tags
1033
+ # Tags attached to the resource. Array of maps, each of the form
1034
+ # `string:string (key:value)`.
1033
1035
  # @return [Hash<String,String>]
1034
1036
  #
1035
1037
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListTagsForResourceResponse AWS API Documentation
@@ -1067,11 +1069,11 @@ module Aws::IVS
1067
1069
  # @return [String]
1068
1070
  #
1069
1071
  # @!attribute [rw] tags
1070
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1071
- # See [Tagging Amazon Web Services Resources][1] for more information,
1072
- # including restrictions that apply to tags and "Tag naming limits
1073
- # and requirements"; Amazon IVS has no service-specific constraints
1074
- # beyond what is documented there.
1072
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1073
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1074
+ # Resources][1] for more information, including restrictions that
1075
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1076
+ # has no service-specific constraints beyond what is documented there.
1075
1077
  #
1076
1078
  #
1077
1079
  #
@@ -1100,11 +1102,11 @@ module Aws::IVS
1100
1102
  # @return [String]
1101
1103
  #
1102
1104
  # @!attribute [rw] tags
1103
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1104
- # See [Tagging Amazon Web Services Resources][1] for more information,
1105
- # including restrictions that apply to tags and "Tag naming limits
1106
- # and requirements"; Amazon IVS has no service-specific constraints
1107
- # beyond what is documented there.
1105
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1106
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1107
+ # Resources][1] for more information, including restrictions that
1108
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1109
+ # has no service-specific constraints beyond what is documented there.
1108
1110
  #
1109
1111
  #
1110
1112
  #
@@ -1167,11 +1169,11 @@ module Aws::IVS
1167
1169
  # @return [String]
1168
1170
  #
1169
1171
  # @!attribute [rw] tags
1170
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1171
- # See [Tagging Amazon Web Services Resources][1] for more information,
1172
- # including restrictions that apply to tags and "Tag naming limits
1173
- # and requirements"; Amazon IVS has no service-specific constraints
1174
- # beyond what is documented there.
1172
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1173
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1174
+ # Resources][1] for more information, including restrictions that
1175
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1176
+ # has no service-specific constraints beyond what is documented there.
1175
1177
  #
1176
1178
  #
1177
1179
  #
@@ -1220,11 +1222,11 @@ module Aws::IVS
1220
1222
  # @return [String]
1221
1223
  #
1222
1224
  # @!attribute [rw] tags
1223
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1224
- # See [Tagging Amazon Web Services Resources][1] for more information,
1225
- # including restrictions that apply to tags and "Tag naming limits
1226
- # and requirements"; Amazon IVS has no service-specific constraints
1227
- # beyond what is documented there.
1225
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1226
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1227
+ # Resources][1] for more information, including restrictions that
1228
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1229
+ # has no service-specific constraints beyond what is documented there.
1228
1230
  #
1229
1231
  #
1230
1232
  #
@@ -1404,11 +1406,11 @@ module Aws::IVS
1404
1406
  # @return [String]
1405
1407
  #
1406
1408
  # @!attribute [rw] tags
1407
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1408
- # See [Tagging Amazon Web Services Resources][1] for more information,
1409
- # including restrictions that apply to tags and "Tag naming limits
1410
- # and requirements"; Amazon IVS has no service-specific constraints
1411
- # beyond what is documented there.
1409
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1410
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1411
+ # Resources][1] for more information, including restrictions that
1412
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1413
+ # has no service-specific constraints beyond what is documented there.
1412
1414
  #
1413
1415
  #
1414
1416
  #
@@ -1441,11 +1443,11 @@ module Aws::IVS
1441
1443
  # @return [String]
1442
1444
  #
1443
1445
  # @!attribute [rw] tags
1444
- # Array of 1-50 maps, each of the form `string:string (key:value)`.
1445
- # See [Tagging Amazon Web Services Resources][1] for more information,
1446
- # including restrictions that apply to tags and "Tag naming limits
1447
- # and requirements"; Amazon IVS has no service-specific constraints
1448
- # beyond what is documented there.
1446
+ # Tags attached to the resource. Array of 1-50 maps, each of the form
1447
+ # `string:string (key:value)`. See [Tagging Amazon Web Services
1448
+ # Resources][1] for more information, including restrictions that
1449
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1450
+ # has no service-specific constraints beyond what is documented there.
1449
1451
  #
1450
1452
  #
1451
1453
  #
@@ -1615,11 +1617,11 @@ module Aws::IVS
1615
1617
  # @return [String]
1616
1618
  #
1617
1619
  # @!attribute [rw] tags
1618
- # Array of tags to be added or updated. See [Tagging Amazon Web
1619
- # Services Resources][1] for more information, including restrictions
1620
- # that apply to tags and "Tag naming limits and requirements";
1621
- # Amazon IVS has no service-specific constraints beyond what is
1622
- # documented there.
1620
+ # Array of tags to be added or updated. Array of maps, each of the
1621
+ # form `string:string (key:value)`. See [Tagging Amazon Web Services
1622
+ # Resources][1] for more information, including restrictions that
1623
+ # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1624
+ # has no service-specific constraints beyond what is documented there.
1623
1625
  #
1624
1626
  #
1625
1627
  #
@@ -1691,7 +1693,8 @@ module Aws::IVS
1691
1693
  # @return [String]
1692
1694
  #
1693
1695
  # @!attribute [rw] tag_keys
1694
- # Array of tags to be removed. See [Tagging Amazon Web Services
1696
+ # Array of tags to be removed. Array of maps, each of the form
1697
+ # s`tring:string (key:value)`. See [Tagging Amazon Web Services
1695
1698
  # Resources][1] for more information, including restrictions that
1696
1699
  # apply to tags and "Tag naming limits and requirements"; Amazon IVS
1697
1700
  # has no service-specific constraints beyond what is documented there.
data/lib/aws-sdk-ivs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivs/customizations'
52
52
  # @!group service
53
53
  module Aws::IVS
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.27.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: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core