aws-sdk-ssmincidents 1.15.0 → 1.16.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: 648f63a8a23fe2bccf4a48fe4d8390b9530b05f4be0ec7dde542d67c0c63e71a
4
- data.tar.gz: 86fa948709b86e032f4387c404c96ee88516a0b8c47119089d72e2853cc52a2a
3
+ metadata.gz: 78a6944a6162b5c2463861e799ea1718c019c6e5c9a30d8e8969b47441b65d05
4
+ data.tar.gz: ebd44e1e0ef5fe0f2f1537573455fe7b9423d06128f1c011fa12bfa165d2f382
5
5
  SHA512:
6
- metadata.gz: 736f2f3a93461bc38615e6d32418728e4c294b0c291ce57639ad24a34d539f897ff4d9ea0d8ae24d3801533b0539b2979a97a07f11d1b6a94963174f32ff58dc
7
- data.tar.gz: 9aeec18e365805f1f4f083b6fedae3d40f390d6891fd3e2fb5589307042cbdfe43a9987317b6ab8eb5868637836b85f377f7e5ecc8f6ae669b3e229294f3ab8d
6
+ metadata.gz: 43ba9b55ffaa06bf6d56a361775a0eec4e512cd4793bf1fb93b150f228eb2ecc8c1e47ccc19271d4e5e835a0d5e123a82f21c50274a26cb0438cf7e940cb10a6
7
+ data.tar.gz: f7fe36591a87508f0049125f22f773a14381e138daf0aa26a18b2a4fde685a600ba2c2c3f46da7e7bd77e7dd780384cce4e818bdf99ff05ad745cbf9d291e615
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2022-10-13)
5
+ ------------------
6
+
7
+ * Feature - Update RelatedItem enum to support Tasks
8
+
4
9
  1.15.0 (2022-07-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.15.0
1
+ 1.16.0
@@ -1028,7 +1028,7 @@ module Aws::SSMIncidents
1028
1028
  #
1029
1029
  # resp.next_token #=> String
1030
1030
  # resp.related_items #=> Array
1031
- # resp.related_items[0].identifier.type #=> String, one of "ANALYSIS", "INCIDENT", "METRIC", "PARENT", "ATTACHMENT", "OTHER", "AUTOMATION", "INVOLVED_RESOURCE"
1031
+ # resp.related_items[0].identifier.type #=> String, one of "ANALYSIS", "INCIDENT", "METRIC", "PARENT", "ATTACHMENT", "OTHER", "AUTOMATION", "INVOLVED_RESOURCE", "TASK"
1032
1032
  # resp.related_items[0].identifier.value.arn #=> String
1033
1033
  # resp.related_items[0].identifier.value.metric_definition #=> String
1034
1034
  # resp.related_items[0].identifier.value.url #=> String
@@ -1335,7 +1335,7 @@ module Aws::SSMIncidents
1335
1335
  # related_items: [
1336
1336
  # {
1337
1337
  # identifier: { # required
1338
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1338
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1339
1339
  # value: { # required
1340
1340
  # arn: "Arn",
1341
1341
  # metric_definition: "MetricDefinition",
@@ -1579,7 +1579,7 @@ module Aws::SSMIncidents
1579
1579
  # related_items_update: { # required
1580
1580
  # item_to_add: {
1581
1581
  # identifier: { # required
1582
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1582
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1583
1583
  # value: { # required
1584
1584
  # arn: "Arn",
1585
1585
  # metric_definition: "MetricDefinition",
@@ -1589,7 +1589,7 @@ module Aws::SSMIncidents
1589
1589
  # title: "RelatedItemTitleString",
1590
1590
  # },
1591
1591
  # item_to_remove: {
1592
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1592
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1593
1593
  # value: { # required
1594
1594
  # arn: "Arn",
1595
1595
  # metric_definition: "MetricDefinition",
@@ -1837,7 +1837,7 @@ module Aws::SSMIncidents
1837
1837
  params: params,
1838
1838
  config: config)
1839
1839
  context[:gem_name] = 'aws-sdk-ssmincidents'
1840
- context[:gem_version] = '1.15.0'
1840
+ context[:gem_version] = '1.16.0'
1841
1841
  Seahorse::Client::Request.new(handlers, context)
1842
1842
  end
1843
1843
 
@@ -1170,7 +1170,7 @@ module Aws::SSMIncidents
1170
1170
  # data as a hash:
1171
1171
  #
1172
1172
  # {
1173
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1173
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1174
1174
  # value: { # required
1175
1175
  # arn: "Arn",
1176
1176
  # metric_definition: "MetricDefinition",
@@ -1696,7 +1696,7 @@ module Aws::SSMIncidents
1696
1696
  #
1697
1697
  # {
1698
1698
  # identifier: { # required
1699
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1699
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1700
1700
  # value: { # required
1701
1701
  # arn: "Arn",
1702
1702
  # metric_definition: "MetricDefinition",
@@ -1982,7 +1982,7 @@ module Aws::SSMIncidents
1982
1982
  # related_items: [
1983
1983
  # {
1984
1984
  # identifier: { # required
1985
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
1985
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
1986
1986
  # value: { # required
1987
1987
  # arn: "Arn",
1988
1988
  # metric_definition: "MetricDefinition",
@@ -2400,7 +2400,7 @@ module Aws::SSMIncidents
2400
2400
  # related_items_update: { # required
2401
2401
  # item_to_add: {
2402
2402
  # identifier: { # required
2403
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
2403
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
2404
2404
  # value: { # required
2405
2405
  # arn: "Arn",
2406
2406
  # metric_definition: "MetricDefinition",
@@ -2410,7 +2410,7 @@ module Aws::SSMIncidents
2410
2410
  # title: "RelatedItemTitleString",
2411
2411
  # },
2412
2412
  # item_to_remove: {
2413
- # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE
2413
+ # type: "ANALYSIS", # required, accepts ANALYSIS, INCIDENT, METRIC, PARENT, ATTACHMENT, OTHER, AUTOMATION, INVOLVED_RESOURCE, TASK
2414
2414
  # value: { # required
2415
2415
  # arn: "Arn",
2416
2416
  # metric_definition: "MetricDefinition",
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-ssmincidents/customizations'
49
49
  # @!group service
50
50
  module Aws::SSMIncidents
51
51
 
52
- GEM_VERSION = '1.15.0'
52
+ GEM_VERSION = '1.16.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmincidents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.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: 2022-07-05 00:00:00.000000000 Z
11
+ date: 2022-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core