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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +362 -17
- data/lib/aws-sdk-devopsagent/client_api.rb +318 -1
- data/lib/aws-sdk-devopsagent/types.rb +714 -10
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +115 -6
- data/sig/params.rbs +19 -8
- data/sig/types.rbs +221 -6
- metadata +1 -1
|
@@ -26,6 +26,7 @@ module Aws::DevOpsAgent
|
|
|
26
26
|
ApiKeyValue = Shapes::StringShape.new(name: 'ApiKeyValue')
|
|
27
27
|
Asset = Shapes::StructureShape.new(name: 'Asset')
|
|
28
28
|
AssetContent = Shapes::UnionShape.new(name: 'AssetContent')
|
|
29
|
+
AssetContentUrl = Shapes::StringShape.new(name: 'AssetContentUrl')
|
|
29
30
|
AssetFile = Shapes::StructureShape.new(name: 'AssetFile')
|
|
30
31
|
AssetFileBody = Shapes::UnionShape.new(name: 'AssetFileBody')
|
|
31
32
|
AssetFileBytes = Shapes::BlobShape.new(name: 'AssetFileBytes')
|
|
@@ -36,6 +37,7 @@ module Aws::DevOpsAgent
|
|
|
36
37
|
AssetFileText = Shapes::StringShape.new(name: 'AssetFileText')
|
|
37
38
|
AssetIdList = Shapes::ListShape.new(name: 'AssetIdList')
|
|
38
39
|
AssetList = Shapes::ListShape.new(name: 'AssetList')
|
|
40
|
+
AssetSourceUrlContent = Shapes::StructureShape.new(name: 'AssetSourceUrlContent')
|
|
39
41
|
AssetType = Shapes::StringShape.new(name: 'AssetType')
|
|
40
42
|
AssetTypeList = Shapes::ListShape.new(name: 'AssetTypeList')
|
|
41
43
|
AssetTypeSummary = Shapes::StructureShape.new(name: 'AssetTypeSummary')
|
|
@@ -49,6 +51,7 @@ module Aws::DevOpsAgent
|
|
|
49
51
|
AssociateServiceInput = Shapes::StructureShape.new(name: 'AssociateServiceInput')
|
|
50
52
|
AssociateServiceOutput = Shapes::StructureShape.new(name: 'AssociateServiceOutput')
|
|
51
53
|
Association = Shapes::StructureShape.new(name: 'Association')
|
|
54
|
+
AssociationCapabilities = Shapes::MapShape.new(name: 'AssociationCapabilities')
|
|
52
55
|
AssociationId = Shapes::StringShape.new(name: 'AssociationId')
|
|
53
56
|
AssociationsList = Shapes::ListShape.new(name: 'AssociationsList')
|
|
54
57
|
AuthFlow = Shapes::StringShape.new(name: 'AuthFlow')
|
|
@@ -58,6 +61,8 @@ module Aws::DevOpsAgent
|
|
|
58
61
|
BacklogTaskDescription = Shapes::StringShape.new(name: 'BacklogTaskDescription')
|
|
59
62
|
BacklogTaskTitle = Shapes::StringShape.new(name: 'BacklogTaskTitle')
|
|
60
63
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
64
|
+
CapabilityConfiguration = Shapes::StructureShape.new(name: 'CapabilityConfiguration')
|
|
65
|
+
CapabilityType = Shapes::StringShape.new(name: 'CapabilityType')
|
|
61
66
|
CertificateString = Shapes::StringShape.new(name: 'CertificateString')
|
|
62
67
|
ChatExecution = Shapes::StructureShape.new(name: 'ChatExecution')
|
|
63
68
|
ChatExecutionId = Shapes::StringShape.new(name: 'ChatExecutionId')
|
|
@@ -81,6 +86,9 @@ module Aws::DevOpsAgent
|
|
|
81
86
|
CreateChatResponse = Shapes::StructureShape.new(name: 'CreateChatResponse')
|
|
82
87
|
CreatePrivateConnectionInput = Shapes::StructureShape.new(name: 'CreatePrivateConnectionInput')
|
|
83
88
|
CreatePrivateConnectionOutput = Shapes::StructureShape.new(name: 'CreatePrivateConnectionOutput')
|
|
89
|
+
CreateTriggerRequest = Shapes::StructureShape.new(name: 'CreateTriggerRequest')
|
|
90
|
+
CreateTriggerRequestClientTokenString = Shapes::StringShape.new(name: 'CreateTriggerRequestClientTokenString')
|
|
91
|
+
CreateTriggerResponse = Shapes::StructureShape.new(name: 'CreateTriggerResponse')
|
|
84
92
|
CustomHeaderName = Shapes::StringShape.new(name: 'CustomHeaderName')
|
|
85
93
|
CustomHeaderValue = Shapes::StringShape.new(name: 'CustomHeaderValue')
|
|
86
94
|
CustomHeaders = Shapes::MapShape.new(name: 'CustomHeaders')
|
|
@@ -96,6 +104,8 @@ module Aws::DevOpsAgent
|
|
|
96
104
|
DeleteAssetResponse = Shapes::StructureShape.new(name: 'DeleteAssetResponse')
|
|
97
105
|
DeletePrivateConnectionInput = Shapes::StructureShape.new(name: 'DeletePrivateConnectionInput')
|
|
98
106
|
DeletePrivateConnectionOutput = Shapes::StructureShape.new(name: 'DeletePrivateConnectionOutput')
|
|
107
|
+
DeleteTriggerRequest = Shapes::StructureShape.new(name: 'DeleteTriggerRequest')
|
|
108
|
+
DeleteTriggerResponse = Shapes::StructureShape.new(name: 'DeleteTriggerResponse')
|
|
99
109
|
DeregisterServiceInput = Shapes::StructureShape.new(name: 'DeregisterServiceInput')
|
|
100
110
|
DeregisterServiceOutput = Shapes::StructureShape.new(name: 'DeregisterServiceOutput')
|
|
101
111
|
DescribePrivateConnectionInput = Shapes::StructureShape.new(name: 'DescribePrivateConnectionInput')
|
|
@@ -150,6 +160,8 @@ module Aws::DevOpsAgent
|
|
|
150
160
|
GetRecommendationResponse = Shapes::StructureShape.new(name: 'GetRecommendationResponse')
|
|
151
161
|
GetServiceInput = Shapes::StructureShape.new(name: 'GetServiceInput')
|
|
152
162
|
GetServiceOutput = Shapes::StructureShape.new(name: 'GetServiceOutput')
|
|
163
|
+
GetTriggerRequest = Shapes::StructureShape.new(name: 'GetTriggerRequest')
|
|
164
|
+
GetTriggerResponse = Shapes::StructureShape.new(name: 'GetTriggerResponse')
|
|
153
165
|
GitHubConfiguration = Shapes::StructureShape.new(name: 'GitHubConfiguration')
|
|
154
166
|
GitLabConfiguration = Shapes::StructureShape.new(name: 'GitLabConfiguration')
|
|
155
167
|
GitLabDetails = Shapes::StructureShape.new(name: 'GitLabDetails')
|
|
@@ -231,6 +243,9 @@ module Aws::DevOpsAgent
|
|
|
231
243
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
232
244
|
ListTagsForResourceRequestResourceArnString = Shapes::StringShape.new(name: 'ListTagsForResourceRequestResourceArnString')
|
|
233
245
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
246
|
+
ListTriggersRequest = Shapes::StructureShape.new(name: 'ListTriggersRequest')
|
|
247
|
+
ListTriggersRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListTriggersRequestMaxResultsInteger')
|
|
248
|
+
ListTriggersResponse = Shapes::StructureShape.new(name: 'ListTriggersResponse')
|
|
234
249
|
ListWebhooksInput = Shapes::StructureShape.new(name: 'ListWebhooksInput')
|
|
235
250
|
ListWebhooksOutput = Shapes::StructureShape.new(name: 'ListWebhooksOutput')
|
|
236
251
|
Locale = Shapes::StringShape.new(name: 'Locale')
|
|
@@ -262,6 +277,7 @@ module Aws::DevOpsAgent
|
|
|
262
277
|
MCPServerOAuth3LOConfig = Shapes::StructureShape.new(name: 'MCPServerOAuth3LOConfig')
|
|
263
278
|
MCPServerOAuth3LOConfigAuthorizationUrlString = Shapes::StringShape.new(name: 'MCPServerOAuth3LOConfigAuthorizationUrlString')
|
|
264
279
|
MCPServerOAuth3LOConfigClientNameString = Shapes::StringShape.new(name: 'MCPServerOAuth3LOConfigClientNameString')
|
|
280
|
+
MCPServerOAuth3LOConfigClientSecretString = Shapes::StringShape.new(name: 'MCPServerOAuth3LOConfigClientSecretString')
|
|
265
281
|
MCPServerOAuth3LOConfigExchangeUrlString = Shapes::StringShape.new(name: 'MCPServerOAuth3LOConfigExchangeUrlString')
|
|
266
282
|
MCPServerOAuth3LOConfigReturnToEndpointString = Shapes::StringShape.new(name: 'MCPServerOAuth3LOConfigReturnToEndpointString')
|
|
267
283
|
MCPServerOAuthClientCredentialsConfig = Shapes::StructureShape.new(name: 'MCPServerOAuthClientCredentialsConfig')
|
|
@@ -343,16 +359,46 @@ module Aws::DevOpsAgent
|
|
|
343
359
|
RegisteredMCPServerSigV4DetailsServiceString = Shapes::StringShape.new(name: 'RegisteredMCPServerSigV4DetailsServiceString')
|
|
344
360
|
RegisteredNewRelicDetails = Shapes::StructureShape.new(name: 'RegisteredNewRelicDetails')
|
|
345
361
|
RegisteredPagerDutyDetails = Shapes::StructureShape.new(name: 'RegisteredPagerDutyDetails')
|
|
362
|
+
RegisteredRemoteAgentDetails = Shapes::StructureShape.new(name: 'RegisteredRemoteAgentDetails')
|
|
363
|
+
RegisteredRemoteAgentDetailsDescriptionString = Shapes::StringShape.new(name: 'RegisteredRemoteAgentDetailsDescriptionString')
|
|
364
|
+
RegisteredRemoteAgentSigV4Details = Shapes::StructureShape.new(name: 'RegisteredRemoteAgentSigV4Details')
|
|
365
|
+
RegisteredRemoteAgentSigV4DetailsDescriptionString = Shapes::StringShape.new(name: 'RegisteredRemoteAgentSigV4DetailsDescriptionString')
|
|
366
|
+
RegisteredRemoteAgentSigV4DetailsServiceString = Shapes::StringShape.new(name: 'RegisteredRemoteAgentSigV4DetailsServiceString')
|
|
346
367
|
RegisteredService = Shapes::StructureShape.new(name: 'RegisteredService')
|
|
347
368
|
RegisteredServiceNowDetails = Shapes::StructureShape.new(name: 'RegisteredServiceNowDetails')
|
|
348
369
|
RegisteredServicesList = Shapes::ListShape.new(name: 'RegisteredServicesList')
|
|
349
370
|
RegisteredSlackServiceDetails = Shapes::StructureShape.new(name: 'RegisteredSlackServiceDetails')
|
|
371
|
+
RemoteAgentAPIKeyConfig = Shapes::StructureShape.new(name: 'RemoteAgentAPIKeyConfig')
|
|
372
|
+
RemoteAgentAPIKeyConfigApiKeyHeaderString = Shapes::StringShape.new(name: 'RemoteAgentAPIKeyConfigApiKeyHeaderString')
|
|
373
|
+
RemoteAgentAPIKeyConfigApiKeyNameString = Shapes::StringShape.new(name: 'RemoteAgentAPIKeyConfigApiKeyNameString')
|
|
374
|
+
RemoteAgentAPIKeyConfigApiKeyValueString = Shapes::StringShape.new(name: 'RemoteAgentAPIKeyConfigApiKeyValueString')
|
|
375
|
+
RemoteAgentAuthorizationConfig = Shapes::UnionShape.new(name: 'RemoteAgentAuthorizationConfig')
|
|
376
|
+
RemoteAgentAuthorizationMethod = Shapes::StringShape.new(name: 'RemoteAgentAuthorizationMethod')
|
|
377
|
+
RemoteAgentBearerTokenConfig = Shapes::StructureShape.new(name: 'RemoteAgentBearerTokenConfig')
|
|
378
|
+
RemoteAgentBearerTokenConfigAuthorizationHeaderString = Shapes::StringShape.new(name: 'RemoteAgentBearerTokenConfigAuthorizationHeaderString')
|
|
379
|
+
RemoteAgentBearerTokenConfigTokenNameString = Shapes::StringShape.new(name: 'RemoteAgentBearerTokenConfigTokenNameString')
|
|
380
|
+
RemoteAgentBearerTokenConfigTokenValueString = Shapes::StringShape.new(name: 'RemoteAgentBearerTokenConfigTokenValueString')
|
|
381
|
+
RemoteAgentConfiguration = Shapes::StructureShape.new(name: 'RemoteAgentConfiguration')
|
|
382
|
+
RemoteAgentEndpoint = Shapes::StringShape.new(name: 'RemoteAgentEndpoint')
|
|
383
|
+
RemoteAgentName = Shapes::StringShape.new(name: 'RemoteAgentName')
|
|
384
|
+
RemoteAgentOAuthClientCredentialsConfig = Shapes::StructureShape.new(name: 'RemoteAgentOAuthClientCredentialsConfig')
|
|
385
|
+
RemoteAgentOAuthClientCredentialsConfigClientNameString = Shapes::StringShape.new(name: 'RemoteAgentOAuthClientCredentialsConfigClientNameString')
|
|
386
|
+
RemoteAgentOAuthClientCredentialsConfigExchangeUrlString = Shapes::StringShape.new(name: 'RemoteAgentOAuthClientCredentialsConfigExchangeUrlString')
|
|
387
|
+
RemoteAgentServiceDetails = Shapes::StructureShape.new(name: 'RemoteAgentServiceDetails')
|
|
388
|
+
RemoteAgentServiceDetailsDescriptionString = Shapes::StringShape.new(name: 'RemoteAgentServiceDetailsDescriptionString')
|
|
389
|
+
RemoteAgentSigV4AuthorizationConfig = Shapes::StructureShape.new(name: 'RemoteAgentSigV4AuthorizationConfig')
|
|
390
|
+
RemoteAgentSigV4AuthorizationConfigServiceString = Shapes::StringShape.new(name: 'RemoteAgentSigV4AuthorizationConfigServiceString')
|
|
391
|
+
RemoteAgentSigV4Configuration = Shapes::StructureShape.new(name: 'RemoteAgentSigV4Configuration')
|
|
392
|
+
RemoteAgentSigV4ServiceDetails = Shapes::StructureShape.new(name: 'RemoteAgentSigV4ServiceDetails')
|
|
393
|
+
RemoteAgentSigV4ServiceDetailsDescriptionString = Shapes::StringShape.new(name: 'RemoteAgentSigV4ServiceDetailsDescriptionString')
|
|
350
394
|
ResourceConfigDnsResolution = Shapes::StringShape.new(name: 'ResourceConfigDnsResolution')
|
|
351
395
|
ResourceConfigurationArn = Shapes::StringShape.new(name: 'ResourceConfigurationArn')
|
|
352
396
|
ResourceGatewayArn = Shapes::StringShape.new(name: 'ResourceGatewayArn')
|
|
353
397
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
354
398
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
355
399
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
400
|
+
ScheduleCondition = Shapes::StructureShape.new(name: 'ScheduleCondition')
|
|
401
|
+
ScheduleExpression = Shapes::StringShape.new(name: 'ScheduleExpression')
|
|
356
402
|
SchedulerState = Shapes::StringShape.new(name: 'SchedulerState')
|
|
357
403
|
Scopes = Shapes::ListShape.new(name: 'Scopes')
|
|
358
404
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
@@ -419,6 +465,12 @@ module Aws::DevOpsAgent
|
|
|
419
465
|
TaskType = Shapes::StringShape.new(name: 'TaskType')
|
|
420
466
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
421
467
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
468
|
+
Trigger = Shapes::StructureShape.new(name: 'Trigger')
|
|
469
|
+
TriggerAction = Shapes::DocumentShape.new(name: 'TriggerAction', document: true)
|
|
470
|
+
TriggerCondition = Shapes::UnionShape.new(name: 'TriggerCondition')
|
|
471
|
+
TriggerList = Shapes::ListShape.new(name: 'TriggerList')
|
|
472
|
+
TriggerStatus = Shapes::StringShape.new(name: 'TriggerStatus')
|
|
473
|
+
TriggerType = Shapes::StringShape.new(name: 'TriggerType')
|
|
422
474
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
423
475
|
UntagResourceRequestResourceArnString = Shapes::StringShape.new(name: 'UntagResourceRequestResourceArnString')
|
|
424
476
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
@@ -442,6 +494,9 @@ module Aws::DevOpsAgent
|
|
|
442
494
|
UpdatePrivateConnectionCertificateOutput = Shapes::StructureShape.new(name: 'UpdatePrivateConnectionCertificateOutput')
|
|
443
495
|
UpdateRecommendationRequest = Shapes::StructureShape.new(name: 'UpdateRecommendationRequest')
|
|
444
496
|
UpdateRecommendationResponse = Shapes::StructureShape.new(name: 'UpdateRecommendationResponse')
|
|
497
|
+
UpdateTriggerRequest = Shapes::StructureShape.new(name: 'UpdateTriggerRequest')
|
|
498
|
+
UpdateTriggerRequestClientTokenString = Shapes::StringShape.new(name: 'UpdateTriggerRequestClientTokenString')
|
|
499
|
+
UpdateTriggerResponse = Shapes::StructureShape.new(name: 'UpdateTriggerResponse')
|
|
445
500
|
UsageMetric = Shapes::StructureShape.new(name: 'UsageMetric')
|
|
446
501
|
UserMessage = Shapes::ListShape.new(name: 'UserMessage')
|
|
447
502
|
UserMessageBlock = Shapes::UnionShape.new(name: 'UserMessageBlock')
|
|
@@ -483,6 +538,8 @@ module Aws::DevOpsAgent
|
|
|
483
538
|
AdditionalServiceDetails.add_member(:mcpservergrafana, Shapes::ShapeRef.new(shape: RegisteredGrafanaServerDetails, location_name: "mcpservergrafana"))
|
|
484
539
|
AdditionalServiceDetails.add_member(:pagerduty, Shapes::ShapeRef.new(shape: RegisteredPagerDutyDetails, location_name: "pagerduty"))
|
|
485
540
|
AdditionalServiceDetails.add_member(:mcpserversigv4, Shapes::ShapeRef.new(shape: RegisteredMCPServerSigV4Details, location_name: "mcpserversigv4"))
|
|
541
|
+
AdditionalServiceDetails.add_member(:remoteagent, Shapes::ShapeRef.new(shape: RegisteredRemoteAgentDetails, location_name: "remoteagent"))
|
|
542
|
+
AdditionalServiceDetails.add_member(:remoteagentsigv4, Shapes::ShapeRef.new(shape: RegisteredRemoteAgentSigV4Details, location_name: "remoteagentsigv4"))
|
|
486
543
|
AdditionalServiceDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
487
544
|
AdditionalServiceDetails.add_member_subclass(:github, Types::AdditionalServiceDetails::Github)
|
|
488
545
|
AdditionalServiceDetails.add_member_subclass(:slack, Types::AdditionalServiceDetails::Slack)
|
|
@@ -497,6 +554,8 @@ module Aws::DevOpsAgent
|
|
|
497
554
|
AdditionalServiceDetails.add_member_subclass(:mcpservergrafana, Types::AdditionalServiceDetails::Mcpservergrafana)
|
|
498
555
|
AdditionalServiceDetails.add_member_subclass(:pagerduty, Types::AdditionalServiceDetails::Pagerduty)
|
|
499
556
|
AdditionalServiceDetails.add_member_subclass(:mcpserversigv4, Types::AdditionalServiceDetails::Mcpserversigv4)
|
|
557
|
+
AdditionalServiceDetails.add_member_subclass(:remoteagent, Types::AdditionalServiceDetails::Remoteagent)
|
|
558
|
+
AdditionalServiceDetails.add_member_subclass(:remoteagentsigv4, Types::AdditionalServiceDetails::Remoteagentsigv4)
|
|
500
559
|
AdditionalServiceDetails.add_member_subclass(:unknown, Types::AdditionalServiceDetails::Unknown)
|
|
501
560
|
AdditionalServiceDetails.struct_class = Types::AdditionalServiceDetails
|
|
502
561
|
|
|
@@ -527,9 +586,11 @@ module Aws::DevOpsAgent
|
|
|
527
586
|
|
|
528
587
|
AssetContent.add_member(:file, Shapes::ShapeRef.new(shape: AssetFileContent, location_name: "file"))
|
|
529
588
|
AssetContent.add_member(:zip, Shapes::ShapeRef.new(shape: AssetZipContent, location_name: "zip"))
|
|
589
|
+
AssetContent.add_member(:source_url, Shapes::ShapeRef.new(shape: AssetSourceUrlContent, location_name: "sourceUrl"))
|
|
530
590
|
AssetContent.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
531
591
|
AssetContent.add_member_subclass(:file, Types::AssetContent::File)
|
|
532
592
|
AssetContent.add_member_subclass(:zip, Types::AssetContent::Zip)
|
|
593
|
+
AssetContent.add_member_subclass(:source_url, Types::AssetContent::SourceUrl)
|
|
533
594
|
AssetContent.add_member_subclass(:unknown, Types::AssetContent::Unknown)
|
|
534
595
|
AssetContent.struct_class = Types::AssetContent
|
|
535
596
|
|
|
@@ -567,6 +628,9 @@ module Aws::DevOpsAgent
|
|
|
567
628
|
|
|
568
629
|
AssetList.member = Shapes::ShapeRef.new(shape: Asset)
|
|
569
630
|
|
|
631
|
+
AssetSourceUrlContent.add_member(:url, Shapes::ShapeRef.new(shape: AssetContentUrl, required: true, location_name: "url"))
|
|
632
|
+
AssetSourceUrlContent.struct_class = Types::AssetSourceUrlContent
|
|
633
|
+
|
|
570
634
|
AssetTypeList.member = Shapes::ShapeRef.new(shape: AssetTypeSummary)
|
|
571
635
|
|
|
572
636
|
AssetTypeSummary.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, required: true, location_name: "assetType"))
|
|
@@ -596,6 +660,7 @@ module Aws::DevOpsAgent
|
|
|
596
660
|
AssociateServiceInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
597
661
|
AssociateServiceInput.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "serviceId"))
|
|
598
662
|
AssociateServiceInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ServiceConfiguration, required: true, location_name: "configuration"))
|
|
663
|
+
AssociateServiceInput.add_member(:capabilities, Shapes::ShapeRef.new(shape: AssociationCapabilities, location_name: "capabilities"))
|
|
599
664
|
AssociateServiceInput.struct_class = Types::AssociateServiceInput
|
|
600
665
|
|
|
601
666
|
AssociateServiceOutput.add_member(:association, Shapes::ShapeRef.new(shape: Association, required: true, location_name: "association"))
|
|
@@ -609,8 +674,12 @@ module Aws::DevOpsAgent
|
|
|
609
674
|
Association.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location_name: "associationId"))
|
|
610
675
|
Association.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "serviceId"))
|
|
611
676
|
Association.add_member(:configuration, Shapes::ShapeRef.new(shape: ServiceConfiguration, required: true, location_name: "configuration"))
|
|
677
|
+
Association.add_member(:capabilities, Shapes::ShapeRef.new(shape: AssociationCapabilities, location_name: "capabilities"))
|
|
612
678
|
Association.struct_class = Types::Association
|
|
613
679
|
|
|
680
|
+
AssociationCapabilities.key = Shapes::ShapeRef.new(shape: CapabilityType)
|
|
681
|
+
AssociationCapabilities.value = Shapes::ShapeRef.new(shape: CapabilityConfiguration)
|
|
682
|
+
|
|
614
683
|
AssociationsList.member = Shapes::ShapeRef.new(shape: Association)
|
|
615
684
|
|
|
616
685
|
AzureConfiguration.add_member(:subscription_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "subscriptionId"))
|
|
@@ -621,6 +690,9 @@ module Aws::DevOpsAgent
|
|
|
621
690
|
AzureDevOpsConfiguration.add_member(:project_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "projectName"))
|
|
622
691
|
AzureDevOpsConfiguration.struct_class = Types::AzureDevOpsConfiguration
|
|
623
692
|
|
|
693
|
+
CapabilityConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "enabled"))
|
|
694
|
+
CapabilityConfiguration.struct_class = Types::CapabilityConfiguration
|
|
695
|
+
|
|
624
696
|
ChatExecution.add_member(:execution_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "executionId"))
|
|
625
697
|
ChatExecution.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
626
698
|
ChatExecution.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
|
@@ -707,6 +779,17 @@ module Aws::DevOpsAgent
|
|
|
707
779
|
CreatePrivateConnectionOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
708
780
|
CreatePrivateConnectionOutput.struct_class = Types::CreatePrivateConnectionOutput
|
|
709
781
|
|
|
782
|
+
CreateTriggerRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
783
|
+
CreateTriggerRequest.add_member(:type, Shapes::ShapeRef.new(shape: TriggerType, required: true, location_name: "type"))
|
|
784
|
+
CreateTriggerRequest.add_member(:condition, Shapes::ShapeRef.new(shape: TriggerCondition, required: true, location_name: "condition"))
|
|
785
|
+
CreateTriggerRequest.add_member(:action, Shapes::ShapeRef.new(shape: TriggerAction, required: true, location_name: "action"))
|
|
786
|
+
CreateTriggerRequest.add_member(:status, Shapes::ShapeRef.new(shape: TriggerStatus, location_name: "status"))
|
|
787
|
+
CreateTriggerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateTriggerRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
788
|
+
CreateTriggerRequest.struct_class = Types::CreateTriggerRequest
|
|
789
|
+
|
|
790
|
+
CreateTriggerResponse.add_member(:trigger, Shapes::ShapeRef.new(shape: Trigger, required: true, location_name: "trigger"))
|
|
791
|
+
CreateTriggerResponse.struct_class = Types::CreateTriggerResponse
|
|
792
|
+
|
|
710
793
|
CustomHeaders.key = Shapes::ShapeRef.new(shape: CustomHeaderName)
|
|
711
794
|
CustomHeaders.value = Shapes::ShapeRef.new(shape: CustomHeaderValue)
|
|
712
795
|
|
|
@@ -747,6 +830,12 @@ module Aws::DevOpsAgent
|
|
|
747
830
|
DeletePrivateConnectionOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateConnectionStatus, required: true, location_name: "status"))
|
|
748
831
|
DeletePrivateConnectionOutput.struct_class = Types::DeletePrivateConnectionOutput
|
|
749
832
|
|
|
833
|
+
DeleteTriggerRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
834
|
+
DeleteTriggerRequest.add_member(:trigger_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "triggerId"))
|
|
835
|
+
DeleteTriggerRequest.struct_class = Types::DeleteTriggerRequest
|
|
836
|
+
|
|
837
|
+
DeleteTriggerResponse.struct_class = Types::DeleteTriggerResponse
|
|
838
|
+
|
|
750
839
|
DeregisterServiceInput.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location: "uri", location_name: "serviceId"))
|
|
751
840
|
DeregisterServiceInput.struct_class = Types::DeregisterServiceInput
|
|
752
841
|
|
|
@@ -928,16 +1017,25 @@ module Aws::DevOpsAgent
|
|
|
928
1017
|
GetServiceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
929
1018
|
GetServiceOutput.struct_class = Types::GetServiceOutput
|
|
930
1019
|
|
|
1020
|
+
GetTriggerRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1021
|
+
GetTriggerRequest.add_member(:trigger_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "triggerId"))
|
|
1022
|
+
GetTriggerRequest.struct_class = Types::GetTriggerRequest
|
|
1023
|
+
|
|
1024
|
+
GetTriggerResponse.add_member(:trigger, Shapes::ShapeRef.new(shape: Trigger, required: true, location_name: "trigger"))
|
|
1025
|
+
GetTriggerResponse.struct_class = Types::GetTriggerResponse
|
|
1026
|
+
|
|
931
1027
|
GitHubConfiguration.add_member(:repo_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "repoName"))
|
|
932
1028
|
GitHubConfiguration.add_member(:repo_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "repoId"))
|
|
933
1029
|
GitHubConfiguration.add_member(:owner, Shapes::ShapeRef.new(shape: String, required: true, location_name: "owner"))
|
|
934
1030
|
GitHubConfiguration.add_member(:owner_type, Shapes::ShapeRef.new(shape: GithubRepoOwnerType, required: true, location_name: "ownerType"))
|
|
935
1031
|
GitHubConfiguration.add_member(:instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "instanceIdentifier"))
|
|
1032
|
+
GitHubConfiguration.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
|
|
936
1033
|
GitHubConfiguration.struct_class = Types::GitHubConfiguration
|
|
937
1034
|
|
|
938
1035
|
GitLabConfiguration.add_member(:project_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "projectId"))
|
|
939
1036
|
GitLabConfiguration.add_member(:project_path, Shapes::ShapeRef.new(shape: String, required: true, location_name: "projectPath"))
|
|
940
1037
|
GitLabConfiguration.add_member(:instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "instanceIdentifier"))
|
|
1038
|
+
GitLabConfiguration.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
|
|
941
1039
|
GitLabConfiguration.struct_class = Types::GitLabConfiguration
|
|
942
1040
|
|
|
943
1041
|
GitLabDetails.add_member(:target_url, Shapes::ShapeRef.new(shape: GitLabDetailsTargetUrlString, required: true, location_name: "targetUrl"))
|
|
@@ -1182,6 +1280,16 @@ module Aws::DevOpsAgent
|
|
|
1182
1280
|
ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "tags"))
|
|
1183
1281
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
|
1184
1282
|
|
|
1283
|
+
ListTriggersRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1284
|
+
ListTriggersRequest.add_member(:status, Shapes::ShapeRef.new(shape: TriggerStatus, location: "querystring", location_name: "status"))
|
|
1285
|
+
ListTriggersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1286
|
+
ListTriggersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListTriggersRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1287
|
+
ListTriggersRequest.struct_class = Types::ListTriggersRequest
|
|
1288
|
+
|
|
1289
|
+
ListTriggersResponse.add_member(:items, Shapes::ShapeRef.new(shape: TriggerList, required: true, location_name: "items"))
|
|
1290
|
+
ListTriggersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1291
|
+
ListTriggersResponse.struct_class = Types::ListTriggersResponse
|
|
1292
|
+
|
|
1185
1293
|
ListWebhooksInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1186
1294
|
ListWebhooksInput.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location: "uri", location_name: "associationId"))
|
|
1187
1295
|
ListWebhooksInput.struct_class = Types::ListWebhooksInput
|
|
@@ -1242,7 +1350,7 @@ module Aws::DevOpsAgent
|
|
|
1242
1350
|
MCPServerOAuth3LOConfig.add_member(:return_to_endpoint, Shapes::ShapeRef.new(shape: MCPServerOAuth3LOConfigReturnToEndpointString, required: true, location_name: "returnToEndpoint"))
|
|
1243
1351
|
MCPServerOAuth3LOConfig.add_member(:authorization_url, Shapes::ShapeRef.new(shape: MCPServerOAuth3LOConfigAuthorizationUrlString, required: true, location_name: "authorizationUrl"))
|
|
1244
1352
|
MCPServerOAuth3LOConfig.add_member(:exchange_url, Shapes::ShapeRef.new(shape: MCPServerOAuth3LOConfigExchangeUrlString, required: true, location_name: "exchangeUrl"))
|
|
1245
|
-
MCPServerOAuth3LOConfig.add_member(:client_secret, Shapes::ShapeRef.new(shape:
|
|
1353
|
+
MCPServerOAuth3LOConfig.add_member(:client_secret, Shapes::ShapeRef.new(shape: MCPServerOAuth3LOConfigClientSecretString, location_name: "clientSecret"))
|
|
1246
1354
|
MCPServerOAuth3LOConfig.add_member(:support_code_challenge, Shapes::ShapeRef.new(shape: Boolean, location_name: "supportCodeChallenge"))
|
|
1247
1355
|
MCPServerOAuth3LOConfig.add_member(:scopes, Shapes::ShapeRef.new(shape: Scopes, location_name: "scopes"))
|
|
1248
1356
|
MCPServerOAuth3LOConfig.struct_class = Types::MCPServerOAuth3LOConfig
|
|
@@ -1466,6 +1574,21 @@ module Aws::DevOpsAgent
|
|
|
1466
1574
|
RegisteredPagerDutyDetails.add_member(:scopes, Shapes::ShapeRef.new(shape: PagerDutyScopesList, required: true, location_name: "scopes"))
|
|
1467
1575
|
RegisteredPagerDutyDetails.struct_class = Types::RegisteredPagerDutyDetails
|
|
1468
1576
|
|
|
1577
|
+
RegisteredRemoteAgentDetails.add_member(:name, Shapes::ShapeRef.new(shape: RemoteAgentName, required: true, location_name: "name"))
|
|
1578
|
+
RegisteredRemoteAgentDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: RemoteAgentEndpoint, required: true, location_name: "endpoint"))
|
|
1579
|
+
RegisteredRemoteAgentDetails.add_member(:description, Shapes::ShapeRef.new(shape: RegisteredRemoteAgentDetailsDescriptionString, location_name: "description"))
|
|
1580
|
+
RegisteredRemoteAgentDetails.add_member(:authorization_method, Shapes::ShapeRef.new(shape: RemoteAgentAuthorizationMethod, required: true, location_name: "authorizationMethod"))
|
|
1581
|
+
RegisteredRemoteAgentDetails.add_member(:api_key_header, Shapes::ShapeRef.new(shape: String, location_name: "apiKeyHeader"))
|
|
1582
|
+
RegisteredRemoteAgentDetails.struct_class = Types::RegisteredRemoteAgentDetails
|
|
1583
|
+
|
|
1584
|
+
RegisteredRemoteAgentSigV4Details.add_member(:name, Shapes::ShapeRef.new(shape: RemoteAgentName, required: true, location_name: "name"))
|
|
1585
|
+
RegisteredRemoteAgentSigV4Details.add_member(:endpoint, Shapes::ShapeRef.new(shape: RemoteAgentEndpoint, required: true, location_name: "endpoint"))
|
|
1586
|
+
RegisteredRemoteAgentSigV4Details.add_member(:description, Shapes::ShapeRef.new(shape: RegisteredRemoteAgentSigV4DetailsDescriptionString, location_name: "description"))
|
|
1587
|
+
RegisteredRemoteAgentSigV4Details.add_member(:region, Shapes::ShapeRef.new(shape: SigV4Region, required: true, location_name: "region"))
|
|
1588
|
+
RegisteredRemoteAgentSigV4Details.add_member(:service, Shapes::ShapeRef.new(shape: RegisteredRemoteAgentSigV4DetailsServiceString, required: true, location_name: "service"))
|
|
1589
|
+
RegisteredRemoteAgentSigV4Details.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
|
1590
|
+
RegisteredRemoteAgentSigV4Details.struct_class = Types::RegisteredRemoteAgentSigV4Details
|
|
1591
|
+
|
|
1469
1592
|
RegisteredService.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "serviceId"))
|
|
1470
1593
|
RegisteredService.add_member(:service_type, Shapes::ShapeRef.new(shape: Service, required: true, location_name: "serviceType"))
|
|
1471
1594
|
RegisteredService.add_member(:name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "name"))
|
|
@@ -1484,9 +1607,61 @@ module Aws::DevOpsAgent
|
|
|
1484
1607
|
RegisteredSlackServiceDetails.add_member(:team_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "teamName"))
|
|
1485
1608
|
RegisteredSlackServiceDetails.struct_class = Types::RegisteredSlackServiceDetails
|
|
1486
1609
|
|
|
1610
|
+
RemoteAgentAPIKeyConfig.add_member(:api_key_name, Shapes::ShapeRef.new(shape: RemoteAgentAPIKeyConfigApiKeyNameString, required: true, location_name: "apiKeyName"))
|
|
1611
|
+
RemoteAgentAPIKeyConfig.add_member(:api_key_value, Shapes::ShapeRef.new(shape: RemoteAgentAPIKeyConfigApiKeyValueString, required: true, location_name: "apiKeyValue"))
|
|
1612
|
+
RemoteAgentAPIKeyConfig.add_member(:api_key_header, Shapes::ShapeRef.new(shape: RemoteAgentAPIKeyConfigApiKeyHeaderString, required: true, location_name: "apiKeyHeader"))
|
|
1613
|
+
RemoteAgentAPIKeyConfig.struct_class = Types::RemoteAgentAPIKeyConfig
|
|
1614
|
+
|
|
1615
|
+
RemoteAgentAuthorizationConfig.add_member(:api_key, Shapes::ShapeRef.new(shape: RemoteAgentAPIKeyConfig, location_name: "apiKey"))
|
|
1616
|
+
RemoteAgentAuthorizationConfig.add_member(:o_auth_client_credentials, Shapes::ShapeRef.new(shape: RemoteAgentOAuthClientCredentialsConfig, location_name: "oAuthClientCredentials"))
|
|
1617
|
+
RemoteAgentAuthorizationConfig.add_member(:bearer_token, Shapes::ShapeRef.new(shape: RemoteAgentBearerTokenConfig, location_name: "bearerToken"))
|
|
1618
|
+
RemoteAgentAuthorizationConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1619
|
+
RemoteAgentAuthorizationConfig.add_member_subclass(:api_key, Types::RemoteAgentAuthorizationConfig::ApiKey)
|
|
1620
|
+
RemoteAgentAuthorizationConfig.add_member_subclass(:o_auth_client_credentials, Types::RemoteAgentAuthorizationConfig::OAuthClientCredentials)
|
|
1621
|
+
RemoteAgentAuthorizationConfig.add_member_subclass(:bearer_token, Types::RemoteAgentAuthorizationConfig::BearerToken)
|
|
1622
|
+
RemoteAgentAuthorizationConfig.add_member_subclass(:unknown, Types::RemoteAgentAuthorizationConfig::Unknown)
|
|
1623
|
+
RemoteAgentAuthorizationConfig.struct_class = Types::RemoteAgentAuthorizationConfig
|
|
1624
|
+
|
|
1625
|
+
RemoteAgentBearerTokenConfig.add_member(:token_name, Shapes::ShapeRef.new(shape: RemoteAgentBearerTokenConfigTokenNameString, required: true, location_name: "tokenName"))
|
|
1626
|
+
RemoteAgentBearerTokenConfig.add_member(:token_value, Shapes::ShapeRef.new(shape: RemoteAgentBearerTokenConfigTokenValueString, required: true, location_name: "tokenValue"))
|
|
1627
|
+
RemoteAgentBearerTokenConfig.add_member(:authorization_header, Shapes::ShapeRef.new(shape: RemoteAgentBearerTokenConfigAuthorizationHeaderString, location_name: "authorizationHeader"))
|
|
1628
|
+
RemoteAgentBearerTokenConfig.struct_class = Types::RemoteAgentBearerTokenConfig
|
|
1629
|
+
|
|
1630
|
+
RemoteAgentConfiguration.struct_class = Types::RemoteAgentConfiguration
|
|
1631
|
+
|
|
1632
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:client_name, Shapes::ShapeRef.new(shape: RemoteAgentOAuthClientCredentialsConfigClientNameString, location_name: "clientName"))
|
|
1633
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientId, required: true, location_name: "clientId"))
|
|
1634
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:exchange_parameters, Shapes::ShapeRef.new(shape: ExchangeParameters, location_name: "exchangeParameters"))
|
|
1635
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecret, required: true, location_name: "clientSecret"))
|
|
1636
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:exchange_url, Shapes::ShapeRef.new(shape: RemoteAgentOAuthClientCredentialsConfigExchangeUrlString, required: true, location_name: "exchangeUrl"))
|
|
1637
|
+
RemoteAgentOAuthClientCredentialsConfig.add_member(:scopes, Shapes::ShapeRef.new(shape: Scopes, location_name: "scopes"))
|
|
1638
|
+
RemoteAgentOAuthClientCredentialsConfig.struct_class = Types::RemoteAgentOAuthClientCredentialsConfig
|
|
1639
|
+
|
|
1640
|
+
RemoteAgentServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape: RemoteAgentName, required: true, location_name: "name"))
|
|
1641
|
+
RemoteAgentServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: RemoteAgentEndpoint, required: true, location_name: "endpoint"))
|
|
1642
|
+
RemoteAgentServiceDetails.add_member(:description, Shapes::ShapeRef.new(shape: RemoteAgentServiceDetailsDescriptionString, location_name: "description"))
|
|
1643
|
+
RemoteAgentServiceDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: RemoteAgentAuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
1644
|
+
RemoteAgentServiceDetails.struct_class = Types::RemoteAgentServiceDetails
|
|
1645
|
+
|
|
1646
|
+
RemoteAgentSigV4AuthorizationConfig.add_member(:region, Shapes::ShapeRef.new(shape: SigV4Region, required: true, location_name: "region"))
|
|
1647
|
+
RemoteAgentSigV4AuthorizationConfig.add_member(:service, Shapes::ShapeRef.new(shape: RemoteAgentSigV4AuthorizationConfigServiceString, required: true, location_name: "service"))
|
|
1648
|
+
RemoteAgentSigV4AuthorizationConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
|
1649
|
+
RemoteAgentSigV4AuthorizationConfig.struct_class = Types::RemoteAgentSigV4AuthorizationConfig
|
|
1650
|
+
|
|
1651
|
+
RemoteAgentSigV4Configuration.struct_class = Types::RemoteAgentSigV4Configuration
|
|
1652
|
+
|
|
1653
|
+
RemoteAgentSigV4ServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape: RemoteAgentName, required: true, location_name: "name"))
|
|
1654
|
+
RemoteAgentSigV4ServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: RemoteAgentEndpoint, required: true, location_name: "endpoint"))
|
|
1655
|
+
RemoteAgentSigV4ServiceDetails.add_member(:description, Shapes::ShapeRef.new(shape: RemoteAgentSigV4ServiceDetailsDescriptionString, location_name: "description"))
|
|
1656
|
+
RemoteAgentSigV4ServiceDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: RemoteAgentSigV4AuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
1657
|
+
RemoteAgentSigV4ServiceDetails.struct_class = Types::RemoteAgentSigV4ServiceDetails
|
|
1658
|
+
|
|
1487
1659
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1488
1660
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
1489
1661
|
|
|
1662
|
+
ScheduleCondition.add_member(:expression, Shapes::ShapeRef.new(shape: ScheduleExpression, required: true, location_name: "expression"))
|
|
1663
|
+
ScheduleCondition.struct_class = Types::ScheduleCondition
|
|
1664
|
+
|
|
1490
1665
|
Scopes.member = Shapes::ShapeRef.new(shape: OAuthScope)
|
|
1491
1666
|
|
|
1492
1667
|
SelfManagedInput.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, required: true, location_name: "resourceConfigurationId"))
|
|
@@ -1602,6 +1777,8 @@ module Aws::DevOpsAgent
|
|
|
1602
1777
|
ServiceConfiguration.add_member(:mcpservergrafana, Shapes::ShapeRef.new(shape: MCPServerGrafanaConfiguration, location_name: "mcpservergrafana"))
|
|
1603
1778
|
ServiceConfiguration.add_member(:pagerduty, Shapes::ShapeRef.new(shape: PagerDutyConfiguration, location_name: "pagerduty"))
|
|
1604
1779
|
ServiceConfiguration.add_member(:mcpserversigv4, Shapes::ShapeRef.new(shape: MCPServerSigV4Configuration, location_name: "mcpserversigv4"))
|
|
1780
|
+
ServiceConfiguration.add_member(:remoteagent, Shapes::ShapeRef.new(shape: RemoteAgentConfiguration, location_name: "remoteagent"))
|
|
1781
|
+
ServiceConfiguration.add_member(:remoteagentsigv4, Shapes::ShapeRef.new(shape: RemoteAgentSigV4Configuration, location_name: "remoteagentsigv4"))
|
|
1605
1782
|
ServiceConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1606
1783
|
ServiceConfiguration.add_member_subclass(:source_aws, Types::ServiceConfiguration::SourceAws)
|
|
1607
1784
|
ServiceConfiguration.add_member_subclass(:aws, Types::ServiceConfiguration::Aws)
|
|
@@ -1620,6 +1797,8 @@ module Aws::DevOpsAgent
|
|
|
1620
1797
|
ServiceConfiguration.add_member_subclass(:mcpservergrafana, Types::ServiceConfiguration::Mcpservergrafana)
|
|
1621
1798
|
ServiceConfiguration.add_member_subclass(:pagerduty, Types::ServiceConfiguration::Pagerduty)
|
|
1622
1799
|
ServiceConfiguration.add_member_subclass(:mcpserversigv4, Types::ServiceConfiguration::Mcpserversigv4)
|
|
1800
|
+
ServiceConfiguration.add_member_subclass(:remoteagent, Types::ServiceConfiguration::Remoteagent)
|
|
1801
|
+
ServiceConfiguration.add_member_subclass(:remoteagentsigv4, Types::ServiceConfiguration::Remoteagentsigv4)
|
|
1623
1802
|
ServiceConfiguration.add_member_subclass(:unknown, Types::ServiceConfiguration::Unknown)
|
|
1624
1803
|
ServiceConfiguration.struct_class = Types::ServiceConfiguration
|
|
1625
1804
|
|
|
@@ -1635,6 +1814,8 @@ module Aws::DevOpsAgent
|
|
|
1635
1814
|
ServiceDetails.add_member(:pagerduty, Shapes::ShapeRef.new(shape: PagerDutyDetails, location_name: "pagerduty"))
|
|
1636
1815
|
ServiceDetails.add_member(:azureidentity, Shapes::ShapeRef.new(shape: RegisteredAzureIdentityDetails, location_name: "azureidentity"))
|
|
1637
1816
|
ServiceDetails.add_member(:mcpserversigv4, Shapes::ShapeRef.new(shape: MCPServerSigV4ServiceDetails, location_name: "mcpserversigv4"))
|
|
1817
|
+
ServiceDetails.add_member(:remoteagent, Shapes::ShapeRef.new(shape: RemoteAgentServiceDetails, location_name: "remoteagent"))
|
|
1818
|
+
ServiceDetails.add_member(:remoteagentsigv4, Shapes::ShapeRef.new(shape: RemoteAgentSigV4ServiceDetails, location_name: "remoteagentsigv4"))
|
|
1638
1819
|
ServiceDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1639
1820
|
ServiceDetails.add_member_subclass(:dynatrace, Types::ServiceDetails::Dynatrace)
|
|
1640
1821
|
ServiceDetails.add_member_subclass(:servicenow, Types::ServiceDetails::Servicenow)
|
|
@@ -1648,6 +1829,8 @@ module Aws::DevOpsAgent
|
|
|
1648
1829
|
ServiceDetails.add_member_subclass(:pagerduty, Types::ServiceDetails::Pagerduty)
|
|
1649
1830
|
ServiceDetails.add_member_subclass(:azureidentity, Types::ServiceDetails::Azureidentity)
|
|
1650
1831
|
ServiceDetails.add_member_subclass(:mcpserversigv4, Types::ServiceDetails::Mcpserversigv4)
|
|
1832
|
+
ServiceDetails.add_member_subclass(:remoteagent, Types::ServiceDetails::Remoteagent)
|
|
1833
|
+
ServiceDetails.add_member_subclass(:remoteagentsigv4, Types::ServiceDetails::Remoteagentsigv4)
|
|
1651
1834
|
ServiceDetails.add_member_subclass(:unknown, Types::ServiceDetails::Unknown)
|
|
1652
1835
|
ServiceDetails.struct_class = Types::ServiceDetails
|
|
1653
1836
|
|
|
@@ -1755,6 +1938,24 @@ module Aws::DevOpsAgent
|
|
|
1755
1938
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1756
1939
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
1757
1940
|
|
|
1941
|
+
Trigger.add_member(:trigger_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "triggerId"))
|
|
1942
|
+
Trigger.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location_name: "agentSpaceId"))
|
|
1943
|
+
Trigger.add_member(:type, Shapes::ShapeRef.new(shape: TriggerType, required: true, location_name: "type"))
|
|
1944
|
+
Trigger.add_member(:condition, Shapes::ShapeRef.new(shape: TriggerCondition, required: true, location_name: "condition"))
|
|
1945
|
+
Trigger.add_member(:action, Shapes::ShapeRef.new(shape: TriggerAction, required: true, location_name: "action"))
|
|
1946
|
+
Trigger.add_member(:status, Shapes::ShapeRef.new(shape: TriggerStatus, required: true, location_name: "status"))
|
|
1947
|
+
Trigger.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
1948
|
+
Trigger.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
1949
|
+
Trigger.struct_class = Types::Trigger
|
|
1950
|
+
|
|
1951
|
+
TriggerCondition.add_member(:schedule, Shapes::ShapeRef.new(shape: ScheduleCondition, location_name: "schedule"))
|
|
1952
|
+
TriggerCondition.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1953
|
+
TriggerCondition.add_member_subclass(:schedule, Types::TriggerCondition::Schedule)
|
|
1954
|
+
TriggerCondition.add_member_subclass(:unknown, Types::TriggerCondition::Unknown)
|
|
1955
|
+
TriggerCondition.struct_class = Types::TriggerCondition
|
|
1956
|
+
|
|
1957
|
+
TriggerList.member = Shapes::ShapeRef.new(shape: Trigger)
|
|
1958
|
+
|
|
1758
1959
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: UntagResourceRequestResourceArnString, required: true, location: "uri", location_name: "resourceArn"))
|
|
1759
1960
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
|
|
1760
1961
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
|
@@ -1794,6 +1995,7 @@ module Aws::DevOpsAgent
|
|
|
1794
1995
|
UpdateAssociationInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1795
1996
|
UpdateAssociationInput.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location: "uri", location_name: "associationId"))
|
|
1796
1997
|
UpdateAssociationInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ServiceConfiguration, required: true, location_name: "configuration"))
|
|
1998
|
+
UpdateAssociationInput.add_member(:capabilities, Shapes::ShapeRef.new(shape: AssociationCapabilities, location_name: "capabilities"))
|
|
1797
1999
|
UpdateAssociationInput.struct_class = Types::UpdateAssociationInput
|
|
1798
2000
|
|
|
1799
2001
|
UpdateAssociationOutput.add_member(:association, Shapes::ShapeRef.new(shape: Association, required: true, location_name: "association"))
|
|
@@ -1852,6 +2054,15 @@ module Aws::DevOpsAgent
|
|
|
1852
2054
|
UpdateRecommendationResponse.add_member(:recommendation, Shapes::ShapeRef.new(shape: Recommendation, required: true, location_name: "recommendation"))
|
|
1853
2055
|
UpdateRecommendationResponse.struct_class = Types::UpdateRecommendationResponse
|
|
1854
2056
|
|
|
2057
|
+
UpdateTriggerRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
2058
|
+
UpdateTriggerRequest.add_member(:trigger_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "triggerId"))
|
|
2059
|
+
UpdateTriggerRequest.add_member(:status, Shapes::ShapeRef.new(shape: TriggerStatus, location_name: "status"))
|
|
2060
|
+
UpdateTriggerRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UpdateTriggerRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
2061
|
+
UpdateTriggerRequest.struct_class = Types::UpdateTriggerRequest
|
|
2062
|
+
|
|
2063
|
+
UpdateTriggerResponse.add_member(:trigger, Shapes::ShapeRef.new(shape: Trigger, required: true, location_name: "trigger"))
|
|
2064
|
+
UpdateTriggerResponse.struct_class = Types::UpdateTriggerResponse
|
|
2065
|
+
|
|
1855
2066
|
UsageMetric.add_member(:limit, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "limit"))
|
|
1856
2067
|
UsageMetric.add_member(:usage, Shapes::ShapeRef.new(shape: Double, required: true, location_name: "usage"))
|
|
1857
2068
|
UsageMetric.struct_class = Types::UsageMetric
|
|
@@ -2053,6 +2264,26 @@ module Aws::DevOpsAgent
|
|
|
2053
2264
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2054
2265
|
end)
|
|
2055
2266
|
|
|
2267
|
+
api.add_operation(:create_trigger, Seahorse::Model::Operation.new.tap do |o|
|
|
2268
|
+
o.name = "CreateTrigger"
|
|
2269
|
+
o.http_method = "POST"
|
|
2270
|
+
o.http_request_uri = "/trigger/agent-space/{agentSpaceId}/triggers"
|
|
2271
|
+
o.endpoint_pattern = {
|
|
2272
|
+
"hostPrefix" => "dp.",
|
|
2273
|
+
}
|
|
2274
|
+
o.input = Shapes::ShapeRef.new(shape: CreateTriggerRequest)
|
|
2275
|
+
o.output = Shapes::ShapeRef.new(shape: CreateTriggerResponse)
|
|
2276
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2277
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2278
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2279
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2280
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2281
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2282
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2283
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2284
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2285
|
+
end)
|
|
2286
|
+
|
|
2056
2287
|
api.add_operation(:delete_agent_space, Seahorse::Model::Operation.new.tap do |o|
|
|
2057
2288
|
o.name = "DeleteAgentSpace"
|
|
2058
2289
|
o.http_method = "DELETE"
|
|
@@ -2133,6 +2364,26 @@ module Aws::DevOpsAgent
|
|
|
2133
2364
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2134
2365
|
end)
|
|
2135
2366
|
|
|
2367
|
+
api.add_operation(:delete_trigger, Seahorse::Model::Operation.new.tap do |o|
|
|
2368
|
+
o.name = "DeleteTrigger"
|
|
2369
|
+
o.http_method = "DELETE"
|
|
2370
|
+
o.http_request_uri = "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}"
|
|
2371
|
+
o.endpoint_pattern = {
|
|
2372
|
+
"hostPrefix" => "dp.",
|
|
2373
|
+
}
|
|
2374
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteTriggerRequest)
|
|
2375
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteTriggerResponse)
|
|
2376
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2377
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2378
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2379
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2380
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2381
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2382
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2383
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2384
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2385
|
+
end)
|
|
2386
|
+
|
|
2136
2387
|
api.add_operation(:deregister_service, Seahorse::Model::Operation.new.tap do |o|
|
|
2137
2388
|
o.name = "DeregisterService"
|
|
2138
2389
|
o.http_method = "DELETE"
|
|
@@ -2435,6 +2686,26 @@ module Aws::DevOpsAgent
|
|
|
2435
2686
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2436
2687
|
end)
|
|
2437
2688
|
|
|
2689
|
+
api.add_operation(:get_trigger, Seahorse::Model::Operation.new.tap do |o|
|
|
2690
|
+
o.name = "GetTrigger"
|
|
2691
|
+
o.http_method = "GET"
|
|
2692
|
+
o.http_request_uri = "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}"
|
|
2693
|
+
o.endpoint_pattern = {
|
|
2694
|
+
"hostPrefix" => "dp.",
|
|
2695
|
+
}
|
|
2696
|
+
o.input = Shapes::ShapeRef.new(shape: GetTriggerRequest)
|
|
2697
|
+
o.output = Shapes::ShapeRef.new(shape: GetTriggerResponse)
|
|
2698
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2699
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2700
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2701
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2702
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2703
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2704
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2705
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2706
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2707
|
+
end)
|
|
2708
|
+
|
|
2438
2709
|
api.add_operation(:list_agent_spaces, Seahorse::Model::Operation.new.tap do |o|
|
|
2439
2710
|
o.name = "ListAgentSpaces"
|
|
2440
2711
|
o.http_method = "POST"
|
|
@@ -2821,6 +3092,32 @@ module Aws::DevOpsAgent
|
|
|
2821
3092
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2822
3093
|
end)
|
|
2823
3094
|
|
|
3095
|
+
api.add_operation(:list_triggers, Seahorse::Model::Operation.new.tap do |o|
|
|
3096
|
+
o.name = "ListTriggers"
|
|
3097
|
+
o.http_method = "GET"
|
|
3098
|
+
o.http_request_uri = "/trigger/agent-space/{agentSpaceId}/triggers"
|
|
3099
|
+
o.endpoint_pattern = {
|
|
3100
|
+
"hostPrefix" => "dp.",
|
|
3101
|
+
}
|
|
3102
|
+
o.input = Shapes::ShapeRef.new(shape: ListTriggersRequest)
|
|
3103
|
+
o.output = Shapes::ShapeRef.new(shape: ListTriggersResponse)
|
|
3104
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3105
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
3106
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3107
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3108
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3109
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3110
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3111
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3112
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3113
|
+
o[:pager] = Aws::Pager.new(
|
|
3114
|
+
limit_key: "max_results",
|
|
3115
|
+
tokens: {
|
|
3116
|
+
"next_token" => "next_token"
|
|
3117
|
+
}
|
|
3118
|
+
)
|
|
3119
|
+
end)
|
|
3120
|
+
|
|
2824
3121
|
api.add_operation(:list_webhooks, Seahorse::Model::Operation.new.tap do |o|
|
|
2825
3122
|
o.name = "ListWebhooks"
|
|
2826
3123
|
o.http_method = "POST"
|
|
@@ -3101,6 +3398,26 @@ module Aws::DevOpsAgent
|
|
|
3101
3398
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3102
3399
|
end)
|
|
3103
3400
|
|
|
3401
|
+
api.add_operation(:update_trigger, Seahorse::Model::Operation.new.tap do |o|
|
|
3402
|
+
o.name = "UpdateTrigger"
|
|
3403
|
+
o.http_method = "PATCH"
|
|
3404
|
+
o.http_request_uri = "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}"
|
|
3405
|
+
o.endpoint_pattern = {
|
|
3406
|
+
"hostPrefix" => "dp.",
|
|
3407
|
+
}
|
|
3408
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateTriggerRequest)
|
|
3409
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateTriggerResponse)
|
|
3410
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
3411
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
3412
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
3413
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
3414
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
3415
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
3416
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
3417
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
3418
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
3419
|
+
end)
|
|
3420
|
+
|
|
3104
3421
|
api.add_operation(:validate_aws_associations, Seahorse::Model::Operation.new.tap do |o|
|
|
3105
3422
|
o.name = "ValidateAwsAssociations"
|
|
3106
3423
|
o.http_method = "POST"
|