aws-sdk-devopsagent 1.9.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +137 -33
- data/lib/aws-sdk-devopsagent/client_api.rb +127 -1
- data/lib/aws-sdk-devopsagent/types.rb +448 -31
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +47 -6
- data/sig/params.rbs +19 -8
- data/sig/types.rbs +131 -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,9 +1114,11 @@ module Aws::DevOpsAgent
|
|
|
1056
1114
|
include Aws::Structure
|
|
1057
1115
|
end
|
|
1058
1116
|
|
|
1117
|
+
# Request structure for creating a new Trigger
|
|
1118
|
+
#
|
|
1059
1119
|
# @!attribute [rw] agent_space_id
|
|
1060
|
-
#
|
|
1061
|
-
#
|
|
1120
|
+
# The unique identifier for the agent space where the Trigger will be
|
|
1121
|
+
# created
|
|
1062
1122
|
# @return [String]
|
|
1063
1123
|
#
|
|
1064
1124
|
# @!attribute [rw] type
|
|
@@ -1098,6 +1158,8 @@ module Aws::DevOpsAgent
|
|
|
1098
1158
|
include Aws::Structure
|
|
1099
1159
|
end
|
|
1100
1160
|
|
|
1161
|
+
# Response structure for creating a new Trigger
|
|
1162
|
+
#
|
|
1101
1163
|
# @!attribute [rw] trigger
|
|
1102
1164
|
# The Trigger object
|
|
1103
1165
|
# @return [Types::Trigger]
|
|
@@ -1270,14 +1332,14 @@ module Aws::DevOpsAgent
|
|
|
1270
1332
|
include Aws::Structure
|
|
1271
1333
|
end
|
|
1272
1334
|
|
|
1335
|
+
# Request structure for deleting a Trigger
|
|
1336
|
+
#
|
|
1273
1337
|
# @!attribute [rw] agent_space_id
|
|
1274
|
-
#
|
|
1275
|
-
# and hyphens; 1-64 characters)
|
|
1338
|
+
# The unique identifier for the agent space containing the Trigger
|
|
1276
1339
|
# @return [String]
|
|
1277
1340
|
#
|
|
1278
1341
|
# @!attribute [rw] trigger_id
|
|
1279
|
-
#
|
|
1280
|
-
# hyphens, and underscores; 1-128 characters)
|
|
1342
|
+
# The unique identifier of the Trigger to delete
|
|
1281
1343
|
# @return [String]
|
|
1282
1344
|
#
|
|
1283
1345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerRequest AWS API Documentation
|
|
@@ -1289,6 +1351,8 @@ module Aws::DevOpsAgent
|
|
|
1289
1351
|
include Aws::Structure
|
|
1290
1352
|
end
|
|
1291
1353
|
|
|
1354
|
+
# Response structure for deleting a Trigger
|
|
1355
|
+
#
|
|
1292
1356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerResponse AWS API Documentation
|
|
1293
1357
|
#
|
|
1294
1358
|
class DeleteTriggerResponse < Aws::EmptyStructure; end
|
|
@@ -2122,14 +2186,14 @@ module Aws::DevOpsAgent
|
|
|
2122
2186
|
include Aws::Structure
|
|
2123
2187
|
end
|
|
2124
2188
|
|
|
2189
|
+
# Request structure for getting a Trigger
|
|
2190
|
+
#
|
|
2125
2191
|
# @!attribute [rw] agent_space_id
|
|
2126
|
-
#
|
|
2127
|
-
# and hyphens; 1-64 characters)
|
|
2192
|
+
# The unique identifier for the agent space containing the Trigger
|
|
2128
2193
|
# @return [String]
|
|
2129
2194
|
#
|
|
2130
2195
|
# @!attribute [rw] trigger_id
|
|
2131
|
-
#
|
|
2132
|
-
# hyphens, and underscores; 1-128 characters)
|
|
2196
|
+
# The unique identifier of the Trigger to retrieve
|
|
2133
2197
|
# @return [String]
|
|
2134
2198
|
#
|
|
2135
2199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetTriggerRequest AWS API Documentation
|
|
@@ -2141,6 +2205,8 @@ module Aws::DevOpsAgent
|
|
|
2141
2205
|
include Aws::Structure
|
|
2142
2206
|
end
|
|
2143
2207
|
|
|
2208
|
+
# Response structure for getting a Trigger
|
|
2209
|
+
#
|
|
2144
2210
|
# @!attribute [rw] trigger
|
|
2145
2211
|
# The Trigger object
|
|
2146
2212
|
# @return [Types::Trigger]
|
|
@@ -2176,6 +2242,11 @@ module Aws::DevOpsAgent
|
|
|
2176
2242
|
# github.enterprise.com)
|
|
2177
2243
|
# @return [String]
|
|
2178
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
|
+
#
|
|
2179
2250
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GitHubConfiguration AWS API Documentation
|
|
2180
2251
|
#
|
|
2181
2252
|
class GitHubConfiguration < Struct.new(
|
|
@@ -2183,7 +2254,8 @@ module Aws::DevOpsAgent
|
|
|
2183
2254
|
:repo_id,
|
|
2184
2255
|
:owner,
|
|
2185
2256
|
:owner_type,
|
|
2186
|
-
:instance_identifier
|
|
2257
|
+
:instance_identifier,
|
|
2258
|
+
:runtime_role_arn)
|
|
2187
2259
|
SENSITIVE = []
|
|
2188
2260
|
include Aws::Structure
|
|
2189
2261
|
end
|
|
@@ -2203,12 +2275,18 @@ module Aws::DevOpsAgent
|
|
|
2203
2275
|
# e2e.gamma.dev.us-east-1.gitlab.falco.ai.aws.dev)
|
|
2204
2276
|
# @return [String]
|
|
2205
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
|
+
#
|
|
2206
2283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GitLabConfiguration AWS API Documentation
|
|
2207
2284
|
#
|
|
2208
2285
|
class GitLabConfiguration < Struct.new(
|
|
2209
2286
|
:project_id,
|
|
2210
2287
|
:project_path,
|
|
2211
|
-
:instance_identifier
|
|
2288
|
+
:instance_identifier,
|
|
2289
|
+
:runtime_role_arn)
|
|
2212
2290
|
SENSITIVE = []
|
|
2213
2291
|
include Aws::Structure
|
|
2214
2292
|
end
|
|
@@ -3376,9 +3454,11 @@ module Aws::DevOpsAgent
|
|
|
3376
3454
|
include Aws::Structure
|
|
3377
3455
|
end
|
|
3378
3456
|
|
|
3457
|
+
# Request structure for listing Triggers in an agent space
|
|
3458
|
+
#
|
|
3379
3459
|
# @!attribute [rw] agent_space_id
|
|
3380
|
-
#
|
|
3381
|
-
#
|
|
3460
|
+
# The unique identifier for the agent space whose Triggers should be
|
|
3461
|
+
# listed
|
|
3382
3462
|
# @return [String]
|
|
3383
3463
|
#
|
|
3384
3464
|
# @!attribute [rw] status
|
|
@@ -3405,12 +3485,14 @@ module Aws::DevOpsAgent
|
|
|
3405
3485
|
include Aws::Structure
|
|
3406
3486
|
end
|
|
3407
3487
|
|
|
3488
|
+
# Response structure for listing Triggers
|
|
3489
|
+
#
|
|
3408
3490
|
# @!attribute [rw] items
|
|
3409
3491
|
# The list of Triggers
|
|
3410
3492
|
# @return [Array<Types::Trigger>]
|
|
3411
3493
|
#
|
|
3412
3494
|
# @!attribute [rw] next_token
|
|
3413
|
-
# Pagination token
|
|
3495
|
+
# Pagination token to retrieve the next page of results
|
|
3414
3496
|
# @return [String]
|
|
3415
3497
|
#
|
|
3416
3498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListTriggersResponse AWS API Documentation
|
|
@@ -4662,6 +4744,80 @@ module Aws::DevOpsAgent
|
|
|
4662
4744
|
include Aws::Structure
|
|
4663
4745
|
end
|
|
4664
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
|
+
|
|
4665
4821
|
# Represents a registered service with its configuration and accessible
|
|
4666
4822
|
# resources.
|
|
4667
4823
|
#
|
|
@@ -4741,6 +4897,229 @@ module Aws::DevOpsAgent
|
|
|
4741
4897
|
include Aws::Structure
|
|
4742
4898
|
end
|
|
4743
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
|
+
|
|
4744
5123
|
# The requested resource could not be found.
|
|
4745
5124
|
#
|
|
4746
5125
|
# @!attribute [rw] message
|
|
@@ -4923,7 +5302,15 @@ module Aws::DevOpsAgent
|
|
|
4923
5302
|
# @return [String]
|
|
4924
5303
|
#
|
|
4925
5304
|
# @!attribute [rw] user_action_response
|
|
4926
|
-
# 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.
|
|
4927
5314
|
# @return [String]
|
|
4928
5315
|
#
|
|
4929
5316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SendMessageContext AWS API Documentation
|
|
@@ -5242,6 +5629,14 @@ module Aws::DevOpsAgent
|
|
|
5242
5629
|
# SigV4-authenticated MCP server integration configuration.
|
|
5243
5630
|
# @return [Types::MCPServerSigV4Configuration]
|
|
5244
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
|
+
#
|
|
5245
5640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceConfiguration AWS API Documentation
|
|
5246
5641
|
#
|
|
5247
5642
|
class ServiceConfiguration < Struct.new(
|
|
@@ -5262,6 +5657,8 @@ module Aws::DevOpsAgent
|
|
|
5262
5657
|
:mcpservergrafana,
|
|
5263
5658
|
:pagerduty,
|
|
5264
5659
|
:mcpserversigv4,
|
|
5660
|
+
:remoteagent,
|
|
5661
|
+
:remoteagentsigv4,
|
|
5265
5662
|
:unknown)
|
|
5266
5663
|
SENSITIVE = []
|
|
5267
5664
|
include Aws::Structure
|
|
@@ -5284,6 +5681,8 @@ module Aws::DevOpsAgent
|
|
|
5284
5681
|
class Mcpservergrafana < ServiceConfiguration; end
|
|
5285
5682
|
class Pagerduty < ServiceConfiguration; end
|
|
5286
5683
|
class Mcpserversigv4 < ServiceConfiguration; end
|
|
5684
|
+
class Remoteagent < ServiceConfiguration; end
|
|
5685
|
+
class Remoteagentsigv4 < ServiceConfiguration; end
|
|
5287
5686
|
class Unknown < ServiceConfiguration; end
|
|
5288
5687
|
end
|
|
5289
5688
|
|
|
@@ -5341,6 +5740,14 @@ module Aws::DevOpsAgent
|
|
|
5341
5740
|
# SigV4-authenticated MCP server-specific service details.
|
|
5342
5741
|
# @return [Types::MCPServerSigV4ServiceDetails]
|
|
5343
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
|
+
#
|
|
5344
5751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceDetails AWS API Documentation
|
|
5345
5752
|
#
|
|
5346
5753
|
class ServiceDetails < Struct.new(
|
|
@@ -5356,6 +5763,8 @@ module Aws::DevOpsAgent
|
|
|
5356
5763
|
:pagerduty,
|
|
5357
5764
|
:azureidentity,
|
|
5358
5765
|
:mcpserversigv4,
|
|
5766
|
+
:remoteagent,
|
|
5767
|
+
:remoteagentsigv4,
|
|
5359
5768
|
:unknown)
|
|
5360
5769
|
SENSITIVE = []
|
|
5361
5770
|
include Aws::Structure
|
|
@@ -5373,6 +5782,8 @@ module Aws::DevOpsAgent
|
|
|
5373
5782
|
class Pagerduty < ServiceDetails; end
|
|
5374
5783
|
class Azureidentity < ServiceDetails; end
|
|
5375
5784
|
class Mcpserversigv4 < ServiceDetails; end
|
|
5785
|
+
class Remoteagent < ServiceDetails; end
|
|
5786
|
+
class Remoteagentsigv4 < ServiceDetails; end
|
|
5376
5787
|
class Unknown < ServiceDetails; end
|
|
5377
5788
|
end
|
|
5378
5789
|
|
|
@@ -5803,13 +6214,11 @@ module Aws::DevOpsAgent
|
|
|
5803
6214
|
# A Trigger fires on a schedule and invokes an agent
|
|
5804
6215
|
#
|
|
5805
6216
|
# @!attribute [rw] trigger_id
|
|
5806
|
-
#
|
|
5807
|
-
# hyphens, and underscores; 1-128 characters)
|
|
6217
|
+
# The unique identifier for this Trigger
|
|
5808
6218
|
# @return [String]
|
|
5809
6219
|
#
|
|
5810
6220
|
# @!attribute [rw] agent_space_id
|
|
5811
|
-
#
|
|
5812
|
-
# and hyphens; 1-64 characters)
|
|
6221
|
+
# The agent space this Trigger belongs to
|
|
5813
6222
|
# @return [String]
|
|
5814
6223
|
#
|
|
5815
6224
|
# @!attribute [rw] type
|
|
@@ -6015,8 +6424,9 @@ module Aws::DevOpsAgent
|
|
|
6015
6424
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
6016
6425
|
#
|
|
6017
6426
|
# @!attribute [rw] content
|
|
6018
|
-
# Optional content
|
|
6019
|
-
#
|
|
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.
|
|
6020
6430
|
# @return [Types::AssetContent]
|
|
6021
6431
|
#
|
|
6022
6432
|
# @!attribute [rw] client_token
|
|
@@ -6068,12 +6478,17 @@ module Aws::DevOpsAgent
|
|
|
6068
6478
|
# given service. The entire configuration is replaced on update.
|
|
6069
6479
|
# @return [Types::ServiceConfiguration]
|
|
6070
6480
|
#
|
|
6481
|
+
# @!attribute [rw] capabilities
|
|
6482
|
+
# Enabled capabilities for this association.
|
|
6483
|
+
# @return [Hash<String,Types::CapabilityConfiguration>]
|
|
6484
|
+
#
|
|
6071
6485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssociationInput AWS API Documentation
|
|
6072
6486
|
#
|
|
6073
6487
|
class UpdateAssociationInput < Struct.new(
|
|
6074
6488
|
:agent_space_id,
|
|
6075
6489
|
:association_id,
|
|
6076
|
-
:configuration
|
|
6490
|
+
:configuration,
|
|
6491
|
+
:capabilities)
|
|
6077
6492
|
SENSITIVE = []
|
|
6078
6493
|
include Aws::Structure
|
|
6079
6494
|
end
|
|
@@ -6367,14 +6782,14 @@ module Aws::DevOpsAgent
|
|
|
6367
6782
|
include Aws::Structure
|
|
6368
6783
|
end
|
|
6369
6784
|
|
|
6785
|
+
# Request structure for updating a Trigger
|
|
6786
|
+
#
|
|
6370
6787
|
# @!attribute [rw] agent_space_id
|
|
6371
|
-
#
|
|
6372
|
-
# and hyphens; 1-64 characters)
|
|
6788
|
+
# The unique identifier for the agent space containing the Trigger
|
|
6373
6789
|
# @return [String]
|
|
6374
6790
|
#
|
|
6375
6791
|
# @!attribute [rw] trigger_id
|
|
6376
|
-
#
|
|
6377
|
-
# hyphens, and underscores; 1-128 characters)
|
|
6792
|
+
# The unique identifier of the Trigger to update
|
|
6378
6793
|
# @return [String]
|
|
6379
6794
|
#
|
|
6380
6795
|
# @!attribute [rw] status
|
|
@@ -6400,6 +6815,8 @@ module Aws::DevOpsAgent
|
|
|
6400
6815
|
include Aws::Structure
|
|
6401
6816
|
end
|
|
6402
6817
|
|
|
6818
|
+
# Response structure for updating a Trigger
|
|
6819
|
+
#
|
|
6403
6820
|
# @!attribute [rw] trigger
|
|
6404
6821
|
# The Trigger object
|
|
6405
6822
|
# @return [Types::Trigger]
|