aws-sdk-ssmincidents 1.65.0 → 1.66.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: d3b8b370d0e529d7db4d1e0015b991e8fe2e3bffccd93e7b91f2b61eccc1d23c
4
- data.tar.gz: 03d2fb883e56f9425373321627f2446c0d9011c482f246243ff520f60cf640b7
3
+ metadata.gz: 948edcf9de71061d870e78aca23e20a4197d6015e71d9ffaeb4c98842a8e79e4
4
+ data.tar.gz: a788c55cf950081795109f3bbe6c3e5daedd1bc8b695168ea83f241ac2f27d95
5
5
  SHA512:
6
- metadata.gz: '0349a8252005e4f41c31079b77ccd5123f4652c37d28dec1c8086db4ccffd47d681a1dd57687f76953a5872a1d1fbdf788fcd604be153d414ca3e6da2404b90e'
7
- data.tar.gz: 8df8e38ddf6dbbb64da64c3aea815e19ed69c8e5c0d371163c8e28ba2c3fb160cf2fac553ffe8039a0a212c103f2fb7616b1fba9b43c514415103268261ce9fb
6
+ metadata.gz: ee29605f1e74ac460a8aae8c4e53234a69f22557e70399707b2a5a11128f4adf4dfa0d29643c9be51189de999bef5707bb5adffd8c2703ce915211c334112190
7
+ data.tar.gz: 4008e913ae25eff81c4408a1775ac5ccb976d629f4e231ac6dc237899a2f7abe9205668edb76e6bc80ee183d34f013f470cf7bf4774e25b4c44c302d7a71b17b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.65.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -2177,7 +2177,7 @@ module Aws::SSMIncidents
2177
2177
  tracer: tracer
2178
2178
  )
2179
2179
  context[:gem_name] = 'aws-sdk-ssmincidents'
2180
- context[:gem_version] = '1.65.0'
2180
+ context[:gem_version] = '1.66.0'
2181
2181
  Seahorse::Client::Request.new(handlers, context)
2182
2182
  end
2183
2183
 
@@ -55,7 +55,7 @@ module Aws::SSMIncidents
55
55
  autoload :EndpointProvider, 'aws-sdk-ssmincidents/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ssmincidents/endpoints'
57
57
 
58
- GEM_VERSION = '1.65.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -111,18 +111,7 @@ module Aws
111
111
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMIncidents/Client.html#create_response_plan-instance_method
112
112
  def create_response_plan: (
113
113
  ?actions: Array[
114
- {
115
- ssm_automation: {
116
- document_name: ::String,
117
- document_version: ::String?,
118
- dynamic_parameters: Hash[::String, {
119
- variable: ("INCIDENT_RECORD_ARN" | "INVOLVED_RESOURCES")?
120
- }]?,
121
- parameters: Hash[::String, Array[::String]]?,
122
- role_arn: ::String,
123
- target_account: ("RESPONSE_PLAN_OWNER_ACCOUNT" | "IMPACTED_ACCOUNT")?
124
- }?
125
- },
114
+ Params::action
126
115
  ],
127
116
  ?chat_channel: {
128
117
  chatbot_sns: Array[::String]?,
@@ -139,21 +128,13 @@ module Aws
139
128
  notification_targets: Array[
140
129
  {
141
130
  sns_topic_arn: ::String?
142
- },
131
+ }
143
132
  ]?,
144
133
  summary: ::String?,
145
134
  title: ::String
146
135
  },
147
136
  ?integrations: Array[
148
- {
149
- pager_duty_configuration: {
150
- name: ::String,
151
- pager_duty_incident_configuration: {
152
- service_id: ::String
153
- },
154
- secret_id: ::String
155
- }?
156
- },
137
+ Params::integration
157
138
  ],
158
139
  name: ::String,
159
140
  ?tags: Hash[::String, ::String]
@@ -173,7 +154,7 @@ module Aws
173
154
  {
174
155
  related_item_id: ::String?,
175
156
  resource: ::String?
176
- },
157
+ }
177
158
  ],
178
159
  event_time: ::Time,
179
160
  event_type: ::String,
@@ -310,17 +291,7 @@ module Aws
310
291
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMIncidents/Client.html#list_incident_records-instance_method
311
292
  def list_incident_records: (
312
293
  ?filters: Array[
313
- {
314
- condition: {
315
- after: ::Time?,
316
- before: ::Time?,
317
- equals: {
318
- integer_values: Array[::Integer]?,
319
- string_values: Array[::String]?
320
- }?
321
- },
322
- key: ::String
323
- },
294
+ Params::filter
324
295
  ],
325
296
  ?max_results: ::Integer,
326
297
  ?next_token: ::String
@@ -382,17 +353,7 @@ module Aws
382
353
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMIncidents/Client.html#list_timeline_events-instance_method
383
354
  def list_timeline_events: (
384
355
  ?filters: Array[
385
- {
386
- condition: {
387
- after: ::Time?,
388
- before: ::Time?,
389
- equals: {
390
- integer_values: Array[::Integer]?,
391
- string_values: Array[::String]?
392
- }?
393
- },
394
- key: ::String
395
- },
356
+ Params::filter
396
357
  ],
397
358
  incident_record_arn: ::String,
398
359
  ?max_results: ::Integer,
@@ -422,23 +383,7 @@ module Aws
422
383
  ?client_token: ::String,
423
384
  ?impact: ::Integer,
424
385
  ?related_items: Array[
425
- {
426
- generated_id: ::String?,
427
- identifier: {
428
- type: ("ANALYSIS" | "INCIDENT" | "METRIC" | "PARENT" | "ATTACHMENT" | "OTHER" | "AUTOMATION" | "INVOLVED_RESOURCE" | "TASK"),
429
- value: {
430
- arn: ::String?,
431
- metric_definition: ::String?,
432
- pager_duty_incident_detail: {
433
- auto_resolve: bool?,
434
- id: ::String,
435
- secret_id: ::String?
436
- }?,
437
- url: ::String?
438
- }
439
- },
440
- title: ::String?
441
- },
386
+ Params::related_item
442
387
  ],
443
388
  response_plan_arn: ::String,
444
389
  ?title: ::String,
@@ -498,7 +443,7 @@ module Aws
498
443
  ?notification_targets: Array[
499
444
  {
500
445
  sns_topic_arn: ::String?
501
- },
446
+ }
502
447
  ],
503
448
  ?status: ("OPEN" | "RESOLVED"),
504
449
  ?summary: ::String,
@@ -514,36 +459,8 @@ module Aws
514
459
  ?client_token: ::String,
515
460
  incident_record_arn: ::String,
516
461
  related_items_update: {
517
- item_to_add: {
518
- generated_id: ::String?,
519
- identifier: {
520
- type: ("ANALYSIS" | "INCIDENT" | "METRIC" | "PARENT" | "ATTACHMENT" | "OTHER" | "AUTOMATION" | "INVOLVED_RESOURCE" | "TASK"),
521
- value: {
522
- arn: ::String?,
523
- metric_definition: ::String?,
524
- pager_duty_incident_detail: {
525
- auto_resolve: bool?,
526
- id: ::String,
527
- secret_id: ::String?
528
- }?,
529
- url: ::String?
530
- }
531
- },
532
- title: ::String?
533
- }?,
534
- item_to_remove: {
535
- type: ("ANALYSIS" | "INCIDENT" | "METRIC" | "PARENT" | "ATTACHMENT" | "OTHER" | "AUTOMATION" | "INVOLVED_RESOURCE" | "TASK"),
536
- value: {
537
- arn: ::String?,
538
- metric_definition: ::String?,
539
- pager_duty_incident_detail: {
540
- auto_resolve: bool?,
541
- id: ::String,
542
- secret_id: ::String?
543
- }?,
544
- url: ::String?
545
- }
546
- }?
462
+ item_to_add: Params::related_item?,
463
+ item_to_remove: Params::item_identifier?
547
464
  }
548
465
  ) -> _UpdateRelatedItemsResponseSuccess
549
466
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRelatedItemsResponseSuccess
@@ -562,7 +479,7 @@ module Aws
562
479
  delete_region_action: {
563
480
  region_name: ::String
564
481
  }?
565
- },
482
+ }
566
483
  ],
567
484
  arn: ::String,
568
485
  ?client_token: ::String
@@ -575,18 +492,7 @@ module Aws
575
492
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSMIncidents/Client.html#update_response_plan-instance_method
576
493
  def update_response_plan: (
577
494
  ?actions: Array[
578
- {
579
- ssm_automation: {
580
- document_name: ::String,
581
- document_version: ::String?,
582
- dynamic_parameters: Hash[::String, {
583
- variable: ("INCIDENT_RECORD_ARN" | "INVOLVED_RESOURCES")?
584
- }]?,
585
- parameters: Hash[::String, Array[::String]]?,
586
- role_arn: ::String,
587
- target_account: ("RESPONSE_PLAN_OWNER_ACCOUNT" | "IMPACTED_ACCOUNT")?
588
- }?
589
- },
495
+ Params::action
590
496
  ],
591
497
  arn: ::String,
592
498
  ?chat_channel: {
@@ -602,21 +508,13 @@ module Aws
602
508
  ?incident_template_notification_targets: Array[
603
509
  {
604
510
  sns_topic_arn: ::String?
605
- },
511
+ }
606
512
  ],
607
513
  ?incident_template_summary: ::String,
608
514
  ?incident_template_tags: Hash[::String, ::String],
609
515
  ?incident_template_title: ::String,
610
516
  ?integrations: Array[
611
- {
612
- pager_duty_configuration: {
613
- name: ::String,
614
- pager_duty_incident_configuration: {
615
- service_id: ::String
616
- },
617
- secret_id: ::String
618
- }?
619
- },
517
+ Params::integration
620
518
  ]
621
519
  ) -> _UpdateResponsePlanResponseSuccess
622
520
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateResponsePlanResponseSuccess
@@ -633,7 +531,7 @@ module Aws
633
531
  {
634
532
  related_item_id: ::String?,
635
533
  resource: ::String?
636
- },
534
+ }
637
535
  ],
638
536
  ?event_time: ::Time,
639
537
  ?event_type: ::String,
data/sig/params.rbs ADDED
@@ -0,0 +1,74 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SSMIncidents
10
+ module Params
11
+ type ssm_automation = {
12
+ document_name: ::String,
13
+ document_version: ::String?,
14
+ dynamic_parameters: Hash[::String, {
15
+ variable: ("INCIDENT_RECORD_ARN" | "INVOLVED_RESOURCES")?
16
+ }]?,
17
+ parameters: Hash[::String, Array[::String]]?,
18
+ role_arn: ::String,
19
+ target_account: ("RESPONSE_PLAN_OWNER_ACCOUNT" | "IMPACTED_ACCOUNT")?
20
+ }
21
+
22
+ type action = {
23
+ ssm_automation: Params::ssm_automation?
24
+ }
25
+
26
+ type integration = {
27
+ pager_duty_configuration: {
28
+ name: ::String,
29
+ pager_duty_incident_configuration: {
30
+ service_id: ::String
31
+ },
32
+ secret_id: ::String
33
+ }?
34
+ }
35
+
36
+ type condition = {
37
+ after: ::Time?,
38
+ before: ::Time?,
39
+ equals: {
40
+ integer_values: Array[::Integer]?,
41
+ string_values: Array[::String]?
42
+ }?
43
+ }
44
+
45
+ type filter = {
46
+ condition: Params::condition,
47
+ key: ::String
48
+ }
49
+
50
+ type item_value = {
51
+ arn: ::String?,
52
+ metric_definition: ::String?,
53
+ pager_duty_incident_detail: {
54
+ auto_resolve: bool?,
55
+ id: ::String,
56
+ secret_id: ::String?
57
+ }?,
58
+ url: ::String?
59
+ }
60
+
61
+ type item_identifier = {
62
+ type: ("ANALYSIS" | "INCIDENT" | "METRIC" | "PARENT" | "ATTACHMENT" | "OTHER" | "AUTOMATION" | "INVOLVED_RESOURCE" | "TASK"),
63
+ value: Params::item_value
64
+ }
65
+
66
+ type related_item = {
67
+ generated_id: ::String?,
68
+ identifier: Params::item_identifier,
69
+ title: ::String?
70
+ }
71
+
72
+ end
73
+ end
74
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmincidents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-ssmincidents/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs