aws-sdk-ssmcontacts 1.11.0 → 1.14.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: a6165e08480c570172b6611186515359527817f669f84f1580e2b612320f74a5
4
- data.tar.gz: e3dc830c6cfc541125ffdbd8478f56237295a2c562c02ebdfa7e048dbfdf933c
3
+ metadata.gz: 35ed751a7b2242e10b5116d209dbc62793aa89102149a29af63775c3ec88a615
4
+ data.tar.gz: 5cf25ea3b6ad918a8087db0278f3404252b992d86d001706abbd324d90fc2786
5
5
  SHA512:
6
- metadata.gz: 3e1e84086bf35ae758e098fb0872a524d0aab91427d7f046a73b377b79e46749acfa1857deeca886e5406d277a14bcbb3080efaaf27232680378abfa29dffe7a
7
- data.tar.gz: 0ec2c0761f1e8d3dbfa9eb948791c08f1c84ce8862dddb7ba255720a7bfd4d215cf05a0a67c7fdcbe4a7cadad157843ef1fd3b4855a35e39387774348c1547bd
6
+ metadata.gz: fca43f118252a5ed990a274350ebfda7502cd0faab0fbeacaea2d430f295d392d91914e92397f8ccae9065b6e986005e6676deb980b3b7936138f2a4b1ca80a7
7
+ data.tar.gz: 724d5dab326d7981dc9b0e67ee0c4e5e81479c620f25376f999167cf6216dd7a29ead94d6af5ed57cdc19eac2cebcd62ca0da9f18d562b7fe6055161628060fa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2022-05-09)
5
+ ------------------
6
+
7
+ * Feature - Fixed an error in the DescribeEngagement example for AWS Incident Manager.
8
+
9
+ 1.13.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.12.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.11.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.14.0
@@ -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/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::SSMContacts
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::JsonRpc)
80
84
 
@@ -820,7 +824,7 @@ module Aws::SSMContacts
820
824
  # public_content: "Testing engagements",
821
825
  # public_subject: "test",
822
826
  # sender: "tester",
823
- # start_time: Time.parse("$2021-05-18T18:25:41.151000+00:00"),
827
+ # start_time: Time.parse("2021-05-18T18:25:41.151000+00:00"),
824
828
  # subject: "test",
825
829
  # }
826
830
  #
@@ -1709,7 +1713,15 @@ module Aws::SSMContacts
1709
1713
  req.send_request(options)
1710
1714
  end
1711
1715
 
1712
- # Adds a resource to the specified contact or escalation plan.
1716
+ # Adds a resource policy to the specified contact or escalation plan.
1717
+ # The resource policy is used to share the contact or escalation plan
1718
+ # using Resource Access Manager (RAM). For more information about
1719
+ # cross-account sharing, see [Setting up cross-account
1720
+ # functionality][1].
1721
+ #
1722
+ #
1723
+ #
1724
+ # [1]: https://docs.aws.amazon.com/incident-manager/latest/userguide/xa.html
1713
1725
  #
1714
1726
  # @option params [required, String] :contact_arn
1715
1727
  # The Amazon Resource Name (ARN) of the contact or escalation plan.
@@ -2193,7 +2205,7 @@ module Aws::SSMContacts
2193
2205
  params: params,
2194
2206
  config: config)
2195
2207
  context[:gem_name] = 'aws-sdk-ssmcontacts'
2196
- context[:gem_version] = '1.11.0'
2208
+ context[:gem_version] = '1.14.0'
2197
2209
  Seahorse::Client::Request.new(handlers, context)
2198
2210
  end
2199
2211
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-ssmcontacts/customizations'
48
48
  # @!group service
49
49
  module Aws::SSMContacts
50
50
 
51
- GEM_VERSION = '1.11.0'
51
+ GEM_VERSION = '1.14.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmcontacts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.14.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-05-09 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.125.0
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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement