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.
data/sig/types.rbs CHANGED
@@ -89,6 +89,88 @@ module Aws::DevOpsAgent
89
89
  SENSITIVE: [:description]
90
90
  end
91
91
 
92
+ class Asset
93
+ attr_accessor asset_id: ::String
94
+ attr_accessor asset_type: ::String
95
+ attr_accessor metadata: untyped
96
+ attr_accessor version: ::Integer
97
+ attr_accessor created_at: ::Time
98
+ attr_accessor updated_at: ::Time
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class AssetContent
103
+ attr_accessor file: Types::AssetFileContent
104
+ attr_accessor zip: Types::AssetZipContent
105
+ attr_accessor unknown: untyped
106
+ SENSITIVE: []
107
+
108
+ class File < AssetContent
109
+ end
110
+ class Zip < AssetContent
111
+ end
112
+ class Unknown < AssetContent
113
+ end
114
+ end
115
+
116
+ class AssetFile
117
+ attr_accessor path: ::String
118
+ attr_accessor content: Types::AssetFileBody
119
+ attr_accessor metadata: untyped
120
+ attr_accessor version: ::Integer
121
+ attr_accessor created_at: ::Time
122
+ attr_accessor updated_at: ::Time
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class AssetFileBody
127
+ attr_accessor bytes: ::String
128
+ attr_accessor text: ::String
129
+ attr_accessor unknown: untyped
130
+ SENSITIVE: []
131
+
132
+ class Bytes < AssetFileBody
133
+ end
134
+ class Text < AssetFileBody
135
+ end
136
+ class Unknown < AssetFileBody
137
+ end
138
+ end
139
+
140
+ class AssetFileContent
141
+ attr_accessor path: ::String
142
+ attr_accessor body: Types::AssetFileBody
143
+ attr_accessor metadata: untyped
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class AssetFileSummary
148
+ attr_accessor path: ::String
149
+ attr_accessor metadata: untyped
150
+ attr_accessor version: ::Integer
151
+ attr_accessor created_at: ::Time
152
+ attr_accessor updated_at: ::Time
153
+ SENSITIVE: []
154
+ end
155
+
156
+ class AssetTypeSummary
157
+ attr_accessor asset_type: ::String
158
+ attr_accessor description: ::String
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class AssetVersionMetadata
163
+ attr_accessor version: ::Integer
164
+ attr_accessor created_at: ::Time
165
+ attr_accessor updated_at: ::Time
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class AssetZipContent
170
+ attr_accessor zip_file: ::String
171
+ SENSITIVE: []
172
+ end
173
+
92
174
  class AssistantMessageBlock
93
175
  attr_accessor text: ::String
94
176
  attr_accessor tool_use: untyped
@@ -173,6 +255,35 @@ module Aws::DevOpsAgent
173
255
  SENSITIVE: []
174
256
  end
175
257
 
258
+ class CreateAssetFileRequest
259
+ attr_accessor agent_space_id: ::String
260
+ attr_accessor asset_id: ::String
261
+ attr_accessor path: ::String
262
+ attr_accessor content: Types::AssetFileBody
263
+ attr_accessor metadata: untyped
264
+ attr_accessor client_token: ::String
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class CreateAssetFileResponse
269
+ attr_accessor file: Types::AssetFile
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class CreateAssetRequest
274
+ attr_accessor agent_space_id: ::String
275
+ attr_accessor asset_type: ::String
276
+ attr_accessor metadata: untyped
277
+ attr_accessor content: Types::AssetContent
278
+ attr_accessor client_token: ::String
279
+ SENSITIVE: []
280
+ end
281
+
282
+ class CreateAssetResponse
283
+ attr_accessor asset: Types::Asset
284
+ SENSITIVE: []
285
+ end
286
+
176
287
  class CreateBacklogTaskRequest
177
288
  attr_accessor agent_space_id: ::String
178
289
  attr_accessor reference: Types::ReferenceInput
@@ -218,6 +329,8 @@ module Aws::DevOpsAgent
218
329
  attr_accessor resource_configuration_id: ::String
219
330
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
220
331
  attr_accessor certificate_expiry_time: ::Time
332
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
333
+ attr_accessor failure_message: ::String
221
334
  attr_accessor tags: ::Hash[::String, ::String]
222
335
  SENSITIVE: []
223
336
  end
@@ -249,6 +362,25 @@ module Aws::DevOpsAgent
249
362
  class DeleteAgentSpaceOutput < Aws::EmptyStructure
250
363
  end
251
364
 
365
+ class DeleteAssetFileRequest
366
+ attr_accessor agent_space_id: ::String
367
+ attr_accessor asset_id: ::String
368
+ attr_accessor path: ::String
369
+ SENSITIVE: []
370
+ end
371
+
372
+ class DeleteAssetFileResponse < Aws::EmptyStructure
373
+ end
374
+
375
+ class DeleteAssetRequest
376
+ attr_accessor agent_space_id: ::String
377
+ attr_accessor asset_id: ::String
378
+ SENSITIVE: []
379
+ end
380
+
381
+ class DeleteAssetResponse < Aws::EmptyStructure
382
+ end
383
+
252
384
  class DeletePrivateConnectionInput
253
385
  attr_accessor name: ::String
254
386
  SENSITIVE: []
@@ -282,6 +414,8 @@ module Aws::DevOpsAgent
282
414
  attr_accessor resource_configuration_id: ::String
283
415
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
284
416
  attr_accessor certificate_expiry_time: ::Time
417
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
418
+ attr_accessor failure_message: ::String
285
419
  attr_accessor tags: ::Hash[::String, ::String]
286
420
  SENSITIVE: []
287
421
  end
@@ -346,6 +480,7 @@ module Aws::DevOpsAgent
346
480
 
347
481
  class EnableOperatorAppOutput
348
482
  attr_accessor agent_space_id: ::String
483
+ attr_accessor operator_app_url: ::String
349
484
  attr_accessor iam: Types::IamAuthConfiguration
350
485
  attr_accessor idc: Types::IdcAuthConfiguration
351
486
  attr_accessor idp: Types::IdpAuthConfiguration
@@ -406,6 +541,44 @@ module Aws::DevOpsAgent
406
541
  SENSITIVE: []
407
542
  end
408
543
 
544
+ class GetAssetContentRequest
545
+ attr_accessor agent_space_id: ::String
546
+ attr_accessor asset_id: ::String
547
+ attr_accessor asset_version: ::Integer
548
+ SENSITIVE: []
549
+ end
550
+
551
+ class GetAssetContentResponse
552
+ attr_accessor content: Types::AssetZipContent
553
+ attr_accessor version: ::Integer
554
+ SENSITIVE: []
555
+ end
556
+
557
+ class GetAssetFileRequest
558
+ attr_accessor agent_space_id: ::String
559
+ attr_accessor asset_id: ::String
560
+ attr_accessor path: ::String
561
+ attr_accessor asset_version: ::Integer
562
+ SENSITIVE: []
563
+ end
564
+
565
+ class GetAssetFileResponse
566
+ attr_accessor file: Types::AssetFile
567
+ SENSITIVE: []
568
+ end
569
+
570
+ class GetAssetRequest
571
+ attr_accessor agent_space_id: ::String
572
+ attr_accessor asset_id: ::String
573
+ attr_accessor asset_version: ::Integer
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class GetAssetResponse
578
+ attr_accessor asset: Types::Asset
579
+ SENSITIVE: []
580
+ end
581
+
409
582
  class GetAssociationInput
410
583
  attr_accessor agent_space_id: ::String
411
584
  attr_accessor association_id: ::String
@@ -434,6 +607,7 @@ module Aws::DevOpsAgent
434
607
  end
435
608
 
436
609
  class GetOperatorAppOutput
610
+ attr_accessor operator_app_url: ::String
437
611
  attr_accessor iam: Types::IamAuthConfiguration
438
612
  attr_accessor idc: Types::IdcAuthConfiguration
439
613
  attr_accessor idp: Types::IdpAuthConfiguration
@@ -594,6 +768,63 @@ module Aws::DevOpsAgent
594
768
  SENSITIVE: []
595
769
  end
596
770
 
771
+ class ListAssetFilesRequest
772
+ attr_accessor agent_space_id: ::String
773
+ attr_accessor asset_id: ::String
774
+ attr_accessor asset_version: ::Integer
775
+ attr_accessor next_token: ::String
776
+ attr_accessor max_results: ::Integer
777
+ SENSITIVE: []
778
+ end
779
+
780
+ class ListAssetFilesResponse
781
+ attr_accessor items: ::Array[Types::AssetFileSummary]
782
+ attr_accessor next_token: ::String
783
+ SENSITIVE: []
784
+ end
785
+
786
+ class ListAssetTypesRequest
787
+ attr_accessor next_token: ::String
788
+ attr_accessor max_results: ::Integer
789
+ SENSITIVE: []
790
+ end
791
+
792
+ class ListAssetTypesResponse
793
+ attr_accessor items: ::Array[Types::AssetTypeSummary]
794
+ attr_accessor next_token: ::String
795
+ SENSITIVE: []
796
+ end
797
+
798
+ class ListAssetVersionsRequest
799
+ attr_accessor agent_space_id: ::String
800
+ attr_accessor asset_id: ::String
801
+ attr_accessor max_results: ::Integer
802
+ attr_accessor next_token: ::String
803
+ SENSITIVE: []
804
+ end
805
+
806
+ class ListAssetVersionsResponse
807
+ attr_accessor items: ::Array[Types::AssetVersionMetadata]
808
+ attr_accessor next_token: ::String
809
+ SENSITIVE: []
810
+ end
811
+
812
+ class ListAssetsRequest
813
+ attr_accessor agent_space_id: ::String
814
+ attr_accessor asset_type: ::String
815
+ attr_accessor updated_after: ::Time
816
+ attr_accessor updated_before: ::Time
817
+ attr_accessor next_token: ::String
818
+ attr_accessor max_results: ::Integer
819
+ SENSITIVE: []
820
+ end
821
+
822
+ class ListAssetsResponse
823
+ attr_accessor items: ::Array[Types::Asset]
824
+ attr_accessor next_token: ::String
825
+ SENSITIVE: []
826
+ end
827
+
597
828
  class ListAssociationsInput
598
829
  attr_accessor agent_space_id: ::String
599
830
  attr_accessor max_results: ::Integer
@@ -854,6 +1085,7 @@ module Aws::DevOpsAgent
854
1085
  attr_accessor region: ::String
855
1086
  attr_accessor service: ::String
856
1087
  attr_accessor role_arn: ::String
1088
+ attr_accessor mcp_role_arn: ::String
857
1089
  attr_accessor custom_headers: ::Hash[::String, ::String]
858
1090
  SENSITIVE: []
859
1091
  end
@@ -979,6 +1211,8 @@ module Aws::DevOpsAgent
979
1211
  attr_accessor resource_configuration_id: ::String
980
1212
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
981
1213
  attr_accessor certificate_expiry_time: ::Time
1214
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1215
+ attr_accessor failure_message: ::String
982
1216
  SENSITIVE: []
983
1217
  end
984
1218
 
@@ -1030,6 +1264,8 @@ module Aws::DevOpsAgent
1030
1264
  attr_accessor service_details: Types::ServiceDetails
1031
1265
  attr_accessor kms_key_arn: ::String
1032
1266
  attr_accessor private_connection_name: ::String
1267
+ attr_accessor target_url_private_connection_name: ::String
1268
+ attr_accessor exchange_url_private_connection_name: ::String
1033
1269
  attr_accessor name: ::String
1034
1270
  attr_accessor tags: ::Hash[::String, ::String]
1035
1271
  SENSITIVE: []
@@ -1092,6 +1328,7 @@ module Aws::DevOpsAgent
1092
1328
  attr_accessor region: ::String
1093
1329
  attr_accessor service: ::String
1094
1330
  attr_accessor role_arn: ::String
1331
+ attr_accessor mcp_role_arn: ::String
1095
1332
  attr_accessor custom_headers: ::Hash[::String, ::String]
1096
1333
  SENSITIVE: [:description]
1097
1334
  end
@@ -1206,6 +1443,7 @@ module Aws::DevOpsAgent
1206
1443
  attr_accessor content: ::String
1207
1444
  attr_accessor context: Types::SendMessageContext
1208
1445
  attr_accessor user_id: ::String
1446
+ attr_accessor asset_ids: ::Array[::String]
1209
1447
  SENSITIVE: []
1210
1448
  end
1211
1449
 
@@ -1376,6 +1614,7 @@ module Aws::DevOpsAgent
1376
1614
  attr_accessor ipv4_addresses_per_eni: ::Integer
1377
1615
  attr_accessor port_ranges: ::Array[::String]
1378
1616
  attr_accessor certificate: ::String
1617
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1379
1618
  SENSITIVE: []
1380
1619
  end
1381
1620
 
@@ -1460,7 +1699,7 @@ module Aws::DevOpsAgent
1460
1699
  attr_accessor reference: Types::ReferenceOutput
1461
1700
  attr_accessor task_type: ("INVESTIGATION" | "EVALUATION")
1462
1701
  attr_accessor priority: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")
1463
- attr_accessor status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")
1702
+ attr_accessor status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")
1464
1703
  attr_accessor created_at: ::Time
1465
1704
  attr_accessor updated_at: ::Time
1466
1705
  attr_accessor version: ::Integer
@@ -1476,7 +1715,7 @@ module Aws::DevOpsAgent
1476
1715
  attr_accessor created_after: ::Time
1477
1716
  attr_accessor created_before: ::Time
1478
1717
  attr_accessor priority: ::Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]
1479
- attr_accessor status: ::Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")]
1718
+ attr_accessor status: ::Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]
1480
1719
  attr_accessor task_type: ::Array[("INVESTIGATION" | "EVALUATION")]
1481
1720
  attr_accessor primary_task_id: ::String
1482
1721
  SENSITIVE: []
@@ -1509,6 +1748,35 @@ module Aws::DevOpsAgent
1509
1748
  SENSITIVE: []
1510
1749
  end
1511
1750
 
1751
+ class UpdateAssetFileRequest
1752
+ attr_accessor agent_space_id: ::String
1753
+ attr_accessor asset_id: ::String
1754
+ attr_accessor path: ::String
1755
+ attr_accessor content: Types::AssetFileBody
1756
+ attr_accessor metadata: untyped
1757
+ attr_accessor client_token: ::String
1758
+ SENSITIVE: []
1759
+ end
1760
+
1761
+ class UpdateAssetFileResponse
1762
+ attr_accessor file: Types::AssetFile
1763
+ SENSITIVE: []
1764
+ end
1765
+
1766
+ class UpdateAssetRequest
1767
+ attr_accessor agent_space_id: ::String
1768
+ attr_accessor asset_id: ::String
1769
+ attr_accessor metadata: untyped
1770
+ attr_accessor content: Types::AssetContent
1771
+ attr_accessor client_token: ::String
1772
+ SENSITIVE: []
1773
+ end
1774
+
1775
+ class UpdateAssetResponse
1776
+ attr_accessor asset: Types::Asset
1777
+ SENSITIVE: []
1778
+ end
1779
+
1512
1780
  class UpdateAssociationInput
1513
1781
  attr_accessor agent_space_id: ::String
1514
1782
  attr_accessor association_id: ::String
@@ -1525,7 +1793,7 @@ module Aws::DevOpsAgent
1525
1793
  class UpdateBacklogTaskRequest
1526
1794
  attr_accessor agent_space_id: ::String
1527
1795
  attr_accessor task_id: ::String
1528
- attr_accessor task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")
1796
+ attr_accessor task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")
1529
1797
  attr_accessor client_token: ::String
1530
1798
  SENSITIVE: []
1531
1799
  end
@@ -1575,6 +1843,8 @@ module Aws::DevOpsAgent
1575
1843
  attr_accessor resource_configuration_id: ::String
1576
1844
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
1577
1845
  attr_accessor certificate_expiry_time: ::Time
1846
+ attr_accessor dns_resolution: ("PUBLIC" | "IN_VPC")
1847
+ attr_accessor failure_message: ::String
1578
1848
  SENSITIVE: []
1579
1849
  end
1580
1850
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-devopsagent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services