aws-sdk-devopsagent 1.8.0 → 1.10.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 +362 -17
- data/lib/aws-sdk-devopsagent/client_api.rb +318 -1
- data/lib/aws-sdk-devopsagent/types.rb +714 -10
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +115 -6
- data/sig/params.rbs +19 -8
- data/sig/types.rbs +221 -6
- metadata +1 -1
|
@@ -106,6 +106,14 @@ module Aws::DevOpsAgent
|
|
|
106
106
|
# SigV4-authenticated MCP server-specific service details.
|
|
107
107
|
# @return [Types::RegisteredMCPServerSigV4Details]
|
|
108
108
|
#
|
|
109
|
+
# @!attribute [rw] remoteagent
|
|
110
|
+
# Remote A2A agent-specific service details (token-based auth).
|
|
111
|
+
# @return [Types::RegisteredRemoteAgentDetails]
|
|
112
|
+
#
|
|
113
|
+
# @!attribute [rw] remoteagentsigv4
|
|
114
|
+
# Remote A2A agent-specific service details (SigV4 auth).
|
|
115
|
+
# @return [Types::RegisteredRemoteAgentSigV4Details]
|
|
116
|
+
#
|
|
109
117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AdditionalServiceDetails AWS API Documentation
|
|
110
118
|
#
|
|
111
119
|
class AdditionalServiceDetails < Struct.new(
|
|
@@ -122,6 +130,8 @@ module Aws::DevOpsAgent
|
|
|
122
130
|
:mcpservergrafana,
|
|
123
131
|
:pagerduty,
|
|
124
132
|
:mcpserversigv4,
|
|
133
|
+
:remoteagent,
|
|
134
|
+
:remoteagentsigv4,
|
|
125
135
|
:unknown)
|
|
126
136
|
SENSITIVE = []
|
|
127
137
|
include Aws::Structure
|
|
@@ -140,6 +150,8 @@ module Aws::DevOpsAgent
|
|
|
140
150
|
class Mcpservergrafana < AdditionalServiceDetails; end
|
|
141
151
|
class Pagerduty < AdditionalServiceDetails; end
|
|
142
152
|
class Mcpserversigv4 < AdditionalServiceDetails; end
|
|
153
|
+
class Remoteagent < AdditionalServiceDetails; end
|
|
154
|
+
class Remoteagentsigv4 < AdditionalServiceDetails; end
|
|
143
155
|
class Unknown < AdditionalServiceDetails; end
|
|
144
156
|
end
|
|
145
157
|
|
|
@@ -251,7 +263,8 @@ module Aws::DevOpsAgent
|
|
|
251
263
|
include Aws::Structure
|
|
252
264
|
end
|
|
253
265
|
|
|
254
|
-
# Content for an asset
|
|
266
|
+
# Content for an asset: a single file, a zip bundle, or a source URL to
|
|
267
|
+
# import from
|
|
255
268
|
#
|
|
256
269
|
# @note AssetContent is a union - when making an API calls you must set exactly one of the members.
|
|
257
270
|
#
|
|
@@ -263,11 +276,16 @@ module Aws::DevOpsAgent
|
|
|
263
276
|
# A zip file containing multiple files
|
|
264
277
|
# @return [Types::AssetZipContent]
|
|
265
278
|
#
|
|
279
|
+
# @!attribute [rw] source_url
|
|
280
|
+
# A source URL to import asset content from
|
|
281
|
+
# @return [Types::AssetSourceUrlContent]
|
|
282
|
+
#
|
|
266
283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetContent AWS API Documentation
|
|
267
284
|
#
|
|
268
285
|
class AssetContent < Struct.new(
|
|
269
286
|
:file,
|
|
270
287
|
:zip,
|
|
288
|
+
:source_url,
|
|
271
289
|
:unknown)
|
|
272
290
|
SENSITIVE = []
|
|
273
291
|
include Aws::Structure
|
|
@@ -275,6 +293,7 @@ module Aws::DevOpsAgent
|
|
|
275
293
|
|
|
276
294
|
class File < AssetContent; end
|
|
277
295
|
class Zip < AssetContent; end
|
|
296
|
+
class SourceUrl < AssetContent; end
|
|
278
297
|
class Unknown < AssetContent; end
|
|
279
298
|
end
|
|
280
299
|
|
|
@@ -406,6 +425,20 @@ module Aws::DevOpsAgent
|
|
|
406
425
|
include Aws::Structure
|
|
407
426
|
end
|
|
408
427
|
|
|
428
|
+
# Content for an asset sourced from an external URL.
|
|
429
|
+
#
|
|
430
|
+
# @!attribute [rw] url
|
|
431
|
+
# The source URL to import asset content from
|
|
432
|
+
# @return [String]
|
|
433
|
+
#
|
|
434
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetSourceUrlContent AWS API Documentation
|
|
435
|
+
#
|
|
436
|
+
class AssetSourceUrlContent < Struct.new(
|
|
437
|
+
:url)
|
|
438
|
+
SENSITIVE = []
|
|
439
|
+
include Aws::Structure
|
|
440
|
+
end
|
|
441
|
+
|
|
409
442
|
# Summary of an asset type, including its identifier and description.
|
|
410
443
|
#
|
|
411
444
|
# @!attribute [rw] asset_type
|
|
@@ -506,12 +539,17 @@ module Aws::DevOpsAgent
|
|
|
506
539
|
# given service.
|
|
507
540
|
# @return [Types::ServiceConfiguration]
|
|
508
541
|
#
|
|
542
|
+
# @!attribute [rw] capabilities
|
|
543
|
+
# Enabled capabilities for this association.
|
|
544
|
+
# @return [Hash<String,Types::CapabilityConfiguration>]
|
|
545
|
+
#
|
|
509
546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssociateServiceInput AWS API Documentation
|
|
510
547
|
#
|
|
511
548
|
class AssociateServiceInput < Struct.new(
|
|
512
549
|
:agent_space_id,
|
|
513
550
|
:service_id,
|
|
514
|
-
:configuration
|
|
551
|
+
:configuration,
|
|
552
|
+
:capabilities)
|
|
515
553
|
SENSITIVE = []
|
|
516
554
|
include Aws::Structure
|
|
517
555
|
end
|
|
@@ -569,6 +607,10 @@ module Aws::DevOpsAgent
|
|
|
569
607
|
# given service.
|
|
570
608
|
# @return [Types::ServiceConfiguration]
|
|
571
609
|
#
|
|
610
|
+
# @!attribute [rw] capabilities
|
|
611
|
+
# Enabled capabilities for this association.
|
|
612
|
+
# @return [Hash<String,Types::CapabilityConfiguration>]
|
|
613
|
+
#
|
|
572
614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/Association AWS API Documentation
|
|
573
615
|
#
|
|
574
616
|
class Association < Struct.new(
|
|
@@ -578,7 +620,8 @@ module Aws::DevOpsAgent
|
|
|
578
620
|
:status,
|
|
579
621
|
:association_id,
|
|
580
622
|
:service_id,
|
|
581
|
-
:configuration
|
|
623
|
+
:configuration,
|
|
624
|
+
:capabilities)
|
|
582
625
|
SENSITIVE = []
|
|
583
626
|
include Aws::Structure
|
|
584
627
|
end
|
|
@@ -621,6 +664,20 @@ module Aws::DevOpsAgent
|
|
|
621
664
|
include Aws::Structure
|
|
622
665
|
end
|
|
623
666
|
|
|
667
|
+
# Capability configuration for the AWS DevOps Agent.
|
|
668
|
+
#
|
|
669
|
+
# @!attribute [rw] enabled
|
|
670
|
+
# Whether the capability is enabled.
|
|
671
|
+
# @return [Boolean]
|
|
672
|
+
#
|
|
673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CapabilityConfiguration AWS API Documentation
|
|
674
|
+
#
|
|
675
|
+
class CapabilityConfiguration < Struct.new(
|
|
676
|
+
:enabled)
|
|
677
|
+
SENSITIVE = []
|
|
678
|
+
include Aws::Structure
|
|
679
|
+
end
|
|
680
|
+
|
|
624
681
|
# A single chat execution summary
|
|
625
682
|
#
|
|
626
683
|
# @!attribute [rw] execution_id
|
|
@@ -817,7 +874,8 @@ module Aws::DevOpsAgent
|
|
|
817
874
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
818
875
|
#
|
|
819
876
|
# @!attribute [rw] content
|
|
820
|
-
# The content for the asset. Provide a single file
|
|
877
|
+
# The content for the asset. Provide a single file, a zip bundle, or a
|
|
878
|
+
# sourceUrl to import from an external source.
|
|
821
879
|
# @return [Types::AssetContent]
|
|
822
880
|
#
|
|
823
881
|
# @!attribute [rw] client_token
|
|
@@ -1056,6 +1114,64 @@ module Aws::DevOpsAgent
|
|
|
1056
1114
|
include Aws::Structure
|
|
1057
1115
|
end
|
|
1058
1116
|
|
|
1117
|
+
# Request structure for creating a new Trigger
|
|
1118
|
+
#
|
|
1119
|
+
# @!attribute [rw] agent_space_id
|
|
1120
|
+
# The unique identifier for the agent space where the Trigger will be
|
|
1121
|
+
# created
|
|
1122
|
+
# @return [String]
|
|
1123
|
+
#
|
|
1124
|
+
# @!attribute [rw] type
|
|
1125
|
+
# How the new Trigger fires
|
|
1126
|
+
# @return [String]
|
|
1127
|
+
#
|
|
1128
|
+
# @!attribute [rw] condition
|
|
1129
|
+
# The condition that fires the new Trigger
|
|
1130
|
+
# @return [Types::TriggerCondition]
|
|
1131
|
+
#
|
|
1132
|
+
# @!attribute [rw] action
|
|
1133
|
+
# The action the new Trigger performs when it fires
|
|
1134
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
1135
|
+
#
|
|
1136
|
+
# @!attribute [rw] status
|
|
1137
|
+
# The initial status of the Trigger
|
|
1138
|
+
# @return [String]
|
|
1139
|
+
#
|
|
1140
|
+
# @!attribute [rw] client_token
|
|
1141
|
+
# A unique, case-sensitive identifier used for idempotent Trigger
|
|
1142
|
+
# creation
|
|
1143
|
+
#
|
|
1144
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1145
|
+
# not need to pass this option.
|
|
1146
|
+
# @return [String]
|
|
1147
|
+
#
|
|
1148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateTriggerRequest AWS API Documentation
|
|
1149
|
+
#
|
|
1150
|
+
class CreateTriggerRequest < Struct.new(
|
|
1151
|
+
:agent_space_id,
|
|
1152
|
+
:type,
|
|
1153
|
+
:condition,
|
|
1154
|
+
:action,
|
|
1155
|
+
:status,
|
|
1156
|
+
:client_token)
|
|
1157
|
+
SENSITIVE = []
|
|
1158
|
+
include Aws::Structure
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1161
|
+
# Response structure for creating a new Trigger
|
|
1162
|
+
#
|
|
1163
|
+
# @!attribute [rw] trigger
|
|
1164
|
+
# The Trigger object
|
|
1165
|
+
# @return [Types::Trigger]
|
|
1166
|
+
#
|
|
1167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateTriggerResponse AWS API Documentation
|
|
1168
|
+
#
|
|
1169
|
+
class CreateTriggerResponse < Struct.new(
|
|
1170
|
+
:trigger)
|
|
1171
|
+
SENSITIVE = []
|
|
1172
|
+
include Aws::Structure
|
|
1173
|
+
end
|
|
1174
|
+
|
|
1059
1175
|
# Authorization configuration for Datadog MCP server (uses authorization
|
|
1060
1176
|
# discovery only).
|
|
1061
1177
|
#
|
|
@@ -1216,6 +1332,31 @@ module Aws::DevOpsAgent
|
|
|
1216
1332
|
include Aws::Structure
|
|
1217
1333
|
end
|
|
1218
1334
|
|
|
1335
|
+
# Request structure for deleting a Trigger
|
|
1336
|
+
#
|
|
1337
|
+
# @!attribute [rw] agent_space_id
|
|
1338
|
+
# The unique identifier for the agent space containing the Trigger
|
|
1339
|
+
# @return [String]
|
|
1340
|
+
#
|
|
1341
|
+
# @!attribute [rw] trigger_id
|
|
1342
|
+
# The unique identifier of the Trigger to delete
|
|
1343
|
+
# @return [String]
|
|
1344
|
+
#
|
|
1345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerRequest AWS API Documentation
|
|
1346
|
+
#
|
|
1347
|
+
class DeleteTriggerRequest < Struct.new(
|
|
1348
|
+
:agent_space_id,
|
|
1349
|
+
:trigger_id)
|
|
1350
|
+
SENSITIVE = []
|
|
1351
|
+
include Aws::Structure
|
|
1352
|
+
end
|
|
1353
|
+
|
|
1354
|
+
# Response structure for deleting a Trigger
|
|
1355
|
+
#
|
|
1356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerResponse AWS API Documentation
|
|
1357
|
+
#
|
|
1358
|
+
class DeleteTriggerResponse < Aws::EmptyStructure; end
|
|
1359
|
+
|
|
1219
1360
|
# Input for deregistering a service.
|
|
1220
1361
|
#
|
|
1221
1362
|
# @!attribute [rw] service_id
|
|
@@ -2045,6 +2186,39 @@ module Aws::DevOpsAgent
|
|
|
2045
2186
|
include Aws::Structure
|
|
2046
2187
|
end
|
|
2047
2188
|
|
|
2189
|
+
# Request structure for getting a Trigger
|
|
2190
|
+
#
|
|
2191
|
+
# @!attribute [rw] agent_space_id
|
|
2192
|
+
# The unique identifier for the agent space containing the Trigger
|
|
2193
|
+
# @return [String]
|
|
2194
|
+
#
|
|
2195
|
+
# @!attribute [rw] trigger_id
|
|
2196
|
+
# The unique identifier of the Trigger to retrieve
|
|
2197
|
+
# @return [String]
|
|
2198
|
+
#
|
|
2199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetTriggerRequest AWS API Documentation
|
|
2200
|
+
#
|
|
2201
|
+
class GetTriggerRequest < Struct.new(
|
|
2202
|
+
:agent_space_id,
|
|
2203
|
+
:trigger_id)
|
|
2204
|
+
SENSITIVE = []
|
|
2205
|
+
include Aws::Structure
|
|
2206
|
+
end
|
|
2207
|
+
|
|
2208
|
+
# Response structure for getting a Trigger
|
|
2209
|
+
#
|
|
2210
|
+
# @!attribute [rw] trigger
|
|
2211
|
+
# The Trigger object
|
|
2212
|
+
# @return [Types::Trigger]
|
|
2213
|
+
#
|
|
2214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetTriggerResponse AWS API Documentation
|
|
2215
|
+
#
|
|
2216
|
+
class GetTriggerResponse < Struct.new(
|
|
2217
|
+
:trigger)
|
|
2218
|
+
SENSITIVE = []
|
|
2219
|
+
include Aws::Structure
|
|
2220
|
+
end
|
|
2221
|
+
|
|
2048
2222
|
# Configuration for GitHub repository integration.
|
|
2049
2223
|
#
|
|
2050
2224
|
# @!attribute [rw] repo_name
|
|
@@ -2068,6 +2242,11 @@ module Aws::DevOpsAgent
|
|
|
2068
2242
|
# github.enterprise.com)
|
|
2069
2243
|
# @return [String]
|
|
2070
2244
|
#
|
|
2245
|
+
# @!attribute [rw] runtime_role_arn
|
|
2246
|
+
# Optional role ARN that AIDevOps assumes at runtime for automatic
|
|
2247
|
+
# verification testing and VPC connectivity on this association.
|
|
2248
|
+
# @return [String]
|
|
2249
|
+
#
|
|
2071
2250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GitHubConfiguration AWS API Documentation
|
|
2072
2251
|
#
|
|
2073
2252
|
class GitHubConfiguration < Struct.new(
|
|
@@ -2075,7 +2254,8 @@ module Aws::DevOpsAgent
|
|
|
2075
2254
|
:repo_id,
|
|
2076
2255
|
:owner,
|
|
2077
2256
|
:owner_type,
|
|
2078
|
-
:instance_identifier
|
|
2257
|
+
:instance_identifier,
|
|
2258
|
+
:runtime_role_arn)
|
|
2079
2259
|
SENSITIVE = []
|
|
2080
2260
|
include Aws::Structure
|
|
2081
2261
|
end
|
|
@@ -2095,12 +2275,18 @@ module Aws::DevOpsAgent
|
|
|
2095
2275
|
# e2e.gamma.dev.us-east-1.gitlab.falco.ai.aws.dev)
|
|
2096
2276
|
# @return [String]
|
|
2097
2277
|
#
|
|
2278
|
+
# @!attribute [rw] runtime_role_arn
|
|
2279
|
+
# Optional role ARN that AIDevOps assumes at runtime for automatic
|
|
2280
|
+
# verification testing and VPC connectivity on this association.
|
|
2281
|
+
# @return [String]
|
|
2282
|
+
#
|
|
2098
2283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GitLabConfiguration AWS API Documentation
|
|
2099
2284
|
#
|
|
2100
2285
|
class GitLabConfiguration < Struct.new(
|
|
2101
2286
|
:project_id,
|
|
2102
2287
|
:project_path,
|
|
2103
|
-
:instance_identifier
|
|
2288
|
+
:instance_identifier,
|
|
2289
|
+
:runtime_role_arn)
|
|
2104
2290
|
SENSITIVE = []
|
|
2105
2291
|
include Aws::Structure
|
|
2106
2292
|
end
|
|
@@ -3268,6 +3454,56 @@ module Aws::DevOpsAgent
|
|
|
3268
3454
|
include Aws::Structure
|
|
3269
3455
|
end
|
|
3270
3456
|
|
|
3457
|
+
# Request structure for listing Triggers in an agent space
|
|
3458
|
+
#
|
|
3459
|
+
# @!attribute [rw] agent_space_id
|
|
3460
|
+
# The unique identifier for the agent space whose Triggers should be
|
|
3461
|
+
# listed
|
|
3462
|
+
# @return [String]
|
|
3463
|
+
#
|
|
3464
|
+
# @!attribute [rw] status
|
|
3465
|
+
# Filter results to Triggers in this status
|
|
3466
|
+
# @return [String]
|
|
3467
|
+
#
|
|
3468
|
+
# @!attribute [rw] next_token
|
|
3469
|
+
# Pagination token from a previous response to retrieve the next page
|
|
3470
|
+
# of results
|
|
3471
|
+
# @return [String]
|
|
3472
|
+
#
|
|
3473
|
+
# @!attribute [rw] max_results
|
|
3474
|
+
# The maximum number of results to return in a single response
|
|
3475
|
+
# @return [Integer]
|
|
3476
|
+
#
|
|
3477
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListTriggersRequest AWS API Documentation
|
|
3478
|
+
#
|
|
3479
|
+
class ListTriggersRequest < Struct.new(
|
|
3480
|
+
:agent_space_id,
|
|
3481
|
+
:status,
|
|
3482
|
+
:next_token,
|
|
3483
|
+
:max_results)
|
|
3484
|
+
SENSITIVE = []
|
|
3485
|
+
include Aws::Structure
|
|
3486
|
+
end
|
|
3487
|
+
|
|
3488
|
+
# Response structure for listing Triggers
|
|
3489
|
+
#
|
|
3490
|
+
# @!attribute [rw] items
|
|
3491
|
+
# The list of Triggers
|
|
3492
|
+
# @return [Array<Types::Trigger>]
|
|
3493
|
+
#
|
|
3494
|
+
# @!attribute [rw] next_token
|
|
3495
|
+
# Pagination token to retrieve the next page of results
|
|
3496
|
+
# @return [String]
|
|
3497
|
+
#
|
|
3498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListTriggersResponse AWS API Documentation
|
|
3499
|
+
#
|
|
3500
|
+
class ListTriggersResponse < Struct.new(
|
|
3501
|
+
:items,
|
|
3502
|
+
:next_token)
|
|
3503
|
+
SENSITIVE = []
|
|
3504
|
+
include Aws::Structure
|
|
3505
|
+
end
|
|
3506
|
+
|
|
3271
3507
|
# Input for listing service webhooks within an association.
|
|
3272
3508
|
#
|
|
3273
3509
|
# @!attribute [rw] agent_space_id
|
|
@@ -4508,6 +4744,80 @@ module Aws::DevOpsAgent
|
|
|
4508
4744
|
include Aws::Structure
|
|
4509
4745
|
end
|
|
4510
4746
|
|
|
4747
|
+
# Details specific to a registered token-based remote A2A agent.
|
|
4748
|
+
#
|
|
4749
|
+
# @!attribute [rw] name
|
|
4750
|
+
# Name identifier for a remote A2A agent.
|
|
4751
|
+
# @return [String]
|
|
4752
|
+
#
|
|
4753
|
+
# @!attribute [rw] endpoint
|
|
4754
|
+
# HTTPS endpoint URL for a remote A2A agent.
|
|
4755
|
+
# @return [String]
|
|
4756
|
+
#
|
|
4757
|
+
# @!attribute [rw] description
|
|
4758
|
+
# Description field
|
|
4759
|
+
# @return [String]
|
|
4760
|
+
#
|
|
4761
|
+
# @!attribute [rw] authorization_method
|
|
4762
|
+
# The authorization method used by the remote agent.
|
|
4763
|
+
# @return [String]
|
|
4764
|
+
#
|
|
4765
|
+
# @!attribute [rw] api_key_header
|
|
4766
|
+
# If the remote agent uses API key authentication, the header name.
|
|
4767
|
+
# @return [String]
|
|
4768
|
+
#
|
|
4769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RegisteredRemoteAgentDetails AWS API Documentation
|
|
4770
|
+
#
|
|
4771
|
+
class RegisteredRemoteAgentDetails < Struct.new(
|
|
4772
|
+
:name,
|
|
4773
|
+
:endpoint,
|
|
4774
|
+
:description,
|
|
4775
|
+
:authorization_method,
|
|
4776
|
+
:api_key_header)
|
|
4777
|
+
SENSITIVE = [:description]
|
|
4778
|
+
include Aws::Structure
|
|
4779
|
+
end
|
|
4780
|
+
|
|
4781
|
+
# Details specific to a registered SigV4-authenticated remote A2A agent.
|
|
4782
|
+
#
|
|
4783
|
+
# @!attribute [rw] name
|
|
4784
|
+
# Name identifier for a remote A2A agent.
|
|
4785
|
+
# @return [String]
|
|
4786
|
+
#
|
|
4787
|
+
# @!attribute [rw] endpoint
|
|
4788
|
+
# HTTPS endpoint URL for a remote A2A agent.
|
|
4789
|
+
# @return [String]
|
|
4790
|
+
#
|
|
4791
|
+
# @!attribute [rw] description
|
|
4792
|
+
# Description field
|
|
4793
|
+
# @return [String]
|
|
4794
|
+
#
|
|
4795
|
+
# @!attribute [rw] region
|
|
4796
|
+
# AWS region identifier or wildcard (*) for SigV4a multi-region
|
|
4797
|
+
# signing.
|
|
4798
|
+
# @return [String]
|
|
4799
|
+
#
|
|
4800
|
+
# @!attribute [rw] service
|
|
4801
|
+
# The AWS service name for SigV4 signing.
|
|
4802
|
+
# @return [String]
|
|
4803
|
+
#
|
|
4804
|
+
# @!attribute [rw] role_arn
|
|
4805
|
+
# AWS IAM role ARN.
|
|
4806
|
+
# @return [String]
|
|
4807
|
+
#
|
|
4808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RegisteredRemoteAgentSigV4Details AWS API Documentation
|
|
4809
|
+
#
|
|
4810
|
+
class RegisteredRemoteAgentSigV4Details < Struct.new(
|
|
4811
|
+
:name,
|
|
4812
|
+
:endpoint,
|
|
4813
|
+
:description,
|
|
4814
|
+
:region,
|
|
4815
|
+
:service,
|
|
4816
|
+
:role_arn)
|
|
4817
|
+
SENSITIVE = [:description]
|
|
4818
|
+
include Aws::Structure
|
|
4819
|
+
end
|
|
4820
|
+
|
|
4511
4821
|
# Represents a registered service with its configuration and accessible
|
|
4512
4822
|
# resources.
|
|
4513
4823
|
#
|
|
@@ -4587,6 +4897,229 @@ module Aws::DevOpsAgent
|
|
|
4587
4897
|
include Aws::Structure
|
|
4588
4898
|
end
|
|
4589
4899
|
|
|
4900
|
+
# API key configuration for remote A2A agent.
|
|
4901
|
+
#
|
|
4902
|
+
# @!attribute [rw] api_key_name
|
|
4903
|
+
# User friendly API key name specified by end user.
|
|
4904
|
+
# @return [String]
|
|
4905
|
+
#
|
|
4906
|
+
# @!attribute [rw] api_key_value
|
|
4907
|
+
# API key value for authenticating with the service.
|
|
4908
|
+
# @return [String]
|
|
4909
|
+
#
|
|
4910
|
+
# @!attribute [rw] api_key_header
|
|
4911
|
+
# HTTP header name to send the API key in requests to the service.
|
|
4912
|
+
# @return [String]
|
|
4913
|
+
#
|
|
4914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentAPIKeyConfig AWS API Documentation
|
|
4915
|
+
#
|
|
4916
|
+
class RemoteAgentAPIKeyConfig < Struct.new(
|
|
4917
|
+
:api_key_name,
|
|
4918
|
+
:api_key_value,
|
|
4919
|
+
:api_key_header)
|
|
4920
|
+
SENSITIVE = [:api_key_value]
|
|
4921
|
+
include Aws::Structure
|
|
4922
|
+
end
|
|
4923
|
+
|
|
4924
|
+
# Authorization configuration for remote A2A agents with token-based
|
|
4925
|
+
# auth (API key, OAuth, bearer token).
|
|
4926
|
+
#
|
|
4927
|
+
# @note RemoteAgentAuthorizationConfig is a union - when making an API calls you must set exactly one of the members.
|
|
4928
|
+
#
|
|
4929
|
+
# @!attribute [rw] api_key
|
|
4930
|
+
# Remote agent configuration with API key authentication.
|
|
4931
|
+
# @return [Types::RemoteAgentAPIKeyConfig]
|
|
4932
|
+
#
|
|
4933
|
+
# @!attribute [rw] o_auth_client_credentials
|
|
4934
|
+
# Remote agent configuration with OAuth client credentials.
|
|
4935
|
+
# @return [Types::RemoteAgentOAuthClientCredentialsConfig]
|
|
4936
|
+
#
|
|
4937
|
+
# @!attribute [rw] bearer_token
|
|
4938
|
+
# Remote agent configuration with Bearer token (RFC 6750).
|
|
4939
|
+
# @return [Types::RemoteAgentBearerTokenConfig]
|
|
4940
|
+
#
|
|
4941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentAuthorizationConfig AWS API Documentation
|
|
4942
|
+
#
|
|
4943
|
+
class RemoteAgentAuthorizationConfig < Struct.new(
|
|
4944
|
+
:api_key,
|
|
4945
|
+
:o_auth_client_credentials,
|
|
4946
|
+
:bearer_token,
|
|
4947
|
+
:unknown)
|
|
4948
|
+
SENSITIVE = []
|
|
4949
|
+
include Aws::Structure
|
|
4950
|
+
include Aws::Structure::Union
|
|
4951
|
+
|
|
4952
|
+
class ApiKey < RemoteAgentAuthorizationConfig; end
|
|
4953
|
+
class OAuthClientCredentials < RemoteAgentAuthorizationConfig; end
|
|
4954
|
+
class BearerToken < RemoteAgentAuthorizationConfig; end
|
|
4955
|
+
class Unknown < RemoteAgentAuthorizationConfig; end
|
|
4956
|
+
end
|
|
4957
|
+
|
|
4958
|
+
# Bearer token configuration for remote A2A agent (RFC 6750).
|
|
4959
|
+
#
|
|
4960
|
+
# @!attribute [rw] token_name
|
|
4961
|
+
# User friendly bearer token name specified by end user.
|
|
4962
|
+
# @return [String]
|
|
4963
|
+
#
|
|
4964
|
+
# @!attribute [rw] token_value
|
|
4965
|
+
# Bearer token value in alphanumeric for authenticating with the
|
|
4966
|
+
# service.
|
|
4967
|
+
# @return [String]
|
|
4968
|
+
#
|
|
4969
|
+
# @!attribute [rw] authorization_header
|
|
4970
|
+
# HTTP header name to send the bearer token in requests to the
|
|
4971
|
+
# service. Defaults to 'Authorization' per RFC 6750.
|
|
4972
|
+
# @return [String]
|
|
4973
|
+
#
|
|
4974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentBearerTokenConfig AWS API Documentation
|
|
4975
|
+
#
|
|
4976
|
+
class RemoteAgentBearerTokenConfig < Struct.new(
|
|
4977
|
+
:token_name,
|
|
4978
|
+
:token_value,
|
|
4979
|
+
:authorization_header)
|
|
4980
|
+
SENSITIVE = [:token_value]
|
|
4981
|
+
include Aws::Structure
|
|
4982
|
+
end
|
|
4983
|
+
|
|
4984
|
+
# Configuration for token-based remote A2A agent integration.
|
|
4985
|
+
#
|
|
4986
|
+
# @api private
|
|
4987
|
+
#
|
|
4988
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentConfiguration AWS API Documentation
|
|
4989
|
+
#
|
|
4990
|
+
class RemoteAgentConfiguration < Aws::EmptyStructure; end
|
|
4991
|
+
|
|
4992
|
+
# OAuth client credentials configuration for remote A2A agent.
|
|
4993
|
+
#
|
|
4994
|
+
# @!attribute [rw] client_name
|
|
4995
|
+
# User friendly OAuth client name specified by end user.
|
|
4996
|
+
# @return [String]
|
|
4997
|
+
#
|
|
4998
|
+
# @!attribute [rw] client_id
|
|
4999
|
+
# OAuth client ID for authenticating with the service.
|
|
5000
|
+
# @return [String]
|
|
5001
|
+
#
|
|
5002
|
+
# @!attribute [rw] exchange_parameters
|
|
5003
|
+
# OAuth token exchange parameters for authenticating with the service.
|
|
5004
|
+
# @return [Hash<String,String>]
|
|
5005
|
+
#
|
|
5006
|
+
# @!attribute [rw] client_secret
|
|
5007
|
+
# OAuth client secret for authenticating with the service.
|
|
5008
|
+
# @return [String]
|
|
5009
|
+
#
|
|
5010
|
+
# @!attribute [rw] exchange_url
|
|
5011
|
+
# OAuth token exchange URL.
|
|
5012
|
+
# @return [String]
|
|
5013
|
+
#
|
|
5014
|
+
# @!attribute [rw] scopes
|
|
5015
|
+
# OAuth scopes for authentication.
|
|
5016
|
+
# @return [Array<String>]
|
|
5017
|
+
#
|
|
5018
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentOAuthClientCredentialsConfig AWS API Documentation
|
|
5019
|
+
#
|
|
5020
|
+
class RemoteAgentOAuthClientCredentialsConfig < Struct.new(
|
|
5021
|
+
:client_name,
|
|
5022
|
+
:client_id,
|
|
5023
|
+
:exchange_parameters,
|
|
5024
|
+
:client_secret,
|
|
5025
|
+
:exchange_url,
|
|
5026
|
+
:scopes)
|
|
5027
|
+
SENSITIVE = [:client_id, :exchange_parameters, :client_secret]
|
|
5028
|
+
include Aws::Structure
|
|
5029
|
+
end
|
|
5030
|
+
|
|
5031
|
+
# Complete service details for token-based remote A2A agent integration.
|
|
5032
|
+
#
|
|
5033
|
+
# @!attribute [rw] name
|
|
5034
|
+
# Name identifier for a remote A2A agent.
|
|
5035
|
+
# @return [String]
|
|
5036
|
+
#
|
|
5037
|
+
# @!attribute [rw] endpoint
|
|
5038
|
+
# HTTPS endpoint URL for a remote A2A agent.
|
|
5039
|
+
# @return [String]
|
|
5040
|
+
#
|
|
5041
|
+
# @!attribute [rw] description
|
|
5042
|
+
# Description field
|
|
5043
|
+
# @return [String]
|
|
5044
|
+
#
|
|
5045
|
+
# @!attribute [rw] authorization_config
|
|
5046
|
+
# Remote agent authorization configuration.
|
|
5047
|
+
# @return [Types::RemoteAgentAuthorizationConfig]
|
|
5048
|
+
#
|
|
5049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentServiceDetails AWS API Documentation
|
|
5050
|
+
#
|
|
5051
|
+
class RemoteAgentServiceDetails < Struct.new(
|
|
5052
|
+
:name,
|
|
5053
|
+
:endpoint,
|
|
5054
|
+
:description,
|
|
5055
|
+
:authorization_config)
|
|
5056
|
+
SENSITIVE = [:description]
|
|
5057
|
+
include Aws::Structure
|
|
5058
|
+
end
|
|
5059
|
+
|
|
5060
|
+
# SigV4 authorization configuration for remote A2A agent.
|
|
5061
|
+
#
|
|
5062
|
+
# @!attribute [rw] region
|
|
5063
|
+
# AWS region identifier or wildcard (*) for SigV4a multi-region
|
|
5064
|
+
# signing.
|
|
5065
|
+
# @return [String]
|
|
5066
|
+
#
|
|
5067
|
+
# @!attribute [rw] service
|
|
5068
|
+
# The AWS service name for SigV4 signing.
|
|
5069
|
+
# @return [String]
|
|
5070
|
+
#
|
|
5071
|
+
# @!attribute [rw] role_arn
|
|
5072
|
+
# AWS IAM role ARN.
|
|
5073
|
+
# @return [String]
|
|
5074
|
+
#
|
|
5075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentSigV4AuthorizationConfig AWS API Documentation
|
|
5076
|
+
#
|
|
5077
|
+
class RemoteAgentSigV4AuthorizationConfig < Struct.new(
|
|
5078
|
+
:region,
|
|
5079
|
+
:service,
|
|
5080
|
+
:role_arn)
|
|
5081
|
+
SENSITIVE = []
|
|
5082
|
+
include Aws::Structure
|
|
5083
|
+
end
|
|
5084
|
+
|
|
5085
|
+
# Configuration for SigV4-authenticated remote A2A agent integration.
|
|
5086
|
+
#
|
|
5087
|
+
# @api private
|
|
5088
|
+
#
|
|
5089
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentSigV4Configuration AWS API Documentation
|
|
5090
|
+
#
|
|
5091
|
+
class RemoteAgentSigV4Configuration < Aws::EmptyStructure; end
|
|
5092
|
+
|
|
5093
|
+
# Complete service details for SigV4-authenticated remote A2A agent
|
|
5094
|
+
# integration.
|
|
5095
|
+
#
|
|
5096
|
+
# @!attribute [rw] name
|
|
5097
|
+
# Name identifier for a remote A2A agent.
|
|
5098
|
+
# @return [String]
|
|
5099
|
+
#
|
|
5100
|
+
# @!attribute [rw] endpoint
|
|
5101
|
+
# HTTPS endpoint URL for a remote A2A agent.
|
|
5102
|
+
# @return [String]
|
|
5103
|
+
#
|
|
5104
|
+
# @!attribute [rw] description
|
|
5105
|
+
# Description field
|
|
5106
|
+
# @return [String]
|
|
5107
|
+
#
|
|
5108
|
+
# @!attribute [rw] authorization_config
|
|
5109
|
+
# Remote agent SigV4 authorization configuration.
|
|
5110
|
+
# @return [Types::RemoteAgentSigV4AuthorizationConfig]
|
|
5111
|
+
#
|
|
5112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RemoteAgentSigV4ServiceDetails AWS API Documentation
|
|
5113
|
+
#
|
|
5114
|
+
class RemoteAgentSigV4ServiceDetails < Struct.new(
|
|
5115
|
+
:name,
|
|
5116
|
+
:endpoint,
|
|
5117
|
+
:description,
|
|
5118
|
+
:authorization_config)
|
|
5119
|
+
SENSITIVE = [:description]
|
|
5120
|
+
include Aws::Structure
|
|
5121
|
+
end
|
|
5122
|
+
|
|
4590
5123
|
# The requested resource could not be found.
|
|
4591
5124
|
#
|
|
4592
5125
|
# @!attribute [rw] message
|
|
@@ -4601,6 +5134,20 @@ module Aws::DevOpsAgent
|
|
|
4601
5134
|
include Aws::Structure
|
|
4602
5135
|
end
|
|
4603
5136
|
|
|
5137
|
+
# Schedule-based condition that fires the Trigger
|
|
5138
|
+
#
|
|
5139
|
+
# @!attribute [rw] expression
|
|
5140
|
+
# The schedule expression
|
|
5141
|
+
# @return [String]
|
|
5142
|
+
#
|
|
5143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ScheduleCondition AWS API Documentation
|
|
5144
|
+
#
|
|
5145
|
+
class ScheduleCondition < Struct.new(
|
|
5146
|
+
:expression)
|
|
5147
|
+
SENSITIVE = []
|
|
5148
|
+
include Aws::Structure
|
|
5149
|
+
end
|
|
5150
|
+
|
|
4604
5151
|
# Configuration for a self-managed Private Connection.
|
|
4605
5152
|
#
|
|
4606
5153
|
# @!attribute [rw] resource_configuration_id
|
|
@@ -4755,7 +5302,15 @@ module Aws::DevOpsAgent
|
|
|
4755
5302
|
# @return [String]
|
|
4756
5303
|
#
|
|
4757
5304
|
# @!attribute [rw] user_action_response
|
|
4758
|
-
# Response to a UI prompt (not a text conversation message)
|
|
5305
|
+
# Response to a UI prompt (not a text conversation message). Operator
|
|
5306
|
+
# App SDK clients set this to the control-string sentinel
|
|
5307
|
+
# `"APPROVAL\_ACTION"` when the request is resuming a paused tool
|
|
5308
|
+
# call after an operator approval decision; in that case the
|
|
5309
|
+
# structured decision context lives on the sibling `approvalAction`
|
|
5310
|
+
# member and the chat agent reads from there. Preserved as a String
|
|
5311
|
+
# for back-compat: pre-typed-approval clients still encode arbitrary
|
|
5312
|
+
# UI-prompt responses as JSON in this field, and the chat agent parses
|
|
5313
|
+
# them out during the transition.
|
|
4759
5314
|
# @return [String]
|
|
4760
5315
|
#
|
|
4761
5316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SendMessageContext AWS API Documentation
|
|
@@ -5074,6 +5629,14 @@ module Aws::DevOpsAgent
|
|
|
5074
5629
|
# SigV4-authenticated MCP server integration configuration.
|
|
5075
5630
|
# @return [Types::MCPServerSigV4Configuration]
|
|
5076
5631
|
#
|
|
5632
|
+
# @!attribute [rw] remoteagent
|
|
5633
|
+
# Remote A2A agent integration configuration (token-based auth).
|
|
5634
|
+
# @return [Types::RemoteAgentConfiguration]
|
|
5635
|
+
#
|
|
5636
|
+
# @!attribute [rw] remoteagentsigv4
|
|
5637
|
+
# Remote A2A agent integration configuration (SigV4 auth).
|
|
5638
|
+
# @return [Types::RemoteAgentSigV4Configuration]
|
|
5639
|
+
#
|
|
5077
5640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceConfiguration AWS API Documentation
|
|
5078
5641
|
#
|
|
5079
5642
|
class ServiceConfiguration < Struct.new(
|
|
@@ -5094,6 +5657,8 @@ module Aws::DevOpsAgent
|
|
|
5094
5657
|
:mcpservergrafana,
|
|
5095
5658
|
:pagerduty,
|
|
5096
5659
|
:mcpserversigv4,
|
|
5660
|
+
:remoteagent,
|
|
5661
|
+
:remoteagentsigv4,
|
|
5097
5662
|
:unknown)
|
|
5098
5663
|
SENSITIVE = []
|
|
5099
5664
|
include Aws::Structure
|
|
@@ -5116,6 +5681,8 @@ module Aws::DevOpsAgent
|
|
|
5116
5681
|
class Mcpservergrafana < ServiceConfiguration; end
|
|
5117
5682
|
class Pagerduty < ServiceConfiguration; end
|
|
5118
5683
|
class Mcpserversigv4 < ServiceConfiguration; end
|
|
5684
|
+
class Remoteagent < ServiceConfiguration; end
|
|
5685
|
+
class Remoteagentsigv4 < ServiceConfiguration; end
|
|
5119
5686
|
class Unknown < ServiceConfiguration; end
|
|
5120
5687
|
end
|
|
5121
5688
|
|
|
@@ -5173,6 +5740,14 @@ module Aws::DevOpsAgent
|
|
|
5173
5740
|
# SigV4-authenticated MCP server-specific service details.
|
|
5174
5741
|
# @return [Types::MCPServerSigV4ServiceDetails]
|
|
5175
5742
|
#
|
|
5743
|
+
# @!attribute [rw] remoteagent
|
|
5744
|
+
# Remote A2A agent service details (token-based auth).
|
|
5745
|
+
# @return [Types::RemoteAgentServiceDetails]
|
|
5746
|
+
#
|
|
5747
|
+
# @!attribute [rw] remoteagentsigv4
|
|
5748
|
+
# Remote A2A agent service details (SigV4 auth).
|
|
5749
|
+
# @return [Types::RemoteAgentSigV4ServiceDetails]
|
|
5750
|
+
#
|
|
5176
5751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceDetails AWS API Documentation
|
|
5177
5752
|
#
|
|
5178
5753
|
class ServiceDetails < Struct.new(
|
|
@@ -5188,6 +5763,8 @@ module Aws::DevOpsAgent
|
|
|
5188
5763
|
:pagerduty,
|
|
5189
5764
|
:azureidentity,
|
|
5190
5765
|
:mcpserversigv4,
|
|
5766
|
+
:remoteagent,
|
|
5767
|
+
:remoteagentsigv4,
|
|
5191
5768
|
:unknown)
|
|
5192
5769
|
SENSITIVE = []
|
|
5193
5770
|
include Aws::Structure
|
|
@@ -5205,6 +5782,8 @@ module Aws::DevOpsAgent
|
|
|
5205
5782
|
class Pagerduty < ServiceDetails; end
|
|
5206
5783
|
class Azureidentity < ServiceDetails; end
|
|
5207
5784
|
class Mcpserversigv4 < ServiceDetails; end
|
|
5785
|
+
class Remoteagent < ServiceDetails; end
|
|
5786
|
+
class Remoteagentsigv4 < ServiceDetails; end
|
|
5208
5787
|
class Unknown < ServiceDetails; end
|
|
5209
5788
|
end
|
|
5210
5789
|
|
|
@@ -5632,6 +6211,78 @@ module Aws::DevOpsAgent
|
|
|
5632
6211
|
include Aws::Structure
|
|
5633
6212
|
end
|
|
5634
6213
|
|
|
6214
|
+
# A Trigger fires on a schedule and invokes an agent
|
|
6215
|
+
#
|
|
6216
|
+
# @!attribute [rw] trigger_id
|
|
6217
|
+
# The unique identifier for this Trigger
|
|
6218
|
+
# @return [String]
|
|
6219
|
+
#
|
|
6220
|
+
# @!attribute [rw] agent_space_id
|
|
6221
|
+
# The agent space this Trigger belongs to
|
|
6222
|
+
# @return [String]
|
|
6223
|
+
#
|
|
6224
|
+
# @!attribute [rw] type
|
|
6225
|
+
# How this Trigger fires
|
|
6226
|
+
# @return [String]
|
|
6227
|
+
#
|
|
6228
|
+
# @!attribute [rw] condition
|
|
6229
|
+
# The condition that fires this Trigger
|
|
6230
|
+
# @return [Types::TriggerCondition]
|
|
6231
|
+
#
|
|
6232
|
+
# @!attribute [rw] action
|
|
6233
|
+
# The action this Trigger performs when it fires
|
|
6234
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
6235
|
+
#
|
|
6236
|
+
# @!attribute [rw] status
|
|
6237
|
+
# The status of this Trigger
|
|
6238
|
+
# @return [String]
|
|
6239
|
+
#
|
|
6240
|
+
# @!attribute [rw] created_at
|
|
6241
|
+
# Timestamp when this Trigger was created
|
|
6242
|
+
# @return [Time]
|
|
6243
|
+
#
|
|
6244
|
+
# @!attribute [rw] updated_at
|
|
6245
|
+
# Timestamp when this Trigger was last updated
|
|
6246
|
+
# @return [Time]
|
|
6247
|
+
#
|
|
6248
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/Trigger AWS API Documentation
|
|
6249
|
+
#
|
|
6250
|
+
class Trigger < Struct.new(
|
|
6251
|
+
:trigger_id,
|
|
6252
|
+
:agent_space_id,
|
|
6253
|
+
:type,
|
|
6254
|
+
:condition,
|
|
6255
|
+
:action,
|
|
6256
|
+
:status,
|
|
6257
|
+
:created_at,
|
|
6258
|
+
:updated_at)
|
|
6259
|
+
SENSITIVE = []
|
|
6260
|
+
include Aws::Structure
|
|
6261
|
+
end
|
|
6262
|
+
|
|
6263
|
+
# Defines the firing condition for a Trigger
|
|
6264
|
+
#
|
|
6265
|
+
# @note TriggerCondition is a union - when making an API calls you must set exactly one of the members.
|
|
6266
|
+
#
|
|
6267
|
+
# @note TriggerCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TriggerCondition corresponding to the set member.
|
|
6268
|
+
#
|
|
6269
|
+
# @!attribute [rw] schedule
|
|
6270
|
+
# Time-based firing condition
|
|
6271
|
+
# @return [Types::ScheduleCondition]
|
|
6272
|
+
#
|
|
6273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/TriggerCondition AWS API Documentation
|
|
6274
|
+
#
|
|
6275
|
+
class TriggerCondition < Struct.new(
|
|
6276
|
+
:schedule,
|
|
6277
|
+
:unknown)
|
|
6278
|
+
SENSITIVE = []
|
|
6279
|
+
include Aws::Structure
|
|
6280
|
+
include Aws::Structure::Union
|
|
6281
|
+
|
|
6282
|
+
class Schedule < TriggerCondition; end
|
|
6283
|
+
class Unknown < TriggerCondition; end
|
|
6284
|
+
end
|
|
6285
|
+
|
|
5635
6286
|
# @!attribute [rw] resource_arn
|
|
5636
6287
|
# The ARN of the resource to untag.
|
|
5637
6288
|
# @return [String]
|
|
@@ -5773,8 +6424,9 @@ module Aws::DevOpsAgent
|
|
|
5773
6424
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5774
6425
|
#
|
|
5775
6426
|
# @!attribute [rw] content
|
|
5776
|
-
# Optional content
|
|
5777
|
-
#
|
|
6427
|
+
# Optional content update. A single file adds or replaces one file; a
|
|
6428
|
+
# zip replaces all files; a sourceUrl re-syncs from the original
|
|
6429
|
+
# source.
|
|
5778
6430
|
# @return [Types::AssetContent]
|
|
5779
6431
|
#
|
|
5780
6432
|
# @!attribute [rw] client_token
|
|
@@ -5826,12 +6478,17 @@ module Aws::DevOpsAgent
|
|
|
5826
6478
|
# given service. The entire configuration is replaced on update.
|
|
5827
6479
|
# @return [Types::ServiceConfiguration]
|
|
5828
6480
|
#
|
|
6481
|
+
# @!attribute [rw] capabilities
|
|
6482
|
+
# Enabled capabilities for this association.
|
|
6483
|
+
# @return [Hash<String,Types::CapabilityConfiguration>]
|
|
6484
|
+
#
|
|
5829
6485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssociationInput AWS API Documentation
|
|
5830
6486
|
#
|
|
5831
6487
|
class UpdateAssociationInput < Struct.new(
|
|
5832
6488
|
:agent_space_id,
|
|
5833
6489
|
:association_id,
|
|
5834
|
-
:configuration
|
|
6490
|
+
:configuration,
|
|
6491
|
+
:capabilities)
|
|
5835
6492
|
SENSITIVE = []
|
|
5836
6493
|
include Aws::Structure
|
|
5837
6494
|
end
|
|
@@ -6125,6 +6782,53 @@ module Aws::DevOpsAgent
|
|
|
6125
6782
|
include Aws::Structure
|
|
6126
6783
|
end
|
|
6127
6784
|
|
|
6785
|
+
# Request structure for updating a Trigger
|
|
6786
|
+
#
|
|
6787
|
+
# @!attribute [rw] agent_space_id
|
|
6788
|
+
# The unique identifier for the agent space containing the Trigger
|
|
6789
|
+
# @return [String]
|
|
6790
|
+
#
|
|
6791
|
+
# @!attribute [rw] trigger_id
|
|
6792
|
+
# The unique identifier of the Trigger to update
|
|
6793
|
+
# @return [String]
|
|
6794
|
+
#
|
|
6795
|
+
# @!attribute [rw] status
|
|
6796
|
+
# The new status for the Trigger
|
|
6797
|
+
# @return [String]
|
|
6798
|
+
#
|
|
6799
|
+
# @!attribute [rw] client_token
|
|
6800
|
+
# A unique, case-sensitive identifier used for idempotent Trigger
|
|
6801
|
+
# update
|
|
6802
|
+
#
|
|
6803
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
6804
|
+
# not need to pass this option.
|
|
6805
|
+
# @return [String]
|
|
6806
|
+
#
|
|
6807
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateTriggerRequest AWS API Documentation
|
|
6808
|
+
#
|
|
6809
|
+
class UpdateTriggerRequest < Struct.new(
|
|
6810
|
+
:agent_space_id,
|
|
6811
|
+
:trigger_id,
|
|
6812
|
+
:status,
|
|
6813
|
+
:client_token)
|
|
6814
|
+
SENSITIVE = []
|
|
6815
|
+
include Aws::Structure
|
|
6816
|
+
end
|
|
6817
|
+
|
|
6818
|
+
# Response structure for updating a Trigger
|
|
6819
|
+
#
|
|
6820
|
+
# @!attribute [rw] trigger
|
|
6821
|
+
# The Trigger object
|
|
6822
|
+
# @return [Types::Trigger]
|
|
6823
|
+
#
|
|
6824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateTriggerResponse AWS API Documentation
|
|
6825
|
+
#
|
|
6826
|
+
class UpdateTriggerResponse < Struct.new(
|
|
6827
|
+
:trigger)
|
|
6828
|
+
SENSITIVE = []
|
|
6829
|
+
include Aws::Structure
|
|
6830
|
+
end
|
|
6831
|
+
|
|
6128
6832
|
# Represents a usage metric with its configured limit and current usage
|
|
6129
6833
|
# value.
|
|
6130
6834
|
#
|