aws-sdk-devopsagent 1.7.0 → 1.9.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 +960 -25
- data/lib/aws-sdk-devopsagent/client_api.rb +761 -26
- data/lib/aws-sdk-devopsagent/types.rb +1283 -42
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +270 -5
- data/sig/params.rbs +17 -0
- data/sig/types.rbs +363 -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,11 +1049,67 @@ 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
|
|
683
1057
|
end
|
|
684
1058
|
|
|
1059
|
+
# @!attribute [rw] agent_space_id
|
|
1060
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
1061
|
+
# and hyphens; 1-64 characters)
|
|
1062
|
+
# @return [String]
|
|
1063
|
+
#
|
|
1064
|
+
# @!attribute [rw] type
|
|
1065
|
+
# How the new Trigger fires
|
|
1066
|
+
# @return [String]
|
|
1067
|
+
#
|
|
1068
|
+
# @!attribute [rw] condition
|
|
1069
|
+
# The condition that fires the new Trigger
|
|
1070
|
+
# @return [Types::TriggerCondition]
|
|
1071
|
+
#
|
|
1072
|
+
# @!attribute [rw] action
|
|
1073
|
+
# The action the new Trigger performs when it fires
|
|
1074
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
1075
|
+
#
|
|
1076
|
+
# @!attribute [rw] status
|
|
1077
|
+
# The initial status of the Trigger
|
|
1078
|
+
# @return [String]
|
|
1079
|
+
#
|
|
1080
|
+
# @!attribute [rw] client_token
|
|
1081
|
+
# A unique, case-sensitive identifier used for idempotent Trigger
|
|
1082
|
+
# creation
|
|
1083
|
+
#
|
|
1084
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
1085
|
+
# not need to pass this option.
|
|
1086
|
+
# @return [String]
|
|
1087
|
+
#
|
|
1088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateTriggerRequest AWS API Documentation
|
|
1089
|
+
#
|
|
1090
|
+
class CreateTriggerRequest < Struct.new(
|
|
1091
|
+
:agent_space_id,
|
|
1092
|
+
:type,
|
|
1093
|
+
:condition,
|
|
1094
|
+
:action,
|
|
1095
|
+
:status,
|
|
1096
|
+
:client_token)
|
|
1097
|
+
SENSITIVE = []
|
|
1098
|
+
include Aws::Structure
|
|
1099
|
+
end
|
|
1100
|
+
|
|
1101
|
+
# @!attribute [rw] trigger
|
|
1102
|
+
# The Trigger object
|
|
1103
|
+
# @return [Types::Trigger]
|
|
1104
|
+
#
|
|
1105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/CreateTriggerResponse AWS API Documentation
|
|
1106
|
+
#
|
|
1107
|
+
class CreateTriggerResponse < Struct.new(
|
|
1108
|
+
:trigger)
|
|
1109
|
+
SENSITIVE = []
|
|
1110
|
+
include Aws::Structure
|
|
1111
|
+
end
|
|
1112
|
+
|
|
685
1113
|
# Authorization configuration for Datadog MCP server (uses authorization
|
|
686
1114
|
# discovery only).
|
|
687
1115
|
#
|
|
@@ -718,41 +1146,96 @@ module Aws::DevOpsAgent
|
|
|
718
1146
|
# Optional description for the MCP server.
|
|
719
1147
|
# @return [String]
|
|
720
1148
|
#
|
|
721
|
-
# @!attribute [rw] authorization_config
|
|
722
|
-
# Datadog MCP server authorization configuration (only authorization
|
|
723
|
-
# discovery is supported).
|
|
724
|
-
# @return [Types::DatadogAuthorizationConfig]
|
|
1149
|
+
# @!attribute [rw] authorization_config
|
|
1150
|
+
# Datadog MCP server authorization configuration (only authorization
|
|
1151
|
+
# discovery is supported).
|
|
1152
|
+
# @return [Types::DatadogAuthorizationConfig]
|
|
1153
|
+
#
|
|
1154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DatadogServiceDetails AWS API Documentation
|
|
1155
|
+
#
|
|
1156
|
+
class DatadogServiceDetails < Struct.new(
|
|
1157
|
+
:name,
|
|
1158
|
+
:endpoint,
|
|
1159
|
+
:description,
|
|
1160
|
+
:authorization_config)
|
|
1161
|
+
SENSITIVE = [:description]
|
|
1162
|
+
include Aws::Structure
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1165
|
+
# Input for deleting an AgentSpace.
|
|
1166
|
+
#
|
|
1167
|
+
# @!attribute [rw] agent_space_id
|
|
1168
|
+
# The unique identifier of the AgentSpace
|
|
1169
|
+
# @return [String]
|
|
1170
|
+
#
|
|
1171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAgentSpaceInput AWS API Documentation
|
|
1172
|
+
#
|
|
1173
|
+
class DeleteAgentSpaceInput < Struct.new(
|
|
1174
|
+
:agent_space_id)
|
|
1175
|
+
SENSITIVE = []
|
|
1176
|
+
include Aws::Structure
|
|
1177
|
+
end
|
|
1178
|
+
|
|
1179
|
+
# Empty output for successful AgentSpace deletion.
|
|
1180
|
+
#
|
|
1181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAgentSpaceOutput AWS API Documentation
|
|
1182
|
+
#
|
|
1183
|
+
class DeleteAgentSpaceOutput < Aws::EmptyStructure; end
|
|
1184
|
+
|
|
1185
|
+
# Request structure for deleting an asset file
|
|
1186
|
+
#
|
|
1187
|
+
# @!attribute [rw] agent_space_id
|
|
1188
|
+
# The unique identifier for the agent space containing the asset
|
|
1189
|
+
# @return [String]
|
|
1190
|
+
#
|
|
1191
|
+
# @!attribute [rw] asset_id
|
|
1192
|
+
# The unique identifier of the asset containing the file
|
|
1193
|
+
# @return [String]
|
|
1194
|
+
#
|
|
1195
|
+
# @!attribute [rw] path
|
|
1196
|
+
# The path of the file within the asset to delete
|
|
1197
|
+
# @return [String]
|
|
725
1198
|
#
|
|
726
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
1199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetFileRequest AWS API Documentation
|
|
727
1200
|
#
|
|
728
|
-
class
|
|
729
|
-
:
|
|
730
|
-
:
|
|
731
|
-
:
|
|
732
|
-
|
|
733
|
-
SENSITIVE = [:description]
|
|
1201
|
+
class DeleteAssetFileRequest < Struct.new(
|
|
1202
|
+
:agent_space_id,
|
|
1203
|
+
:asset_id,
|
|
1204
|
+
:path)
|
|
1205
|
+
SENSITIVE = []
|
|
734
1206
|
include Aws::Structure
|
|
735
1207
|
end
|
|
736
1208
|
|
|
737
|
-
#
|
|
1209
|
+
# Response structure for deleting an asset file
|
|
1210
|
+
#
|
|
1211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetFileResponse AWS API Documentation
|
|
1212
|
+
#
|
|
1213
|
+
class DeleteAssetFileResponse < Aws::EmptyStructure; end
|
|
1214
|
+
|
|
1215
|
+
# Request structure for deleting an asset
|
|
738
1216
|
#
|
|
739
1217
|
# @!attribute [rw] agent_space_id
|
|
740
|
-
# The unique identifier
|
|
1218
|
+
# The unique identifier for the agent space containing the asset
|
|
741
1219
|
# @return [String]
|
|
742
1220
|
#
|
|
743
|
-
#
|
|
1221
|
+
# @!attribute [rw] asset_id
|
|
1222
|
+
# The unique identifier of the asset to delete
|
|
1223
|
+
# @return [String]
|
|
744
1224
|
#
|
|
745
|
-
|
|
746
|
-
|
|
1225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetRequest AWS API Documentation
|
|
1226
|
+
#
|
|
1227
|
+
class DeleteAssetRequest < Struct.new(
|
|
1228
|
+
:agent_space_id,
|
|
1229
|
+
:asset_id)
|
|
747
1230
|
SENSITIVE = []
|
|
748
1231
|
include Aws::Structure
|
|
749
1232
|
end
|
|
750
1233
|
|
|
751
|
-
#
|
|
1234
|
+
# Response structure for deleting an asset
|
|
752
1235
|
#
|
|
753
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
1236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteAssetResponse AWS API Documentation
|
|
754
1237
|
#
|
|
755
|
-
class
|
|
1238
|
+
class DeleteAssetResponse < Aws::EmptyStructure; end
|
|
756
1239
|
|
|
757
1240
|
# Input for deleting an existing Private Connection.
|
|
758
1241
|
#
|
|
@@ -787,6 +1270,29 @@ module Aws::DevOpsAgent
|
|
|
787
1270
|
include Aws::Structure
|
|
788
1271
|
end
|
|
789
1272
|
|
|
1273
|
+
# @!attribute [rw] agent_space_id
|
|
1274
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
1275
|
+
# and hyphens; 1-64 characters)
|
|
1276
|
+
# @return [String]
|
|
1277
|
+
#
|
|
1278
|
+
# @!attribute [rw] trigger_id
|
|
1279
|
+
# Generic resource identifier (allows alphanumeric characters,
|
|
1280
|
+
# hyphens, and underscores; 1-128 characters)
|
|
1281
|
+
# @return [String]
|
|
1282
|
+
#
|
|
1283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerRequest AWS API Documentation
|
|
1284
|
+
#
|
|
1285
|
+
class DeleteTriggerRequest < Struct.new(
|
|
1286
|
+
:agent_space_id,
|
|
1287
|
+
:trigger_id)
|
|
1288
|
+
SENSITIVE = []
|
|
1289
|
+
include Aws::Structure
|
|
1290
|
+
end
|
|
1291
|
+
|
|
1292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DeleteTriggerResponse AWS API Documentation
|
|
1293
|
+
#
|
|
1294
|
+
class DeleteTriggerResponse < Aws::EmptyStructure; end
|
|
1295
|
+
|
|
790
1296
|
# Input for deregistering a service.
|
|
791
1297
|
#
|
|
792
1298
|
# @!attribute [rw] service_id
|
|
@@ -861,6 +1367,15 @@ module Aws::DevOpsAgent
|
|
|
861
1367
|
# Connection. Only present when a certificate is associated.
|
|
862
1368
|
# @return [Time]
|
|
863
1369
|
#
|
|
1370
|
+
# @!attribute [rw] dns_resolution
|
|
1371
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
1372
|
+
# @return [String]
|
|
1373
|
+
#
|
|
1374
|
+
# @!attribute [rw] failure_message
|
|
1375
|
+
# Message describing the reason for a failed Private Connection, if
|
|
1376
|
+
# applicable.
|
|
1377
|
+
# @return [String]
|
|
1378
|
+
#
|
|
864
1379
|
# @!attribute [rw] tags
|
|
865
1380
|
# Tags associated with the Private Connection.
|
|
866
1381
|
# @return [Hash<String,String>]
|
|
@@ -876,6 +1391,8 @@ module Aws::DevOpsAgent
|
|
|
876
1391
|
:resource_configuration_id,
|
|
877
1392
|
:status,
|
|
878
1393
|
:certificate_expiry_time,
|
|
1394
|
+
:dns_resolution,
|
|
1395
|
+
:failure_message,
|
|
879
1396
|
:tags)
|
|
880
1397
|
SENSITIVE = []
|
|
881
1398
|
include Aws::Structure
|
|
@@ -1070,6 +1587,10 @@ module Aws::DevOpsAgent
|
|
|
1070
1587
|
# The unique identifier of the AgentSpace
|
|
1071
1588
|
# @return [String]
|
|
1072
1589
|
#
|
|
1590
|
+
# @!attribute [rw] operator_app_url
|
|
1591
|
+
# The URL for operators to access the Operator App
|
|
1592
|
+
# @return [String]
|
|
1593
|
+
#
|
|
1073
1594
|
# @!attribute [rw] iam
|
|
1074
1595
|
# Configuration for IAM-based authentication flow for the Operator
|
|
1075
1596
|
# App.
|
|
@@ -1089,6 +1610,7 @@ module Aws::DevOpsAgent
|
|
|
1089
1610
|
#
|
|
1090
1611
|
class EnableOperatorAppOutput < Struct.new(
|
|
1091
1612
|
:agent_space_id,
|
|
1613
|
+
:operator_app_url,
|
|
1092
1614
|
:iam,
|
|
1093
1615
|
:idc,
|
|
1094
1616
|
:idp)
|
|
@@ -1285,6 +1807,133 @@ module Aws::DevOpsAgent
|
|
|
1285
1807
|
include Aws::Structure
|
|
1286
1808
|
end
|
|
1287
1809
|
|
|
1810
|
+
# Request structure for getting an asset's content as a zip bundle
|
|
1811
|
+
#
|
|
1812
|
+
# @!attribute [rw] agent_space_id
|
|
1813
|
+
# The unique identifier for the agent space containing the asset
|
|
1814
|
+
# @return [String]
|
|
1815
|
+
#
|
|
1816
|
+
# @!attribute [rw] asset_id
|
|
1817
|
+
# The unique identifier of the asset
|
|
1818
|
+
# @return [String]
|
|
1819
|
+
#
|
|
1820
|
+
# @!attribute [rw] asset_version
|
|
1821
|
+
# The specific asset version to export. If omitted, the latest version
|
|
1822
|
+
# is returned.
|
|
1823
|
+
# @return [Integer]
|
|
1824
|
+
#
|
|
1825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetContentRequest AWS API Documentation
|
|
1826
|
+
#
|
|
1827
|
+
class GetAssetContentRequest < Struct.new(
|
|
1828
|
+
:agent_space_id,
|
|
1829
|
+
:asset_id,
|
|
1830
|
+
:asset_version)
|
|
1831
|
+
SENSITIVE = []
|
|
1832
|
+
include Aws::Structure
|
|
1833
|
+
end
|
|
1834
|
+
|
|
1835
|
+
# Response structure for getting an asset's content as a zip bundle
|
|
1836
|
+
#
|
|
1837
|
+
# @!attribute [rw] content
|
|
1838
|
+
# The asset content as a zip file
|
|
1839
|
+
# @return [Types::AssetZipContent]
|
|
1840
|
+
#
|
|
1841
|
+
# @!attribute [rw] version
|
|
1842
|
+
# The asset version this content belongs to
|
|
1843
|
+
# @return [Integer]
|
|
1844
|
+
#
|
|
1845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetContentResponse AWS API Documentation
|
|
1846
|
+
#
|
|
1847
|
+
class GetAssetContentResponse < Struct.new(
|
|
1848
|
+
:content,
|
|
1849
|
+
:version)
|
|
1850
|
+
SENSITIVE = []
|
|
1851
|
+
include Aws::Structure
|
|
1852
|
+
end
|
|
1853
|
+
|
|
1854
|
+
# Request structure for getting an asset file
|
|
1855
|
+
#
|
|
1856
|
+
# @!attribute [rw] agent_space_id
|
|
1857
|
+
# The unique identifier for the agent space containing the asset
|
|
1858
|
+
# @return [String]
|
|
1859
|
+
#
|
|
1860
|
+
# @!attribute [rw] asset_id
|
|
1861
|
+
# The unique identifier of the asset containing the file
|
|
1862
|
+
# @return [String]
|
|
1863
|
+
#
|
|
1864
|
+
# @!attribute [rw] path
|
|
1865
|
+
# The path of the file within the asset to retrieve
|
|
1866
|
+
# @return [String]
|
|
1867
|
+
#
|
|
1868
|
+
# @!attribute [rw] asset_version
|
|
1869
|
+
# The specific asset version to retrieve the file from. If omitted,
|
|
1870
|
+
# the latest version is returned.
|
|
1871
|
+
# @return [Integer]
|
|
1872
|
+
#
|
|
1873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetFileRequest AWS API Documentation
|
|
1874
|
+
#
|
|
1875
|
+
class GetAssetFileRequest < Struct.new(
|
|
1876
|
+
:agent_space_id,
|
|
1877
|
+
:asset_id,
|
|
1878
|
+
:path,
|
|
1879
|
+
:asset_version)
|
|
1880
|
+
SENSITIVE = []
|
|
1881
|
+
include Aws::Structure
|
|
1882
|
+
end
|
|
1883
|
+
|
|
1884
|
+
# Response structure for getting an asset file
|
|
1885
|
+
#
|
|
1886
|
+
# @!attribute [rw] file
|
|
1887
|
+
# The asset file object
|
|
1888
|
+
# @return [Types::AssetFile]
|
|
1889
|
+
#
|
|
1890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetFileResponse AWS API Documentation
|
|
1891
|
+
#
|
|
1892
|
+
class GetAssetFileResponse < Struct.new(
|
|
1893
|
+
:file)
|
|
1894
|
+
SENSITIVE = []
|
|
1895
|
+
include Aws::Structure
|
|
1896
|
+
end
|
|
1897
|
+
|
|
1898
|
+
# Request structure for getting an asset
|
|
1899
|
+
#
|
|
1900
|
+
# @!attribute [rw] agent_space_id
|
|
1901
|
+
# The unique identifier for the agent space containing the asset
|
|
1902
|
+
# @return [String]
|
|
1903
|
+
#
|
|
1904
|
+
# @!attribute [rw] asset_id
|
|
1905
|
+
# The unique identifier of the asset to retrieve
|
|
1906
|
+
# @return [String]
|
|
1907
|
+
#
|
|
1908
|
+
# @!attribute [rw] asset_version
|
|
1909
|
+
# The specific version of the asset to retrieve. If omitted, the
|
|
1910
|
+
# latest version is returned.
|
|
1911
|
+
# @return [Integer]
|
|
1912
|
+
#
|
|
1913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetRequest AWS API Documentation
|
|
1914
|
+
#
|
|
1915
|
+
class GetAssetRequest < Struct.new(
|
|
1916
|
+
:agent_space_id,
|
|
1917
|
+
:asset_id,
|
|
1918
|
+
:asset_version)
|
|
1919
|
+
SENSITIVE = []
|
|
1920
|
+
include Aws::Structure
|
|
1921
|
+
end
|
|
1922
|
+
|
|
1923
|
+
# Response structure for getting an asset
|
|
1924
|
+
#
|
|
1925
|
+
# @!attribute [rw] asset
|
|
1926
|
+
# The asset object
|
|
1927
|
+
# @return [Types::Asset]
|
|
1928
|
+
#
|
|
1929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssetResponse AWS API Documentation
|
|
1930
|
+
#
|
|
1931
|
+
class GetAssetResponse < Struct.new(
|
|
1932
|
+
:asset)
|
|
1933
|
+
SENSITIVE = []
|
|
1934
|
+
include Aws::Structure
|
|
1935
|
+
end
|
|
1936
|
+
|
|
1288
1937
|
# Input for retrieving a specific service association.
|
|
1289
1938
|
#
|
|
1290
1939
|
# @!attribute [rw] agent_space_id
|
|
@@ -1369,6 +2018,10 @@ module Aws::DevOpsAgent
|
|
|
1369
2018
|
# Output containing the Operator App configuration including
|
|
1370
2019
|
# authentication details.
|
|
1371
2020
|
#
|
|
2021
|
+
# @!attribute [rw] operator_app_url
|
|
2022
|
+
# The URL for operators to access the Operator App
|
|
2023
|
+
# @return [String]
|
|
2024
|
+
#
|
|
1372
2025
|
# @!attribute [rw] iam
|
|
1373
2026
|
# Configuration for IAM-based authentication flow for the Operator
|
|
1374
2027
|
# App.
|
|
@@ -1387,6 +2040,7 @@ module Aws::DevOpsAgent
|
|
|
1387
2040
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetOperatorAppOutput AWS API Documentation
|
|
1388
2041
|
#
|
|
1389
2042
|
class GetOperatorAppOutput < Struct.new(
|
|
2043
|
+
:operator_app_url,
|
|
1390
2044
|
:iam,
|
|
1391
2045
|
:idc,
|
|
1392
2046
|
:idp)
|
|
@@ -1468,6 +2122,37 @@ module Aws::DevOpsAgent
|
|
|
1468
2122
|
include Aws::Structure
|
|
1469
2123
|
end
|
|
1470
2124
|
|
|
2125
|
+
# @!attribute [rw] agent_space_id
|
|
2126
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
2127
|
+
# and hyphens; 1-64 characters)
|
|
2128
|
+
# @return [String]
|
|
2129
|
+
#
|
|
2130
|
+
# @!attribute [rw] trigger_id
|
|
2131
|
+
# Generic resource identifier (allows alphanumeric characters,
|
|
2132
|
+
# hyphens, and underscores; 1-128 characters)
|
|
2133
|
+
# @return [String]
|
|
2134
|
+
#
|
|
2135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetTriggerRequest AWS API Documentation
|
|
2136
|
+
#
|
|
2137
|
+
class GetTriggerRequest < Struct.new(
|
|
2138
|
+
:agent_space_id,
|
|
2139
|
+
:trigger_id)
|
|
2140
|
+
SENSITIVE = []
|
|
2141
|
+
include Aws::Structure
|
|
2142
|
+
end
|
|
2143
|
+
|
|
2144
|
+
# @!attribute [rw] trigger
|
|
2145
|
+
# The Trigger object
|
|
2146
|
+
# @return [Types::Trigger]
|
|
2147
|
+
#
|
|
2148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetTriggerResponse AWS API Documentation
|
|
2149
|
+
#
|
|
2150
|
+
class GetTriggerResponse < Struct.new(
|
|
2151
|
+
:trigger)
|
|
2152
|
+
SENSITIVE = []
|
|
2153
|
+
include Aws::Structure
|
|
2154
|
+
end
|
|
2155
|
+
|
|
1471
2156
|
# Configuration for GitHub repository integration.
|
|
1472
2157
|
#
|
|
1473
2158
|
# @!attribute [rw] repo_name
|
|
@@ -1905,41 +2590,247 @@ module Aws::DevOpsAgent
|
|
|
1905
2590
|
include Aws::Structure
|
|
1906
2591
|
end
|
|
1907
2592
|
|
|
1908
|
-
# Input for listing AgentSpaces with pagination support.
|
|
2593
|
+
# Input for listing AgentSpaces with pagination support.
|
|
2594
|
+
#
|
|
2595
|
+
# @!attribute [rw] max_results
|
|
2596
|
+
# Maximum number of results to return in a single call.
|
|
2597
|
+
# @return [Integer]
|
|
2598
|
+
#
|
|
2599
|
+
# @!attribute [rw] next_token
|
|
2600
|
+
# Token for the next page of results.
|
|
2601
|
+
# @return [String]
|
|
2602
|
+
#
|
|
2603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAgentSpacesInput AWS API Documentation
|
|
2604
|
+
#
|
|
2605
|
+
class ListAgentSpacesInput < Struct.new(
|
|
2606
|
+
:max_results,
|
|
2607
|
+
:next_token)
|
|
2608
|
+
SENSITIVE = []
|
|
2609
|
+
include Aws::Structure
|
|
2610
|
+
end
|
|
2611
|
+
|
|
2612
|
+
# Output containing a list of AgentSpaces and pagination token.
|
|
2613
|
+
#
|
|
2614
|
+
# @!attribute [rw] next_token
|
|
2615
|
+
# Token to retrieve the next page of results, if there are more
|
|
2616
|
+
# results.
|
|
2617
|
+
# @return [String]
|
|
2618
|
+
#
|
|
2619
|
+
# @!attribute [rw] agent_spaces
|
|
2620
|
+
# The list of AgentSpaces.
|
|
2621
|
+
# @return [Array<Types::AgentSpace>]
|
|
2622
|
+
#
|
|
2623
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAgentSpacesOutput AWS API Documentation
|
|
2624
|
+
#
|
|
2625
|
+
class ListAgentSpacesOutput < Struct.new(
|
|
2626
|
+
:next_token,
|
|
2627
|
+
:agent_spaces)
|
|
2628
|
+
SENSITIVE = []
|
|
2629
|
+
include Aws::Structure
|
|
2630
|
+
end
|
|
2631
|
+
|
|
2632
|
+
# Request structure for listing asset files
|
|
2633
|
+
#
|
|
2634
|
+
# @!attribute [rw] agent_space_id
|
|
2635
|
+
# The unique identifier for the agent space containing the asset
|
|
2636
|
+
# @return [String]
|
|
2637
|
+
#
|
|
2638
|
+
# @!attribute [rw] asset_id
|
|
2639
|
+
# The unique identifier of the asset whose files to list
|
|
2640
|
+
# @return [String]
|
|
2641
|
+
#
|
|
2642
|
+
# @!attribute [rw] asset_version
|
|
2643
|
+
# The specific asset version to list files from. If omitted, files
|
|
2644
|
+
# from the latest version are returned.
|
|
2645
|
+
# @return [Integer]
|
|
2646
|
+
#
|
|
2647
|
+
# @!attribute [rw] next_token
|
|
2648
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2649
|
+
# of results
|
|
2650
|
+
# @return [String]
|
|
2651
|
+
#
|
|
2652
|
+
# @!attribute [rw] max_results
|
|
2653
|
+
# The maximum number of results to return in a single response
|
|
2654
|
+
# @return [Integer]
|
|
2655
|
+
#
|
|
2656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetFilesRequest AWS API Documentation
|
|
2657
|
+
#
|
|
2658
|
+
class ListAssetFilesRequest < Struct.new(
|
|
2659
|
+
:agent_space_id,
|
|
2660
|
+
:asset_id,
|
|
2661
|
+
:asset_version,
|
|
2662
|
+
:next_token,
|
|
2663
|
+
:max_results)
|
|
2664
|
+
SENSITIVE = []
|
|
2665
|
+
include Aws::Structure
|
|
2666
|
+
end
|
|
2667
|
+
|
|
2668
|
+
# Response structure for listing asset files
|
|
2669
|
+
#
|
|
2670
|
+
# @!attribute [rw] items
|
|
2671
|
+
# The list of asset file summaries
|
|
2672
|
+
# @return [Array<Types::AssetFileSummary>]
|
|
2673
|
+
#
|
|
2674
|
+
# @!attribute [rw] next_token
|
|
2675
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2676
|
+
# there are no more results.
|
|
2677
|
+
# @return [String]
|
|
2678
|
+
#
|
|
2679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetFilesResponse AWS API Documentation
|
|
2680
|
+
#
|
|
2681
|
+
class ListAssetFilesResponse < Struct.new(
|
|
2682
|
+
:items,
|
|
2683
|
+
:next_token)
|
|
2684
|
+
SENSITIVE = []
|
|
2685
|
+
include Aws::Structure
|
|
2686
|
+
end
|
|
2687
|
+
|
|
2688
|
+
# Request structure for listing asset types
|
|
2689
|
+
#
|
|
2690
|
+
# @!attribute [rw] next_token
|
|
2691
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2692
|
+
# of results
|
|
2693
|
+
# @return [String]
|
|
2694
|
+
#
|
|
2695
|
+
# @!attribute [rw] max_results
|
|
2696
|
+
# The maximum number of results to return in a single response
|
|
2697
|
+
# @return [Integer]
|
|
2698
|
+
#
|
|
2699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetTypesRequest AWS API Documentation
|
|
2700
|
+
#
|
|
2701
|
+
class ListAssetTypesRequest < Struct.new(
|
|
2702
|
+
:next_token,
|
|
2703
|
+
:max_results)
|
|
2704
|
+
SENSITIVE = []
|
|
2705
|
+
include Aws::Structure
|
|
2706
|
+
end
|
|
2707
|
+
|
|
2708
|
+
# Response structure for listing asset types
|
|
2709
|
+
#
|
|
2710
|
+
# @!attribute [rw] items
|
|
2711
|
+
# The list of supported asset types
|
|
2712
|
+
# @return [Array<Types::AssetTypeSummary>]
|
|
2713
|
+
#
|
|
2714
|
+
# @!attribute [rw] next_token
|
|
2715
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2716
|
+
# there are no more results.
|
|
2717
|
+
# @return [String]
|
|
2718
|
+
#
|
|
2719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetTypesResponse AWS API Documentation
|
|
2720
|
+
#
|
|
2721
|
+
class ListAssetTypesResponse < Struct.new(
|
|
2722
|
+
:items,
|
|
2723
|
+
:next_token)
|
|
2724
|
+
SENSITIVE = []
|
|
2725
|
+
include Aws::Structure
|
|
2726
|
+
end
|
|
2727
|
+
|
|
2728
|
+
# Request structure for listing asset versions
|
|
2729
|
+
#
|
|
2730
|
+
# @!attribute [rw] agent_space_id
|
|
2731
|
+
# The unique identifier for the agent space containing the asset
|
|
2732
|
+
# @return [String]
|
|
2733
|
+
#
|
|
2734
|
+
# @!attribute [rw] asset_id
|
|
2735
|
+
# The unique identifier of the asset whose versions to list
|
|
2736
|
+
# @return [String]
|
|
2737
|
+
#
|
|
2738
|
+
# @!attribute [rw] max_results
|
|
2739
|
+
# The maximum number of results to return in a single response
|
|
2740
|
+
# @return [Integer]
|
|
2741
|
+
#
|
|
2742
|
+
# @!attribute [rw] next_token
|
|
2743
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2744
|
+
# of results
|
|
2745
|
+
# @return [String]
|
|
2746
|
+
#
|
|
2747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetVersionsRequest AWS API Documentation
|
|
2748
|
+
#
|
|
2749
|
+
class ListAssetVersionsRequest < Struct.new(
|
|
2750
|
+
:agent_space_id,
|
|
2751
|
+
:asset_id,
|
|
2752
|
+
:max_results,
|
|
2753
|
+
:next_token)
|
|
2754
|
+
SENSITIVE = []
|
|
2755
|
+
include Aws::Structure
|
|
2756
|
+
end
|
|
2757
|
+
|
|
2758
|
+
# Response structure for listing asset versions
|
|
1909
2759
|
#
|
|
1910
|
-
# @!attribute [rw]
|
|
1911
|
-
#
|
|
1912
|
-
# @return [
|
|
2760
|
+
# @!attribute [rw] items
|
|
2761
|
+
# The list of version metadata for the asset
|
|
2762
|
+
# @return [Array<Types::AssetVersionMetadata>]
|
|
1913
2763
|
#
|
|
1914
2764
|
# @!attribute [rw] next_token
|
|
1915
|
-
#
|
|
2765
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2766
|
+
# there are no more results.
|
|
1916
2767
|
# @return [String]
|
|
1917
2768
|
#
|
|
1918
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
2769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetVersionsResponse AWS API Documentation
|
|
1919
2770
|
#
|
|
1920
|
-
class
|
|
1921
|
-
:
|
|
2771
|
+
class ListAssetVersionsResponse < Struct.new(
|
|
2772
|
+
:items,
|
|
1922
2773
|
:next_token)
|
|
1923
2774
|
SENSITIVE = []
|
|
1924
2775
|
include Aws::Structure
|
|
1925
2776
|
end
|
|
1926
2777
|
|
|
1927
|
-
#
|
|
2778
|
+
# Request structure for listing assets
|
|
2779
|
+
#
|
|
2780
|
+
# @!attribute [rw] agent_space_id
|
|
2781
|
+
# The unique identifier for the agent space to list assets from
|
|
2782
|
+
# @return [String]
|
|
2783
|
+
#
|
|
2784
|
+
# @!attribute [rw] asset_type
|
|
2785
|
+
# Filter results to only assets of this type
|
|
2786
|
+
# @return [String]
|
|
2787
|
+
#
|
|
2788
|
+
# @!attribute [rw] updated_after
|
|
2789
|
+
# Filter results to only assets updated after this timestamp
|
|
2790
|
+
# @return [Time]
|
|
2791
|
+
#
|
|
2792
|
+
# @!attribute [rw] updated_before
|
|
2793
|
+
# Filter results to only assets updated before this timestamp
|
|
2794
|
+
# @return [Time]
|
|
1928
2795
|
#
|
|
1929
2796
|
# @!attribute [rw] next_token
|
|
1930
|
-
#
|
|
1931
|
-
# results
|
|
2797
|
+
# Pagination token from a previous response to retrieve the next page
|
|
2798
|
+
# of results
|
|
1932
2799
|
# @return [String]
|
|
1933
2800
|
#
|
|
1934
|
-
# @!attribute [rw]
|
|
1935
|
-
# The
|
|
1936
|
-
# @return [
|
|
2801
|
+
# @!attribute [rw] max_results
|
|
2802
|
+
# The maximum number of results to return in a single response
|
|
2803
|
+
# @return [Integer]
|
|
1937
2804
|
#
|
|
1938
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/
|
|
2805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetsRequest AWS API Documentation
|
|
1939
2806
|
#
|
|
1940
|
-
class
|
|
2807
|
+
class ListAssetsRequest < Struct.new(
|
|
2808
|
+
:agent_space_id,
|
|
2809
|
+
:asset_type,
|
|
2810
|
+
:updated_after,
|
|
2811
|
+
:updated_before,
|
|
1941
2812
|
:next_token,
|
|
1942
|
-
:
|
|
2813
|
+
:max_results)
|
|
2814
|
+
SENSITIVE = []
|
|
2815
|
+
include Aws::Structure
|
|
2816
|
+
end
|
|
2817
|
+
|
|
2818
|
+
# Response structure for listing assets
|
|
2819
|
+
#
|
|
2820
|
+
# @!attribute [rw] items
|
|
2821
|
+
# The list of assets for the agent space
|
|
2822
|
+
# @return [Array<Types::Asset>]
|
|
2823
|
+
#
|
|
2824
|
+
# @!attribute [rw] next_token
|
|
2825
|
+
# Pagination token to retrieve the next page of results. Absent when
|
|
2826
|
+
# there are no more results.
|
|
2827
|
+
# @return [String]
|
|
2828
|
+
#
|
|
2829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssetsResponse AWS API Documentation
|
|
2830
|
+
#
|
|
2831
|
+
class ListAssetsResponse < Struct.new(
|
|
2832
|
+
:items,
|
|
2833
|
+
:next_token)
|
|
1943
2834
|
SENSITIVE = []
|
|
1944
2835
|
include Aws::Structure
|
|
1945
2836
|
end
|
|
@@ -2485,6 +3376,52 @@ module Aws::DevOpsAgent
|
|
|
2485
3376
|
include Aws::Structure
|
|
2486
3377
|
end
|
|
2487
3378
|
|
|
3379
|
+
# @!attribute [rw] agent_space_id
|
|
3380
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
3381
|
+
# and hyphens; 1-64 characters)
|
|
3382
|
+
# @return [String]
|
|
3383
|
+
#
|
|
3384
|
+
# @!attribute [rw] status
|
|
3385
|
+
# Filter results to Triggers in this status
|
|
3386
|
+
# @return [String]
|
|
3387
|
+
#
|
|
3388
|
+
# @!attribute [rw] next_token
|
|
3389
|
+
# Pagination token from a previous response to retrieve the next page
|
|
3390
|
+
# of results
|
|
3391
|
+
# @return [String]
|
|
3392
|
+
#
|
|
3393
|
+
# @!attribute [rw] max_results
|
|
3394
|
+
# The maximum number of results to return in a single response
|
|
3395
|
+
# @return [Integer]
|
|
3396
|
+
#
|
|
3397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListTriggersRequest AWS API Documentation
|
|
3398
|
+
#
|
|
3399
|
+
class ListTriggersRequest < Struct.new(
|
|
3400
|
+
:agent_space_id,
|
|
3401
|
+
:status,
|
|
3402
|
+
:next_token,
|
|
3403
|
+
:max_results)
|
|
3404
|
+
SENSITIVE = []
|
|
3405
|
+
include Aws::Structure
|
|
3406
|
+
end
|
|
3407
|
+
|
|
3408
|
+
# @!attribute [rw] items
|
|
3409
|
+
# The list of Triggers
|
|
3410
|
+
# @return [Array<Types::Trigger>]
|
|
3411
|
+
#
|
|
3412
|
+
# @!attribute [rw] next_token
|
|
3413
|
+
# Pagination token for list operations (1-2048 characters)
|
|
3414
|
+
# @return [String]
|
|
3415
|
+
#
|
|
3416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListTriggersResponse AWS API Documentation
|
|
3417
|
+
#
|
|
3418
|
+
class ListTriggersResponse < Struct.new(
|
|
3419
|
+
:items,
|
|
3420
|
+
:next_token)
|
|
3421
|
+
SENSITIVE = []
|
|
3422
|
+
include Aws::Structure
|
|
3423
|
+
end
|
|
3424
|
+
|
|
2488
3425
|
# Input for listing service webhooks within an association.
|
|
2489
3426
|
#
|
|
2490
3427
|
# @!attribute [rw] agent_space_id
|
|
@@ -2835,7 +3772,14 @@ module Aws::DevOpsAgent
|
|
|
2835
3772
|
# @return [String]
|
|
2836
3773
|
#
|
|
2837
3774
|
# @!attribute [rw] role_arn
|
|
2838
|
-
# IAM role ARN to assume for
|
|
3775
|
+
# Deprecated — use mcpRoleArn instead. IAM role ARN to assume for
|
|
3776
|
+
# SigV4 signing.
|
|
3777
|
+
# @return [String]
|
|
3778
|
+
#
|
|
3779
|
+
# @!attribute [rw] mcp_role_arn
|
|
3780
|
+
# IAM role ARN to assume for SigV4 signing. Optional — when omitted,
|
|
3781
|
+
# credentials are resolved at runtime via a monitor account
|
|
3782
|
+
# association.
|
|
2839
3783
|
# @return [String]
|
|
2840
3784
|
#
|
|
2841
3785
|
# @!attribute [rw] custom_headers
|
|
@@ -2848,6 +3792,7 @@ module Aws::DevOpsAgent
|
|
|
2848
3792
|
:region,
|
|
2849
3793
|
:service,
|
|
2850
3794
|
:role_arn,
|
|
3795
|
+
:mcp_role_arn,
|
|
2851
3796
|
:custom_headers)
|
|
2852
3797
|
SENSITIVE = [:custom_headers]
|
|
2853
3798
|
include Aws::Structure
|
|
@@ -3194,6 +4139,15 @@ module Aws::DevOpsAgent
|
|
|
3194
4139
|
# Connection. Only present when a certificate is associated.
|
|
3195
4140
|
# @return [Time]
|
|
3196
4141
|
#
|
|
4142
|
+
# @!attribute [rw] dns_resolution
|
|
4143
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
4144
|
+
# @return [String]
|
|
4145
|
+
#
|
|
4146
|
+
# @!attribute [rw] failure_message
|
|
4147
|
+
# Message describing the reason for a failed Private Connection, if
|
|
4148
|
+
# applicable.
|
|
4149
|
+
# @return [String]
|
|
4150
|
+
#
|
|
3197
4151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/PrivateConnectionSummary AWS API Documentation
|
|
3198
4152
|
#
|
|
3199
4153
|
class PrivateConnectionSummary < Struct.new(
|
|
@@ -3204,7 +4158,9 @@ module Aws::DevOpsAgent
|
|
|
3204
4158
|
:vpc_id,
|
|
3205
4159
|
:resource_configuration_id,
|
|
3206
4160
|
:status,
|
|
3207
|
-
:certificate_expiry_time
|
|
4161
|
+
:certificate_expiry_time,
|
|
4162
|
+
:dns_resolution,
|
|
4163
|
+
:failure_message)
|
|
3208
4164
|
SENSITIVE = []
|
|
3209
4165
|
include Aws::Structure
|
|
3210
4166
|
end
|
|
@@ -3402,6 +4358,17 @@ module Aws::DevOpsAgent
|
|
|
3402
4358
|
# The name of the private connection to use for VPC connectivity.
|
|
3403
4359
|
# @return [String]
|
|
3404
4360
|
#
|
|
4361
|
+
# @!attribute [rw] target_url_private_connection_name
|
|
4362
|
+
# The name of the private connection to use for API calls (target URL)
|
|
4363
|
+
# only. Cannot be specified when privateConnectionName is provided.
|
|
4364
|
+
# @return [String]
|
|
4365
|
+
#
|
|
4366
|
+
# @!attribute [rw] exchange_url_private_connection_name
|
|
4367
|
+
# The name of the private connection to use for OAuth token exchange
|
|
4368
|
+
# requests only. Cannot be specified when privateConnectionName is
|
|
4369
|
+
# provided.
|
|
4370
|
+
# @return [String]
|
|
4371
|
+
#
|
|
3405
4372
|
# @!attribute [rw] name
|
|
3406
4373
|
# The display name for the service registration.
|
|
3407
4374
|
# @return [String]
|
|
@@ -3417,6 +4384,8 @@ module Aws::DevOpsAgent
|
|
|
3417
4384
|
:service_details,
|
|
3418
4385
|
:kms_key_arn,
|
|
3419
4386
|
:private_connection_name,
|
|
4387
|
+
:target_url_private_connection_name,
|
|
4388
|
+
:exchange_url_private_connection_name,
|
|
3420
4389
|
:name,
|
|
3421
4390
|
:tags)
|
|
3422
4391
|
SENSITIVE = []
|
|
@@ -3632,6 +4601,10 @@ module Aws::DevOpsAgent
|
|
|
3632
4601
|
# IAM role ARN to assume for SigV4 signing.
|
|
3633
4602
|
# @return [String]
|
|
3634
4603
|
#
|
|
4604
|
+
# @!attribute [rw] mcp_role_arn
|
|
4605
|
+
# AWS IAM role ARN.
|
|
4606
|
+
# @return [String]
|
|
4607
|
+
#
|
|
3635
4608
|
# @!attribute [rw] custom_headers
|
|
3636
4609
|
# Custom headers for the SigV4 MCP server.
|
|
3637
4610
|
# @return [Hash<String,String>]
|
|
@@ -3645,6 +4618,7 @@ module Aws::DevOpsAgent
|
|
|
3645
4618
|
:region,
|
|
3646
4619
|
:service,
|
|
3647
4620
|
:role_arn,
|
|
4621
|
+
:mcp_role_arn,
|
|
3648
4622
|
:custom_headers)
|
|
3649
4623
|
SENSITIVE = [:description, :custom_headers]
|
|
3650
4624
|
include Aws::Structure
|
|
@@ -3781,6 +4755,20 @@ module Aws::DevOpsAgent
|
|
|
3781
4755
|
include Aws::Structure
|
|
3782
4756
|
end
|
|
3783
4757
|
|
|
4758
|
+
# Schedule-based condition that fires the Trigger
|
|
4759
|
+
#
|
|
4760
|
+
# @!attribute [rw] expression
|
|
4761
|
+
# The schedule expression
|
|
4762
|
+
# @return [String]
|
|
4763
|
+
#
|
|
4764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ScheduleCondition AWS API Documentation
|
|
4765
|
+
#
|
|
4766
|
+
class ScheduleCondition < Struct.new(
|
|
4767
|
+
:expression)
|
|
4768
|
+
SENSITIVE = []
|
|
4769
|
+
include Aws::Structure
|
|
4770
|
+
end
|
|
4771
|
+
|
|
3784
4772
|
# Configuration for a self-managed Private Connection.
|
|
3785
4773
|
#
|
|
3786
4774
|
# @!attribute [rw] resource_configuration_id
|
|
@@ -3995,6 +4983,10 @@ module Aws::DevOpsAgent
|
|
|
3995
4983
|
# service resolves user identity from the authenticated session.
|
|
3996
4984
|
# @return [String]
|
|
3997
4985
|
#
|
|
4986
|
+
# @!attribute [rw] asset_ids
|
|
4987
|
+
# Optional list of asset identifiers to attach to the message
|
|
4988
|
+
# @return [Array<String>]
|
|
4989
|
+
#
|
|
3998
4990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SendMessageRequest AWS API Documentation
|
|
3999
4991
|
#
|
|
4000
4992
|
class SendMessageRequest < Struct.new(
|
|
@@ -4002,7 +4994,8 @@ module Aws::DevOpsAgent
|
|
|
4002
4994
|
:execution_id,
|
|
4003
4995
|
:content,
|
|
4004
4996
|
:context,
|
|
4005
|
-
:user_id
|
|
4997
|
+
:user_id,
|
|
4998
|
+
:asset_ids)
|
|
4006
4999
|
SENSITIVE = []
|
|
4007
5000
|
include Aws::Structure
|
|
4008
5001
|
end
|
|
@@ -4419,6 +5412,11 @@ module Aws::DevOpsAgent
|
|
|
4419
5412
|
# Certificate for the Private Connection.
|
|
4420
5413
|
# @return [String]
|
|
4421
5414
|
#
|
|
5415
|
+
# @!attribute [rw] dns_resolution
|
|
5416
|
+
# DNS resolution mode for the resource gateway. Defaults to PUBLIC
|
|
5417
|
+
# when not set.
|
|
5418
|
+
# @return [String]
|
|
5419
|
+
#
|
|
4422
5420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceManagedInput AWS API Documentation
|
|
4423
5421
|
#
|
|
4424
5422
|
class ServiceManagedInput < Struct.new(
|
|
@@ -4429,7 +5427,8 @@ module Aws::DevOpsAgent
|
|
|
4429
5427
|
:ip_address_type,
|
|
4430
5428
|
:ipv4_addresses_per_eni,
|
|
4431
5429
|
:port_ranges,
|
|
4432
|
-
:certificate
|
|
5430
|
+
:certificate,
|
|
5431
|
+
:dns_resolution)
|
|
4433
5432
|
SENSITIVE = []
|
|
4434
5433
|
include Aws::Structure
|
|
4435
5434
|
end
|
|
@@ -4801,6 +5800,80 @@ module Aws::DevOpsAgent
|
|
|
4801
5800
|
include Aws::Structure
|
|
4802
5801
|
end
|
|
4803
5802
|
|
|
5803
|
+
# A Trigger fires on a schedule and invokes an agent
|
|
5804
|
+
#
|
|
5805
|
+
# @!attribute [rw] trigger_id
|
|
5806
|
+
# Generic resource identifier (allows alphanumeric characters,
|
|
5807
|
+
# hyphens, and underscores; 1-128 characters)
|
|
5808
|
+
# @return [String]
|
|
5809
|
+
#
|
|
5810
|
+
# @!attribute [rw] agent_space_id
|
|
5811
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
5812
|
+
# and hyphens; 1-64 characters)
|
|
5813
|
+
# @return [String]
|
|
5814
|
+
#
|
|
5815
|
+
# @!attribute [rw] type
|
|
5816
|
+
# How this Trigger fires
|
|
5817
|
+
# @return [String]
|
|
5818
|
+
#
|
|
5819
|
+
# @!attribute [rw] condition
|
|
5820
|
+
# The condition that fires this Trigger
|
|
5821
|
+
# @return [Types::TriggerCondition]
|
|
5822
|
+
#
|
|
5823
|
+
# @!attribute [rw] action
|
|
5824
|
+
# The action this Trigger performs when it fires
|
|
5825
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5826
|
+
#
|
|
5827
|
+
# @!attribute [rw] status
|
|
5828
|
+
# The status of this Trigger
|
|
5829
|
+
# @return [String]
|
|
5830
|
+
#
|
|
5831
|
+
# @!attribute [rw] created_at
|
|
5832
|
+
# Timestamp when this Trigger was created
|
|
5833
|
+
# @return [Time]
|
|
5834
|
+
#
|
|
5835
|
+
# @!attribute [rw] updated_at
|
|
5836
|
+
# Timestamp when this Trigger was last updated
|
|
5837
|
+
# @return [Time]
|
|
5838
|
+
#
|
|
5839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/Trigger AWS API Documentation
|
|
5840
|
+
#
|
|
5841
|
+
class Trigger < Struct.new(
|
|
5842
|
+
:trigger_id,
|
|
5843
|
+
:agent_space_id,
|
|
5844
|
+
:type,
|
|
5845
|
+
:condition,
|
|
5846
|
+
:action,
|
|
5847
|
+
:status,
|
|
5848
|
+
:created_at,
|
|
5849
|
+
:updated_at)
|
|
5850
|
+
SENSITIVE = []
|
|
5851
|
+
include Aws::Structure
|
|
5852
|
+
end
|
|
5853
|
+
|
|
5854
|
+
# Defines the firing condition for a Trigger
|
|
5855
|
+
#
|
|
5856
|
+
# @note TriggerCondition is a union - when making an API calls you must set exactly one of the members.
|
|
5857
|
+
#
|
|
5858
|
+
# @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.
|
|
5859
|
+
#
|
|
5860
|
+
# @!attribute [rw] schedule
|
|
5861
|
+
# Time-based firing condition
|
|
5862
|
+
# @return [Types::ScheduleCondition]
|
|
5863
|
+
#
|
|
5864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/TriggerCondition AWS API Documentation
|
|
5865
|
+
#
|
|
5866
|
+
class TriggerCondition < Struct.new(
|
|
5867
|
+
:schedule,
|
|
5868
|
+
:unknown)
|
|
5869
|
+
SENSITIVE = []
|
|
5870
|
+
include Aws::Structure
|
|
5871
|
+
include Aws::Structure::Union
|
|
5872
|
+
|
|
5873
|
+
class Schedule < TriggerCondition; end
|
|
5874
|
+
class Unknown < TriggerCondition; end
|
|
5875
|
+
end
|
|
5876
|
+
|
|
4804
5877
|
# @!attribute [rw] resource_arn
|
|
4805
5878
|
# The ARN of the resource to untag.
|
|
4806
5879
|
# @return [String]
|
|
@@ -4868,6 +5941,117 @@ module Aws::DevOpsAgent
|
|
|
4868
5941
|
include Aws::Structure
|
|
4869
5942
|
end
|
|
4870
5943
|
|
|
5944
|
+
# Request structure for updating an asset file
|
|
5945
|
+
#
|
|
5946
|
+
# @!attribute [rw] agent_space_id
|
|
5947
|
+
# The unique identifier for the agent space containing the asset
|
|
5948
|
+
# @return [String]
|
|
5949
|
+
#
|
|
5950
|
+
# @!attribute [rw] asset_id
|
|
5951
|
+
# The unique identifier of the asset containing the file
|
|
5952
|
+
# @return [String]
|
|
5953
|
+
#
|
|
5954
|
+
# @!attribute [rw] path
|
|
5955
|
+
# The path of the file within the asset to update
|
|
5956
|
+
# @return [String]
|
|
5957
|
+
#
|
|
5958
|
+
# @!attribute [rw] content
|
|
5959
|
+
# Updated file content. If omitted, the existing content is unchanged.
|
|
5960
|
+
# @return [Types::AssetFileBody]
|
|
5961
|
+
#
|
|
5962
|
+
# @!attribute [rw] metadata
|
|
5963
|
+
# Metadata fields to update. Only the fields present in this document
|
|
5964
|
+
# are updated. Omitted fields retain their current values.
|
|
5965
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5966
|
+
#
|
|
5967
|
+
# @!attribute [rw] client_token
|
|
5968
|
+
# A unique, case-sensitive identifier used for idempotent asset file
|
|
5969
|
+
# update
|
|
5970
|
+
#
|
|
5971
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5972
|
+
# not need to pass this option.
|
|
5973
|
+
# @return [String]
|
|
5974
|
+
#
|
|
5975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetFileRequest AWS API Documentation
|
|
5976
|
+
#
|
|
5977
|
+
class UpdateAssetFileRequest < Struct.new(
|
|
5978
|
+
:agent_space_id,
|
|
5979
|
+
:asset_id,
|
|
5980
|
+
:path,
|
|
5981
|
+
:content,
|
|
5982
|
+
:metadata,
|
|
5983
|
+
:client_token)
|
|
5984
|
+
SENSITIVE = []
|
|
5985
|
+
include Aws::Structure
|
|
5986
|
+
end
|
|
5987
|
+
|
|
5988
|
+
# Response structure for updating an asset file
|
|
5989
|
+
#
|
|
5990
|
+
# @!attribute [rw] file
|
|
5991
|
+
# The asset file object
|
|
5992
|
+
# @return [Types::AssetFile]
|
|
5993
|
+
#
|
|
5994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetFileResponse AWS API Documentation
|
|
5995
|
+
#
|
|
5996
|
+
class UpdateAssetFileResponse < Struct.new(
|
|
5997
|
+
:file)
|
|
5998
|
+
SENSITIVE = []
|
|
5999
|
+
include Aws::Structure
|
|
6000
|
+
end
|
|
6001
|
+
|
|
6002
|
+
# Request structure for updating an asset
|
|
6003
|
+
#
|
|
6004
|
+
# @!attribute [rw] agent_space_id
|
|
6005
|
+
# The unique identifier for the agent space containing the asset
|
|
6006
|
+
# @return [String]
|
|
6007
|
+
#
|
|
6008
|
+
# @!attribute [rw] asset_id
|
|
6009
|
+
# The unique identifier of the asset to update
|
|
6010
|
+
# @return [String]
|
|
6011
|
+
#
|
|
6012
|
+
# @!attribute [rw] metadata
|
|
6013
|
+
# Metadata fields to update. Only the fields present in this document
|
|
6014
|
+
# are updated. Omitted fields retain their current values.
|
|
6015
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
6016
|
+
#
|
|
6017
|
+
# @!attribute [rw] content
|
|
6018
|
+
# Optional content to set or replace. A single file adds or replaces
|
|
6019
|
+
# one file; a zip replaces all files.
|
|
6020
|
+
# @return [Types::AssetContent]
|
|
6021
|
+
#
|
|
6022
|
+
# @!attribute [rw] client_token
|
|
6023
|
+
# A unique, case-sensitive identifier used for idempotent asset update
|
|
6024
|
+
#
|
|
6025
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
6026
|
+
# not need to pass this option.
|
|
6027
|
+
# @return [String]
|
|
6028
|
+
#
|
|
6029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetRequest AWS API Documentation
|
|
6030
|
+
#
|
|
6031
|
+
class UpdateAssetRequest < Struct.new(
|
|
6032
|
+
:agent_space_id,
|
|
6033
|
+
:asset_id,
|
|
6034
|
+
:metadata,
|
|
6035
|
+
:content,
|
|
6036
|
+
:client_token)
|
|
6037
|
+
SENSITIVE = []
|
|
6038
|
+
include Aws::Structure
|
|
6039
|
+
end
|
|
6040
|
+
|
|
6041
|
+
# Response structure for updating an asset
|
|
6042
|
+
#
|
|
6043
|
+
# @!attribute [rw] asset
|
|
6044
|
+
# The asset object
|
|
6045
|
+
# @return [Types::Asset]
|
|
6046
|
+
#
|
|
6047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateAssetResponse AWS API Documentation
|
|
6048
|
+
#
|
|
6049
|
+
class UpdateAssetResponse < Struct.new(
|
|
6050
|
+
:asset)
|
|
6051
|
+
SENSITIVE = []
|
|
6052
|
+
include Aws::Structure
|
|
6053
|
+
end
|
|
6054
|
+
|
|
4871
6055
|
# Input for updating an existing service association. Present fields are
|
|
4872
6056
|
# fully replaced; absent fields are left unchanged.
|
|
4873
6057
|
#
|
|
@@ -5105,6 +6289,15 @@ module Aws::DevOpsAgent
|
|
|
5105
6289
|
# Connection. Only present when a certificate is associated.
|
|
5106
6290
|
# @return [Time]
|
|
5107
6291
|
#
|
|
6292
|
+
# @!attribute [rw] dns_resolution
|
|
6293
|
+
# DNS resolution mode for the Private Connection's resource gateway.
|
|
6294
|
+
# @return [String]
|
|
6295
|
+
#
|
|
6296
|
+
# @!attribute [rw] failure_message
|
|
6297
|
+
# Message describing the reason for a failed Private Connection
|
|
6298
|
+
# update, if applicable.
|
|
6299
|
+
# @return [String]
|
|
6300
|
+
#
|
|
5108
6301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdatePrivateConnectionCertificateOutput AWS API Documentation
|
|
5109
6302
|
#
|
|
5110
6303
|
class UpdatePrivateConnectionCertificateOutput < Struct.new(
|
|
@@ -5115,7 +6308,9 @@ module Aws::DevOpsAgent
|
|
|
5115
6308
|
:vpc_id,
|
|
5116
6309
|
:resource_configuration_id,
|
|
5117
6310
|
:status,
|
|
5118
|
-
:certificate_expiry_time
|
|
6311
|
+
:certificate_expiry_time,
|
|
6312
|
+
:dns_resolution,
|
|
6313
|
+
:failure_message)
|
|
5119
6314
|
SENSITIVE = []
|
|
5120
6315
|
include Aws::Structure
|
|
5121
6316
|
end
|
|
@@ -5172,11 +6367,57 @@ module Aws::DevOpsAgent
|
|
|
5172
6367
|
include Aws::Structure
|
|
5173
6368
|
end
|
|
5174
6369
|
|
|
6370
|
+
# @!attribute [rw] agent_space_id
|
|
6371
|
+
# Unique identifier for an agent space (allows alphanumeric characters
|
|
6372
|
+
# and hyphens; 1-64 characters)
|
|
6373
|
+
# @return [String]
|
|
6374
|
+
#
|
|
6375
|
+
# @!attribute [rw] trigger_id
|
|
6376
|
+
# Generic resource identifier (allows alphanumeric characters,
|
|
6377
|
+
# hyphens, and underscores; 1-128 characters)
|
|
6378
|
+
# @return [String]
|
|
6379
|
+
#
|
|
6380
|
+
# @!attribute [rw] status
|
|
6381
|
+
# The new status for the Trigger
|
|
6382
|
+
# @return [String]
|
|
6383
|
+
#
|
|
6384
|
+
# @!attribute [rw] client_token
|
|
6385
|
+
# A unique, case-sensitive identifier used for idempotent Trigger
|
|
6386
|
+
# update
|
|
6387
|
+
#
|
|
6388
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
6389
|
+
# not need to pass this option.
|
|
6390
|
+
# @return [String]
|
|
6391
|
+
#
|
|
6392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateTriggerRequest AWS API Documentation
|
|
6393
|
+
#
|
|
6394
|
+
class UpdateTriggerRequest < Struct.new(
|
|
6395
|
+
:agent_space_id,
|
|
6396
|
+
:trigger_id,
|
|
6397
|
+
:status,
|
|
6398
|
+
:client_token)
|
|
6399
|
+
SENSITIVE = []
|
|
6400
|
+
include Aws::Structure
|
|
6401
|
+
end
|
|
6402
|
+
|
|
6403
|
+
# @!attribute [rw] trigger
|
|
6404
|
+
# The Trigger object
|
|
6405
|
+
# @return [Types::Trigger]
|
|
6406
|
+
#
|
|
6407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/UpdateTriggerResponse AWS API Documentation
|
|
6408
|
+
#
|
|
6409
|
+
class UpdateTriggerResponse < Struct.new(
|
|
6410
|
+
:trigger)
|
|
6411
|
+
SENSITIVE = []
|
|
6412
|
+
include Aws::Structure
|
|
6413
|
+
end
|
|
6414
|
+
|
|
5175
6415
|
# Represents a usage metric with its configured limit and current usage
|
|
5176
6416
|
# value.
|
|
5177
6417
|
#
|
|
5178
6418
|
# @!attribute [rw] limit
|
|
5179
|
-
# Configured limit for this metric.
|
|
6419
|
+
# Configured limit for this metric. A value of -1 indicates no limit
|
|
6420
|
+
# is enforced.
|
|
5180
6421
|
# @return [Integer]
|
|
5181
6422
|
#
|
|
5182
6423
|
# @!attribute [rw] usage
|