aws-sdk-devopsguru 1.73.0 → 1.74.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-devopsguru/client.rb +1 -1
- data/lib/aws-sdk-devopsguru.rb +1 -1
- data/sig/client.rbs +7 -73
- data/sig/params.rbs +45 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d10bec1c0e5a99e1a4b687201fd58fd4459996a2c8ff439d14775be25b299e5
|
|
4
|
+
data.tar.gz: 7fa98fcbabeb1d2d5246326f78e70644adf9810923088c90889ae93b3941d711
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a142e70103e7a15f61bade3f77b88b39af5c39cd3f27c1d74eb0d792f64ae32322279765d44f6452bbbd89fe72689adebc12b04a3255eafd8e23440414cdcfa5
|
|
7
|
+
data.tar.gz: f28cb4d2105f98ef15ce35159c2ac91f6685fa244583487a413050e936ad273526b13299f56eed9425e69e9aac7bf928aa46a6ef65aa48db1caa43844916970e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
data/lib/aws-sdk-devopsguru.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -324,17 +324,7 @@ module Aws
|
|
|
324
324
|
event_class: ("INFRASTRUCTURE" | "DEPLOYMENT" | "SECURITY_CHANGE" | "CONFIG_CHANGE" | "SCHEMA_CHANGE")?,
|
|
325
325
|
event_source: ::String?,
|
|
326
326
|
data_source: ("AWS_CLOUD_TRAIL" | "AWS_CODE_DEPLOY")?,
|
|
327
|
-
resource_collection:
|
|
328
|
-
cloud_formation: {
|
|
329
|
-
stack_names: Array[::String]?
|
|
330
|
-
}?,
|
|
331
|
-
tags: Array[
|
|
332
|
-
{
|
|
333
|
-
app_boundary_key: ::String,
|
|
334
|
-
tag_values: Array[::String]
|
|
335
|
-
},
|
|
336
|
-
]?
|
|
337
|
-
}?
|
|
327
|
+
resource_collection: Params::resource_collection?
|
|
338
328
|
},
|
|
339
329
|
?max_results: ::Integer,
|
|
340
330
|
?next_token: ::String,
|
|
@@ -350,25 +340,7 @@ module Aws
|
|
|
350
340
|
end
|
|
351
341
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsGuru/Client.html#list_insights-instance_method
|
|
352
342
|
def list_insights: (
|
|
353
|
-
status_filter:
|
|
354
|
-
ongoing: {
|
|
355
|
-
type: ("REACTIVE" | "PROACTIVE")
|
|
356
|
-
}?,
|
|
357
|
-
closed: {
|
|
358
|
-
type: ("REACTIVE" | "PROACTIVE"),
|
|
359
|
-
end_time_range: {
|
|
360
|
-
from_time: ::Time?,
|
|
361
|
-
to_time: ::Time?
|
|
362
|
-
}
|
|
363
|
-
}?,
|
|
364
|
-
any: {
|
|
365
|
-
type: ("REACTIVE" | "PROACTIVE"),
|
|
366
|
-
start_time_range: {
|
|
367
|
-
from_time: ::Time?,
|
|
368
|
-
to_time: ::Time?
|
|
369
|
-
}
|
|
370
|
-
}?
|
|
371
|
-
},
|
|
343
|
+
status_filter: Params::list_insights_status_filter,
|
|
372
344
|
?max_results: ::Integer,
|
|
373
345
|
?next_token: ::String
|
|
374
346
|
) -> _ListInsightsResponseSuccess
|
|
@@ -409,25 +381,7 @@ module Aws
|
|
|
409
381
|
end
|
|
410
382
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsGuru/Client.html#list_organization_insights-instance_method
|
|
411
383
|
def list_organization_insights: (
|
|
412
|
-
status_filter:
|
|
413
|
-
ongoing: {
|
|
414
|
-
type: ("REACTIVE" | "PROACTIVE")
|
|
415
|
-
}?,
|
|
416
|
-
closed: {
|
|
417
|
-
type: ("REACTIVE" | "PROACTIVE"),
|
|
418
|
-
end_time_range: {
|
|
419
|
-
from_time: ::Time?,
|
|
420
|
-
to_time: ::Time?
|
|
421
|
-
}
|
|
422
|
-
}?,
|
|
423
|
-
any: {
|
|
424
|
-
type: ("REACTIVE" | "PROACTIVE"),
|
|
425
|
-
start_time_range: {
|
|
426
|
-
from_time: ::Time?,
|
|
427
|
-
to_time: ::Time?
|
|
428
|
-
}
|
|
429
|
-
}?
|
|
430
|
-
},
|
|
384
|
+
status_filter: Params::list_insights_status_filter,
|
|
431
385
|
?max_results: ::Integer,
|
|
432
386
|
?account_ids: Array[::String],
|
|
433
387
|
?organizational_unit_ids: Array[::String],
|
|
@@ -485,17 +439,7 @@ module Aws
|
|
|
485
439
|
?filters: {
|
|
486
440
|
severities: Array[("LOW" | "MEDIUM" | "HIGH")]?,
|
|
487
441
|
statuses: Array[("ONGOING" | "CLOSED")]?,
|
|
488
|
-
resource_collection:
|
|
489
|
-
cloud_formation: {
|
|
490
|
-
stack_names: Array[::String]?
|
|
491
|
-
}?,
|
|
492
|
-
tags: Array[
|
|
493
|
-
{
|
|
494
|
-
app_boundary_key: ::String,
|
|
495
|
-
tag_values: Array[::String]
|
|
496
|
-
},
|
|
497
|
-
]?
|
|
498
|
-
}?,
|
|
442
|
+
resource_collection: Params::resource_collection?,
|
|
499
443
|
service_collection: {
|
|
500
444
|
service_names: Array[("API_GATEWAY" | "APPLICATION_ELB" | "AUTO_SCALING_GROUP" | "CLOUD_FRONT" | "DYNAMO_DB" | "EC2" | "ECS" | "EKS" | "ELASTIC_BEANSTALK" | "ELASTI_CACHE" | "ELB" | "ES" | "KINESIS" | "LAMBDA" | "NAT_GATEWAY" | "NETWORK_ELB" | "RDS" | "REDSHIFT" | "ROUTE_53" | "S3" | "SAGE_MAKER" | "SNS" | "SQS" | "STEP_FUNCTIONS" | "SWF")]?
|
|
501
445
|
}?
|
|
@@ -522,17 +466,7 @@ module Aws
|
|
|
522
466
|
?filters: {
|
|
523
467
|
severities: Array[("LOW" | "MEDIUM" | "HIGH")]?,
|
|
524
468
|
statuses: Array[("ONGOING" | "CLOSED")]?,
|
|
525
|
-
resource_collection:
|
|
526
|
-
cloud_formation: {
|
|
527
|
-
stack_names: Array[::String]?
|
|
528
|
-
}?,
|
|
529
|
-
tags: Array[
|
|
530
|
-
{
|
|
531
|
-
app_boundary_key: ::String,
|
|
532
|
-
tag_values: Array[::String]
|
|
533
|
-
},
|
|
534
|
-
]?
|
|
535
|
-
}?,
|
|
469
|
+
resource_collection: Params::resource_collection?,
|
|
536
470
|
service_collection: {
|
|
537
471
|
service_names: Array[("API_GATEWAY" | "APPLICATION_ELB" | "AUTO_SCALING_GROUP" | "CLOUD_FRONT" | "DYNAMO_DB" | "EC2" | "ECS" | "EKS" | "ELASTIC_BEANSTALK" | "ELASTI_CACHE" | "ELB" | "ES" | "KINESIS" | "LAMBDA" | "NAT_GATEWAY" | "NETWORK_ELB" | "RDS" | "REDSHIFT" | "ROUTE_53" | "S3" | "SAGE_MAKER" | "SNS" | "SQS" | "STEP_FUNCTIONS" | "SWF")]?
|
|
538
472
|
}?
|
|
@@ -556,7 +490,7 @@ module Aws
|
|
|
556
490
|
{
|
|
557
491
|
app_boundary_key: ::String,
|
|
558
492
|
tag_values: Array[::String]
|
|
559
|
-
}
|
|
493
|
+
}
|
|
560
494
|
]?
|
|
561
495
|
},
|
|
562
496
|
?client_token: ::String
|
|
@@ -590,7 +524,7 @@ module Aws
|
|
|
590
524
|
{
|
|
591
525
|
app_boundary_key: ::String,
|
|
592
526
|
tag_values: Array[::String]
|
|
593
|
-
}
|
|
527
|
+
}
|
|
594
528
|
]?
|
|
595
529
|
}
|
|
596
530
|
) -> _UpdateResourceCollectionResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
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 DevOpsGuru
|
|
10
|
+
module Params
|
|
11
|
+
type resource_collection = {
|
|
12
|
+
cloud_formation: {
|
|
13
|
+
stack_names: Array[::String]?
|
|
14
|
+
}?,
|
|
15
|
+
tags: Array[
|
|
16
|
+
{
|
|
17
|
+
app_boundary_key: ::String,
|
|
18
|
+
tag_values: Array[::String]
|
|
19
|
+
}
|
|
20
|
+
]?
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type list_insights_status_filter = {
|
|
24
|
+
ongoing: {
|
|
25
|
+
type: ("REACTIVE" | "PROACTIVE")
|
|
26
|
+
}?,
|
|
27
|
+
closed: {
|
|
28
|
+
type: ("REACTIVE" | "PROACTIVE"),
|
|
29
|
+
end_time_range: {
|
|
30
|
+
from_time: ::Time?,
|
|
31
|
+
to_time: ::Time?
|
|
32
|
+
}
|
|
33
|
+
}?,
|
|
34
|
+
any: {
|
|
35
|
+
type: ("REACTIVE" | "PROACTIVE"),
|
|
36
|
+
start_time_range: {
|
|
37
|
+
from_time: ::Time?,
|
|
38
|
+
to_time: ::Time?
|
|
39
|
+
}
|
|
40
|
+
}?
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-devopsguru
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.74.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-devopsguru/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|