aws-sdk-ssmcontacts 1.50.0 → 1.51.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmcontacts/client.rb +38 -20
- data/lib/aws-sdk-ssmcontacts/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-ssmcontacts/types.rb +40 -20
- data/lib/aws-sdk-ssmcontacts.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 242dfb60c68d813a22bed8eacb4a2e4be57e8d3726e117014ab7da9e0e61e1b0
|
4
|
+
data.tar.gz: cb71b99e1303f957121cde729f17616c3ed676ccca197010e09ec0f5a3a186d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8df2962831a38d369751fe900433d796ec118744d0e2fab72d68bcdf7b3f2ed7fe443e1ba2d2908eb854ea82bebc879720b219e1aba666f317d6cd8e20c3adae
|
7
|
+
data.tar.gz: 97e3c6984aa6083724874e7db742ba4c7408e68db268201b577ce3bcd2b13799b49be4433da94aea5f8f08b60c52fb6d9fc4fb40129057f5667c4aa06e84fd3f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
@@ -575,8 +575,13 @@ module Aws::SSMContacts
|
|
575
575
|
# The full name of the contact or escalation plan.
|
576
576
|
#
|
577
577
|
# @option params [required, String] :type
|
578
|
-
#
|
579
|
-
#
|
578
|
+
# The type of contact to create.
|
579
|
+
#
|
580
|
+
# * `PERSONAL`: A single, individual contact.
|
581
|
+
#
|
582
|
+
# * `ESCALATION`: An escalation plan.
|
583
|
+
#
|
584
|
+
# * `ONCALL_SCHEDULE`: An on-call schedule.
|
580
585
|
#
|
581
586
|
# @option params [required, Types::Plan] :plan
|
582
587
|
# A list of stages. A contact has an engagement plan with stages that
|
@@ -727,6 +732,12 @@ module Aws::SSMContacts
|
|
727
732
|
# The Amazon Resource Names (ARNs) of the contacts to add to the
|
728
733
|
# rotation.
|
729
734
|
#
|
735
|
+
# <note markdown="1"> Only the `PERSONAL` contact type is supported. The contact types
|
736
|
+
# `ESCALATION` and `ONCALL_SCHEDULE` are not supported for this
|
737
|
+
# operation.
|
738
|
+
#
|
739
|
+
# </note>
|
740
|
+
#
|
730
741
|
# The order that you list the contacts in is their shift order in the
|
731
742
|
# rotation schedule. To change the order of the contact's shifts, use
|
732
743
|
# the UpdateRotation operation.
|
@@ -741,8 +752,7 @@ module Aws::SSMContacts
|
|
741
752
|
# information, see the [Time Zone Database][1] on the IANA website.
|
742
753
|
#
|
743
754
|
# <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
|
744
|
-
# rules, such as Pacific Standard Time (PST)
|
745
|
-
# (PDT), are not supported.
|
755
|
+
# rules, such as Pacific Standard Time (PST), are not supported.
|
746
756
|
#
|
747
757
|
# </note>
|
748
758
|
#
|
@@ -918,10 +928,11 @@ module Aws::SSMContacts
|
|
918
928
|
end
|
919
929
|
|
920
930
|
# To remove a contact from Incident Manager, you can delete the contact.
|
921
|
-
#
|
922
|
-
# response plans. Deleting an escalation plan
|
923
|
-
# related response plans.
|
924
|
-
#
|
931
|
+
# However, deleting a contact does not remove it from escalation plans
|
932
|
+
# and related response plans. Deleting an escalation plan also does not
|
933
|
+
# remove it from all related response plans. To modify an escalation
|
934
|
+
# plan, we recommend using the UpdateContact action to specify a
|
935
|
+
# different existing contact.
|
925
936
|
#
|
926
937
|
# @option params [required, String] :contact_id
|
927
938
|
# The Amazon Resource Name (ARN) of the contact that you're deleting.
|
@@ -943,11 +954,12 @@ module Aws::SSMContacts
|
|
943
954
|
req.send_request(options)
|
944
955
|
end
|
945
956
|
|
946
|
-
# To
|
947
|
-
#
|
948
|
-
# from the contact's engagement plan
|
949
|
-
# channel
|
950
|
-
#
|
957
|
+
# To stop receiving engagements on a contact channel, you can delete the
|
958
|
+
# channel from a contact. Deleting the contact channel does not remove
|
959
|
+
# it from the contact's engagement plan, but the stage that includes
|
960
|
+
# the channel will be ignored. If you delete the only contact channel
|
961
|
+
# for a contact, you'll no longer be able to engage that contact during
|
962
|
+
# an incident.
|
951
963
|
#
|
952
964
|
# @option params [required, String] :contact_channel_id
|
953
965
|
# The Amazon Resource Name (ARN) of the contact channel.
|
@@ -1395,8 +1407,7 @@ module Aws::SSMContacts
|
|
1395
1407
|
# prefix.
|
1396
1408
|
#
|
1397
1409
|
# @option params [String] :type
|
1398
|
-
# The type of contact.
|
1399
|
-
# plan is type `ESCALATION`.
|
1410
|
+
# The type of contact.
|
1400
1411
|
#
|
1401
1412
|
# @return [Types::ListContactsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1402
1413
|
#
|
@@ -2000,10 +2011,12 @@ module Aws::SSMContacts
|
|
2000
2011
|
req.send_request(options)
|
2001
2012
|
end
|
2002
2013
|
|
2003
|
-
# Lists the tags of
|
2014
|
+
# Lists the tags of a contact, escalation plan, rotation, or on-call
|
2015
|
+
# schedule.
|
2004
2016
|
#
|
2005
2017
|
# @option params [required, String] :resource_arn
|
2006
|
-
# The Amazon Resource Name (ARN) of the contact
|
2018
|
+
# The Amazon Resource Name (ARN) of the contact, escalation plan,
|
2019
|
+
# rotation, or on-call schedule.
|
2007
2020
|
#
|
2008
2021
|
# @return [Types::ListTagsForResourceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2009
2022
|
#
|
@@ -2334,6 +2347,12 @@ module Aws::SSMContacts
|
|
2334
2347
|
# The Amazon Resource Names (ARNs) of the contacts to include in the
|
2335
2348
|
# updated rotation.
|
2336
2349
|
#
|
2350
|
+
# <note markdown="1"> Only the `PERSONAL` contact type is supported. The contact types
|
2351
|
+
# `ESCALATION` and `ONCALL_SCHEDULE` are not supported for this
|
2352
|
+
# operation.
|
2353
|
+
#
|
2354
|
+
# </note>
|
2355
|
+
#
|
2337
2356
|
# The order in which you list the contacts is their shift order in the
|
2338
2357
|
# rotation schedule.
|
2339
2358
|
#
|
@@ -2347,8 +2366,7 @@ module Aws::SSMContacts
|
|
2347
2366
|
# information, see the [Time Zone Database][1] on the IANA website.
|
2348
2367
|
#
|
2349
2368
|
# <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
|
2350
|
-
# Rules, such as Pacific Standard Time (PST)
|
2351
|
-
# (PDT), aren't supported.
|
2369
|
+
# Rules, such as Pacific Standard Time (PST), aren't supported.
|
2352
2370
|
#
|
2353
2371
|
# </note>
|
2354
2372
|
#
|
@@ -2440,7 +2458,7 @@ module Aws::SSMContacts
|
|
2440
2458
|
tracer: tracer
|
2441
2459
|
)
|
2442
2460
|
context[:gem_name] = 'aws-sdk-ssmcontacts'
|
2443
|
-
context[:gem_version] = '1.
|
2461
|
+
context[:gem_version] = '1.51.0'
|
2444
2462
|
Seahorse::Client::Request.new(handlers, context)
|
2445
2463
|
end
|
2446
2464
|
|
@@ -28,7 +28,7 @@ module Aws::SSMContacts
|
|
28
28
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
29
29
|
end
|
30
30
|
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
31
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
31
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
32
32
|
return Aws::Endpoints::Endpoint.new(url: "https://ssm-contacts-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
33
33
|
end
|
34
34
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -105,8 +105,8 @@ module Aws::SSMContacts
|
|
105
105
|
# @return [String]
|
106
106
|
#
|
107
107
|
# @!attribute [rw] retry_interval_in_minutes
|
108
|
-
# The number of minutes to wait to
|
109
|
-
#
|
108
|
+
# The number of minutes to wait before retrying to send engagement if
|
109
|
+
# the engagement initially failed.
|
110
110
|
# @return [Integer]
|
111
111
|
#
|
112
112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/ChannelTargetInfo AWS API Documentation
|
@@ -163,8 +163,13 @@ module Aws::SSMContacts
|
|
163
163
|
# @return [String]
|
164
164
|
#
|
165
165
|
# @!attribute [rw] type
|
166
|
-
#
|
167
|
-
#
|
166
|
+
# The type of contact.
|
167
|
+
#
|
168
|
+
# * `PERSONAL`: A single, individual contact.
|
169
|
+
#
|
170
|
+
# * `ESCALATION`: An escalation plan.
|
171
|
+
#
|
172
|
+
# * `ONCALL_SCHEDULE`: An on-call schedule.
|
168
173
|
# @return [String]
|
169
174
|
#
|
170
175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/Contact AWS API Documentation
|
@@ -368,8 +373,13 @@ module Aws::SSMContacts
|
|
368
373
|
# @return [String]
|
369
374
|
#
|
370
375
|
# @!attribute [rw] type
|
371
|
-
#
|
372
|
-
#
|
376
|
+
# The type of contact to create.
|
377
|
+
#
|
378
|
+
# * `PERSONAL`: A single, individual contact.
|
379
|
+
#
|
380
|
+
# * `ESCALATION`: An escalation plan.
|
381
|
+
#
|
382
|
+
# * `ONCALL_SCHEDULE`: An on-call schedule.
|
373
383
|
# @return [String]
|
374
384
|
#
|
375
385
|
# @!attribute [rw] plan
|
@@ -475,6 +485,12 @@ module Aws::SSMContacts
|
|
475
485
|
# The Amazon Resource Names (ARNs) of the contacts to add to the
|
476
486
|
# rotation.
|
477
487
|
#
|
488
|
+
# <note markdown="1"> Only the `PERSONAL` contact type is supported. The contact types
|
489
|
+
# `ESCALATION` and `ONCALL_SCHEDULE` are not supported for this
|
490
|
+
# operation.
|
491
|
+
#
|
492
|
+
# </note>
|
493
|
+
#
|
478
494
|
# The order that you list the contacts in is their shift order in the
|
479
495
|
# rotation schedule. To change the order of the contact's shifts, use
|
480
496
|
# the UpdateRotation operation.
|
@@ -491,8 +507,7 @@ module Aws::SSMContacts
|
|
491
507
|
# information, see the [Time Zone Database][1] on the IANA website.
|
492
508
|
#
|
493
509
|
# <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
|
494
|
-
# rules, such as Pacific Standard Time (PST)
|
495
|
-
# (PDT), are not supported.
|
510
|
+
# rules, such as Pacific Standard Time (PST), are not supported.
|
496
511
|
#
|
497
512
|
# </note>
|
498
513
|
#
|
@@ -980,7 +995,7 @@ module Aws::SSMContacts
|
|
980
995
|
# @return [String]
|
981
996
|
#
|
982
997
|
# @!attribute [rw] type
|
983
|
-
# The type of contact
|
998
|
+
# The type of contact.
|
984
999
|
# @return [String]
|
985
1000
|
#
|
986
1001
|
# @!attribute [rw] plan
|
@@ -1203,8 +1218,7 @@ module Aws::SSMContacts
|
|
1203
1218
|
# @return [String]
|
1204
1219
|
#
|
1205
1220
|
# @!attribute [rw] type
|
1206
|
-
# The type of contact.
|
1207
|
-
# plan is type `ESCALATION`.
|
1221
|
+
# The type of contact.
|
1208
1222
|
# @return [String]
|
1209
1223
|
#
|
1210
1224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/ListContactsRequest AWS API Documentation
|
@@ -1675,7 +1689,8 @@ module Aws::SSMContacts
|
|
1675
1689
|
end
|
1676
1690
|
|
1677
1691
|
# @!attribute [rw] resource_arn
|
1678
|
-
# The Amazon Resource Name (ARN) of the contact
|
1692
|
+
# The Amazon Resource Name (ARN) of the contact, escalation plan,
|
1693
|
+
# rotation, or on-call schedule.
|
1679
1694
|
# @return [String]
|
1680
1695
|
#
|
1681
1696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/ListTagsForResourceRequest AWS API Documentation
|
@@ -1884,13 +1899,13 @@ module Aws::SSMContacts
|
|
1884
1899
|
# @!attribute [rw] number_of_on_calls
|
1885
1900
|
# The number of contacts, or shift team members designated to be on
|
1886
1901
|
# call concurrently during a shift. For example, in an on-call
|
1887
|
-
# schedule
|
1888
|
-
# of them are on call at any given time.
|
1902
|
+
# schedule that contains ten contacts, a value of `2` designates that
|
1903
|
+
# two of them are on call at any given time.
|
1889
1904
|
# @return [Integer]
|
1890
1905
|
#
|
1891
1906
|
# @!attribute [rw] shift_coverages
|
1892
|
-
# Information about the days of the week
|
1893
|
-
# coverage.
|
1907
|
+
# Information about the days of the week that the on-call rotation
|
1908
|
+
# coverage includes.
|
1894
1909
|
# @return [Hash<String,Array<Types::CoverageTime>>]
|
1895
1910
|
#
|
1896
1911
|
# @!attribute [rw] recurrence_multiplier
|
@@ -2298,11 +2313,11 @@ module Aws::SSMContacts
|
|
2298
2313
|
# The contact or contact channel that's being engaged.
|
2299
2314
|
#
|
2300
2315
|
# @!attribute [rw] channel_target_info
|
2301
|
-
# Information about the contact channel Incident Manager
|
2316
|
+
# Information about the contact channel that Incident Manager engages.
|
2302
2317
|
# @return [Types::ChannelTargetInfo]
|
2303
2318
|
#
|
2304
2319
|
# @!attribute [rw] contact_target_info
|
2305
|
-
# Information about the contact that Incident Manager
|
2320
|
+
# Information about the contact that Incident Manager engages.
|
2306
2321
|
# @return [Types::ContactTargetInfo]
|
2307
2322
|
#
|
2308
2323
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/Target AWS API Documentation
|
@@ -2447,6 +2462,12 @@ module Aws::SSMContacts
|
|
2447
2462
|
# The Amazon Resource Names (ARNs) of the contacts to include in the
|
2448
2463
|
# updated rotation.
|
2449
2464
|
#
|
2465
|
+
# <note markdown="1"> Only the `PERSONAL` contact type is supported. The contact types
|
2466
|
+
# `ESCALATION` and `ONCALL_SCHEDULE` are not supported for this
|
2467
|
+
# operation.
|
2468
|
+
#
|
2469
|
+
# </note>
|
2470
|
+
#
|
2450
2471
|
# The order in which you list the contacts is their shift order in the
|
2451
2472
|
# rotation schedule.
|
2452
2473
|
# @return [Array<String>]
|
@@ -2462,8 +2483,7 @@ module Aws::SSMContacts
|
|
2462
2483
|
# information, see the [Time Zone Database][1] on the IANA website.
|
2463
2484
|
#
|
2464
2485
|
# <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
|
2465
|
-
# Rules, such as Pacific Standard Time (PST)
|
2466
|
-
# (PDT), aren't supported.
|
2486
|
+
# Rules, such as Pacific Standard Time (PST), aren't supported.
|
2467
2487
|
#
|
2468
2488
|
# </note>
|
2469
2489
|
#
|
data/lib/aws-sdk-ssmcontacts.rb
CHANGED