aws-sdk-devopsagent 1.12.0 → 1.14.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +53 -1
- data/lib/aws-sdk-devopsagent/client_api.rb +27 -0
- data/lib/aws-sdk-devopsagent/types.rb +78 -2
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +2 -6
- data/sig/params.rbs +17 -1
- data/sig/types.rbs +19 -0
- 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: 14420d5cef48761561f7c69572e191d59fda60a5091fee0655d9bd42c713c0a8
|
|
4
|
+
data.tar.gz: 626f6e9aea5b221c80ab52aa4b99c40ae9c3dbf4df89e34bf317b8e10ca3bbc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd5c487f28417c440cb470c41f78447877177ebd38e40f18de02f7801ec6856e466773a78bbcb534cddb121e6cce55c6084f54022850c588b529a494e8c56cdf
|
|
7
|
+
data.tar.gz: 84b907d2c75e48dd3ec79c9bf5b49523e4a97a395e9a692a50dcd8a58b8112b0a2a8489057a19d31c4ef9ac5dc071313acf88400191aba8139da682433fdf5e5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.14.0 (2026-08-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for Slack bidirectional communication configuration in AWS DevOps Agent agent spaces.
|
|
8
|
+
|
|
9
|
+
1.13.0 (2026-08-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS DevOps Agent now supports trigger filter groups for Release Readiness Review, letting you control when the capability auto-triggers based on webhook events and target branches.
|
|
13
|
+
|
|
4
14
|
1.12.0 (2026-08-25)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
|
@@ -549,6 +549,10 @@ module Aws::DevOpsAgent
|
|
|
549
549
|
# channel_id: "SlackChannelChannelIdString", # required
|
|
550
550
|
# },
|
|
551
551
|
# },
|
|
552
|
+
# bidirectional: {
|
|
553
|
+
# role_arn: "RoleArn", # required
|
|
554
|
+
# enabled: false,
|
|
555
|
+
# },
|
|
552
556
|
# },
|
|
553
557
|
# dynatrace: {
|
|
554
558
|
# env_id: "String", # required
|
|
@@ -629,6 +633,14 @@ module Aws::DevOpsAgent
|
|
|
629
633
|
# capabilities: {
|
|
630
634
|
# "RELEASE_READINESS_REVIEW" => {
|
|
631
635
|
# enabled: false,
|
|
636
|
+
# trigger_filter_groups: [
|
|
637
|
+
# {
|
|
638
|
+
# events: ["PULL_REQUEST_READY_FOR_REVIEW"], # accepts PULL_REQUEST_READY_FOR_REVIEW, PULL_REQUEST_DRAFT
|
|
639
|
+
# target_branches: {
|
|
640
|
+
# patterns: ["TriggerRegexPattern"], # required
|
|
641
|
+
# },
|
|
642
|
+
# },
|
|
643
|
+
# ],
|
|
632
644
|
# },
|
|
633
645
|
# },
|
|
634
646
|
# })
|
|
@@ -664,6 +676,8 @@ module Aws::DevOpsAgent
|
|
|
664
676
|
# resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_id #=> String
|
|
665
677
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_name #=> String
|
|
666
678
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_id #=> String
|
|
679
|
+
# resp.association.configuration.slack.bidirectional.role_arn #=> String
|
|
680
|
+
# resp.association.configuration.slack.bidirectional.enabled #=> Boolean
|
|
667
681
|
# resp.association.configuration.dynatrace.env_id #=> String
|
|
668
682
|
# resp.association.configuration.dynatrace.resources #=> Array
|
|
669
683
|
# resp.association.configuration.dynatrace.resources[0] #=> String
|
|
@@ -705,6 +719,11 @@ module Aws::DevOpsAgent
|
|
|
705
719
|
# resp.association.configuration.mcpserversigv4.tool_details[0].tool_classification #=> String, one of "READ_ONLY", "MUTATIVE", "DESTRUCTIVE"
|
|
706
720
|
# resp.association.capabilities #=> Hash
|
|
707
721
|
# resp.association.capabilities["CapabilityType"].enabled #=> Boolean
|
|
722
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups #=> Array
|
|
723
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events #=> Array
|
|
724
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events[0] #=> String, one of "PULL_REQUEST_READY_FOR_REVIEW", "PULL_REQUEST_DRAFT"
|
|
725
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns #=> Array
|
|
726
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns[0] #=> String
|
|
708
727
|
# resp.webhook.webhook_url #=> String
|
|
709
728
|
# resp.webhook.webhook_id #=> String
|
|
710
729
|
# resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
|
|
@@ -1789,6 +1808,8 @@ module Aws::DevOpsAgent
|
|
|
1789
1808
|
# resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_id #=> String
|
|
1790
1809
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_name #=> String
|
|
1791
1810
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_id #=> String
|
|
1811
|
+
# resp.association.configuration.slack.bidirectional.role_arn #=> String
|
|
1812
|
+
# resp.association.configuration.slack.bidirectional.enabled #=> Boolean
|
|
1792
1813
|
# resp.association.configuration.dynatrace.env_id #=> String
|
|
1793
1814
|
# resp.association.configuration.dynatrace.resources #=> Array
|
|
1794
1815
|
# resp.association.configuration.dynatrace.resources[0] #=> String
|
|
@@ -1830,6 +1851,11 @@ module Aws::DevOpsAgent
|
|
|
1830
1851
|
# resp.association.configuration.mcpserversigv4.tool_details[0].tool_classification #=> String, one of "READ_ONLY", "MUTATIVE", "DESTRUCTIVE"
|
|
1831
1852
|
# resp.association.capabilities #=> Hash
|
|
1832
1853
|
# resp.association.capabilities["CapabilityType"].enabled #=> Boolean
|
|
1854
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups #=> Array
|
|
1855
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events #=> Array
|
|
1856
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events[0] #=> String, one of "PULL_REQUEST_READY_FOR_REVIEW", "PULL_REQUEST_DRAFT"
|
|
1857
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns #=> Array
|
|
1858
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns[0] #=> String
|
|
1833
1859
|
#
|
|
1834
1860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssociation AWS API Documentation
|
|
1835
1861
|
#
|
|
@@ -2430,6 +2456,8 @@ module Aws::DevOpsAgent
|
|
|
2430
2456
|
# resp.associations[0].configuration.slack.transmission_target.ops_oncall_target.channel_id #=> String
|
|
2431
2457
|
# resp.associations[0].configuration.slack.transmission_target.ops_sre_target.channel_name #=> String
|
|
2432
2458
|
# resp.associations[0].configuration.slack.transmission_target.ops_sre_target.channel_id #=> String
|
|
2459
|
+
# resp.associations[0].configuration.slack.bidirectional.role_arn #=> String
|
|
2460
|
+
# resp.associations[0].configuration.slack.bidirectional.enabled #=> Boolean
|
|
2433
2461
|
# resp.associations[0].configuration.dynatrace.env_id #=> String
|
|
2434
2462
|
# resp.associations[0].configuration.dynatrace.resources #=> Array
|
|
2435
2463
|
# resp.associations[0].configuration.dynatrace.resources[0] #=> String
|
|
@@ -2471,6 +2499,11 @@ module Aws::DevOpsAgent
|
|
|
2471
2499
|
# resp.associations[0].configuration.mcpserversigv4.tool_details[0].tool_classification #=> String, one of "READ_ONLY", "MUTATIVE", "DESTRUCTIVE"
|
|
2472
2500
|
# resp.associations[0].capabilities #=> Hash
|
|
2473
2501
|
# resp.associations[0].capabilities["CapabilityType"].enabled #=> Boolean
|
|
2502
|
+
# resp.associations[0].capabilities["CapabilityType"].trigger_filter_groups #=> Array
|
|
2503
|
+
# resp.associations[0].capabilities["CapabilityType"].trigger_filter_groups[0].events #=> Array
|
|
2504
|
+
# resp.associations[0].capabilities["CapabilityType"].trigger_filter_groups[0].events[0] #=> String, one of "PULL_REQUEST_READY_FOR_REVIEW", "PULL_REQUEST_DRAFT"
|
|
2505
|
+
# resp.associations[0].capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns #=> Array
|
|
2506
|
+
# resp.associations[0].capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns[0] #=> String
|
|
2474
2507
|
#
|
|
2475
2508
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssociations AWS API Documentation
|
|
2476
2509
|
#
|
|
@@ -4180,6 +4213,10 @@ module Aws::DevOpsAgent
|
|
|
4180
4213
|
# channel_id: "SlackChannelChannelIdString", # required
|
|
4181
4214
|
# },
|
|
4182
4215
|
# },
|
|
4216
|
+
# bidirectional: {
|
|
4217
|
+
# role_arn: "RoleArn", # required
|
|
4218
|
+
# enabled: false,
|
|
4219
|
+
# },
|
|
4183
4220
|
# },
|
|
4184
4221
|
# dynatrace: {
|
|
4185
4222
|
# env_id: "String", # required
|
|
@@ -4260,6 +4297,14 @@ module Aws::DevOpsAgent
|
|
|
4260
4297
|
# capabilities: {
|
|
4261
4298
|
# "RELEASE_READINESS_REVIEW" => {
|
|
4262
4299
|
# enabled: false,
|
|
4300
|
+
# trigger_filter_groups: [
|
|
4301
|
+
# {
|
|
4302
|
+
# events: ["PULL_REQUEST_READY_FOR_REVIEW"], # accepts PULL_REQUEST_READY_FOR_REVIEW, PULL_REQUEST_DRAFT
|
|
4303
|
+
# target_branches: {
|
|
4304
|
+
# patterns: ["TriggerRegexPattern"], # required
|
|
4305
|
+
# },
|
|
4306
|
+
# },
|
|
4307
|
+
# ],
|
|
4263
4308
|
# },
|
|
4264
4309
|
# },
|
|
4265
4310
|
# })
|
|
@@ -4295,6 +4340,8 @@ module Aws::DevOpsAgent
|
|
|
4295
4340
|
# resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_id #=> String
|
|
4296
4341
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_name #=> String
|
|
4297
4342
|
# resp.association.configuration.slack.transmission_target.ops_sre_target.channel_id #=> String
|
|
4343
|
+
# resp.association.configuration.slack.bidirectional.role_arn #=> String
|
|
4344
|
+
# resp.association.configuration.slack.bidirectional.enabled #=> Boolean
|
|
4298
4345
|
# resp.association.configuration.dynatrace.env_id #=> String
|
|
4299
4346
|
# resp.association.configuration.dynatrace.resources #=> Array
|
|
4300
4347
|
# resp.association.configuration.dynatrace.resources[0] #=> String
|
|
@@ -4336,6 +4383,11 @@ module Aws::DevOpsAgent
|
|
|
4336
4383
|
# resp.association.configuration.mcpserversigv4.tool_details[0].tool_classification #=> String, one of "READ_ONLY", "MUTATIVE", "DESTRUCTIVE"
|
|
4337
4384
|
# resp.association.capabilities #=> Hash
|
|
4338
4385
|
# resp.association.capabilities["CapabilityType"].enabled #=> Boolean
|
|
4386
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups #=> Array
|
|
4387
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events #=> Array
|
|
4388
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].events[0] #=> String, one of "PULL_REQUEST_READY_FOR_REVIEW", "PULL_REQUEST_DRAFT"
|
|
4389
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns #=> Array
|
|
4390
|
+
# resp.association.capabilities["CapabilityType"].trigger_filter_groups[0].target_branches.patterns[0] #=> String
|
|
4339
4391
|
# resp.webhook.webhook_url #=> String
|
|
4340
4392
|
# resp.webhook.webhook_id #=> String
|
|
4341
4393
|
# resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
|
|
@@ -4715,7 +4767,7 @@ module Aws::DevOpsAgent
|
|
|
4715
4767
|
tracer: tracer
|
|
4716
4768
|
)
|
|
4717
4769
|
context[:gem_name] = 'aws-sdk-devopsagent'
|
|
4718
|
-
context[:gem_version] = '1.
|
|
4770
|
+
context[:gem_version] = '1.14.0'
|
|
4719
4771
|
Seahorse::Client::Request.new(handlers, context)
|
|
4720
4772
|
end
|
|
4721
4773
|
|
|
@@ -339,6 +339,7 @@ module Aws::DevOpsAgent
|
|
|
339
339
|
PagerDutyScopes = Shapes::ListShape.new(name: 'PagerDutyScopes')
|
|
340
340
|
PagerDutyScopesList = Shapes::ListShape.new(name: 'PagerDutyScopesList')
|
|
341
341
|
PagerDutyServicesList = Shapes::ListShape.new(name: 'PagerDutyServicesList')
|
|
342
|
+
PatternFilter = Shapes::StructureShape.new(name: 'PatternFilter')
|
|
342
343
|
PendingMessage = Shapes::StructureShape.new(name: 'PendingMessage')
|
|
343
344
|
PendingMessages = Shapes::ListShape.new(name: 'PendingMessages')
|
|
344
345
|
PortRange = Shapes::StringShape.new(name: 'PortRange')
|
|
@@ -453,6 +454,7 @@ module Aws::DevOpsAgent
|
|
|
453
454
|
ServiceNowServiceDetails = Shapes::StructureShape.new(name: 'ServiceNowServiceDetails')
|
|
454
455
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
455
456
|
SigV4Region = Shapes::StringShape.new(name: 'SigV4Region')
|
|
457
|
+
SlackBidirectionalConfiguration = Shapes::StructureShape.new(name: 'SlackBidirectionalConfiguration')
|
|
456
458
|
SlackChannel = Shapes::StructureShape.new(name: 'SlackChannel')
|
|
457
459
|
SlackChannelChannelIdString = Shapes::StringShape.new(name: 'SlackChannelChannelIdString')
|
|
458
460
|
SlackConfiguration = Shapes::StructureShape.new(name: 'SlackConfiguration')
|
|
@@ -489,7 +491,13 @@ module Aws::DevOpsAgent
|
|
|
489
491
|
Trigger = Shapes::StructureShape.new(name: 'Trigger')
|
|
490
492
|
TriggerAction = Shapes::DocumentShape.new(name: 'TriggerAction', document: true)
|
|
491
493
|
TriggerCondition = Shapes::UnionShape.new(name: 'TriggerCondition')
|
|
494
|
+
TriggerEvent = Shapes::StringShape.new(name: 'TriggerEvent')
|
|
495
|
+
TriggerEventList = Shapes::ListShape.new(name: 'TriggerEventList')
|
|
496
|
+
TriggerFilterGroup = Shapes::StructureShape.new(name: 'TriggerFilterGroup')
|
|
497
|
+
TriggerFilterGroups = Shapes::ListShape.new(name: 'TriggerFilterGroups')
|
|
492
498
|
TriggerList = Shapes::ListShape.new(name: 'TriggerList')
|
|
499
|
+
TriggerRegexPattern = Shapes::StringShape.new(name: 'TriggerRegexPattern')
|
|
500
|
+
TriggerRegexPatternList = Shapes::ListShape.new(name: 'TriggerRegexPatternList')
|
|
493
501
|
TriggerStatus = Shapes::StringShape.new(name: 'TriggerStatus')
|
|
494
502
|
TriggerType = Shapes::StringShape.new(name: 'TriggerType')
|
|
495
503
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
@@ -738,6 +746,7 @@ module Aws::DevOpsAgent
|
|
|
738
746
|
AzureDevOpsConfiguration.struct_class = Types::AzureDevOpsConfiguration
|
|
739
747
|
|
|
740
748
|
CapabilityConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
749
|
+
CapabilityConfiguration.add_member(:trigger_filter_groups, Shapes::ShapeRef.new(shape: TriggerFilterGroups, location_name: "triggerFilterGroups"))
|
|
741
750
|
CapabilityConfiguration.struct_class = Types::CapabilityConfiguration
|
|
742
751
|
|
|
743
752
|
ChatExecution.add_member(:execution_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "executionId"))
|
|
@@ -1501,6 +1510,9 @@ module Aws::DevOpsAgent
|
|
|
1501
1510
|
|
|
1502
1511
|
PagerDutyServicesList.member = Shapes::ShapeRef.new(shape: String)
|
|
1503
1512
|
|
|
1513
|
+
PatternFilter.add_member(:patterns, Shapes::ShapeRef.new(shape: TriggerRegexPatternList, required: true, location_name: "patterns"))
|
|
1514
|
+
PatternFilter.struct_class = Types::PatternFilter
|
|
1515
|
+
|
|
1504
1516
|
PendingMessage.add_member(:message_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "messageId"))
|
|
1505
1517
|
PendingMessage.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "message"))
|
|
1506
1518
|
PendingMessage.struct_class = Types::PendingMessage
|
|
@@ -1932,6 +1944,10 @@ module Aws::DevOpsAgent
|
|
|
1932
1944
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1933
1945
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
1934
1946
|
|
|
1947
|
+
SlackBidirectionalConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
|
|
1948
|
+
SlackBidirectionalConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
1949
|
+
SlackBidirectionalConfiguration.struct_class = Types::SlackBidirectionalConfiguration
|
|
1950
|
+
|
|
1935
1951
|
SlackChannel.add_member(:channel_name, Shapes::ShapeRef.new(shape: String, location_name: "channelName"))
|
|
1936
1952
|
SlackChannel.add_member(:channel_id, Shapes::ShapeRef.new(shape: SlackChannelChannelIdString, required: true, location_name: "channelId"))
|
|
1937
1953
|
SlackChannel.struct_class = Types::SlackChannel
|
|
@@ -1939,6 +1955,7 @@ module Aws::DevOpsAgent
|
|
|
1939
1955
|
SlackConfiguration.add_member(:workspace_id, Shapes::ShapeRef.new(shape: SlackConfigurationWorkspaceIdString, required: true, location_name: "workspaceId"))
|
|
1940
1956
|
SlackConfiguration.add_member(:workspace_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "workspaceName"))
|
|
1941
1957
|
SlackConfiguration.add_member(:transmission_target, Shapes::ShapeRef.new(shape: SlackTransmissionTarget, required: true, location_name: "transmissionTarget"))
|
|
1958
|
+
SlackConfiguration.add_member(:bidirectional, Shapes::ShapeRef.new(shape: SlackBidirectionalConfiguration, location_name: "bidirectional"))
|
|
1942
1959
|
SlackConfiguration.struct_class = Types::SlackConfiguration
|
|
1943
1960
|
|
|
1944
1961
|
SlackTransmissionTarget.add_member(:ops_oncall_target, Shapes::ShapeRef.new(shape: SlackChannel, required: true, location_name: "opsOncallTarget"))
|
|
@@ -2018,8 +2035,18 @@ module Aws::DevOpsAgent
|
|
|
2018
2035
|
TriggerCondition.add_member_subclass(:unknown, Types::TriggerCondition::Unknown)
|
|
2019
2036
|
TriggerCondition.struct_class = Types::TriggerCondition
|
|
2020
2037
|
|
|
2038
|
+
TriggerEventList.member = Shapes::ShapeRef.new(shape: TriggerEvent)
|
|
2039
|
+
|
|
2040
|
+
TriggerFilterGroup.add_member(:events, Shapes::ShapeRef.new(shape: TriggerEventList, location_name: "events"))
|
|
2041
|
+
TriggerFilterGroup.add_member(:target_branches, Shapes::ShapeRef.new(shape: PatternFilter, location_name: "targetBranches"))
|
|
2042
|
+
TriggerFilterGroup.struct_class = Types::TriggerFilterGroup
|
|
2043
|
+
|
|
2044
|
+
TriggerFilterGroups.member = Shapes::ShapeRef.new(shape: TriggerFilterGroup)
|
|
2045
|
+
|
|
2021
2046
|
TriggerList.member = Shapes::ShapeRef.new(shape: Trigger)
|
|
2022
2047
|
|
|
2048
|
+
TriggerRegexPatternList.member = Shapes::ShapeRef.new(shape: TriggerRegexPattern)
|
|
2049
|
+
|
|
2023
2050
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: UntagResourceRequestResourceArnString, required: true, location: "uri", location_name: "resourceArn"))
|
|
2024
2051
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
|
2025
2052
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
|
@@ -773,10 +773,17 @@ module Aws::DevOpsAgent
|
|
|
773
773
|
# Whether the capability is enabled.
|
|
774
774
|
# @return [Boolean]
|
|
775
775
|
#
|
|
776
|
+
# @!attribute [rw] trigger_filter_groups
|
|
777
|
+
# Optional trigger filter groups. Evaluated only when enabled=true;
|
|
778
|
+
# retained while the capability is disabled, so re-enabling restores
|
|
779
|
+
# the prior trigger behavior.
|
|
780
|
+
# @return [Array<Types::TriggerFilterGroup>]
|
|
781
|
+
#
|
|
776
782
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CapabilityConfiguration AWS API Documentation
|
|
777
783
|
#
|
|
778
784
|
class CapabilityConfiguration < Struct.new(
|
|
779
|
-
:enabled
|
|
785
|
+
:enabled,
|
|
786
|
+
:trigger_filter_groups)
|
|
780
787
|
SENSITIVE = []
|
|
781
788
|
include Aws::Structure
|
|
782
789
|
end
|
|
@@ -4286,6 +4293,22 @@ module Aws::DevOpsAgent
|
|
|
4286
4293
|
include Aws::Structure
|
|
4287
4294
|
end
|
|
4288
4295
|
|
|
4296
|
+
# A regex-based match condition. Passes when the value matches any
|
|
4297
|
+
# pattern.
|
|
4298
|
+
#
|
|
4299
|
+
# @!attribute [rw] patterns
|
|
4300
|
+
# Anchored full-match regex patterns. The condition passes when the
|
|
4301
|
+
# value matches at least one pattern.
|
|
4302
|
+
# @return [Array<String>]
|
|
4303
|
+
#
|
|
4304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/PatternFilter AWS API Documentation
|
|
4305
|
+
#
|
|
4306
|
+
class PatternFilter < Struct.new(
|
|
4307
|
+
:patterns)
|
|
4308
|
+
SENSITIVE = []
|
|
4309
|
+
include Aws::Structure
|
|
4310
|
+
end
|
|
4311
|
+
|
|
4289
4312
|
# Represents a pending message in an agent execution.
|
|
4290
4313
|
#
|
|
4291
4314
|
# @!attribute [rw] message_id
|
|
@@ -6123,6 +6146,30 @@ module Aws::DevOpsAgent
|
|
|
6123
6146
|
include Aws::Structure
|
|
6124
6147
|
end
|
|
6125
6148
|
|
|
6149
|
+
# Configuration for bidirectional Slack communication.
|
|
6150
|
+
#
|
|
6151
|
+
# @!attribute [rw] role_arn
|
|
6152
|
+
# IAM role ARN that AWS DevOps Agent assumes to exchange messages with
|
|
6153
|
+
# your Slack workspace on behalf of this association.
|
|
6154
|
+
# @return [String]
|
|
6155
|
+
#
|
|
6156
|
+
# @!attribute [rw] enabled
|
|
6157
|
+
# Whether bidirectional communication is enabled for this association.
|
|
6158
|
+
# When you set this value to true, you can mention the agent in a
|
|
6159
|
+
# configured Slack channel and it responds in that channel. When you
|
|
6160
|
+
# omit this value or set it to false, the agent ignores mentions and
|
|
6161
|
+
# only sends notifications.
|
|
6162
|
+
# @return [Boolean]
|
|
6163
|
+
#
|
|
6164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SlackBidirectionalConfiguration AWS API Documentation
|
|
6165
|
+
#
|
|
6166
|
+
class SlackBidirectionalConfiguration < Struct.new(
|
|
6167
|
+
:role_arn,
|
|
6168
|
+
:enabled)
|
|
6169
|
+
SENSITIVE = []
|
|
6170
|
+
include Aws::Structure
|
|
6171
|
+
end
|
|
6172
|
+
|
|
6126
6173
|
# Represents a Slack channel with its ID and optional name.
|
|
6127
6174
|
#
|
|
6128
6175
|
# @!attribute [rw] channel_name
|
|
@@ -6156,12 +6203,19 @@ module Aws::DevOpsAgent
|
|
|
6156
6203
|
# Transmission targets for agent notifications
|
|
6157
6204
|
# @return [Types::SlackTransmissionTarget]
|
|
6158
6205
|
#
|
|
6206
|
+
# @!attribute [rw] bidirectional
|
|
6207
|
+
# Optional bidirectional communication configuration. Supply this
|
|
6208
|
+
# configuration and set enabled to true so you can interact with the
|
|
6209
|
+
# agent directly from Slack.
|
|
6210
|
+
# @return [Types::SlackBidirectionalConfiguration]
|
|
6211
|
+
#
|
|
6159
6212
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SlackConfiguration AWS API Documentation
|
|
6160
6213
|
#
|
|
6161
6214
|
class SlackConfiguration < Struct.new(
|
|
6162
6215
|
:workspace_id,
|
|
6163
6216
|
:workspace_name,
|
|
6164
|
-
:transmission_target
|
|
6217
|
+
:transmission_target,
|
|
6218
|
+
:bidirectional)
|
|
6165
6219
|
SENSITIVE = []
|
|
6166
6220
|
include Aws::Structure
|
|
6167
6221
|
end
|
|
@@ -6484,6 +6538,28 @@ module Aws::DevOpsAgent
|
|
|
6484
6538
|
class Unknown < TriggerCondition; end
|
|
6485
6539
|
end
|
|
6486
6540
|
|
|
6541
|
+
# A group of trigger conditions. The group matches when ALL present
|
|
6542
|
+
# conditions pass. A group cannot be empty: at least one condition must
|
|
6543
|
+
# be present.
|
|
6544
|
+
#
|
|
6545
|
+
# @!attribute [rw] events
|
|
6546
|
+
# Passes when the webhook event is one of the listed events.
|
|
6547
|
+
# @return [Array<String>]
|
|
6548
|
+
#
|
|
6549
|
+
# @!attribute [rw] target_branches
|
|
6550
|
+
# Passes when the change request target branch matches. Applicable to
|
|
6551
|
+
# RELEASE\_READINESS\_REVIEW only.
|
|
6552
|
+
# @return [Types::PatternFilter]
|
|
6553
|
+
#
|
|
6554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/TriggerFilterGroup AWS API Documentation
|
|
6555
|
+
#
|
|
6556
|
+
class TriggerFilterGroup < Struct.new(
|
|
6557
|
+
:events,
|
|
6558
|
+
:target_branches)
|
|
6559
|
+
SENSITIVE = []
|
|
6560
|
+
include Aws::Structure
|
|
6561
|
+
end
|
|
6562
|
+
|
|
6487
6563
|
# @!attribute [rw] resource_arn
|
|
6488
6564
|
# The ARN of the resource to untag.
|
|
6489
6565
|
# @return [String]
|
data/lib/aws-sdk-devopsagent.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -91,9 +91,7 @@ module Aws
|
|
|
91
91
|
agent_space_id: ::String,
|
|
92
92
|
service_id: ::String,
|
|
93
93
|
configuration: Params::service_configuration,
|
|
94
|
-
?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"),
|
|
95
|
-
enabled: bool?
|
|
96
|
-
}]
|
|
94
|
+
?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), Params::capability_configuration]
|
|
97
95
|
) -> _AssociateServiceResponseSuccess
|
|
98
96
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateServiceResponseSuccess
|
|
99
97
|
|
|
@@ -1016,9 +1014,7 @@ module Aws
|
|
|
1016
1014
|
agent_space_id: ::String,
|
|
1017
1015
|
association_id: ::String,
|
|
1018
1016
|
configuration: Params::service_configuration,
|
|
1019
|
-
?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"),
|
|
1020
|
-
enabled: bool?
|
|
1021
|
-
}]
|
|
1017
|
+
?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), Params::capability_configuration]
|
|
1022
1018
|
) -> _UpdateAssociationResponseSuccess
|
|
1023
1019
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssociationResponseSuccess
|
|
1024
1020
|
|
data/sig/params.rbs
CHANGED
|
@@ -40,7 +40,11 @@ module Aws
|
|
|
40
40
|
type slack_configuration = {
|
|
41
41
|
workspace_id: ::String,
|
|
42
42
|
workspace_name: ::String,
|
|
43
|
-
transmission_target: Params::slack_transmission_target
|
|
43
|
+
transmission_target: Params::slack_transmission_target,
|
|
44
|
+
bidirectional: {
|
|
45
|
+
role_arn: ::String,
|
|
46
|
+
enabled: bool?
|
|
47
|
+
}?
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
type mcp_server_grafana_configuration = {
|
|
@@ -133,6 +137,18 @@ module Aws
|
|
|
133
137
|
}?
|
|
134
138
|
}
|
|
135
139
|
|
|
140
|
+
type capability_configuration = {
|
|
141
|
+
enabled: bool?,
|
|
142
|
+
trigger_filter_groups: Array[
|
|
143
|
+
{
|
|
144
|
+
events: Array[("PULL_REQUEST_READY_FOR_REVIEW" | "PULL_REQUEST_DRAFT")]?,
|
|
145
|
+
target_branches: {
|
|
146
|
+
patterns: Array[::String]
|
|
147
|
+
}?
|
|
148
|
+
}
|
|
149
|
+
]?
|
|
150
|
+
}
|
|
151
|
+
|
|
136
152
|
type asset_file_content = {
|
|
137
153
|
path: ::String,
|
|
138
154
|
body: {
|
data/sig/types.rbs
CHANGED
|
@@ -257,6 +257,7 @@ module Aws::DevOpsAgent
|
|
|
257
257
|
|
|
258
258
|
class CapabilityConfiguration
|
|
259
259
|
attr_accessor enabled: bool
|
|
260
|
+
attr_accessor trigger_filter_groups: ::Array[Types::TriggerFilterGroup]
|
|
260
261
|
SENSITIVE: []
|
|
261
262
|
end
|
|
262
263
|
|
|
@@ -1284,6 +1285,11 @@ module Aws::DevOpsAgent
|
|
|
1284
1285
|
SENSITIVE: [:client_id, :client_secret]
|
|
1285
1286
|
end
|
|
1286
1287
|
|
|
1288
|
+
class PatternFilter
|
|
1289
|
+
attr_accessor patterns: ::Array[::String]
|
|
1290
|
+
SENSITIVE: []
|
|
1291
|
+
end
|
|
1292
|
+
|
|
1287
1293
|
class PendingMessage
|
|
1288
1294
|
attr_accessor message_id: ::String
|
|
1289
1295
|
attr_accessor message: Types::Message
|
|
@@ -1866,6 +1872,12 @@ module Aws::DevOpsAgent
|
|
|
1866
1872
|
SENSITIVE: []
|
|
1867
1873
|
end
|
|
1868
1874
|
|
|
1875
|
+
class SlackBidirectionalConfiguration
|
|
1876
|
+
attr_accessor role_arn: ::String
|
|
1877
|
+
attr_accessor enabled: bool
|
|
1878
|
+
SENSITIVE: []
|
|
1879
|
+
end
|
|
1880
|
+
|
|
1869
1881
|
class SlackChannel
|
|
1870
1882
|
attr_accessor channel_name: ::String
|
|
1871
1883
|
attr_accessor channel_id: ::String
|
|
@@ -1876,6 +1888,7 @@ module Aws::DevOpsAgent
|
|
|
1876
1888
|
attr_accessor workspace_id: ::String
|
|
1877
1889
|
attr_accessor workspace_name: ::String
|
|
1878
1890
|
attr_accessor transmission_target: Types::SlackTransmissionTarget
|
|
1891
|
+
attr_accessor bidirectional: Types::SlackBidirectionalConfiguration
|
|
1879
1892
|
SENSITIVE: []
|
|
1880
1893
|
end
|
|
1881
1894
|
|
|
@@ -1963,6 +1976,12 @@ module Aws::DevOpsAgent
|
|
|
1963
1976
|
end
|
|
1964
1977
|
end
|
|
1965
1978
|
|
|
1979
|
+
class TriggerFilterGroup
|
|
1980
|
+
attr_accessor events: ::Array[("PULL_REQUEST_READY_FOR_REVIEW" | "PULL_REQUEST_DRAFT")]
|
|
1981
|
+
attr_accessor target_branches: Types::PatternFilter
|
|
1982
|
+
SENSITIVE: []
|
|
1983
|
+
end
|
|
1984
|
+
|
|
1966
1985
|
class UntagResourceRequest
|
|
1967
1986
|
attr_accessor resource_arn: ::String
|
|
1968
1987
|
attr_accessor tag_keys: ::Array[::String]
|