aws-sdk-devopsagent 1.8.0 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/types.rbs CHANGED
@@ -34,6 +34,8 @@ module Aws::DevOpsAgent
34
34
  attr_accessor mcpservergrafana: Types::RegisteredGrafanaServerDetails
35
35
  attr_accessor pagerduty: Types::RegisteredPagerDutyDetails
36
36
  attr_accessor mcpserversigv4: Types::RegisteredMCPServerSigV4Details
37
+ attr_accessor remoteagent: Types::RegisteredRemoteAgentDetails
38
+ attr_accessor remoteagentsigv4: Types::RegisteredRemoteAgentSigV4Details
37
39
  attr_accessor unknown: untyped
38
40
  SENSITIVE: []
39
41
 
@@ -63,6 +65,10 @@ module Aws::DevOpsAgent
63
65
  end
64
66
  class Mcpserversigv4 < AdditionalServiceDetails
65
67
  end
68
+ class Remoteagent < AdditionalServiceDetails
69
+ end
70
+ class Remoteagentsigv4 < AdditionalServiceDetails
71
+ end
66
72
  class Unknown < AdditionalServiceDetails
67
73
  end
68
74
  end
@@ -102,6 +108,7 @@ module Aws::DevOpsAgent
102
108
  class AssetContent
103
109
  attr_accessor file: Types::AssetFileContent
104
110
  attr_accessor zip: Types::AssetZipContent
111
+ attr_accessor source_url: Types::AssetSourceUrlContent
105
112
  attr_accessor unknown: untyped
106
113
  SENSITIVE: []
107
114
 
@@ -109,6 +116,8 @@ module Aws::DevOpsAgent
109
116
  end
110
117
  class Zip < AssetContent
111
118
  end
119
+ class SourceUrl < AssetContent
120
+ end
112
121
  class Unknown < AssetContent
113
122
  end
114
123
  end
@@ -153,6 +162,11 @@ module Aws::DevOpsAgent
153
162
  SENSITIVE: []
154
163
  end
155
164
 
165
+ class AssetSourceUrlContent
166
+ attr_accessor url: ::String
167
+ SENSITIVE: []
168
+ end
169
+
156
170
  class AssetTypeSummary
157
171
  attr_accessor asset_type: ::String
158
172
  attr_accessor description: ::String
@@ -189,6 +203,7 @@ module Aws::DevOpsAgent
189
203
  attr_accessor agent_space_id: ::String
190
204
  attr_accessor service_id: ::String
191
205
  attr_accessor configuration: Types::ServiceConfiguration
206
+ attr_accessor capabilities: ::Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), Types::CapabilityConfiguration]
192
207
  SENSITIVE: []
193
208
  end
194
209
 
@@ -206,6 +221,7 @@ module Aws::DevOpsAgent
206
221
  attr_accessor association_id: ::String
207
222
  attr_accessor service_id: ::String
208
223
  attr_accessor configuration: Types::ServiceConfiguration
224
+ attr_accessor capabilities: ::Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), Types::CapabilityConfiguration]
209
225
  SENSITIVE: []
210
226
  end
211
227
 
@@ -221,6 +237,11 @@ module Aws::DevOpsAgent
221
237
  SENSITIVE: []
222
238
  end
223
239
 
240
+ class CapabilityConfiguration
241
+ attr_accessor enabled: bool
242
+ SENSITIVE: []
243
+ end
244
+
224
245
  class ChatExecution
225
246
  attr_accessor execution_id: ::String
226
247
  attr_accessor created_at: ::Time
@@ -287,7 +308,7 @@ module Aws::DevOpsAgent
287
308
  class CreateBacklogTaskRequest
288
309
  attr_accessor agent_space_id: ::String
289
310
  attr_accessor reference: Types::ReferenceInput
290
- attr_accessor task_type: ("INVESTIGATION" | "EVALUATION")
311
+ attr_accessor task_type: ("INVESTIGATION" | "EVALUATION" | "RELEASE_READINESS_REVIEW" | "RELEASE_TESTING")
291
312
  attr_accessor title: ::String
292
313
  attr_accessor description: ::String
293
314
  attr_accessor priority: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")
@@ -335,6 +356,21 @@ module Aws::DevOpsAgent
335
356
  SENSITIVE: []
336
357
  end
337
358
 
359
+ class CreateTriggerRequest
360
+ attr_accessor agent_space_id: ::String
361
+ attr_accessor type: ::String
362
+ attr_accessor condition: Types::TriggerCondition
363
+ attr_accessor action: untyped
364
+ attr_accessor status: ::String
365
+ attr_accessor client_token: ::String
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class CreateTriggerResponse
370
+ attr_accessor trigger: Types::Trigger
371
+ SENSITIVE: []
372
+ end
373
+
338
374
  class DatadogAuthorizationConfig
339
375
  attr_accessor authorization_discovery: Types::MCPServerAuthorizationDiscoveryConfig
340
376
  attr_accessor unknown: untyped
@@ -392,6 +428,15 @@ module Aws::DevOpsAgent
392
428
  SENSITIVE: []
393
429
  end
394
430
 
431
+ class DeleteTriggerRequest
432
+ attr_accessor agent_space_id: ::String
433
+ attr_accessor trigger_id: ::String
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class DeleteTriggerResponse < Aws::EmptyStructure
438
+ end
439
+
395
440
  class DeregisterServiceInput
396
441
  attr_accessor service_id: ::String
397
442
  SENSITIVE: []
@@ -637,12 +682,24 @@ module Aws::DevOpsAgent
637
682
  SENSITIVE: []
638
683
  end
639
684
 
685
+ class GetTriggerRequest
686
+ attr_accessor agent_space_id: ::String
687
+ attr_accessor trigger_id: ::String
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class GetTriggerResponse
692
+ attr_accessor trigger: Types::Trigger
693
+ SENSITIVE: []
694
+ end
695
+
640
696
  class GitHubConfiguration
641
697
  attr_accessor repo_name: ::String
642
698
  attr_accessor repo_id: ::String
643
699
  attr_accessor owner: ::String
644
700
  attr_accessor owner_type: ("organization" | "user")
645
701
  attr_accessor instance_identifier: ::String
702
+ attr_accessor runtime_role_arn: ::String
646
703
  SENSITIVE: []
647
704
  end
648
705
 
@@ -650,6 +707,7 @@ module Aws::DevOpsAgent
650
707
  attr_accessor project_id: ::String
651
708
  attr_accessor project_path: ::String
652
709
  attr_accessor instance_identifier: ::String
710
+ attr_accessor runtime_role_arn: ::String
653
711
  SENSITIVE: []
654
712
  end
655
713
 
@@ -956,7 +1014,7 @@ module Aws::DevOpsAgent
956
1014
  class ListServicesInput
957
1015
  attr_accessor max_results: ::Integer
958
1016
  attr_accessor next_token: ::String
959
- attr_accessor filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4")
1017
+ attr_accessor filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4" | "remoteagent" | "remoteagentsigv4")
960
1018
  SENSITIVE: []
961
1019
  end
962
1020
 
@@ -976,6 +1034,20 @@ module Aws::DevOpsAgent
976
1034
  SENSITIVE: []
977
1035
  end
978
1036
 
1037
+ class ListTriggersRequest
1038
+ attr_accessor agent_space_id: ::String
1039
+ attr_accessor status: ::String
1040
+ attr_accessor next_token: ::String
1041
+ attr_accessor max_results: ::Integer
1042
+ SENSITIVE: []
1043
+ end
1044
+
1045
+ class ListTriggersResponse
1046
+ attr_accessor items: ::Array[Types::Trigger]
1047
+ attr_accessor next_token: ::String
1048
+ SENSITIVE: []
1049
+ end
1050
+
979
1051
  class ListWebhooksInput
980
1052
  attr_accessor agent_space_id: ::String
981
1053
  attr_accessor association_id: ::String
@@ -1260,7 +1332,7 @@ module Aws::DevOpsAgent
1260
1332
  end
1261
1333
 
1262
1334
  class RegisterServiceInput
1263
- attr_accessor service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4")
1335
+ attr_accessor service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4" | "remoteagent" | "remoteagentsigv4")
1264
1336
  attr_accessor service_details: Types::ServiceDetails
1265
1337
  attr_accessor kms_key_arn: ::String
1266
1338
  attr_accessor private_connection_name: ::String
@@ -1345,9 +1417,28 @@ module Aws::DevOpsAgent
1345
1417
  SENSITIVE: []
1346
1418
  end
1347
1419
 
1420
+ class RegisteredRemoteAgentDetails
1421
+ attr_accessor name: ::String
1422
+ attr_accessor endpoint: ::String
1423
+ attr_accessor description: ::String
1424
+ attr_accessor authorization_method: ("oauth-client-credentials" | "api-key" | "bearer-token")
1425
+ attr_accessor api_key_header: ::String
1426
+ SENSITIVE: [:description]
1427
+ end
1428
+
1429
+ class RegisteredRemoteAgentSigV4Details
1430
+ attr_accessor name: ::String
1431
+ attr_accessor endpoint: ::String
1432
+ attr_accessor description: ::String
1433
+ attr_accessor region: ::String
1434
+ attr_accessor service: ::String
1435
+ attr_accessor role_arn: ::String
1436
+ SENSITIVE: [:description]
1437
+ end
1438
+
1348
1439
  class RegisteredService
1349
1440
  attr_accessor service_id: ::String
1350
- attr_accessor service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4")
1441
+ attr_accessor service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4" | "remoteagent" | "remoteagentsigv4")
1351
1442
  attr_accessor name: ::String
1352
1443
  attr_accessor accessible_resources: ::Array[untyped]
1353
1444
  attr_accessor additional_service_details: Types::AdditionalServiceDetails
@@ -1367,11 +1458,86 @@ module Aws::DevOpsAgent
1367
1458
  SENSITIVE: []
1368
1459
  end
1369
1460
 
1461
+ class RemoteAgentAPIKeyConfig
1462
+ attr_accessor api_key_name: ::String
1463
+ attr_accessor api_key_value: ::String
1464
+ attr_accessor api_key_header: ::String
1465
+ SENSITIVE: [:api_key_value]
1466
+ end
1467
+
1468
+ class RemoteAgentAuthorizationConfig
1469
+ attr_accessor api_key: Types::RemoteAgentAPIKeyConfig
1470
+ attr_accessor o_auth_client_credentials: Types::RemoteAgentOAuthClientCredentialsConfig
1471
+ attr_accessor bearer_token: Types::RemoteAgentBearerTokenConfig
1472
+ attr_accessor unknown: untyped
1473
+ SENSITIVE: []
1474
+
1475
+ class ApiKey < RemoteAgentAuthorizationConfig
1476
+ end
1477
+ class OAuthClientCredentials < RemoteAgentAuthorizationConfig
1478
+ end
1479
+ class BearerToken < RemoteAgentAuthorizationConfig
1480
+ end
1481
+ class Unknown < RemoteAgentAuthorizationConfig
1482
+ end
1483
+ end
1484
+
1485
+ class RemoteAgentBearerTokenConfig
1486
+ attr_accessor token_name: ::String
1487
+ attr_accessor token_value: ::String
1488
+ attr_accessor authorization_header: ::String
1489
+ SENSITIVE: [:token_value]
1490
+ end
1491
+
1492
+ class RemoteAgentConfiguration < Aws::EmptyStructure
1493
+ end
1494
+
1495
+ class RemoteAgentOAuthClientCredentialsConfig
1496
+ attr_accessor client_name: ::String
1497
+ attr_accessor client_id: ::String
1498
+ attr_accessor exchange_parameters: ::Hash[::String, ::String]
1499
+ attr_accessor client_secret: ::String
1500
+ attr_accessor exchange_url: ::String
1501
+ attr_accessor scopes: ::Array[::String]
1502
+ SENSITIVE: [:client_id, :client_secret]
1503
+ end
1504
+
1505
+ class RemoteAgentServiceDetails
1506
+ attr_accessor name: ::String
1507
+ attr_accessor endpoint: ::String
1508
+ attr_accessor description: ::String
1509
+ attr_accessor authorization_config: Types::RemoteAgentAuthorizationConfig
1510
+ SENSITIVE: [:description]
1511
+ end
1512
+
1513
+ class RemoteAgentSigV4AuthorizationConfig
1514
+ attr_accessor region: ::String
1515
+ attr_accessor service: ::String
1516
+ attr_accessor role_arn: ::String
1517
+ SENSITIVE: []
1518
+ end
1519
+
1520
+ class RemoteAgentSigV4Configuration < Aws::EmptyStructure
1521
+ end
1522
+
1523
+ class RemoteAgentSigV4ServiceDetails
1524
+ attr_accessor name: ::String
1525
+ attr_accessor endpoint: ::String
1526
+ attr_accessor description: ::String
1527
+ attr_accessor authorization_config: Types::RemoteAgentSigV4AuthorizationConfig
1528
+ SENSITIVE: [:description]
1529
+ end
1530
+
1370
1531
  class ResourceNotFoundException
1371
1532
  attr_accessor message: ::String
1372
1533
  SENSITIVE: []
1373
1534
  end
1374
1535
 
1536
+ class ScheduleCondition
1537
+ attr_accessor expression: ::String
1538
+ SENSITIVE: []
1539
+ end
1540
+
1375
1541
  class SelfManagedInput
1376
1542
  attr_accessor resource_configuration_id: ::String
1377
1543
  attr_accessor certificate: ::String
@@ -1520,6 +1686,8 @@ module Aws::DevOpsAgent
1520
1686
  attr_accessor mcpservergrafana: Types::MCPServerGrafanaConfiguration
1521
1687
  attr_accessor pagerduty: Types::PagerDutyConfiguration
1522
1688
  attr_accessor mcpserversigv4: Types::MCPServerSigV4Configuration
1689
+ attr_accessor remoteagent: Types::RemoteAgentConfiguration
1690
+ attr_accessor remoteagentsigv4: Types::RemoteAgentSigV4Configuration
1523
1691
  attr_accessor unknown: untyped
1524
1692
  SENSITIVE: []
1525
1693
 
@@ -1557,6 +1725,10 @@ module Aws::DevOpsAgent
1557
1725
  end
1558
1726
  class Mcpserversigv4 < ServiceConfiguration
1559
1727
  end
1728
+ class Remoteagent < ServiceConfiguration
1729
+ end
1730
+ class Remoteagentsigv4 < ServiceConfiguration
1731
+ end
1560
1732
  class Unknown < ServiceConfiguration
1561
1733
  end
1562
1734
  end
@@ -1574,6 +1746,8 @@ module Aws::DevOpsAgent
1574
1746
  attr_accessor pagerduty: Types::PagerDutyDetails
1575
1747
  attr_accessor azureidentity: Types::RegisteredAzureIdentityDetails
1576
1748
  attr_accessor mcpserversigv4: Types::MCPServerSigV4ServiceDetails
1749
+ attr_accessor remoteagent: Types::RemoteAgentServiceDetails
1750
+ attr_accessor remoteagentsigv4: Types::RemoteAgentSigV4ServiceDetails
1577
1751
  attr_accessor unknown: untyped
1578
1752
  SENSITIVE: []
1579
1753
 
@@ -1601,6 +1775,10 @@ module Aws::DevOpsAgent
1601
1775
  end
1602
1776
  class Mcpserversigv4 < ServiceDetails
1603
1777
  end
1778
+ class Remoteagent < ServiceDetails
1779
+ end
1780
+ class Remoteagentsigv4 < ServiceDetails
1781
+ end
1604
1782
  class Unknown < ServiceDetails
1605
1783
  end
1606
1784
  end
@@ -1697,7 +1875,7 @@ module Aws::DevOpsAgent
1697
1875
  attr_accessor title: ::String
1698
1876
  attr_accessor description: ::String
1699
1877
  attr_accessor reference: Types::ReferenceOutput
1700
- attr_accessor task_type: ("INVESTIGATION" | "EVALUATION")
1878
+ attr_accessor task_type: ("INVESTIGATION" | "EVALUATION" | "RELEASE_READINESS_REVIEW" | "RELEASE_TESTING")
1701
1879
  attr_accessor priority: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")
1702
1880
  attr_accessor status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")
1703
1881
  attr_accessor created_at: ::Time
@@ -1716,7 +1894,7 @@ module Aws::DevOpsAgent
1716
1894
  attr_accessor created_before: ::Time
1717
1895
  attr_accessor priority: ::Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]
1718
1896
  attr_accessor status: ::Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]
1719
- attr_accessor task_type: ::Array[("INVESTIGATION" | "EVALUATION")]
1897
+ attr_accessor task_type: ::Array[("INVESTIGATION" | "EVALUATION" | "RELEASE_READINESS_REVIEW" | "RELEASE_TESTING")]
1720
1898
  attr_accessor primary_task_id: ::String
1721
1899
  SENSITIVE: []
1722
1900
  end
@@ -1726,6 +1904,29 @@ module Aws::DevOpsAgent
1726
1904
  SENSITIVE: []
1727
1905
  end
1728
1906
 
1907
+ class Trigger
1908
+ attr_accessor trigger_id: ::String
1909
+ attr_accessor agent_space_id: ::String
1910
+ attr_accessor type: ::String
1911
+ attr_accessor condition: Types::TriggerCondition
1912
+ attr_accessor action: untyped
1913
+ attr_accessor status: ::String
1914
+ attr_accessor created_at: ::Time
1915
+ attr_accessor updated_at: ::Time
1916
+ SENSITIVE: []
1917
+ end
1918
+
1919
+ class TriggerCondition
1920
+ attr_accessor schedule: Types::ScheduleCondition
1921
+ attr_accessor unknown: untyped
1922
+ SENSITIVE: []
1923
+
1924
+ class Schedule < TriggerCondition
1925
+ end
1926
+ class Unknown < TriggerCondition
1927
+ end
1928
+ end
1929
+
1729
1930
  class UntagResourceRequest
1730
1931
  attr_accessor resource_arn: ::String
1731
1932
  attr_accessor tag_keys: ::Array[::String]
@@ -1781,6 +1982,7 @@ module Aws::DevOpsAgent
1781
1982
  attr_accessor agent_space_id: ::String
1782
1983
  attr_accessor association_id: ::String
1783
1984
  attr_accessor configuration: Types::ServiceConfiguration
1985
+ attr_accessor capabilities: ::Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), Types::CapabilityConfiguration]
1784
1986
  SENSITIVE: []
1785
1987
  end
1786
1988
 
@@ -1862,6 +2064,19 @@ module Aws::DevOpsAgent
1862
2064
  SENSITIVE: []
1863
2065
  end
1864
2066
 
2067
+ class UpdateTriggerRequest
2068
+ attr_accessor agent_space_id: ::String
2069
+ attr_accessor trigger_id: ::String
2070
+ attr_accessor status: ::String
2071
+ attr_accessor client_token: ::String
2072
+ SENSITIVE: []
2073
+ end
2074
+
2075
+ class UpdateTriggerResponse
2076
+ attr_accessor trigger: Types::Trigger
2077
+ SENSITIVE: []
2078
+ end
2079
+
1865
2080
  class UsageMetric
1866
2081
  attr_accessor limit: ::Integer
1867
2082
  attr_accessor usage: ::Float
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.8.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services