aws-sdk-ssmcontacts 1.4.0 → 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c663714d8d95bdd77efbdc213e81ff8432ce830abf68dca59466aa45d824bae
4
- data.tar.gz: 2d8907a8df6b129b5b5d9a05adcdfc1688b4d83bbe0bea6c183ed8780ffe96a6
3
+ metadata.gz: 0e2d2ca32be7a97738be82c6e02f82b1443cec91124b679f5b5db3920f00429c
4
+ data.tar.gz: ecd0e99143a4aa6b7d150b7fa27d2e479ce82796fa267b4a26936d3a8a16d97d
5
5
  SHA512:
6
- metadata.gz: 4b007d4159d53551202655179201094e4dbe83f02aa7be8bc57ae2526e06ef0c9f776971ac4719660f881c0f765ab88ad815d6ac1d08728e366a17fab1757362
7
- data.tar.gz: 7c0500a7b7ad6e874357fa8c5e95a986a288a7b9a09e13a00df5dc107165bad79ad334386524b7f781e05ce184a0f98dd12bc3d39eed19b1e516eb79fe8939ee
6
+ metadata.gz: 05ea4bfdfb065775a019b091f85d8e8faf5cafa829d2e1277b05d819c0040c2bfb29e699d665f798420e132fae3d449683c66c7d3931ec94729d101539e42fe6
7
+ data.tar.gz: 9fc012c0ff85a22b02202fe9ef8f8deddff032773645fb9710f89e5146d74824cf76110e59e3ae51d87b2d90b39b8a08d1231c0586d3763e38ebc4efad43c89c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.5.0 (2021-08-02)
5
+ ------------------
6
+
7
+ * 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
8
+
4
9
  1.4.0 (2021-07-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -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.4.0'
51
+ GEM_VERSION = '1.5.0'
52
52
 
53
53
  end
@@ -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.4.0'
1487
+ context[:gem_version] = '1.5.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
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.4.0
4
+ version: 1.5.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-30 00:00:00.000000000 Z
11
+ date: 2021-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core