aws-sdk-ssmcontacts 1.49.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71dbb0b3147a40f70f2de1933c60a6fe04c497be9750ff904d0fa376ec6f4ef9
4
- data.tar.gz: 6b96d3b0b978ad493c06014f817212a7f0d6bcdef2aebc9cd209c0565e66614a
3
+ metadata.gz: 242dfb60c68d813a22bed8eacb4a2e4be57e8d3726e117014ab7da9e0e61e1b0
4
+ data.tar.gz: cb71b99e1303f957121cde729f17616c3ed676ccca197010e09ec0f5a3a186d9
5
5
  SHA512:
6
- metadata.gz: b30aefd2544966fc7a8ab7732261da31f967ebf79e341d56920038118fc8548ecedd1299052def240ef8a6fdc8bd4584030e5f3afa50fda090ff1437932ff151
7
- data.tar.gz: 91b126eb9d0c38e692419304b3319a6797927ee1875910a807149df17c9efaf426a68f061de72a807004b0d6c2ed346d665f1af9dff4df1dd4fa078f0e46353a
6
+ metadata.gz: 8df2962831a38d369751fe900433d796ec118744d0e2fab72d68bcdf7b3f2ed7fe443e1ba2d2908eb854ea82bebc879720b219e1aba666f317d6cd8e20c3adae
7
+ data.tar.gz: 97e3c6984aa6083724874e7db742ba4c7408e68db268201b577ce3bcd2b13799b49be4433da94aea5f8f08b60c52fb6d9fc4fb40129057f5667c4aa06e84fd3f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2025-08-21)
5
+ ------------------
6
+
7
+ * Feature - Doc-only updates for Incident Manager Contacts August 2025
8
+
9
+ 1.50.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.49.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.51.0
@@ -95,8 +95,8 @@ module Aws::SSMContacts
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials used for authentication. This can be an instance of any one of the
99
- # following classes:
98
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
99
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
102
102
  # credentials.
@@ -124,8 +124,7 @@ module Aws::SSMContacts
124
124
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
125
125
  # from the Cognito Identity service.
126
126
  #
127
- # When `:credentials` are not configured directly, the following
128
- # locations will be searched for credentials:
127
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
129
128
  #
130
129
  # * `Aws.config[:credentials]`
131
130
  #
@@ -139,12 +138,10 @@ module Aws::SSMContacts
139
138
  #
140
139
  # * `~/.aws/config`
141
140
  #
142
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
143
- # are very aggressive. Construct and pass an instance of
144
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
- # enable retries and extended timeouts. Instance profile credential
146
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
- # to `true`.
141
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
142
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
143
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
144
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
148
145
  #
149
146
  # @option options [required, String] :region
150
147
  # The AWS region to connect to. The configured `:region` is
@@ -384,8 +381,8 @@ module Aws::SSMContacts
384
381
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
385
382
  #
386
383
  # @option options [Aws::TokenProvider] :token_provider
387
- # Your Bearer token used for authentication. This can be an instance of any one of the
388
- # following classes:
384
+ # Your Bearer token used for authentication. This can be any class that includes and implements
385
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
389
386
  #
390
387
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
391
388
  # tokens.
@@ -578,8 +575,13 @@ module Aws::SSMContacts
578
575
  # The full name of the contact or escalation plan.
579
576
  #
580
577
  # @option params [required, String] :type
581
- # To create an escalation plan use `ESCALATION`. To create a contact use
582
- # `PERSONAL`.
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.
583
585
  #
584
586
  # @option params [required, Types::Plan] :plan
585
587
  # A list of stages. A contact has an engagement plan with stages that
@@ -730,6 +732,12 @@ module Aws::SSMContacts
730
732
  # The Amazon Resource Names (ARNs) of the contacts to add to the
731
733
  # rotation.
732
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
+ #
733
741
  # The order that you list the contacts in is their shift order in the
734
742
  # rotation schedule. To change the order of the contact's shifts, use
735
743
  # the UpdateRotation operation.
@@ -744,8 +752,7 @@ module Aws::SSMContacts
744
752
  # information, see the [Time Zone Database][1] on the IANA website.
745
753
  #
746
754
  # <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
747
- # rules, such as Pacific Standard Time (PST) and Pacific Daylight Time
748
- # (PDT), are not supported.
755
+ # rules, such as Pacific Standard Time (PST), are not supported.
749
756
  #
750
757
  # </note>
751
758
  #
@@ -921,10 +928,11 @@ module Aws::SSMContacts
921
928
  end
922
929
 
923
930
  # To remove a contact from Incident Manager, you can delete the contact.
924
- # Deleting a contact removes them from all escalation plans and related
925
- # response plans. Deleting an escalation plan removes it from all
926
- # related response plans. You will have to recreate the contact and its
927
- # contact channels before you can use it again.
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.
928
936
  #
929
937
  # @option params [required, String] :contact_id
930
938
  # The Amazon Resource Name (ARN) of the contact that you're deleting.
@@ -946,11 +954,12 @@ module Aws::SSMContacts
946
954
  req.send_request(options)
947
955
  end
948
956
 
949
- # To no longer receive engagements on a contact channel, you can delete
950
- # the channel from a contact. Deleting the contact channel removes it
951
- # from the contact's engagement plan. If you delete the only contact
952
- # channel for a contact, you won't be able to engage that contact
953
- # during an incident.
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.
954
963
  #
955
964
  # @option params [required, String] :contact_channel_id
956
965
  # The Amazon Resource Name (ARN) of the contact channel.
@@ -1398,8 +1407,7 @@ module Aws::SSMContacts
1398
1407
  # prefix.
1399
1408
  #
1400
1409
  # @option params [String] :type
1401
- # The type of contact. A contact is type `PERSONAL` and an escalation
1402
- # plan is type `ESCALATION`.
1410
+ # The type of contact.
1403
1411
  #
1404
1412
  # @return [Types::ListContactsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1405
1413
  #
@@ -2003,10 +2011,12 @@ module Aws::SSMContacts
2003
2011
  req.send_request(options)
2004
2012
  end
2005
2013
 
2006
- # Lists the tags of an escalation plan or contact.
2014
+ # Lists the tags of a contact, escalation plan, rotation, or on-call
2015
+ # schedule.
2007
2016
  #
2008
2017
  # @option params [required, String] :resource_arn
2009
- # The Amazon Resource Name (ARN) of the contact or escalation plan.
2018
+ # The Amazon Resource Name (ARN) of the contact, escalation plan,
2019
+ # rotation, or on-call schedule.
2010
2020
  #
2011
2021
  # @return [Types::ListTagsForResourceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2012
2022
  #
@@ -2337,6 +2347,12 @@ module Aws::SSMContacts
2337
2347
  # The Amazon Resource Names (ARNs) of the contacts to include in the
2338
2348
  # updated rotation.
2339
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
+ #
2340
2356
  # The order in which you list the contacts is their shift order in the
2341
2357
  # rotation schedule.
2342
2358
  #
@@ -2350,8 +2366,7 @@ module Aws::SSMContacts
2350
2366
  # information, see the [Time Zone Database][1] on the IANA website.
2351
2367
  #
2352
2368
  # <note markdown="1"> Designators for time zones that don’t support Daylight Savings Time
2353
- # Rules, such as Pacific Standard Time (PST) and Pacific Daylight Time
2354
- # (PDT), aren't supported.
2369
+ # Rules, such as Pacific Standard Time (PST), aren't supported.
2355
2370
  #
2356
2371
  # </note>
2357
2372
  #
@@ -2443,7 +2458,7 @@ module Aws::SSMContacts
2443
2458
  tracer: tracer
2444
2459
  )
2445
2460
  context[:gem_name] = 'aws-sdk-ssmcontacts'
2446
- context[:gem_version] = '1.49.0'
2461
+ context[:gem_version] = '1.51.0'
2447
2462
  Seahorse::Client::Request.new(handlers, context)
2448
2463
  end
2449
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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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 retry sending engagement in the
109
- # case the engagement initially fails.
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
- # Refers to the type of contact. A single contact is type `PERSONAL`
167
- # and an escalation plan is type `ESCALATION`.
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
- # To create an escalation plan use `ESCALATION`. To create a contact
372
- # use `PERSONAL`.
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) and Pacific Daylight Time
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, either `PERSONAL` or `ESCALATION`.
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. A contact is type `PERSONAL` and an escalation
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 or escalation plan.
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 containing ten contacts, a value of `2` designates that two
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 included in on-call rotation
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 is engaging.
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 is engaging.
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) and Pacific Daylight Time
2466
- # (PDT), aren't supported.
2486
+ # Rules, such as Pacific Standard Time (PST), aren't supported.
2467
2487
  #
2468
2488
  # </note>
2469
2489
  #
@@ -54,7 +54,7 @@ module Aws::SSMContacts
54
54
  autoload :EndpointProvider, 'aws-sdk-ssmcontacts/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ssmcontacts/endpoints'
56
56
 
57
- GEM_VERSION = '1.49.0'
57
+ GEM_VERSION = '1.51.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmcontacts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services