aws-sdk-ssmcontacts 1.2.0 → 1.6.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: 9aaae4bee0e3edc42e06516f0516adb1bcd1486ea779ec31747dc1bcac8afc77
4
- data.tar.gz: bc0937eb01504a0695fdd4566b4eaa2988829c89e0bb21bd1f0b59d8f4424960
3
+ metadata.gz: 35202afd55eb94c576336a417cffb342b26b86c9fe1a89845ca597425cefcd47
4
+ data.tar.gz: a4d8bb3265092e120ad15589d59a0dc628c8efdd84323436b77f5ea0c5f2b0a2
5
5
  SHA512:
6
- metadata.gz: 367481b1433edf08e977c37e63050d797d918044aad18ab58ef8e08d1f5e6e46808df0d6f1c38760fb84824664d1c76dce4c8932012cdca42af13dfd75a7dd65
7
- data.tar.gz: 8ec0fbaeb5380d4225baa1dfa044f037b93785622a44bd04046b49157af0b6721a69fdfc6f45c19b6047e3cb23f7f3317e7781b4552ef3bc3d2ef6a72ab678e1
6
+ metadata.gz: '08cf3194aeaf672970948473308e6bff238314f4af1065d4e1a2698bbad6920283cbd4740130384a5b064baa5b2eaf78b16a1f7b237469c770985b37a6e53458'
7
+ data.tar.gz: 17c02c7dc8bae3c57965cbb9537f70cfbe32aab9d5f48c11264f6ecba82f0f2ae4b3d7d85ded17ea9b05985df56632227b9fe918c906fc1d8f8573007e64590e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.6.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.5.0 (2021-08-02)
10
+ ------------------
11
+
12
+ * Feature - Added new attribute in AcceptCode API. AcceptCodeValidation takes in two values - ENFORCE, IGNORE. ENFORCE forces validation of accept code and IGNORE ignores it which is also the default behavior; Corrected TagKeyList length from 200 to 50
13
+
14
+ 1.4.0 (2021-07-30)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.3.0 (2021-07-28)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.2.0 (2021-07-08)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.6.0
@@ -355,6 +355,18 @@ module Aws::SSMContacts
355
355
  # @option params [required, String] :accept_code
356
356
  # The accept code is a 6-digit code used to acknowledge the page.
357
357
  #
358
+ # @option params [String] :accept_code_validation
359
+ # An optional field that Incident Manager uses to `ENFORCE` `AcceptCode`
360
+ # validation when acknowledging an page. Acknowledgement can occur by
361
+ # replying to a page, or when entering the AcceptCode in the console.
362
+ # Enforcing AcceptCode validation causes Incident Manager to verify that
363
+ # the code entered by the user matches the code sent by Incident Manager
364
+ # with the page.
365
+ #
366
+ # Incident Manager can also `IGNORE` `AcceptCode` validation. Ignoring
367
+ # `AcceptCode` validation causes Incident Manager to accept any value
368
+ # entered for the `AcceptCode`.
369
+ #
358
370
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
359
371
  #
360
372
  # @example Request syntax with placeholder values
@@ -365,6 +377,7 @@ module Aws::SSMContacts
365
377
  # accept_type: "DELIVERED", # required, accepts DELIVERED, READ
366
378
  # note: "ReceiptInfo",
367
379
  # accept_code: "AcceptCode", # required
380
+ # accept_code_validation: "IGNORE", # accepts IGNORE, ENFORCE
368
381
  # })
369
382
  #
370
383
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/AcceptPage AWS API Documentation
@@ -1471,7 +1484,7 @@ module Aws::SSMContacts
1471
1484
  params: params,
1472
1485
  config: config)
1473
1486
  context[:gem_name] = 'aws-sdk-ssmcontacts'
1474
- context[:gem_version] = '1.2.0'
1487
+ context[:gem_version] = '1.6.0'
1475
1488
  Seahorse::Client::Request.new(handlers, context)
1476
1489
  end
1477
1490
 
@@ -14,6 +14,7 @@ module Aws::SSMContacts
14
14
  include Seahorse::Model
15
15
 
16
16
  AcceptCode = Shapes::StringShape.new(name: 'AcceptCode')
17
+ AcceptCodeValidation = Shapes::StringShape.new(name: 'AcceptCodeValidation')
17
18
  AcceptPageRequest = Shapes::StructureShape.new(name: 'AcceptPageRequest')
18
19
  AcceptPageResult = Shapes::StructureShape.new(name: 'AcceptPageResult')
19
20
  AcceptType = Shapes::StringShape.new(name: 'AcceptType')
@@ -140,6 +141,7 @@ module Aws::SSMContacts
140
141
  AcceptPageRequest.add_member(:accept_type, Shapes::ShapeRef.new(shape: AcceptType, required: true, location_name: "AcceptType"))
141
142
  AcceptPageRequest.add_member(:note, Shapes::ShapeRef.new(shape: ReceiptInfo, location_name: "Note"))
142
143
  AcceptPageRequest.add_member(:accept_code, Shapes::ShapeRef.new(shape: AcceptCode, required: true, location_name: "AcceptCode"))
144
+ AcceptPageRequest.add_member(:accept_code_validation, Shapes::ShapeRef.new(shape: AcceptCodeValidation, location_name: "AcceptCodeValidation"))
143
145
  AcceptPageRequest.struct_class = Types::AcceptPageRequest
144
146
 
145
147
  AcceptPageResult.struct_class = Types::AcceptPageResult
@@ -19,6 +19,7 @@ module Aws::SSMContacts
19
19
  # accept_type: "DELIVERED", # required, accepts DELIVERED, READ
20
20
  # note: "ReceiptInfo",
21
21
  # accept_code: "AcceptCode", # required
22
+ # accept_code_validation: "IGNORE", # accepts IGNORE, ENFORCE
22
23
  # }
23
24
  #
24
25
  # @!attribute [rw] page_id
@@ -43,6 +44,19 @@ module Aws::SSMContacts
43
44
  # The accept code is a 6-digit code used to acknowledge the page.
44
45
  # @return [String]
45
46
  #
47
+ # @!attribute [rw] accept_code_validation
48
+ # An optional field that Incident Manager uses to `ENFORCE`
49
+ # `AcceptCode` validation when acknowledging an page. Acknowledgement
50
+ # can occur by replying to a page, or when entering the AcceptCode in
51
+ # the console. Enforcing AcceptCode validation causes Incident Manager
52
+ # to verify that the code entered by the user matches the code sent by
53
+ # Incident Manager with the page.
54
+ #
55
+ # Incident Manager can also `IGNORE` `AcceptCode` validation. Ignoring
56
+ # `AcceptCode` validation causes Incident Manager to accept any value
57
+ # entered for the `AcceptCode`.
58
+ # @return [String]
59
+ #
46
60
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/AcceptPageRequest AWS API Documentation
47
61
  #
48
62
  class AcceptPageRequest < Struct.new(
@@ -50,7 +64,8 @@ module Aws::SSMContacts
50
64
  :contact_channel_id,
51
65
  :accept_type,
52
66
  :note,
53
- :accept_code)
67
+ :accept_code,
68
+ :accept_code_validation)
54
69
  SENSITIVE = []
55
70
  include Aws::Structure
56
71
  end
@@ -1527,7 +1542,8 @@ module Aws::SSMContacts
1527
1542
  # }
1528
1543
  #
1529
1544
  # @!attribute [rw] duration_in_minutes
1530
- # The time to wait until beginning the next stage.
1545
+ # The time to wait until beginning the next stage. The duration can
1546
+ # only be set to 0 if a target is specified.
1531
1547
  # @return [Integer]
1532
1548
  #
1533
1549
  # @!attribute [rw] targets
@@ -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.2.0'
51
+ GEM_VERSION = '1.6.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.2.0
4
+ version: 1.6.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-07-08 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.112.0
22
+ version: 3.120.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.112.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="