aws-sdk-devopsagent 1.6.0 → 1.8.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 +719 -25
- data/lib/aws-sdk-devopsagent/client_api.rb +570 -26
- data/lib/aws-sdk-devopsagent/types.rb +989 -35
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +202 -5
- data/sig/params.rbs +17 -0
- data/sig/types.rbs +273 -3
- metadata +1 -1
|
@@ -211,6 +211,259 @@ module Aws::DevOpsAgent
|
|
|
211
211
|
include Aws::Structure
|
|
212
212
|
end
|
|
213
213
|
|
|
214
|
+
# Represents an asset in an agent space, including its identifier, type,
|
|
215
|
+
# metadata, version, and timestamps.
|
|
216
|
+
#
|
|
217
|
+
# @!attribute [rw] asset_id
|
|
218
|
+
# The unique identifier for this asset
|
|
219
|
+
# @return [String]
|
|
220
|
+
#
|
|
221
|
+
# @!attribute [rw] asset_type
|
|
222
|
+
# The type of this asset
|
|
223
|
+
# @return [String]
|
|
224
|
+
#
|
|
225
|
+
# @!attribute [rw] metadata
|
|
226
|
+
# The metadata for this asset
|
|
227
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
228
|
+
#
|
|
229
|
+
# @!attribute [rw] version
|
|
230
|
+
# The version number of this asset
|
|
231
|
+
# @return [Integer]
|
|
232
|
+
#
|
|
233
|
+
# @!attribute [rw] created_at
|
|
234
|
+
# Timestamp when this asset was created
|
|
235
|
+
# @return [Time]
|
|
236
|
+
#
|
|
237
|
+
# @!attribute [rw] updated_at
|
|
238
|
+
# Timestamp when this asset was last updated
|
|
239
|
+
# @return [Time]
|
|
240
|
+
#
|
|
241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/Asset AWS API Documentation
|
|
242
|
+
#
|
|
243
|
+
class Asset < Struct.new(
|
|
244
|
+
:asset_id,
|
|
245
|
+
:asset_type,
|
|
246
|
+
:metadata,
|
|
247
|
+
:version,
|
|
248
|
+
:created_at,
|
|
249
|
+
:updated_at)
|
|
250
|
+
SENSITIVE = []
|
|
251
|
+
include Aws::Structure
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
# Content for an asset, either a single file or a zip bundle
|
|
255
|
+
#
|
|
256
|
+
# @note AssetContent is a union - when making an API calls you must set exactly one of the members.
|
|
257
|
+
#
|
|
258
|
+
# @!attribute [rw] file
|
|
259
|
+
# A single file with path and content
|
|
260
|
+
# @return [Types::AssetFileContent]
|
|
261
|
+
#
|
|
262
|
+
# @!attribute [rw] zip
|
|
263
|
+
# A zip file containing multiple files
|
|
264
|
+
# @return [Types::AssetZipContent]
|
|
265
|
+
#
|
|
266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetContent AWS API Documentation
|
|
267
|
+
#
|
|
268
|
+
class AssetContent < Struct.new(
|
|
269
|
+
:file,
|
|
270
|
+
:zip,
|
|
271
|
+
:unknown)
|
|
272
|
+
SENSITIVE = []
|
|
273
|
+
include Aws::Structure
|
|
274
|
+
include Aws::Structure::Union
|
|
275
|
+
|
|
276
|
+
class File < AssetContent; end
|
|
277
|
+
class Zip < AssetContent; end
|
|
278
|
+
class Unknown < AssetContent; end
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
# Represents a single file within an asset, including its path, content,
|
|
282
|
+
# version, and timestamps.
|
|
283
|
+
#
|
|
284
|
+
# @!attribute [rw] path
|
|
285
|
+
# The path of this file within the asset
|
|
286
|
+
# @return [String]
|
|
287
|
+
#
|
|
288
|
+
# @!attribute [rw] content
|
|
289
|
+
# The content of this file
|
|
290
|
+
# @return [Types::AssetFileBody]
|
|
291
|
+
#
|
|
292
|
+
# @!attribute [rw] metadata
|
|
293
|
+
# The metadata for this file
|
|
294
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
295
|
+
#
|
|
296
|
+
# @!attribute [rw] version
|
|
297
|
+
# The asset version this file belongs to
|
|
298
|
+
# @return [Integer]
|
|
299
|
+
#
|
|
300
|
+
# @!attribute [rw] created_at
|
|
301
|
+
# Timestamp when this file was created
|
|
302
|
+
# @return [Time]
|
|
303
|
+
#
|
|
304
|
+
# @!attribute [rw] updated_at
|
|
305
|
+
# Timestamp when this file was last updated
|
|
306
|
+
# @return [Time]
|
|
307
|
+
#
|
|
308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetFile AWS API Documentation
|
|
309
|
+
#
|
|
310
|
+
class AssetFile < Struct.new(
|
|
311
|
+
:path,
|
|
312
|
+
:content,
|
|
313
|
+
:metadata,
|
|
314
|
+
:version,
|
|
315
|
+
:created_at,
|
|
316
|
+
:updated_at)
|
|
317
|
+
SENSITIVE = []
|
|
318
|
+
include Aws::Structure
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
# Content of an individual asset file
|
|
322
|
+
#
|
|
323
|
+
# @note AssetFileBody is a union - when making an API calls you must set exactly one of the members.
|
|
324
|
+
#
|
|
325
|
+
# @note AssetFileBody is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssetFileBody corresponding to the set member.
|
|
326
|
+
#
|
|
327
|
+
# @!attribute [rw] bytes
|
|
328
|
+
# Binary file content
|
|
329
|
+
# @return [String]
|
|
330
|
+
#
|
|
331
|
+
# @!attribute [rw] text
|
|
332
|
+
# Text file content
|
|
333
|
+
# @return [String]
|
|
334
|
+
#
|
|
335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetFileBody AWS API Documentation
|
|
336
|
+
#
|
|
337
|
+
class AssetFileBody < Struct.new(
|
|
338
|
+
:bytes,
|
|
339
|
+
:text,
|
|
340
|
+
:unknown)
|
|
341
|
+
SENSITIVE = []
|
|
342
|
+
include Aws::Structure
|
|
343
|
+
include Aws::Structure::Union
|
|
344
|
+
|
|
345
|
+
class Bytes < AssetFileBody; end
|
|
346
|
+
class Text < AssetFileBody; end
|
|
347
|
+
class Unknown < AssetFileBody; end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# A single file with path and content
|
|
351
|
+
#
|
|
352
|
+
# @!attribute [rw] path
|
|
353
|
+
# The path of the file within the asset
|
|
354
|
+
# @return [String]
|
|
355
|
+
#
|
|
356
|
+
# @!attribute [rw] body
|
|
357
|
+
# The file content
|
|
358
|
+
# @return [Types::AssetFileBody]
|
|
359
|
+
#
|
|
360
|
+
# @!attribute [rw] metadata
|
|
361
|
+
# Optional metadata for this file
|
|
362
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
363
|
+
#
|
|
364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetFileContent AWS API Documentation
|
|
365
|
+
#
|
|
366
|
+
class AssetFileContent < Struct.new(
|
|
367
|
+
:path,
|
|
368
|
+
:body,
|
|
369
|
+
:metadata)
|
|
370
|
+
SENSITIVE = []
|
|
371
|
+
include Aws::Structure
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
# Summary of a file within an asset, including its path, version, and
|
|
375
|
+
# timestamps.
|
|
376
|
+
#
|
|
377
|
+
# @!attribute [rw] path
|
|
378
|
+
# The path of this file within the asset
|
|
379
|
+
# @return [String]
|
|
380
|
+
#
|
|
381
|
+
# @!attribute [rw] metadata
|
|
382
|
+
# The metadata for this file
|
|
383
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
384
|
+
#
|
|
385
|
+
# @!attribute [rw] version
|
|
386
|
+
# The asset version this file belongs to
|
|
387
|
+
# @return [Integer]
|
|
388
|
+
#
|
|
389
|
+
# @!attribute [rw] created_at
|
|
390
|
+
# Timestamp when this file was created
|
|
391
|
+
# @return [Time]
|
|
392
|
+
#
|
|
393
|
+
# @!attribute [rw] updated_at
|
|
394
|
+
# Timestamp when this file was last updated
|
|
395
|
+
# @return [Time]
|
|
396
|
+
#
|
|
397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetFileSummary AWS API Documentation
|
|
398
|
+
#
|
|
399
|
+
class AssetFileSummary < Struct.new(
|
|
400
|
+
:path,
|
|
401
|
+
:metadata,
|
|
402
|
+
:version,
|
|
403
|
+
:created_at,
|
|
404
|
+
:updated_at)
|
|
405
|
+
SENSITIVE = []
|
|
406
|
+
include Aws::Structure
|
|
407
|
+
end
|
|
408
|
+
|
|
409
|
+
# Summary of an asset type, including its identifier and description.
|
|
410
|
+
#
|
|
411
|
+
# @!attribute [rw] asset_type
|
|
412
|
+
# The asset type identifier
|
|
413
|
+
# @return [String]
|
|
414
|
+
#
|
|
415
|
+
# @!attribute [rw] description
|
|
416
|
+
# A description of the asset type
|
|
417
|
+
# @return [String]
|
|
418
|
+
#
|
|
419
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetTypeSummary AWS API Documentation
|
|
420
|
+
#
|
|
421
|
+
class AssetTypeSummary < Struct.new(
|
|
422
|
+
:asset_type,
|
|
423
|
+
:description)
|
|
424
|
+
SENSITIVE = []
|
|
425
|
+
include Aws::Structure
|
|
426
|
+
end
|
|
427
|
+
|
|
428
|
+
# Metadata for a single version of an asset, including the version
|
|
429
|
+
# number and timestamps.
|
|
430
|
+
#
|
|
431
|
+
# @!attribute [rw] version
|
|
432
|
+
# The version number of this asset
|
|
433
|
+
# @return [Integer]
|
|
434
|
+
#
|
|
435
|
+
# @!attribute [rw] created_at
|
|
436
|
+
# Timestamp when this asset version was created
|
|
437
|
+
# @return [Time]
|
|
438
|
+
#
|
|
439
|
+
# @!attribute [rw] updated_at
|
|
440
|
+
# Timestamp when this asset version was last updated
|
|
441
|
+
# @return [Time]
|
|
442
|
+
#
|
|
443
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetVersionMetadata AWS API Documentation
|
|
444
|
+
#
|
|
445
|
+
class AssetVersionMetadata < Struct.new(
|
|
446
|
+
:version,
|
|
447
|
+
:created_at,
|
|
448
|
+
:updated_at)
|
|
449
|
+
SENSITIVE = []
|
|
450
|
+
include Aws::Structure
|
|
451
|
+
end
|
|
452
|
+
|
|
453
|
+
# A zip file containing asset files
|
|
454
|
+
#
|
|
455
|
+
# @!attribute [rw] zip_file
|
|
456
|
+
# The zip file bytes
|
|
457
|
+
# @return [String]
|
|
458
|
+
#
|
|
459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AssetZipContent AWS API Documentation
|
|
460
|
+
#
|
|
461
|
+
class AssetZipContent < Struct.new(
|
|
462
|
+
:zip_file)
|
|
463
|
+
SENSITIVE = []
|
|
464
|
+
include Aws::Structure
|
|
465
|
+
end
|
|
466
|
+
|
|
214
467
|
# A block of content in an assistant message.
|
|
215
468
|
#
|
|
216
469
|
# @note AssistantMessageBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssistantMessageBlock corresponding to the set member.
|
|
@@ -491,6 +744,116 @@ module Aws::DevOpsAgent
|
|
|
491
744
|
include Aws::Structure
|
|
492
745
|
end
|
|
493
746
|
|
|
747
|
+
# Request structure for creating an asset file
|
|
748
|
+
#
|
|
749
|
+
# @!attribute [rw] agent_space_id
|
|
750
|
+
# The unique identifier for the agent space containing the asset
|
|
751
|
+
# @return [String]
|
|
752
|
+
#
|
|
753
|
+
# @!attribute [rw] asset_id
|
|
754
|
+
# The unique identifier of the asset to create the file in
|
|
755
|
+
# @return [String]
|
|
756
|
+
#
|
|
757
|
+
# @!attribute [rw] path
|
|
758
|
+
# The path of the file within the asset
|
|
759
|
+
# @return [String]
|
|
760
|
+
#
|
|
761
|
+
# @!attribute [rw] content
|
|
762
|
+
# The content of the file to create
|
|
763
|
+
# @return [Types::AssetFileBody]
|
|
764
|
+
#
|
|
765
|
+
# @!attribute [rw] metadata
|
|
766
|
+
# Optional metadata describing this file
|
|
767
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
768
|
+
#
|
|
769
|
+
# @!attribute [rw] client_token
|
|
770
|
+
# A unique, case-sensitive identifier used for idempotent asset file
|
|
771
|
+
# creation
|
|
772
|
+
#
|
|
773
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
774
|
+
# not need to pass this option.
|
|
775
|
+
# @return [String]
|
|
776
|
+
#
|
|
777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateAssetFileRequest AWS API Documentation
|
|
778
|
+
#
|
|
779
|
+
class CreateAssetFileRequest < Struct.new(
|
|
780
|
+
:agent_space_id,
|
|
781
|
+
:asset_id,
|
|
782
|
+
:path,
|
|
783
|
+
:content,
|
|
784
|
+
:metadata,
|
|
785
|
+
:client_token)
|
|
786
|
+
SENSITIVE = []
|
|
787
|
+
include Aws::Structure
|
|
788
|
+
end
|
|
789
|
+
|
|
790
|
+
# Response structure for creating an asset file
|
|
791
|
+
#
|
|
792
|
+
# @!attribute [rw] file
|
|
793
|
+
# The asset file object
|
|
794
|
+
# @return [Types::AssetFile]
|
|
795
|
+
#
|
|
796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateAssetFileResponse AWS API Documentation
|
|
797
|
+
#
|
|
798
|
+
class CreateAssetFileResponse < Struct.new(
|
|
799
|
+
:file)
|
|
800
|
+
SENSITIVE = []
|
|
801
|
+
include Aws::Structure
|
|
802
|
+
end
|
|
803
|
+
|
|
804
|
+
# Request structure for creating a new asset
|
|
805
|
+
#
|
|
806
|
+
# @!attribute [rw] agent_space_id
|
|
807
|
+
# The unique identifier for the agent space where the asset will be
|
|
808
|
+
# created
|
|
809
|
+
# @return [String]
|
|
810
|
+
#
|
|
811
|
+
# @!attribute [rw] asset_type
|
|
812
|
+
# The type of asset to create
|
|
813
|
+
# @return [String]
|
|
814
|
+
#
|
|
815
|
+
# @!attribute [rw] metadata
|
|
816
|
+
# The metadata describing this asset
|
|
817
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
818
|
+
#
|
|
819
|
+
# @!attribute [rw] content
|
|
820
|
+
# The content for the asset. Provide a single file or a zip bundle.
|
|
821
|
+
# @return [Types::AssetContent]
|
|
822
|
+
#
|
|
823
|
+
# @!attribute [rw] client_token
|
|
824
|
+
# A unique, case-sensitive identifier used for idempotent asset
|
|
825
|
+
# creation
|
|
826
|
+
#
|
|
827
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
828
|
+
# not need to pass this option.
|
|
829
|
+
# @return [String]
|
|
830
|
+
#
|
|
831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateAssetRequest AWS API Documentation
|
|
832
|
+
#
|
|
833
|
+
class CreateAssetRequest < Struct.new(
|
|
834
|
+
:agent_space_id,
|
|
835
|
+
:asset_type,
|
|
836
|
+
:metadata,
|
|
837
|
+
:content,
|
|
838
|
+
:client_token)
|
|
839
|
+
SENSITIVE = []
|
|
840
|
+
include Aws::Structure
|
|
841
|
+
end
|
|
842
|
+
|
|
843
|
+
# Response structure for creating a new asset
|
|
844
|
+
#
|
|
845
|
+
# @!attribute [rw] asset
|
|
846
|
+
# The asset object
|
|
847
|
+
# @return [Types::Asset]
|
|
848
|
+
#
|
|
849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateAssetResponse AWS API Documentation
|
|
850
|
+
#
|
|
851
|
+
class CreateAssetResponse < Struct.new(
|
|
852
|
+
:asset)
|
|
853
|
+
SENSITIVE = []
|
|
854
|
+
include Aws::Structure
|
|
855
|
+
end
|
|
856
|
+
|
|
494
857
|
# Request structure for creating a new backlog task
|
|
495
858
|
#
|
|
496
859
|
# @!attribute [rw] agent_space_id
|
|
@@ -662,6 +1025,15 @@ module Aws::DevOpsAgent
|
|
|
662
1025
|
# Connection. Only present when a certificate is associated.
|
|
663
1026
|
# @return [Time]
|
|
664
1027
|
#
|
|
1028
|
+
# @!attribute [rw] dns_resolution
|
|
1029
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
1030
|
+
# @return [String]
|
|
1031
|
+
#
|
|
1032
|
+
# @!attribute [rw] failure_message
|
|
1033
|
+
# Message describing the reason for a failed Private Connection
|
|
1034
|
+
# creation, if applicable.
|
|
1035
|
+
# @return [String]
|
|
1036
|
+
#
|
|
665
1037
|
# @!attribute [rw] tags
|
|
666
1038
|
# Tags associated with the created Private Connection.
|
|
667
1039
|
# @return [Hash<String,String>]
|
|
@@ -677,6 +1049,8 @@ module Aws::DevOpsAgent
|
|
|
677
1049
|
:resource_configuration_id,
|
|
678
1050
|
:status,
|
|
679
1051
|
:certificate_expiry_time,
|
|
1052
|
+
:dns_resolution,
|
|
1053
|
+
:failure_message,
|
|
680
1054
|
:tags)
|
|
681
1055
|
SENSITIVE = []
|
|
682
1056
|
include Aws::Structure
|
|
@@ -754,6 +1128,61 @@ module Aws::DevOpsAgent
|
|
|
754
1128
|
#
|
|
755
1129
|
class DeleteAgentSpaceOutput < Aws::EmptyStructure; end
|
|
756
1130
|
|
|
1131
|
+
# Request structure for deleting an asset file
|
|
1132
|
+
#
|
|
1133
|
+
# @!attribute [rw] agent_space_id
|
|
1134
|
+
# The unique identifier for the agent space containing the asset
|
|
1135
|
+
# @return [String]
|
|
1136
|
+
#
|
|
1137
|
+
# @!attribute [rw] asset_id
|
|
1138
|
+
# The unique identifier of the asset containing the file
|
|
1139
|
+
# @return [String]
|
|
1140
|
+
#
|
|
1141
|
+
# @!attribute [rw] path
|
|
1142
|
+
# The path of the file within the asset to delete
|
|
1143
|
+
# @return [String]
|
|
1144
|
+
#
|
|
1145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetFileRequest AWS API Documentation
|
|
1146
|
+
#
|
|
1147
|
+
class DeleteAssetFileRequest < Struct.new(
|
|
1148
|
+
:agent_space_id,
|
|
1149
|
+
:asset_id,
|
|
1150
|
+
:path)
|
|
1151
|
+
SENSITIVE = []
|
|
1152
|
+
include Aws::Structure
|
|
1153
|
+
end
|
|
1154
|
+
|
|
1155
|
+
# Response structure for deleting an asset file
|
|
1156
|
+
#
|
|
1157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetFileResponse AWS API Documentation
|
|
1158
|
+
#
|
|
1159
|
+
class DeleteAssetFileResponse < Aws::EmptyStructure; end
|
|
1160
|
+
|
|
1161
|
+
# Request structure for deleting an asset
|
|
1162
|
+
#
|
|
1163
|
+
# @!attribute [rw] agent_space_id
|
|
1164
|
+
# The unique identifier for the agent space containing the asset
|
|
1165
|
+
# @return [String]
|
|
1166
|
+
#
|
|
1167
|
+
# @!attribute [rw] asset_id
|
|
1168
|
+
# The unique identifier of the asset to delete
|
|
1169
|
+
# @return [String]
|
|
1170
|
+
#
|
|
1171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetRequest AWS API Documentation
|
|
1172
|
+
#
|
|
1173
|
+
class DeleteAssetRequest < Struct.new(
|
|
1174
|
+
:agent_space_id,
|
|
1175
|
+
:asset_id)
|
|
1176
|
+
SENSITIVE = []
|
|
1177
|
+
include Aws::Structure
|
|
1178
|
+
end
|
|
1179
|
+
|
|
1180
|
+
# Response structure for deleting an asset
|
|
1181
|
+
#
|
|
1182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetResponse AWS API Documentation
|
|
1183
|
+
#
|
|
1184
|
+
class DeleteAssetResponse < Aws::EmptyStructure; end
|
|
1185
|
+
|
|
757
1186
|
# Input for deleting an existing Private Connection.
|
|
758
1187
|
#
|
|
759
1188
|
# @!attribute [rw] name
|
|
@@ -861,6 +1290,15 @@ module Aws::DevOpsAgent
|
|
|
861
1290
|
# Connection. Only present when a certificate is associated.
|
|
862
1291
|
# @return [Time]
|
|
863
1292
|
#
|
|
1293
|
+
# @!attribute [rw] dns_resolution
|
|
1294
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
1295
|
+
# @return [String]
|
|
1296
|
+
#
|
|
1297
|
+
# @!attribute [rw] failure_message
|
|
1298
|
+
# Message describing the reason for a failed Private Connection, if
|
|
1299
|
+
# applicable.
|
|
1300
|
+
# @return [String]
|
|
1301
|
+
#
|
|
864
1302
|
# @!attribute [rw] tags
|
|
865
1303
|
# Tags associated with the Private Connection.
|
|
866
1304
|
# @return [Hash<String,String>]
|
|
@@ -876,6 +1314,8 @@ module Aws::DevOpsAgent
|
|
|
876
1314
|
:resource_configuration_id,
|
|
877
1315
|
:status,
|
|
878
1316
|
:certificate_expiry_time,
|
|
1317
|
+
:dns_resolution,
|
|
1318
|
+
:failure_message,
|
|
879
1319
|
:tags)
|
|
880
1320
|
SENSITIVE = []
|
|
881
1321
|
include Aws::Structure
|
|
@@ -1070,6 +1510,10 @@ module Aws::DevOpsAgent
|
|
|
1070
1510
|
# The unique identifier of the AgentSpace
|
|
1071
1511
|
# @return [String]
|
|
1072
1512
|
#
|
|
1513
|
+
# @!attribute [rw] operator_app_url
|
|
1514
|
+
# The URL for operators to access the Operator App
|
|
1515
|
+
# @return [String]
|
|
1516
|
+
#
|
|
1073
1517
|
# @!attribute [rw] iam
|
|
1074
1518
|
# Configuration for IAM-based authentication flow for the Operator
|
|
1075
1519
|
# App.
|
|
@@ -1089,6 +1533,7 @@ module Aws::DevOpsAgent
|
|
|
1089
1533
|
#
|
|
1090
1534
|
class EnableOperatorAppOutput < Struct.new(
|
|
1091
1535
|
:agent_space_id,
|
|
1536
|
+
:operator_app_url,
|
|
1092
1537
|
:iam,
|
|
1093
1538
|
:idc,
|
|
1094
1539
|
:idp)
|
|
@@ -1234,53 +1679,180 @@ module Aws::DevOpsAgent
|
|
|
1234
1679
|
# The start time of the usage tracking period
|
|
1235
1680
|
# @return [Time]
|
|
1236
1681
|
#
|
|
1237
|
-
# @!attribute [rw] usage_period_end_time
|
|
1238
|
-
# The end time of the usage tracking period
|
|
1239
|
-
# @return [Time]
|
|
1682
|
+
# @!attribute [rw] usage_period_end_time
|
|
1683
|
+
# The end time of the usage tracking period
|
|
1684
|
+
# @return [Time]
|
|
1685
|
+
#
|
|
1686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAccountUsageOutput AWS API Documentation
|
|
1687
|
+
#
|
|
1688
|
+
class GetAccountUsageOutput < Struct.new(
|
|
1689
|
+
:monthly_account_investigation_hours,
|
|
1690
|
+
:monthly_account_evaluation_hours,
|
|
1691
|
+
:monthly_account_system_learning_hours,
|
|
1692
|
+
:monthly_account_on_demand_hours,
|
|
1693
|
+
:usage_period_start_time,
|
|
1694
|
+
:usage_period_end_time)
|
|
1695
|
+
SENSITIVE = []
|
|
1696
|
+
include Aws::Structure
|
|
1697
|
+
end
|
|
1698
|
+
|
|
1699
|
+
# Input for retrieving a specific AgentSpace by ID.
|
|
1700
|
+
#
|
|
1701
|
+
# @!attribute [rw] agent_space_id
|
|
1702
|
+
# The unique identifier of the AgentSpace
|
|
1703
|
+
# @return [String]
|
|
1704
|
+
#
|
|
1705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAgentSpaceInput AWS API Documentation
|
|
1706
|
+
#
|
|
1707
|
+
class GetAgentSpaceInput < Struct.new(
|
|
1708
|
+
:agent_space_id)
|
|
1709
|
+
SENSITIVE = []
|
|
1710
|
+
include Aws::Structure
|
|
1711
|
+
end
|
|
1712
|
+
|
|
1713
|
+
# Output containing the requested AgentSpace details.
|
|
1714
|
+
#
|
|
1715
|
+
# @!attribute [rw] agent_space
|
|
1716
|
+
# Represents a complete AgentSpace with all its properties,
|
|
1717
|
+
# timestamps, encryption settings, and unique identifier.
|
|
1718
|
+
# @return [Types::AgentSpace]
|
|
1719
|
+
#
|
|
1720
|
+
# @!attribute [rw] tags
|
|
1721
|
+
# Tags associated with the AgentSpace.
|
|
1722
|
+
# @return [Hash<String,String>]
|
|
1723
|
+
#
|
|
1724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAgentSpaceOutput AWS API Documentation
|
|
1725
|
+
#
|
|
1726
|
+
class GetAgentSpaceOutput < Struct.new(
|
|
1727
|
+
:agent_space,
|
|
1728
|
+
:tags)
|
|
1729
|
+
SENSITIVE = []
|
|
1730
|
+
include Aws::Structure
|
|
1731
|
+
end
|
|
1732
|
+
|
|
1733
|
+
# Request structure for getting an asset's content as a zip bundle
|
|
1734
|
+
#
|
|
1735
|
+
# @!attribute [rw] agent_space_id
|
|
1736
|
+
# The unique identifier for the agent space containing the asset
|
|
1737
|
+
# @return [String]
|
|
1738
|
+
#
|
|
1739
|
+
# @!attribute [rw] asset_id
|
|
1740
|
+
# The unique identifier of the asset
|
|
1741
|
+
# @return [String]
|
|
1742
|
+
#
|
|
1743
|
+
# @!attribute [rw] asset_version
|
|
1744
|
+
# The specific asset version to export. If omitted, the latest version
|
|
1745
|
+
# is returned.
|
|
1746
|
+
# @return [Integer]
|
|
1747
|
+
#
|
|
1748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetContentRequest AWS API Documentation
|
|
1749
|
+
#
|
|
1750
|
+
class GetAssetContentRequest < Struct.new(
|
|
1751
|
+
:agent_space_id,
|
|
1752
|
+
:asset_id,
|
|
1753
|
+
:asset_version)
|
|
1754
|
+
SENSITIVE = []
|
|
1755
|
+
include Aws::Structure
|
|
1756
|
+
end
|
|
1757
|
+
|
|
1758
|
+
# Response structure for getting an asset's content as a zip bundle
|
|
1759
|
+
#
|
|
1760
|
+
# @!attribute [rw] content
|
|
1761
|
+
# The asset content as a zip file
|
|
1762
|
+
# @return [Types::AssetZipContent]
|
|
1763
|
+
#
|
|
1764
|
+
# @!attribute [rw] version
|
|
1765
|
+
# The asset version this content belongs to
|
|
1766
|
+
# @return [Integer]
|
|
1767
|
+
#
|
|
1768
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetContentResponse AWS API Documentation
|
|
1769
|
+
#
|
|
1770
|
+
class GetAssetContentResponse < Struct.new(
|
|
1771
|
+
:content,
|
|
1772
|
+
:version)
|
|
1773
|
+
SENSITIVE = []
|
|
1774
|
+
include Aws::Structure
|
|
1775
|
+
end
|
|
1776
|
+
|
|
1777
|
+
# Request structure for getting an asset file
|
|
1778
|
+
#
|
|
1779
|
+
# @!attribute [rw] agent_space_id
|
|
1780
|
+
# The unique identifier for the agent space containing the asset
|
|
1781
|
+
# @return [String]
|
|
1782
|
+
#
|
|
1783
|
+
# @!attribute [rw] asset_id
|
|
1784
|
+
# The unique identifier of the asset containing the file
|
|
1785
|
+
# @return [String]
|
|
1786
|
+
#
|
|
1787
|
+
# @!attribute [rw] path
|
|
1788
|
+
# The path of the file within the asset to retrieve
|
|
1789
|
+
# @return [String]
|
|
1790
|
+
#
|
|
1791
|
+
# @!attribute [rw] asset_version
|
|
1792
|
+
# The specific asset version to retrieve the file from. If omitted,
|
|
1793
|
+
# the latest version is returned.
|
|
1794
|
+
# @return [Integer]
|
|
1795
|
+
#
|
|
1796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetFileRequest AWS API Documentation
|
|
1797
|
+
#
|
|
1798
|
+
class GetAssetFileRequest < Struct.new(
|
|
1799
|
+
:agent_space_id,
|
|
1800
|
+
:asset_id,
|
|
1801
|
+
:path,
|
|
1802
|
+
:asset_version)
|
|
1803
|
+
SENSITIVE = []
|
|
1804
|
+
include Aws::Structure
|
|
1805
|
+
end
|
|
1806
|
+
|
|
1807
|
+
# Response structure for getting an asset file
|
|
1808
|
+
#
|
|
1809
|
+
# @!attribute [rw] file
|
|
1810
|
+
# The asset file object
|
|
1811
|
+
# @return [Types::AssetFile]
|
|
1240
1812
|
#
|
|
1241
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
1813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetFileResponse AWS API Documentation
|
|
1242
1814
|
#
|
|
1243
|
-
class
|
|
1244
|
-
:
|
|
1245
|
-
:monthly_account_evaluation_hours,
|
|
1246
|
-
:monthly_account_system_learning_hours,
|
|
1247
|
-
:monthly_account_on_demand_hours,
|
|
1248
|
-
:usage_period_start_time,
|
|
1249
|
-
:usage_period_end_time)
|
|
1815
|
+
class GetAssetFileResponse < Struct.new(
|
|
1816
|
+
:file)
|
|
1250
1817
|
SENSITIVE = []
|
|
1251
1818
|
include Aws::Structure
|
|
1252
1819
|
end
|
|
1253
1820
|
|
|
1254
|
-
#
|
|
1821
|
+
# Request structure for getting an asset
|
|
1255
1822
|
#
|
|
1256
1823
|
# @!attribute [rw] agent_space_id
|
|
1257
|
-
# The unique identifier
|
|
1824
|
+
# The unique identifier for the agent space containing the asset
|
|
1258
1825
|
# @return [String]
|
|
1259
1826
|
#
|
|
1260
|
-
#
|
|
1827
|
+
# @!attribute [rw] asset_id
|
|
1828
|
+
# The unique identifier of the asset to retrieve
|
|
1829
|
+
# @return [String]
|
|
1261
1830
|
#
|
|
1262
|
-
|
|
1263
|
-
|
|
1831
|
+
# @!attribute [rw] asset_version
|
|
1832
|
+
# The specific version of the asset to retrieve. If omitted, the
|
|
1833
|
+
# latest version is returned.
|
|
1834
|
+
# @return [Integer]
|
|
1835
|
+
#
|
|
1836
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetRequest AWS API Documentation
|
|
1837
|
+
#
|
|
1838
|
+
class GetAssetRequest < Struct.new(
|
|
1839
|
+
:agent_space_id,
|
|
1840
|
+
:asset_id,
|
|
1841
|
+
:asset_version)
|
|
1264
1842
|
SENSITIVE = []
|
|
1265
1843
|
include Aws::Structure
|
|
1266
1844
|
end
|
|
1267
1845
|
|
|
1268
|
-
#
|
|
1269
|
-
#
|
|
1270
|
-
# @!attribute [rw] agent_space
|
|
1271
|
-
# Represents a complete AgentSpace with all its properties,
|
|
1272
|
-
# timestamps, encryption settings, and unique identifier.
|
|
1273
|
-
# @return [Types::AgentSpace]
|
|
1846
|
+
# Response structure for getting an asset
|
|
1274
1847
|
#
|
|
1275
|
-
# @!attribute [rw]
|
|
1276
|
-
#
|
|
1277
|
-
# @return [
|
|
1848
|
+
# @!attribute [rw] asset
|
|
1849
|
+
# The asset object
|
|
1850
|
+
# @return [Types::Asset]
|
|
1278
1851
|
#
|
|
1279
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
1852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetResponse AWS API Documentation
|
|
1280
1853
|
#
|
|
1281
|
-
class
|
|
1282
|
-
:
|
|
1283
|
-
:tags)
|
|
1854
|
+
class GetAssetResponse < Struct.new(
|
|
1855
|
+
:asset)
|
|
1284
1856
|
SENSITIVE = []
|
|
1285
1857
|
include Aws::Structure
|
|
1286
1858
|
end
|
|
@@ -1369,6 +1941,10 @@ module Aws::DevOpsAgent
|
|
|
1369
1941
|
# Output containing the Operator App configuration including
|
|
1370
1942
|
# authentication details.
|
|
1371
1943
|
#
|
|
1944
|
+
# @!attribute [rw] operator_app_url
|
|
1945
|
+
# The URL for operators to access the Operator App
|
|
1946
|
+
# @return [String]
|
|
1947
|
+
#
|
|
1372
1948
|
# @!attribute [rw] iam
|
|
1373
1949
|
# Configuration for IAM-based authentication flow for the Operator
|
|
1374
1950
|
# App.
|
|
@@ -1387,6 +1963,7 @@ module Aws::DevOpsAgent
|
|
|
1387
1963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetOperatorAppOutput AWS API Documentation
|
|
1388
1964
|
#
|
|
1389
1965
|
class GetOperatorAppOutput < Struct.new(
|
|
1966
|
+
:operator_app_url,
|
|
1390
1967
|
:iam,
|
|
1391
1968
|
:idc,
|
|
1392
1969
|
:idp)
|
|
@@ -1944,6 +2521,212 @@ module Aws::DevOpsAgent
|
|
|
1944
2521
|
include Aws::Structure
|
|
1945
2522
|
end
|
|
1946
2523
|
|
|
2524
|
+
# Request structure for listing asset files
|
|
2525
|
+
#
|
|
2526
|
+
# @!attribute [rw] agent_space_id
|
|
2527
|
+
# The unique identifier for the agent space containing the asset
|
|
2528
|
+
# @return [String]
|
|
2529
|
+
#
|
|
2530
|
+
# @!attribute [rw] asset_id
|
|
2531
|
+
# The unique identifier of the asset whose files to list
|
|
2532
|
+
# @return [String]
|
|
2533
|
+
#
|
|
2534
|
+
# @!attribute [rw] asset_version
|
|
2535
|
+
# The specific asset version to list files from. If omitted, files
|
|
2536
|
+
# from the latest version are returned.
|
|
2537
|
+
# @return [Integer]
|
|
2538
|
+
#
|
|
2539
|
+
# @!attribute [rw] next_token
|
|
2540
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2541
|
+
# of results
|
|
2542
|
+
# @return [String]
|
|
2543
|
+
#
|
|
2544
|
+
# @!attribute [rw] max_results
|
|
2545
|
+
# The maximum number of results to return in a single response
|
|
2546
|
+
# @return [Integer]
|
|
2547
|
+
#
|
|
2548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetFilesRequest AWS API Documentation
|
|
2549
|
+
#
|
|
2550
|
+
class ListAssetFilesRequest < Struct.new(
|
|
2551
|
+
:agent_space_id,
|
|
2552
|
+
:asset_id,
|
|
2553
|
+
:asset_version,
|
|
2554
|
+
:next_token,
|
|
2555
|
+
:max_results)
|
|
2556
|
+
SENSITIVE = []
|
|
2557
|
+
include Aws::Structure
|
|
2558
|
+
end
|
|
2559
|
+
|
|
2560
|
+
# Response structure for listing asset files
|
|
2561
|
+
#
|
|
2562
|
+
# @!attribute [rw] items
|
|
2563
|
+
# The list of asset file summaries
|
|
2564
|
+
# @return [Array<Types::AssetFileSummary>]
|
|
2565
|
+
#
|
|
2566
|
+
# @!attribute [rw] next_token
|
|
2567
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2568
|
+
# there are no more results.
|
|
2569
|
+
# @return [String]
|
|
2570
|
+
#
|
|
2571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetFilesResponse AWS API Documentation
|
|
2572
|
+
#
|
|
2573
|
+
class ListAssetFilesResponse < Struct.new(
|
|
2574
|
+
:items,
|
|
2575
|
+
:next_token)
|
|
2576
|
+
SENSITIVE = []
|
|
2577
|
+
include Aws::Structure
|
|
2578
|
+
end
|
|
2579
|
+
|
|
2580
|
+
# Request structure for listing asset types
|
|
2581
|
+
#
|
|
2582
|
+
# @!attribute [rw] next_token
|
|
2583
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2584
|
+
# of results
|
|
2585
|
+
# @return [String]
|
|
2586
|
+
#
|
|
2587
|
+
# @!attribute [rw] max_results
|
|
2588
|
+
# The maximum number of results to return in a single response
|
|
2589
|
+
# @return [Integer]
|
|
2590
|
+
#
|
|
2591
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetTypesRequest AWS API Documentation
|
|
2592
|
+
#
|
|
2593
|
+
class ListAssetTypesRequest < Struct.new(
|
|
2594
|
+
:next_token,
|
|
2595
|
+
:max_results)
|
|
2596
|
+
SENSITIVE = []
|
|
2597
|
+
include Aws::Structure
|
|
2598
|
+
end
|
|
2599
|
+
|
|
2600
|
+
# Response structure for listing asset types
|
|
2601
|
+
#
|
|
2602
|
+
# @!attribute [rw] items
|
|
2603
|
+
# The list of supported asset types
|
|
2604
|
+
# @return [Array<Types::AssetTypeSummary>]
|
|
2605
|
+
#
|
|
2606
|
+
# @!attribute [rw] next_token
|
|
2607
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2608
|
+
# there are no more results.
|
|
2609
|
+
# @return [String]
|
|
2610
|
+
#
|
|
2611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetTypesResponse AWS API Documentation
|
|
2612
|
+
#
|
|
2613
|
+
class ListAssetTypesResponse < Struct.new(
|
|
2614
|
+
:items,
|
|
2615
|
+
:next_token)
|
|
2616
|
+
SENSITIVE = []
|
|
2617
|
+
include Aws::Structure
|
|
2618
|
+
end
|
|
2619
|
+
|
|
2620
|
+
# Request structure for listing asset versions
|
|
2621
|
+
#
|
|
2622
|
+
# @!attribute [rw] agent_space_id
|
|
2623
|
+
# The unique identifier for the agent space containing the asset
|
|
2624
|
+
# @return [String]
|
|
2625
|
+
#
|
|
2626
|
+
# @!attribute [rw] asset_id
|
|
2627
|
+
# The unique identifier of the asset whose versions to list
|
|
2628
|
+
# @return [String]
|
|
2629
|
+
#
|
|
2630
|
+
# @!attribute [rw] max_results
|
|
2631
|
+
# The maximum number of results to return in a single response
|
|
2632
|
+
# @return [Integer]
|
|
2633
|
+
#
|
|
2634
|
+
# @!attribute [rw] next_token
|
|
2635
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2636
|
+
# of results
|
|
2637
|
+
# @return [String]
|
|
2638
|
+
#
|
|
2639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetVersionsRequest AWS API Documentation
|
|
2640
|
+
#
|
|
2641
|
+
class ListAssetVersionsRequest < Struct.new(
|
|
2642
|
+
:agent_space_id,
|
|
2643
|
+
:asset_id,
|
|
2644
|
+
:max_results,
|
|
2645
|
+
:next_token)
|
|
2646
|
+
SENSITIVE = []
|
|
2647
|
+
include Aws::Structure
|
|
2648
|
+
end
|
|
2649
|
+
|
|
2650
|
+
# Response structure for listing asset versions
|
|
2651
|
+
#
|
|
2652
|
+
# @!attribute [rw] items
|
|
2653
|
+
# The list of version metadata for the asset
|
|
2654
|
+
# @return [Array<Types::AssetVersionMetadata>]
|
|
2655
|
+
#
|
|
2656
|
+
# @!attribute [rw] next_token
|
|
2657
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2658
|
+
# there are no more results.
|
|
2659
|
+
# @return [String]
|
|
2660
|
+
#
|
|
2661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetVersionsResponse AWS API Documentation
|
|
2662
|
+
#
|
|
2663
|
+
class ListAssetVersionsResponse < Struct.new(
|
|
2664
|
+
:items,
|
|
2665
|
+
:next_token)
|
|
2666
|
+
SENSITIVE = []
|
|
2667
|
+
include Aws::Structure
|
|
2668
|
+
end
|
|
2669
|
+
|
|
2670
|
+
# Request structure for listing assets
|
|
2671
|
+
#
|
|
2672
|
+
# @!attribute [rw] agent_space_id
|
|
2673
|
+
# The unique identifier for the agent space to list assets from
|
|
2674
|
+
# @return [String]
|
|
2675
|
+
#
|
|
2676
|
+
# @!attribute [rw] asset_type
|
|
2677
|
+
# Filter results to only assets of this type
|
|
2678
|
+
# @return [String]
|
|
2679
|
+
#
|
|
2680
|
+
# @!attribute [rw] updated_after
|
|
2681
|
+
# Filter results to only assets updated after this timestamp
|
|
2682
|
+
# @return [Time]
|
|
2683
|
+
#
|
|
2684
|
+
# @!attribute [rw] updated_before
|
|
2685
|
+
# Filter results to only assets updated before this timestamp
|
|
2686
|
+
# @return [Time]
|
|
2687
|
+
#
|
|
2688
|
+
# @!attribute [rw] next_token
|
|
2689
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2690
|
+
# of results
|
|
2691
|
+
# @return [String]
|
|
2692
|
+
#
|
|
2693
|
+
# @!attribute [rw] max_results
|
|
2694
|
+
# The maximum number of results to return in a single response
|
|
2695
|
+
# @return [Integer]
|
|
2696
|
+
#
|
|
2697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetsRequest AWS API Documentation
|
|
2698
|
+
#
|
|
2699
|
+
class ListAssetsRequest < Struct.new(
|
|
2700
|
+
:agent_space_id,
|
|
2701
|
+
:asset_type,
|
|
2702
|
+
:updated_after,
|
|
2703
|
+
:updated_before,
|
|
2704
|
+
:next_token,
|
|
2705
|
+
:max_results)
|
|
2706
|
+
SENSITIVE = []
|
|
2707
|
+
include Aws::Structure
|
|
2708
|
+
end
|
|
2709
|
+
|
|
2710
|
+
# Response structure for listing assets
|
|
2711
|
+
#
|
|
2712
|
+
# @!attribute [rw] items
|
|
2713
|
+
# The list of assets for the agent space
|
|
2714
|
+
# @return [Array<Types::Asset>]
|
|
2715
|
+
#
|
|
2716
|
+
# @!attribute [rw] next_token
|
|
2717
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2718
|
+
# there are no more results.
|
|
2719
|
+
# @return [String]
|
|
2720
|
+
#
|
|
2721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetsResponse AWS API Documentation
|
|
2722
|
+
#
|
|
2723
|
+
class ListAssetsResponse < Struct.new(
|
|
2724
|
+
:items,
|
|
2725
|
+
:next_token)
|
|
2726
|
+
SENSITIVE = []
|
|
2727
|
+
include Aws::Structure
|
|
2728
|
+
end
|
|
2729
|
+
|
|
1947
2730
|
# Input for listing service associations within an AgentSpace.
|
|
1948
2731
|
#
|
|
1949
2732
|
# @!attribute [rw] agent_space_id
|
|
@@ -2835,7 +3618,14 @@ module Aws::DevOpsAgent
|
|
|
2835
3618
|
# @return [String]
|
|
2836
3619
|
#
|
|
2837
3620
|
# @!attribute [rw] role_arn
|
|
2838
|
-
# IAM role ARN to assume for
|
|
3621
|
+
# Deprecated — use mcpRoleArn instead. IAM role ARN to assume for
|
|
3622
|
+
# SigV4 signing.
|
|
3623
|
+
# @return [String]
|
|
3624
|
+
#
|
|
3625
|
+
# @!attribute [rw] mcp_role_arn
|
|
3626
|
+
# IAM role ARN to assume for SigV4 signing. Optional — when omitted,
|
|
3627
|
+
# credentials are resolved at runtime via a monitor account
|
|
3628
|
+
# association.
|
|
2839
3629
|
# @return [String]
|
|
2840
3630
|
#
|
|
2841
3631
|
# @!attribute [rw] custom_headers
|
|
@@ -2848,6 +3638,7 @@ module Aws::DevOpsAgent
|
|
|
2848
3638
|
:region,
|
|
2849
3639
|
:service,
|
|
2850
3640
|
:role_arn,
|
|
3641
|
+
:mcp_role_arn,
|
|
2851
3642
|
:custom_headers)
|
|
2852
3643
|
SENSITIVE = [:custom_headers]
|
|
2853
3644
|
include Aws::Structure
|
|
@@ -3194,6 +3985,15 @@ module Aws::DevOpsAgent
|
|
|
3194
3985
|
# Connection. Only present when a certificate is associated.
|
|
3195
3986
|
# @return [Time]
|
|
3196
3987
|
#
|
|
3988
|
+
# @!attribute [rw] dns_resolution
|
|
3989
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
3990
|
+
# @return [String]
|
|
3991
|
+
#
|
|
3992
|
+
# @!attribute [rw] failure_message
|
|
3993
|
+
# Message describing the reason for a failed Private Connection, if
|
|
3994
|
+
# applicable.
|
|
3995
|
+
# @return [String]
|
|
3996
|
+
#
|
|
3197
3997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/PrivateConnectionSummary AWS API Documentation
|
|
3198
3998
|
#
|
|
3199
3999
|
class PrivateConnectionSummary < Struct.new(
|
|
@@ -3204,7 +4004,9 @@ module Aws::DevOpsAgent
|
|
|
3204
4004
|
:vpc_id,
|
|
3205
4005
|
:resource_configuration_id,
|
|
3206
4006
|
:status,
|
|
3207
|
-
:certificate_expiry_time
|
|
4007
|
+
:certificate_expiry_time,
|
|
4008
|
+
:dns_resolution,
|
|
4009
|
+
:failure_message)
|
|
3208
4010
|
SENSITIVE = []
|
|
3209
4011
|
include Aws::Structure
|
|
3210
4012
|
end
|
|
@@ -3402,6 +4204,17 @@ module Aws::DevOpsAgent
|
|
|
3402
4204
|
# The name of the private connection to use for VPC connectivity.
|
|
3403
4205
|
# @return [String]
|
|
3404
4206
|
#
|
|
4207
|
+
# @!attribute [rw] target_url_private_connection_name
|
|
4208
|
+
# The name of the private connection to use for API calls (target URL)
|
|
4209
|
+
# only. Cannot be specified when privateConnectionName is provided.
|
|
4210
|
+
# @return [String]
|
|
4211
|
+
#
|
|
4212
|
+
# @!attribute [rw] exchange_url_private_connection_name
|
|
4213
|
+
# The name of the private connection to use for OAuth token exchange
|
|
4214
|
+
# requests only. Cannot be specified when privateConnectionName is
|
|
4215
|
+
# provided.
|
|
4216
|
+
# @return [String]
|
|
4217
|
+
#
|
|
3405
4218
|
# @!attribute [rw] name
|
|
3406
4219
|
# The display name for the service registration.
|
|
3407
4220
|
# @return [String]
|
|
@@ -3417,6 +4230,8 @@ module Aws::DevOpsAgent
|
|
|
3417
4230
|
:service_details,
|
|
3418
4231
|
:kms_key_arn,
|
|
3419
4232
|
:private_connection_name,
|
|
4233
|
+
:target_url_private_connection_name,
|
|
4234
|
+
:exchange_url_private_connection_name,
|
|
3420
4235
|
:name,
|
|
3421
4236
|
:tags)
|
|
3422
4237
|
SENSITIVE = []
|
|
@@ -3632,6 +4447,10 @@ module Aws::DevOpsAgent
|
|
|
3632
4447
|
# IAM role ARN to assume for SigV4 signing.
|
|
3633
4448
|
# @return [String]
|
|
3634
4449
|
#
|
|
4450
|
+
# @!attribute [rw] mcp_role_arn
|
|
4451
|
+
# AWS IAM role ARN.
|
|
4452
|
+
# @return [String]
|
|
4453
|
+
#
|
|
3635
4454
|
# @!attribute [rw] custom_headers
|
|
3636
4455
|
# Custom headers for the SigV4 MCP server.
|
|
3637
4456
|
# @return [Hash<String,String>]
|
|
@@ -3645,6 +4464,7 @@ module Aws::DevOpsAgent
|
|
|
3645
4464
|
:region,
|
|
3646
4465
|
:service,
|
|
3647
4466
|
:role_arn,
|
|
4467
|
+
:mcp_role_arn,
|
|
3648
4468
|
:custom_headers)
|
|
3649
4469
|
SENSITIVE = [:description, :custom_headers]
|
|
3650
4470
|
include Aws::Structure
|
|
@@ -3995,6 +4815,10 @@ module Aws::DevOpsAgent
|
|
|
3995
4815
|
# service resolves user identity from the authenticated session.
|
|
3996
4816
|
# @return [String]
|
|
3997
4817
|
#
|
|
4818
|
+
# @!attribute [rw] asset_ids
|
|
4819
|
+
# Optional list of asset identifiers to attach to the message
|
|
4820
|
+
# @return [Array<String>]
|
|
4821
|
+
#
|
|
3998
4822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SendMessageRequest AWS API Documentation
|
|
3999
4823
|
#
|
|
4000
4824
|
class SendMessageRequest < Struct.new(
|
|
@@ -4002,7 +4826,8 @@ module Aws::DevOpsAgent
|
|
|
4002
4826
|
:execution_id,
|
|
4003
4827
|
:content,
|
|
4004
4828
|
:context,
|
|
4005
|
-
:user_id
|
|
4829
|
+
:user_id,
|
|
4830
|
+
:asset_ids)
|
|
4006
4831
|
SENSITIVE = []
|
|
4007
4832
|
include Aws::Structure
|
|
4008
4833
|
end
|
|
@@ -4419,6 +5244,11 @@ module Aws::DevOpsAgent
|
|
|
4419
5244
|
# Certificate for the Private Connection.
|
|
4420
5245
|
# @return [String]
|
|
4421
5246
|
#
|
|
5247
|
+
# @!attribute [rw] dns_resolution
|
|
5248
|
+
# DNS resolution mode for the resource gateway. Defaults to PUBLIC
|
|
5249
|
+
# when not set.
|
|
5250
|
+
# @return [String]
|
|
5251
|
+
#
|
|
4422
5252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceManagedInput AWS API Documentation
|
|
4423
5253
|
#
|
|
4424
5254
|
class ServiceManagedInput < Struct.new(
|
|
@@ -4429,7 +5259,8 @@ module Aws::DevOpsAgent
|
|
|
4429
5259
|
:ip_address_type,
|
|
4430
5260
|
:ipv4_addresses_per_eni,
|
|
4431
5261
|
:port_ranges,
|
|
4432
|
-
:certificate
|
|
5262
|
+
:certificate,
|
|
5263
|
+
:dns_resolution)
|
|
4433
5264
|
SENSITIVE = []
|
|
4434
5265
|
include Aws::Structure
|
|
4435
5266
|
end
|
|
@@ -4868,6 +5699,117 @@ module Aws::DevOpsAgent
|
|
|
4868
5699
|
include Aws::Structure
|
|
4869
5700
|
end
|
|
4870
5701
|
|
|
5702
|
+
# Request structure for updating an asset file
|
|
5703
|
+
#
|
|
5704
|
+
# @!attribute [rw] agent_space_id
|
|
5705
|
+
# The unique identifier for the agent space containing the asset
|
|
5706
|
+
# @return [String]
|
|
5707
|
+
#
|
|
5708
|
+
# @!attribute [rw] asset_id
|
|
5709
|
+
# The unique identifier of the asset containing the file
|
|
5710
|
+
# @return [String]
|
|
5711
|
+
#
|
|
5712
|
+
# @!attribute [rw] path
|
|
5713
|
+
# The path of the file within the asset to update
|
|
5714
|
+
# @return [String]
|
|
5715
|
+
#
|
|
5716
|
+
# @!attribute [rw] content
|
|
5717
|
+
# Updated file content. If omitted, the existing content is unchanged.
|
|
5718
|
+
# @return [Types::AssetFileBody]
|
|
5719
|
+
#
|
|
5720
|
+
# @!attribute [rw] metadata
|
|
5721
|
+
# Metadata fields to update. Only the fields present in this document
|
|
5722
|
+
# are updated. Omitted fields retain their current values.
|
|
5723
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5724
|
+
#
|
|
5725
|
+
# @!attribute [rw] client_token
|
|
5726
|
+
# A unique, case-sensitive identifier used for idempotent asset file
|
|
5727
|
+
# update
|
|
5728
|
+
#
|
|
5729
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5730
|
+
# not need to pass this option.
|
|
5731
|
+
# @return [String]
|
|
5732
|
+
#
|
|
5733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetFileRequest AWS API Documentation
|
|
5734
|
+
#
|
|
5735
|
+
class UpdateAssetFileRequest < Struct.new(
|
|
5736
|
+
:agent_space_id,
|
|
5737
|
+
:asset_id,
|
|
5738
|
+
:path,
|
|
5739
|
+
:content,
|
|
5740
|
+
:metadata,
|
|
5741
|
+
:client_token)
|
|
5742
|
+
SENSITIVE = []
|
|
5743
|
+
include Aws::Structure
|
|
5744
|
+
end
|
|
5745
|
+
|
|
5746
|
+
# Response structure for updating an asset file
|
|
5747
|
+
#
|
|
5748
|
+
# @!attribute [rw] file
|
|
5749
|
+
# The asset file object
|
|
5750
|
+
# @return [Types::AssetFile]
|
|
5751
|
+
#
|
|
5752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetFileResponse AWS API Documentation
|
|
5753
|
+
#
|
|
5754
|
+
class UpdateAssetFileResponse < Struct.new(
|
|
5755
|
+
:file)
|
|
5756
|
+
SENSITIVE = []
|
|
5757
|
+
include Aws::Structure
|
|
5758
|
+
end
|
|
5759
|
+
|
|
5760
|
+
# Request structure for updating an asset
|
|
5761
|
+
#
|
|
5762
|
+
# @!attribute [rw] agent_space_id
|
|
5763
|
+
# The unique identifier for the agent space containing the asset
|
|
5764
|
+
# @return [String]
|
|
5765
|
+
#
|
|
5766
|
+
# @!attribute [rw] asset_id
|
|
5767
|
+
# The unique identifier of the asset to update
|
|
5768
|
+
# @return [String]
|
|
5769
|
+
#
|
|
5770
|
+
# @!attribute [rw] metadata
|
|
5771
|
+
# Metadata fields to update. Only the fields present in this document
|
|
5772
|
+
# are updated. Omitted fields retain their current values.
|
|
5773
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5774
|
+
#
|
|
5775
|
+
# @!attribute [rw] content
|
|
5776
|
+
# Optional content to set or replace. A single file adds or replaces
|
|
5777
|
+
# one file; a zip replaces all files.
|
|
5778
|
+
# @return [Types::AssetContent]
|
|
5779
|
+
#
|
|
5780
|
+
# @!attribute [rw] client_token
|
|
5781
|
+
# A unique, case-sensitive identifier used for idempotent asset update
|
|
5782
|
+
#
|
|
5783
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5784
|
+
# not need to pass this option.
|
|
5785
|
+
# @return [String]
|
|
5786
|
+
#
|
|
5787
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetRequest AWS API Documentation
|
|
5788
|
+
#
|
|
5789
|
+
class UpdateAssetRequest < Struct.new(
|
|
5790
|
+
:agent_space_id,
|
|
5791
|
+
:asset_id,
|
|
5792
|
+
:metadata,
|
|
5793
|
+
:content,
|
|
5794
|
+
:client_token)
|
|
5795
|
+
SENSITIVE = []
|
|
5796
|
+
include Aws::Structure
|
|
5797
|
+
end
|
|
5798
|
+
|
|
5799
|
+
# Response structure for updating an asset
|
|
5800
|
+
#
|
|
5801
|
+
# @!attribute [rw] asset
|
|
5802
|
+
# The asset object
|
|
5803
|
+
# @return [Types::Asset]
|
|
5804
|
+
#
|
|
5805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetResponse AWS API Documentation
|
|
5806
|
+
#
|
|
5807
|
+
class UpdateAssetResponse < Struct.new(
|
|
5808
|
+
:asset)
|
|
5809
|
+
SENSITIVE = []
|
|
5810
|
+
include Aws::Structure
|
|
5811
|
+
end
|
|
5812
|
+
|
|
4871
5813
|
# Input for updating an existing service association. Present fields are
|
|
4872
5814
|
# fully replaced; absent fields are left unchanged.
|
|
4873
5815
|
#
|
|
@@ -5105,6 +6047,15 @@ module Aws::DevOpsAgent
|
|
|
5105
6047
|
# Connection. Only present when a certificate is associated.
|
|
5106
6048
|
# @return [Time]
|
|
5107
6049
|
#
|
|
6050
|
+
# @!attribute [rw] dns_resolution
|
|
6051
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
6052
|
+
# @return [String]
|
|
6053
|
+
#
|
|
6054
|
+
# @!attribute [rw] failure_message
|
|
6055
|
+
# Message describing the reason for a failed Private Connection
|
|
6056
|
+
# update, if applicable.
|
|
6057
|
+
# @return [String]
|
|
6058
|
+
#
|
|
5108
6059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdatePrivateConnectionCertificateOutput AWS API Documentation
|
|
5109
6060
|
#
|
|
5110
6061
|
class UpdatePrivateConnectionCertificateOutput < Struct.new(
|
|
@@ -5115,7 +6066,9 @@ module Aws::DevOpsAgent
|
|
|
5115
6066
|
:vpc_id,
|
|
5116
6067
|
:resource_configuration_id,
|
|
5117
6068
|
:status,
|
|
5118
|
-
:certificate_expiry_time
|
|
6069
|
+
:certificate_expiry_time,
|
|
6070
|
+
:dns_resolution,
|
|
6071
|
+
:failure_message)
|
|
5119
6072
|
SENSITIVE = []
|
|
5120
6073
|
include Aws::Structure
|
|
5121
6074
|
end
|
|
@@ -5176,7 +6129,8 @@ module Aws::DevOpsAgent
|
|
|
5176
6129
|
# value.
|
|
5177
6130
|
#
|
|
5178
6131
|
# @!attribute [rw] limit
|
|
5179
|
-
# Configured limit for this metric.
|
|
6132
|
+
# Configured limit for this metric. A value of -1 indicates no limit
|
|
6133
|
+
# is enforced.
|
|
5180
6134
|
# @return [Integer]
|
|
5181
6135
|
#
|
|
5182
6136
|
# @!attribute [rw] usage
|