aws-sdk-devopsagent 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +719 -25
- data/lib/aws-sdk-devopsagent/client_api.rb +570 -26
- data/lib/aws-sdk-devopsagent/types.rb +989 -35
- data/lib/aws-sdk-devopsagent.rb +1 -1
- data/sig/client.rbs +202 -5
- data/sig/params.rbs +17 -0
- data/sig/types.rbs +273 -3
- metadata +1 -1
|
@@ -24,6 +24,26 @@ module Aws::DevOpsAgent
|
|
|
24
24
|
AgentSpaceList = Shapes::ListShape.new(name: 'AgentSpaceList')
|
|
25
25
|
AgentSpaceName = Shapes::StringShape.new(name: 'AgentSpaceName')
|
|
26
26
|
ApiKeyValue = Shapes::StringShape.new(name: 'ApiKeyValue')
|
|
27
|
+
Asset = Shapes::StructureShape.new(name: 'Asset')
|
|
28
|
+
AssetContent = Shapes::UnionShape.new(name: 'AssetContent')
|
|
29
|
+
AssetFile = Shapes::StructureShape.new(name: 'AssetFile')
|
|
30
|
+
AssetFileBody = Shapes::UnionShape.new(name: 'AssetFileBody')
|
|
31
|
+
AssetFileBytes = Shapes::BlobShape.new(name: 'AssetFileBytes')
|
|
32
|
+
AssetFileContent = Shapes::StructureShape.new(name: 'AssetFileContent')
|
|
33
|
+
AssetFilePath = Shapes::StringShape.new(name: 'AssetFilePath')
|
|
34
|
+
AssetFileSummary = Shapes::StructureShape.new(name: 'AssetFileSummary')
|
|
35
|
+
AssetFileSummaryList = Shapes::ListShape.new(name: 'AssetFileSummaryList')
|
|
36
|
+
AssetFileText = Shapes::StringShape.new(name: 'AssetFileText')
|
|
37
|
+
AssetIdList = Shapes::ListShape.new(name: 'AssetIdList')
|
|
38
|
+
AssetList = Shapes::ListShape.new(name: 'AssetList')
|
|
39
|
+
AssetType = Shapes::StringShape.new(name: 'AssetType')
|
|
40
|
+
AssetTypeList = Shapes::ListShape.new(name: 'AssetTypeList')
|
|
41
|
+
AssetTypeSummary = Shapes::StructureShape.new(name: 'AssetTypeSummary')
|
|
42
|
+
AssetTypeSummaryDescriptionString = Shapes::StringShape.new(name: 'AssetTypeSummaryDescriptionString')
|
|
43
|
+
AssetVersionMetadata = Shapes::StructureShape.new(name: 'AssetVersionMetadata')
|
|
44
|
+
AssetVersionMetadataList = Shapes::ListShape.new(name: 'AssetVersionMetadataList')
|
|
45
|
+
AssetZipBytes = Shapes::BlobShape.new(name: 'AssetZipBytes')
|
|
46
|
+
AssetZipContent = Shapes::StructureShape.new(name: 'AssetZipContent')
|
|
27
47
|
AssistantMessage = Shapes::ListShape.new(name: 'AssistantMessage')
|
|
28
48
|
AssistantMessageBlock = Shapes::UnionShape.new(name: 'AssistantMessageBlock')
|
|
29
49
|
AssociateServiceInput = Shapes::StructureShape.new(name: 'AssociateServiceInput')
|
|
@@ -40,6 +60,7 @@ module Aws::DevOpsAgent
|
|
|
40
60
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
41
61
|
CertificateString = Shapes::StringShape.new(name: 'CertificateString')
|
|
42
62
|
ChatExecution = Shapes::StructureShape.new(name: 'ChatExecution')
|
|
63
|
+
ChatExecutionId = Shapes::StringShape.new(name: 'ChatExecutionId')
|
|
43
64
|
ChatExecutionList = Shapes::ListShape.new(name: 'ChatExecutionList')
|
|
44
65
|
ClientId = Shapes::StringShape.new(name: 'ClientId')
|
|
45
66
|
ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
|
|
@@ -48,6 +69,12 @@ module Aws::DevOpsAgent
|
|
|
48
69
|
CreateAgentSpaceInput = Shapes::StructureShape.new(name: 'CreateAgentSpaceInput')
|
|
49
70
|
CreateAgentSpaceInputClientTokenString = Shapes::StringShape.new(name: 'CreateAgentSpaceInputClientTokenString')
|
|
50
71
|
CreateAgentSpaceOutput = Shapes::StructureShape.new(name: 'CreateAgentSpaceOutput')
|
|
72
|
+
CreateAssetFileRequest = Shapes::StructureShape.new(name: 'CreateAssetFileRequest')
|
|
73
|
+
CreateAssetFileRequestClientTokenString = Shapes::StringShape.new(name: 'CreateAssetFileRequestClientTokenString')
|
|
74
|
+
CreateAssetFileResponse = Shapes::StructureShape.new(name: 'CreateAssetFileResponse')
|
|
75
|
+
CreateAssetRequest = Shapes::StructureShape.new(name: 'CreateAssetRequest')
|
|
76
|
+
CreateAssetRequestClientTokenString = Shapes::StringShape.new(name: 'CreateAssetRequestClientTokenString')
|
|
77
|
+
CreateAssetResponse = Shapes::StructureShape.new(name: 'CreateAssetResponse')
|
|
51
78
|
CreateBacklogTaskRequest = Shapes::StructureShape.new(name: 'CreateBacklogTaskRequest')
|
|
52
79
|
CreateBacklogTaskResponse = Shapes::StructureShape.new(name: 'CreateBacklogTaskResponse')
|
|
53
80
|
CreateChatRequest = Shapes::StructureShape.new(name: 'CreateChatRequest')
|
|
@@ -60,11 +87,13 @@ module Aws::DevOpsAgent
|
|
|
60
87
|
DatadogAuthorizationConfig = Shapes::UnionShape.new(name: 'DatadogAuthorizationConfig')
|
|
61
88
|
DatadogServiceDetails = Shapes::StructureShape.new(name: 'DatadogServiceDetails')
|
|
62
89
|
DatadogServiceDetailsDescriptionString = Shapes::StringShape.new(name: 'DatadogServiceDetailsDescriptionString')
|
|
63
|
-
DatadogServiceDetailsEndpointString = Shapes::StringShape.new(name: 'DatadogServiceDetailsEndpointString')
|
|
64
|
-
DatadogServiceDetailsNameString = Shapes::StringShape.new(name: 'DatadogServiceDetailsNameString')
|
|
65
90
|
DateTime = Shapes::TimestampShape.new(name: 'DateTime', timestampFormat: "iso8601")
|
|
66
91
|
DeleteAgentSpaceInput = Shapes::StructureShape.new(name: 'DeleteAgentSpaceInput')
|
|
67
92
|
DeleteAgentSpaceOutput = Shapes::StructureShape.new(name: 'DeleteAgentSpaceOutput')
|
|
93
|
+
DeleteAssetFileRequest = Shapes::StructureShape.new(name: 'DeleteAssetFileRequest')
|
|
94
|
+
DeleteAssetFileResponse = Shapes::StructureShape.new(name: 'DeleteAssetFileResponse')
|
|
95
|
+
DeleteAssetRequest = Shapes::StructureShape.new(name: 'DeleteAssetRequest')
|
|
96
|
+
DeleteAssetResponse = Shapes::StructureShape.new(name: 'DeleteAssetResponse')
|
|
68
97
|
DeletePrivateConnectionInput = Shapes::StructureShape.new(name: 'DeletePrivateConnectionInput')
|
|
69
98
|
DeletePrivateConnectionOutput = Shapes::StructureShape.new(name: 'DeletePrivateConnectionOutput')
|
|
70
99
|
DeregisterServiceInput = Shapes::StructureShape.new(name: 'DeregisterServiceInput')
|
|
@@ -96,11 +125,21 @@ module Aws::DevOpsAgent
|
|
|
96
125
|
Execution = Shapes::StructureShape.new(name: 'Execution')
|
|
97
126
|
ExecutionList = Shapes::ListShape.new(name: 'ExecutionList')
|
|
98
127
|
ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
|
|
128
|
+
FailureMessage = Shapes::StringShape.new(name: 'FailureMessage')
|
|
99
129
|
GenericWebhook = Shapes::StructureShape.new(name: 'GenericWebhook')
|
|
100
130
|
GetAccountUsageInput = Shapes::StructureShape.new(name: 'GetAccountUsageInput')
|
|
101
131
|
GetAccountUsageOutput = Shapes::StructureShape.new(name: 'GetAccountUsageOutput')
|
|
102
132
|
GetAgentSpaceInput = Shapes::StructureShape.new(name: 'GetAgentSpaceInput')
|
|
103
133
|
GetAgentSpaceOutput = Shapes::StructureShape.new(name: 'GetAgentSpaceOutput')
|
|
134
|
+
GetAssetContentRequest = Shapes::StructureShape.new(name: 'GetAssetContentRequest')
|
|
135
|
+
GetAssetContentRequestAssetVersionInteger = Shapes::IntegerShape.new(name: 'GetAssetContentRequestAssetVersionInteger')
|
|
136
|
+
GetAssetContentResponse = Shapes::StructureShape.new(name: 'GetAssetContentResponse')
|
|
137
|
+
GetAssetFileRequest = Shapes::StructureShape.new(name: 'GetAssetFileRequest')
|
|
138
|
+
GetAssetFileRequestAssetVersionInteger = Shapes::IntegerShape.new(name: 'GetAssetFileRequestAssetVersionInteger')
|
|
139
|
+
GetAssetFileResponse = Shapes::StructureShape.new(name: 'GetAssetFileResponse')
|
|
140
|
+
GetAssetRequest = Shapes::StructureShape.new(name: 'GetAssetRequest')
|
|
141
|
+
GetAssetRequestAssetVersionInteger = Shapes::IntegerShape.new(name: 'GetAssetRequestAssetVersionInteger')
|
|
142
|
+
GetAssetResponse = Shapes::StructureShape.new(name: 'GetAssetResponse')
|
|
104
143
|
GetAssociationInput = Shapes::StructureShape.new(name: 'GetAssociationInput')
|
|
105
144
|
GetAssociationOutput = Shapes::StructureShape.new(name: 'GetAssociationOutput')
|
|
106
145
|
GetBacklogTaskRequest = Shapes::StructureShape.new(name: 'GetBacklogTaskRequest')
|
|
@@ -127,8 +166,6 @@ module Aws::DevOpsAgent
|
|
|
127
166
|
GoalType = Shapes::StringShape.new(name: 'GoalType')
|
|
128
167
|
GrafanaServiceDetails = Shapes::StructureShape.new(name: 'GrafanaServiceDetails')
|
|
129
168
|
GrafanaServiceDetailsDescriptionString = Shapes::StringShape.new(name: 'GrafanaServiceDetailsDescriptionString')
|
|
130
|
-
GrafanaServiceDetailsEndpointString = Shapes::StringShape.new(name: 'GrafanaServiceDetailsEndpointString')
|
|
131
|
-
GrafanaServiceDetailsNameString = Shapes::StringShape.new(name: 'GrafanaServiceDetailsNameString')
|
|
132
169
|
Guid = Shapes::StringShape.new(name: 'Guid')
|
|
133
170
|
IamAuthConfiguration = Shapes::StructureShape.new(name: 'IamAuthConfiguration')
|
|
134
171
|
IdcAuthConfiguration = Shapes::StructureShape.new(name: 'IdcAuthConfiguration')
|
|
@@ -148,6 +185,19 @@ module Aws::DevOpsAgent
|
|
|
148
185
|
ListAgentSpacesInput = Shapes::StructureShape.new(name: 'ListAgentSpacesInput')
|
|
149
186
|
ListAgentSpacesInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAgentSpacesInputMaxResultsInteger')
|
|
150
187
|
ListAgentSpacesOutput = Shapes::StructureShape.new(name: 'ListAgentSpacesOutput')
|
|
188
|
+
ListAssetFilesRequest = Shapes::StructureShape.new(name: 'ListAssetFilesRequest')
|
|
189
|
+
ListAssetFilesRequestAssetVersionInteger = Shapes::IntegerShape.new(name: 'ListAssetFilesRequestAssetVersionInteger')
|
|
190
|
+
ListAssetFilesRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAssetFilesRequestMaxResultsInteger')
|
|
191
|
+
ListAssetFilesResponse = Shapes::StructureShape.new(name: 'ListAssetFilesResponse')
|
|
192
|
+
ListAssetTypesRequest = Shapes::StructureShape.new(name: 'ListAssetTypesRequest')
|
|
193
|
+
ListAssetTypesRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAssetTypesRequestMaxResultsInteger')
|
|
194
|
+
ListAssetTypesResponse = Shapes::StructureShape.new(name: 'ListAssetTypesResponse')
|
|
195
|
+
ListAssetVersionsRequest = Shapes::StructureShape.new(name: 'ListAssetVersionsRequest')
|
|
196
|
+
ListAssetVersionsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAssetVersionsRequestMaxResultsInteger')
|
|
197
|
+
ListAssetVersionsResponse = Shapes::StructureShape.new(name: 'ListAssetVersionsResponse')
|
|
198
|
+
ListAssetsRequest = Shapes::StructureShape.new(name: 'ListAssetsRequest')
|
|
199
|
+
ListAssetsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAssetsRequestMaxResultsInteger')
|
|
200
|
+
ListAssetsResponse = Shapes::StructureShape.new(name: 'ListAssetsResponse')
|
|
151
201
|
ListAssociationsInput = Shapes::StructureShape.new(name: 'ListAssociationsInput')
|
|
152
202
|
ListAssociationsInputFilterServiceTypesString = Shapes::StringShape.new(name: 'ListAssociationsInputFilterServiceTypesString')
|
|
153
203
|
ListAssociationsInputMaxResultsInteger = Shapes::IntegerShape.new(name: 'ListAssociationsInputMaxResultsInteger')
|
|
@@ -201,11 +251,11 @@ module Aws::DevOpsAgent
|
|
|
201
251
|
MCPServerDatadogConfiguration = Shapes::StructureShape.new(name: 'MCPServerDatadogConfiguration')
|
|
202
252
|
MCPServerDetails = Shapes::StructureShape.new(name: 'MCPServerDetails')
|
|
203
253
|
MCPServerDetailsDescriptionString = Shapes::StringShape.new(name: 'MCPServerDetailsDescriptionString')
|
|
204
|
-
|
|
205
|
-
MCPServerDetailsNameString = Shapes::StringShape.new(name: 'MCPServerDetailsNameString')
|
|
254
|
+
MCPServerEndpoint = Shapes::StringShape.new(name: 'MCPServerEndpoint')
|
|
206
255
|
MCPServerGrafanaConfiguration = Shapes::StructureShape.new(name: 'MCPServerGrafanaConfiguration')
|
|
207
256
|
MCPServerGrafanaConfigurationEndpointString = Shapes::StringShape.new(name: 'MCPServerGrafanaConfigurationEndpointString')
|
|
208
257
|
MCPServerGrafanaConfigurationOrganizationIdString = Shapes::StringShape.new(name: 'MCPServerGrafanaConfigurationOrganizationIdString')
|
|
258
|
+
MCPServerName = Shapes::StringShape.new(name: 'MCPServerName')
|
|
209
259
|
MCPServerNewRelicConfiguration = Shapes::StructureShape.new(name: 'MCPServerNewRelicConfiguration')
|
|
210
260
|
MCPServerNewRelicConfigurationAccountIdString = Shapes::StringShape.new(name: 'MCPServerNewRelicConfigurationAccountIdString')
|
|
211
261
|
MCPServerNewRelicConfigurationEndpointString = Shapes::StringShape.new(name: 'MCPServerNewRelicConfigurationEndpointString')
|
|
@@ -218,12 +268,11 @@ module Aws::DevOpsAgent
|
|
|
218
268
|
MCPServerOAuthClientCredentialsConfigClientNameString = Shapes::StringShape.new(name: 'MCPServerOAuthClientCredentialsConfigClientNameString')
|
|
219
269
|
MCPServerOAuthClientCredentialsConfigExchangeUrlString = Shapes::StringShape.new(name: 'MCPServerOAuthClientCredentialsConfigExchangeUrlString')
|
|
220
270
|
MCPServerSigV4AuthorizationConfig = Shapes::StructureShape.new(name: 'MCPServerSigV4AuthorizationConfig')
|
|
271
|
+
MCPServerSigV4AuthorizationConfigRoleArnString = Shapes::StringShape.new(name: 'MCPServerSigV4AuthorizationConfigRoleArnString')
|
|
221
272
|
MCPServerSigV4AuthorizationConfigServiceString = Shapes::StringShape.new(name: 'MCPServerSigV4AuthorizationConfigServiceString')
|
|
222
273
|
MCPServerSigV4Configuration = Shapes::StructureShape.new(name: 'MCPServerSigV4Configuration')
|
|
223
274
|
MCPServerSigV4ServiceDetails = Shapes::StructureShape.new(name: 'MCPServerSigV4ServiceDetails')
|
|
224
275
|
MCPServerSigV4ServiceDetailsDescriptionString = Shapes::StringShape.new(name: 'MCPServerSigV4ServiceDetailsDescriptionString')
|
|
225
|
-
MCPServerSigV4ServiceDetailsEndpointString = Shapes::StringShape.new(name: 'MCPServerSigV4ServiceDetailsEndpointString')
|
|
226
|
-
MCPServerSigV4ServiceDetailsNameString = Shapes::StringShape.new(name: 'MCPServerSigV4ServiceDetailsNameString')
|
|
227
276
|
MCPServerSplunkConfiguration = Shapes::StructureShape.new(name: 'MCPServerSplunkConfiguration')
|
|
228
277
|
MCPToolsList = Shapes::ListShape.new(name: 'MCPToolsList')
|
|
229
278
|
MCPToolsListMemberString = Shapes::StringShape.new(name: 'MCPToolsListMemberString')
|
|
@@ -245,6 +294,8 @@ module Aws::DevOpsAgent
|
|
|
245
294
|
NewRelicServiceDetails = Shapes::StructureShape.new(name: 'NewRelicServiceDetails')
|
|
246
295
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
247
296
|
OAuthAdditionalStepDetails = Shapes::StructureShape.new(name: 'OAuthAdditionalStepDetails')
|
|
297
|
+
OAuthScope = Shapes::StringShape.new(name: 'OAuthScope')
|
|
298
|
+
OperatorAppUrl = Shapes::StringShape.new(name: 'OperatorAppUrl')
|
|
248
299
|
OrderType = Shapes::StringShape.new(name: 'OrderType')
|
|
249
300
|
PagerDutyAuthorizationConfig = Shapes::UnionShape.new(name: 'PagerDutyAuthorizationConfig')
|
|
250
301
|
PagerDutyConfiguration = Shapes::StructureShape.new(name: 'PagerDutyConfiguration')
|
|
@@ -285,12 +336,10 @@ module Aws::DevOpsAgent
|
|
|
285
336
|
RegisteredGitLabServiceDetails = Shapes::StructureShape.new(name: 'RegisteredGitLabServiceDetails')
|
|
286
337
|
RegisteredGithubServiceDetails = Shapes::StructureShape.new(name: 'RegisteredGithubServiceDetails')
|
|
287
338
|
RegisteredGrafanaServerDetails = Shapes::StructureShape.new(name: 'RegisteredGrafanaServerDetails')
|
|
288
|
-
RegisteredGrafanaServerDetailsEndpointString = Shapes::StringShape.new(name: 'RegisteredGrafanaServerDetailsEndpointString')
|
|
289
339
|
RegisteredMCPServerDetails = Shapes::StructureShape.new(name: 'RegisteredMCPServerDetails')
|
|
290
340
|
RegisteredMCPServerSigV4Details = Shapes::StructureShape.new(name: 'RegisteredMCPServerSigV4Details')
|
|
291
341
|
RegisteredMCPServerSigV4DetailsDescriptionString = Shapes::StringShape.new(name: 'RegisteredMCPServerSigV4DetailsDescriptionString')
|
|
292
|
-
|
|
293
|
-
RegisteredMCPServerSigV4DetailsNameString = Shapes::StringShape.new(name: 'RegisteredMCPServerSigV4DetailsNameString')
|
|
342
|
+
RegisteredMCPServerSigV4DetailsRoleArnString = Shapes::StringShape.new(name: 'RegisteredMCPServerSigV4DetailsRoleArnString')
|
|
294
343
|
RegisteredMCPServerSigV4DetailsServiceString = Shapes::StringShape.new(name: 'RegisteredMCPServerSigV4DetailsServiceString')
|
|
295
344
|
RegisteredNewRelicDetails = Shapes::StructureShape.new(name: 'RegisteredNewRelicDetails')
|
|
296
345
|
RegisteredPagerDutyDetails = Shapes::StructureShape.new(name: 'RegisteredPagerDutyDetails')
|
|
@@ -298,6 +347,7 @@ module Aws::DevOpsAgent
|
|
|
298
347
|
RegisteredServiceNowDetails = Shapes::StructureShape.new(name: 'RegisteredServiceNowDetails')
|
|
299
348
|
RegisteredServicesList = Shapes::ListShape.new(name: 'RegisteredServicesList')
|
|
300
349
|
RegisteredSlackServiceDetails = Shapes::StructureShape.new(name: 'RegisteredSlackServiceDetails')
|
|
350
|
+
ResourceConfigDnsResolution = Shapes::StringShape.new(name: 'ResourceConfigDnsResolution')
|
|
301
351
|
ResourceConfigurationArn = Shapes::StringShape.new(name: 'ResourceConfigurationArn')
|
|
302
352
|
ResourceGatewayArn = Shapes::StringShape.new(name: 'ResourceGatewayArn')
|
|
303
353
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
|
@@ -374,6 +424,12 @@ module Aws::DevOpsAgent
|
|
|
374
424
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
375
425
|
UpdateAgentSpaceInput = Shapes::StructureShape.new(name: 'UpdateAgentSpaceInput')
|
|
376
426
|
UpdateAgentSpaceOutput = Shapes::StructureShape.new(name: 'UpdateAgentSpaceOutput')
|
|
427
|
+
UpdateAssetFileRequest = Shapes::StructureShape.new(name: 'UpdateAssetFileRequest')
|
|
428
|
+
UpdateAssetFileRequestClientTokenString = Shapes::StringShape.new(name: 'UpdateAssetFileRequestClientTokenString')
|
|
429
|
+
UpdateAssetFileResponse = Shapes::StructureShape.new(name: 'UpdateAssetFileResponse')
|
|
430
|
+
UpdateAssetRequest = Shapes::StructureShape.new(name: 'UpdateAssetRequest')
|
|
431
|
+
UpdateAssetRequestClientTokenString = Shapes::StringShape.new(name: 'UpdateAssetRequestClientTokenString')
|
|
432
|
+
UpdateAssetResponse = Shapes::StructureShape.new(name: 'UpdateAssetResponse')
|
|
377
433
|
UpdateAssociationInput = Shapes::StructureShape.new(name: 'UpdateAssociationInput')
|
|
378
434
|
UpdateAssociationOutput = Shapes::StructureShape.new(name: 'UpdateAssociationOutput')
|
|
379
435
|
UpdateBacklogTaskRequest = Shapes::StructureShape.new(name: 'UpdateBacklogTaskRequest')
|
|
@@ -461,6 +517,72 @@ module Aws::DevOpsAgent
|
|
|
461
517
|
|
|
462
518
|
AgentSpaceList.member = Shapes::ShapeRef.new(shape: AgentSpace)
|
|
463
519
|
|
|
520
|
+
Asset.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "assetId"))
|
|
521
|
+
Asset.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, required: true, location_name: "assetType"))
|
|
522
|
+
Asset.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, required: true, location_name: "metadata"))
|
|
523
|
+
Asset.add_member(:version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "version"))
|
|
524
|
+
Asset.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
525
|
+
Asset.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
526
|
+
Asset.struct_class = Types::Asset
|
|
527
|
+
|
|
528
|
+
AssetContent.add_member(:file, Shapes::ShapeRef.new(shape: AssetFileContent, location_name: "file"))
|
|
529
|
+
AssetContent.add_member(:zip, Shapes::ShapeRef.new(shape: AssetZipContent, location_name: "zip"))
|
|
530
|
+
AssetContent.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
531
|
+
AssetContent.add_member_subclass(:file, Types::AssetContent::File)
|
|
532
|
+
AssetContent.add_member_subclass(:zip, Types::AssetContent::Zip)
|
|
533
|
+
AssetContent.add_member_subclass(:unknown, Types::AssetContent::Unknown)
|
|
534
|
+
AssetContent.struct_class = Types::AssetContent
|
|
535
|
+
|
|
536
|
+
AssetFile.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location_name: "path"))
|
|
537
|
+
AssetFile.add_member(:content, Shapes::ShapeRef.new(shape: AssetFileBody, required: true, location_name: "content"))
|
|
538
|
+
AssetFile.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
539
|
+
AssetFile.add_member(:version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "version"))
|
|
540
|
+
AssetFile.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
541
|
+
AssetFile.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
542
|
+
AssetFile.struct_class = Types::AssetFile
|
|
543
|
+
|
|
544
|
+
AssetFileBody.add_member(:bytes, Shapes::ShapeRef.new(shape: AssetFileBytes, location_name: "bytes"))
|
|
545
|
+
AssetFileBody.add_member(:text, Shapes::ShapeRef.new(shape: AssetFileText, location_name: "text"))
|
|
546
|
+
AssetFileBody.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
547
|
+
AssetFileBody.add_member_subclass(:bytes, Types::AssetFileBody::Bytes)
|
|
548
|
+
AssetFileBody.add_member_subclass(:text, Types::AssetFileBody::Text)
|
|
549
|
+
AssetFileBody.add_member_subclass(:unknown, Types::AssetFileBody::Unknown)
|
|
550
|
+
AssetFileBody.struct_class = Types::AssetFileBody
|
|
551
|
+
|
|
552
|
+
AssetFileContent.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location_name: "path"))
|
|
553
|
+
AssetFileContent.add_member(:body, Shapes::ShapeRef.new(shape: AssetFileBody, required: true, location_name: "body"))
|
|
554
|
+
AssetFileContent.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
555
|
+
AssetFileContent.struct_class = Types::AssetFileContent
|
|
556
|
+
|
|
557
|
+
AssetFileSummary.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location_name: "path"))
|
|
558
|
+
AssetFileSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
559
|
+
AssetFileSummary.add_member(:version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "version"))
|
|
560
|
+
AssetFileSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
561
|
+
AssetFileSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
562
|
+
AssetFileSummary.struct_class = Types::AssetFileSummary
|
|
563
|
+
|
|
564
|
+
AssetFileSummaryList.member = Shapes::ShapeRef.new(shape: AssetFileSummary)
|
|
565
|
+
|
|
566
|
+
AssetIdList.member = Shapes::ShapeRef.new(shape: String)
|
|
567
|
+
|
|
568
|
+
AssetList.member = Shapes::ShapeRef.new(shape: Asset)
|
|
569
|
+
|
|
570
|
+
AssetTypeList.member = Shapes::ShapeRef.new(shape: AssetTypeSummary)
|
|
571
|
+
|
|
572
|
+
AssetTypeSummary.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, required: true, location_name: "assetType"))
|
|
573
|
+
AssetTypeSummary.add_member(:description, Shapes::ShapeRef.new(shape: AssetTypeSummaryDescriptionString, required: true, location_name: "description"))
|
|
574
|
+
AssetTypeSummary.struct_class = Types::AssetTypeSummary
|
|
575
|
+
|
|
576
|
+
AssetVersionMetadata.add_member(:version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "version"))
|
|
577
|
+
AssetVersionMetadata.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
|
578
|
+
AssetVersionMetadata.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "updatedAt"))
|
|
579
|
+
AssetVersionMetadata.struct_class = Types::AssetVersionMetadata
|
|
580
|
+
|
|
581
|
+
AssetVersionMetadataList.member = Shapes::ShapeRef.new(shape: AssetVersionMetadata)
|
|
582
|
+
|
|
583
|
+
AssetZipContent.add_member(:zip_file, Shapes::ShapeRef.new(shape: AssetZipBytes, required: true, location_name: "zipFile"))
|
|
584
|
+
AssetZipContent.struct_class = Types::AssetZipContent
|
|
585
|
+
|
|
464
586
|
AssistantMessage.member = Shapes::ShapeRef.new(shape: AssistantMessageBlock)
|
|
465
587
|
|
|
466
588
|
AssistantMessageBlock.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "text"))
|
|
@@ -525,6 +647,27 @@ module Aws::DevOpsAgent
|
|
|
525
647
|
CreateAgentSpaceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
526
648
|
CreateAgentSpaceOutput.struct_class = Types::CreateAgentSpaceOutput
|
|
527
649
|
|
|
650
|
+
CreateAssetFileRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
651
|
+
CreateAssetFileRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
652
|
+
CreateAssetFileRequest.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location: "uri", location_name: "path"))
|
|
653
|
+
CreateAssetFileRequest.add_member(:content, Shapes::ShapeRef.new(shape: AssetFileBody, required: true, location_name: "content"))
|
|
654
|
+
CreateAssetFileRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
655
|
+
CreateAssetFileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateAssetFileRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
656
|
+
CreateAssetFileRequest.struct_class = Types::CreateAssetFileRequest
|
|
657
|
+
|
|
658
|
+
CreateAssetFileResponse.add_member(:file, Shapes::ShapeRef.new(shape: AssetFile, required: true, location_name: "file"))
|
|
659
|
+
CreateAssetFileResponse.struct_class = Types::CreateAssetFileResponse
|
|
660
|
+
|
|
661
|
+
CreateAssetRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
662
|
+
CreateAssetRequest.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, required: true, location_name: "assetType"))
|
|
663
|
+
CreateAssetRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
664
|
+
CreateAssetRequest.add_member(:content, Shapes::ShapeRef.new(shape: AssetContent, required: true, location_name: "content"))
|
|
665
|
+
CreateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateAssetRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
666
|
+
CreateAssetRequest.struct_class = Types::CreateAssetRequest
|
|
667
|
+
|
|
668
|
+
CreateAssetResponse.add_member(:asset, Shapes::ShapeRef.new(shape: Asset, required: true, location_name: "asset"))
|
|
669
|
+
CreateAssetResponse.struct_class = Types::CreateAssetResponse
|
|
670
|
+
|
|
528
671
|
CreateBacklogTaskRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
529
672
|
CreateBacklogTaskRequest.add_member(:reference, Shapes::ShapeRef.new(shape: ReferenceInput, location_name: "reference"))
|
|
530
673
|
CreateBacklogTaskRequest.add_member(:task_type, Shapes::ShapeRef.new(shape: TaskType, required: true, location_name: "taskType"))
|
|
@@ -559,6 +702,8 @@ module Aws::DevOpsAgent
|
|
|
559
702
|
CreatePrivateConnectionOutput.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, location_name: "resourceConfigurationId"))
|
|
560
703
|
CreatePrivateConnectionOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateConnectionStatus, required: true, location_name: "status"))
|
|
561
704
|
CreatePrivateConnectionOutput.add_member(:certificate_expiry_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "certificateExpiryTime"))
|
|
705
|
+
CreatePrivateConnectionOutput.add_member(:dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "dnsResolution"))
|
|
706
|
+
CreatePrivateConnectionOutput.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "failureMessage"))
|
|
562
707
|
CreatePrivateConnectionOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
563
708
|
CreatePrivateConnectionOutput.struct_class = Types::CreatePrivateConnectionOutput
|
|
564
709
|
|
|
@@ -571,8 +716,8 @@ module Aws::DevOpsAgent
|
|
|
571
716
|
DatadogAuthorizationConfig.add_member_subclass(:unknown, Types::DatadogAuthorizationConfig::Unknown)
|
|
572
717
|
DatadogAuthorizationConfig.struct_class = Types::DatadogAuthorizationConfig
|
|
573
718
|
|
|
574
|
-
DatadogServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
575
|
-
DatadogServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
719
|
+
DatadogServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape: MCPServerName, required: true, location_name: "name"))
|
|
720
|
+
DatadogServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
576
721
|
DatadogServiceDetails.add_member(:description, Shapes::ShapeRef.new(shape: DatadogServiceDetailsDescriptionString, location_name: "description"))
|
|
577
722
|
DatadogServiceDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: DatadogAuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
578
723
|
DatadogServiceDetails.struct_class = Types::DatadogServiceDetails
|
|
@@ -582,6 +727,19 @@ module Aws::DevOpsAgent
|
|
|
582
727
|
|
|
583
728
|
DeleteAgentSpaceOutput.struct_class = Types::DeleteAgentSpaceOutput
|
|
584
729
|
|
|
730
|
+
DeleteAssetFileRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
731
|
+
DeleteAssetFileRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
732
|
+
DeleteAssetFileRequest.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location: "uri", location_name: "path"))
|
|
733
|
+
DeleteAssetFileRequest.struct_class = Types::DeleteAssetFileRequest
|
|
734
|
+
|
|
735
|
+
DeleteAssetFileResponse.struct_class = Types::DeleteAssetFileResponse
|
|
736
|
+
|
|
737
|
+
DeleteAssetRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
738
|
+
DeleteAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
739
|
+
DeleteAssetRequest.struct_class = Types::DeleteAssetRequest
|
|
740
|
+
|
|
741
|
+
DeleteAssetResponse.struct_class = Types::DeleteAssetResponse
|
|
742
|
+
|
|
585
743
|
DeletePrivateConnectionInput.add_member(:name, Shapes::ShapeRef.new(shape: PrivateConnectionName, required: true, location: "uri", location_name: "name"))
|
|
586
744
|
DeletePrivateConnectionInput.struct_class = Types::DeletePrivateConnectionInput
|
|
587
745
|
|
|
@@ -605,6 +763,8 @@ module Aws::DevOpsAgent
|
|
|
605
763
|
DescribePrivateConnectionOutput.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, location_name: "resourceConfigurationId"))
|
|
606
764
|
DescribePrivateConnectionOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateConnectionStatus, required: true, location_name: "status"))
|
|
607
765
|
DescribePrivateConnectionOutput.add_member(:certificate_expiry_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "certificateExpiryTime"))
|
|
766
|
+
DescribePrivateConnectionOutput.add_member(:dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "dnsResolution"))
|
|
767
|
+
DescribePrivateConnectionOutput.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "failureMessage"))
|
|
608
768
|
DescribePrivateConnectionOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
609
769
|
DescribePrivateConnectionOutput.struct_class = Types::DescribePrivateConnectionOutput
|
|
610
770
|
|
|
@@ -653,6 +813,7 @@ module Aws::DevOpsAgent
|
|
|
653
813
|
EnableOperatorAppInput.struct_class = Types::EnableOperatorAppInput
|
|
654
814
|
|
|
655
815
|
EnableOperatorAppOutput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location_name: "agentSpaceId"))
|
|
816
|
+
EnableOperatorAppOutput.add_member(:operator_app_url, Shapes::ShapeRef.new(shape: OperatorAppUrl, location_name: "operatorAppUrl"))
|
|
656
817
|
EnableOperatorAppOutput.add_member(:iam, Shapes::ShapeRef.new(shape: IamAuthConfiguration, location_name: "iam"))
|
|
657
818
|
EnableOperatorAppOutput.add_member(:idc, Shapes::ShapeRef.new(shape: IdcAuthConfiguration, location_name: "idc"))
|
|
658
819
|
EnableOperatorAppOutput.add_member(:idp, Shapes::ShapeRef.new(shape: IdpAuthConfiguration, location_name: "idp"))
|
|
@@ -703,6 +864,32 @@ module Aws::DevOpsAgent
|
|
|
703
864
|
GetAgentSpaceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
704
865
|
GetAgentSpaceOutput.struct_class = Types::GetAgentSpaceOutput
|
|
705
866
|
|
|
867
|
+
GetAssetContentRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
868
|
+
GetAssetContentRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
869
|
+
GetAssetContentRequest.add_member(:asset_version, Shapes::ShapeRef.new(shape: GetAssetContentRequestAssetVersionInteger, location: "querystring", location_name: "assetVersion"))
|
|
870
|
+
GetAssetContentRequest.struct_class = Types::GetAssetContentRequest
|
|
871
|
+
|
|
872
|
+
GetAssetContentResponse.add_member(:content, Shapes::ShapeRef.new(shape: AssetZipContent, required: true, location_name: "content"))
|
|
873
|
+
GetAssetContentResponse.add_member(:version, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "version"))
|
|
874
|
+
GetAssetContentResponse.struct_class = Types::GetAssetContentResponse
|
|
875
|
+
|
|
876
|
+
GetAssetFileRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
877
|
+
GetAssetFileRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
878
|
+
GetAssetFileRequest.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location: "uri", location_name: "path"))
|
|
879
|
+
GetAssetFileRequest.add_member(:asset_version, Shapes::ShapeRef.new(shape: GetAssetFileRequestAssetVersionInteger, location: "querystring", location_name: "assetVersion"))
|
|
880
|
+
GetAssetFileRequest.struct_class = Types::GetAssetFileRequest
|
|
881
|
+
|
|
882
|
+
GetAssetFileResponse.add_member(:file, Shapes::ShapeRef.new(shape: AssetFile, required: true, location_name: "file"))
|
|
883
|
+
GetAssetFileResponse.struct_class = Types::GetAssetFileResponse
|
|
884
|
+
|
|
885
|
+
GetAssetRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
886
|
+
GetAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
887
|
+
GetAssetRequest.add_member(:asset_version, Shapes::ShapeRef.new(shape: GetAssetRequestAssetVersionInteger, location: "querystring", location_name: "assetVersion"))
|
|
888
|
+
GetAssetRequest.struct_class = Types::GetAssetRequest
|
|
889
|
+
|
|
890
|
+
GetAssetResponse.add_member(:asset, Shapes::ShapeRef.new(shape: Asset, required: true, location_name: "asset"))
|
|
891
|
+
GetAssetResponse.struct_class = Types::GetAssetResponse
|
|
892
|
+
|
|
706
893
|
GetAssociationInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
707
894
|
GetAssociationInput.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location: "uri", location_name: "associationId"))
|
|
708
895
|
GetAssociationInput.struct_class = Types::GetAssociationInput
|
|
@@ -720,6 +907,7 @@ module Aws::DevOpsAgent
|
|
|
720
907
|
GetOperatorAppInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
721
908
|
GetOperatorAppInput.struct_class = Types::GetOperatorAppInput
|
|
722
909
|
|
|
910
|
+
GetOperatorAppOutput.add_member(:operator_app_url, Shapes::ShapeRef.new(shape: OperatorAppUrl, location_name: "operatorAppUrl"))
|
|
723
911
|
GetOperatorAppOutput.add_member(:iam, Shapes::ShapeRef.new(shape: IamAuthConfiguration, location_name: "iam"))
|
|
724
912
|
GetOperatorAppOutput.add_member(:idc, Shapes::ShapeRef.new(shape: IdcAuthConfiguration, location_name: "idc"))
|
|
725
913
|
GetOperatorAppOutput.add_member(:idp, Shapes::ShapeRef.new(shape: IdpAuthConfiguration, location_name: "idp"))
|
|
@@ -786,8 +974,8 @@ module Aws::DevOpsAgent
|
|
|
786
974
|
GoalScheduleInput.add_member(:state, Shapes::ShapeRef.new(shape: SchedulerState, required: true, location_name: "state"))
|
|
787
975
|
GoalScheduleInput.struct_class = Types::GoalScheduleInput
|
|
788
976
|
|
|
789
|
-
GrafanaServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
790
|
-
GrafanaServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
977
|
+
GrafanaServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape: MCPServerName, required: true, location_name: "name"))
|
|
978
|
+
GrafanaServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
791
979
|
GrafanaServiceDetails.add_member(:description, Shapes::ShapeRef.new(shape: GrafanaServiceDetailsDescriptionString, location_name: "description"))
|
|
792
980
|
GrafanaServiceDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: MCPServerAuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
793
981
|
GrafanaServiceDetails.struct_class = Types::GrafanaServiceDetails
|
|
@@ -841,6 +1029,47 @@ module Aws::DevOpsAgent
|
|
|
841
1029
|
ListAgentSpacesOutput.add_member(:agent_spaces, Shapes::ShapeRef.new(shape: AgentSpaceList, required: true, location_name: "agentSpaces"))
|
|
842
1030
|
ListAgentSpacesOutput.struct_class = Types::ListAgentSpacesOutput
|
|
843
1031
|
|
|
1032
|
+
ListAssetFilesRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1033
|
+
ListAssetFilesRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
1034
|
+
ListAssetFilesRequest.add_member(:asset_version, Shapes::ShapeRef.new(shape: ListAssetFilesRequestAssetVersionInteger, location: "querystring", location_name: "assetVersion"))
|
|
1035
|
+
ListAssetFilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1036
|
+
ListAssetFilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAssetFilesRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1037
|
+
ListAssetFilesRequest.struct_class = Types::ListAssetFilesRequest
|
|
1038
|
+
|
|
1039
|
+
ListAssetFilesResponse.add_member(:items, Shapes::ShapeRef.new(shape: AssetFileSummaryList, required: true, location_name: "items"))
|
|
1040
|
+
ListAssetFilesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1041
|
+
ListAssetFilesResponse.struct_class = Types::ListAssetFilesResponse
|
|
1042
|
+
|
|
1043
|
+
ListAssetTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1044
|
+
ListAssetTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAssetTypesRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1045
|
+
ListAssetTypesRequest.struct_class = Types::ListAssetTypesRequest
|
|
1046
|
+
|
|
1047
|
+
ListAssetTypesResponse.add_member(:items, Shapes::ShapeRef.new(shape: AssetTypeList, required: true, location_name: "items"))
|
|
1048
|
+
ListAssetTypesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1049
|
+
ListAssetTypesResponse.struct_class = Types::ListAssetTypesResponse
|
|
1050
|
+
|
|
1051
|
+
ListAssetVersionsRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1052
|
+
ListAssetVersionsRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
1053
|
+
ListAssetVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAssetVersionsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1054
|
+
ListAssetVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1055
|
+
ListAssetVersionsRequest.struct_class = Types::ListAssetVersionsRequest
|
|
1056
|
+
|
|
1057
|
+
ListAssetVersionsResponse.add_member(:items, Shapes::ShapeRef.new(shape: AssetVersionMetadataList, required: true, location_name: "items"))
|
|
1058
|
+
ListAssetVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1059
|
+
ListAssetVersionsResponse.struct_class = Types::ListAssetVersionsResponse
|
|
1060
|
+
|
|
1061
|
+
ListAssetsRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1062
|
+
ListAssetsRequest.add_member(:asset_type, Shapes::ShapeRef.new(shape: AssetType, location: "querystring", location_name: "assetType"))
|
|
1063
|
+
ListAssetsRequest.add_member(:updated_after, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "updatedAfter"))
|
|
1064
|
+
ListAssetsRequest.add_member(:updated_before, Shapes::ShapeRef.new(shape: Timestamp, location: "querystring", location_name: "updatedBefore"))
|
|
1065
|
+
ListAssetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
1066
|
+
ListAssetsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAssetsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
1067
|
+
ListAssetsRequest.struct_class = Types::ListAssetsRequest
|
|
1068
|
+
|
|
1069
|
+
ListAssetsResponse.add_member(:items, Shapes::ShapeRef.new(shape: AssetList, required: true, location_name: "items"))
|
|
1070
|
+
ListAssetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1071
|
+
ListAssetsResponse.struct_class = Types::ListAssetsResponse
|
|
1072
|
+
|
|
844
1073
|
ListAssociationsInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
845
1074
|
ListAssociationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAssociationsInputMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
846
1075
|
ListAssociationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
@@ -992,8 +1221,8 @@ module Aws::DevOpsAgent
|
|
|
992
1221
|
|
|
993
1222
|
MCPServerDatadogConfiguration.struct_class = Types::MCPServerDatadogConfiguration
|
|
994
1223
|
|
|
995
|
-
MCPServerDetails.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
996
|
-
MCPServerDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
1224
|
+
MCPServerDetails.add_member(:name, Shapes::ShapeRef.new(shape: MCPServerName, required: true, location_name: "name"))
|
|
1225
|
+
MCPServerDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
997
1226
|
MCPServerDetails.add_member(:description, Shapes::ShapeRef.new(shape: MCPServerDetailsDescriptionString, location_name: "description"))
|
|
998
1227
|
MCPServerDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: MCPServerAuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
999
1228
|
MCPServerDetails.struct_class = Types::MCPServerDetails
|
|
@@ -1028,15 +1257,16 @@ module Aws::DevOpsAgent
|
|
|
1028
1257
|
|
|
1029
1258
|
MCPServerSigV4AuthorizationConfig.add_member(:region, Shapes::ShapeRef.new(shape: SigV4Region, required: true, location_name: "region"))
|
|
1030
1259
|
MCPServerSigV4AuthorizationConfig.add_member(:service, Shapes::ShapeRef.new(shape: MCPServerSigV4AuthorizationConfigServiceString, required: true, location_name: "service"))
|
|
1031
|
-
MCPServerSigV4AuthorizationConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
|
1260
|
+
MCPServerSigV4AuthorizationConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: MCPServerSigV4AuthorizationConfigRoleArnString, deprecated: true, location_name: "roleArn", metadata: {"deprecatedMessage" => "Use mcpRoleArn instead.", "deprecatedSince" => "2026-05-27"}))
|
|
1261
|
+
MCPServerSigV4AuthorizationConfig.add_member(:mcp_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "mcpRoleArn"))
|
|
1032
1262
|
MCPServerSigV4AuthorizationConfig.add_member(:custom_headers, Shapes::ShapeRef.new(shape: CustomHeaders, location_name: "customHeaders"))
|
|
1033
1263
|
MCPServerSigV4AuthorizationConfig.struct_class = Types::MCPServerSigV4AuthorizationConfig
|
|
1034
1264
|
|
|
1035
1265
|
MCPServerSigV4Configuration.add_member(:tools, Shapes::ShapeRef.new(shape: MCPToolsList, required: true, location_name: "tools"))
|
|
1036
1266
|
MCPServerSigV4Configuration.struct_class = Types::MCPServerSigV4Configuration
|
|
1037
1267
|
|
|
1038
|
-
MCPServerSigV4ServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
1039
|
-
MCPServerSigV4ServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
1268
|
+
MCPServerSigV4ServiceDetails.add_member(:name, Shapes::ShapeRef.new(shape: MCPServerName, required: true, location_name: "name"))
|
|
1269
|
+
MCPServerSigV4ServiceDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
1040
1270
|
MCPServerSigV4ServiceDetails.add_member(:description, Shapes::ShapeRef.new(shape: MCPServerSigV4ServiceDetailsDescriptionString, location_name: "description"))
|
|
1041
1271
|
MCPServerSigV4ServiceDetails.add_member(:authorization_config, Shapes::ShapeRef.new(shape: MCPServerSigV4AuthorizationConfig, required: true, location_name: "authorizationConfig"))
|
|
1042
1272
|
MCPServerSigV4ServiceDetails.struct_class = Types::MCPServerSigV4ServiceDetails
|
|
@@ -1129,6 +1359,8 @@ module Aws::DevOpsAgent
|
|
|
1129
1359
|
PrivateConnectionSummary.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, location_name: "resourceConfigurationId"))
|
|
1130
1360
|
PrivateConnectionSummary.add_member(:status, Shapes::ShapeRef.new(shape: PrivateConnectionStatus, required: true, location_name: "status"))
|
|
1131
1361
|
PrivateConnectionSummary.add_member(:certificate_expiry_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "certificateExpiryTime"))
|
|
1362
|
+
PrivateConnectionSummary.add_member(:dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "dnsResolution"))
|
|
1363
|
+
PrivateConnectionSummary.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "failureMessage"))
|
|
1132
1364
|
PrivateConnectionSummary.struct_class = Types::PrivateConnectionSummary
|
|
1133
1365
|
|
|
1134
1366
|
PrivateConnectionSummaryList.member = Shapes::ShapeRef.new(shape: PrivateConnectionSummary)
|
|
@@ -1174,6 +1406,8 @@ module Aws::DevOpsAgent
|
|
|
1174
1406
|
RegisterServiceInput.add_member(:service_details, Shapes::ShapeRef.new(shape: ServiceDetails, required: true, location_name: "serviceDetails"))
|
|
1175
1407
|
RegisterServiceInput.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
|
1176
1408
|
RegisterServiceInput.add_member(:private_connection_name, Shapes::ShapeRef.new(shape: PrivateConnectionName, location_name: "privateConnectionName"))
|
|
1409
|
+
RegisterServiceInput.add_member(:target_url_private_connection_name, Shapes::ShapeRef.new(shape: PrivateConnectionName, location_name: "targetUrlPrivateConnectionName"))
|
|
1410
|
+
RegisterServiceInput.add_member(:exchange_url_private_connection_name, Shapes::ShapeRef.new(shape: PrivateConnectionName, location_name: "exchangeUrlPrivateConnectionName"))
|
|
1177
1411
|
RegisterServiceInput.add_member(:name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "name"))
|
|
1178
1412
|
RegisterServiceInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
1179
1413
|
RegisterServiceInput.struct_class = Types::RegisterServiceInput
|
|
@@ -1203,7 +1437,7 @@ module Aws::DevOpsAgent
|
|
|
1203
1437
|
RegisteredGithubServiceDetails.add_member(:target_url, Shapes::ShapeRef.new(shape: String, location_name: "targetUrl"))
|
|
1204
1438
|
RegisteredGithubServiceDetails.struct_class = Types::RegisteredGithubServiceDetails
|
|
1205
1439
|
|
|
1206
|
-
RegisteredGrafanaServerDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
1440
|
+
RegisteredGrafanaServerDetails.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
1207
1441
|
RegisteredGrafanaServerDetails.add_member(:authorization_method, Shapes::ShapeRef.new(shape: MCPServerAuthorizationMethod, required: true, location_name: "authorizationMethod"))
|
|
1208
1442
|
RegisteredGrafanaServerDetails.struct_class = Types::RegisteredGrafanaServerDetails
|
|
1209
1443
|
|
|
@@ -1214,12 +1448,13 @@ module Aws::DevOpsAgent
|
|
|
1214
1448
|
RegisteredMCPServerDetails.add_member(:api_key_header, Shapes::ShapeRef.new(shape: String, location_name: "apiKeyHeader"))
|
|
1215
1449
|
RegisteredMCPServerDetails.struct_class = Types::RegisteredMCPServerDetails
|
|
1216
1450
|
|
|
1217
|
-
RegisteredMCPServerSigV4Details.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
1218
|
-
RegisteredMCPServerSigV4Details.add_member(:endpoint, Shapes::ShapeRef.new(shape:
|
|
1451
|
+
RegisteredMCPServerSigV4Details.add_member(:name, Shapes::ShapeRef.new(shape: MCPServerName, required: true, location_name: "name"))
|
|
1452
|
+
RegisteredMCPServerSigV4Details.add_member(:endpoint, Shapes::ShapeRef.new(shape: MCPServerEndpoint, required: true, location_name: "endpoint"))
|
|
1219
1453
|
RegisteredMCPServerSigV4Details.add_member(:description, Shapes::ShapeRef.new(shape: RegisteredMCPServerSigV4DetailsDescriptionString, location_name: "description"))
|
|
1220
1454
|
RegisteredMCPServerSigV4Details.add_member(:region, Shapes::ShapeRef.new(shape: SigV4Region, required: true, location_name: "region"))
|
|
1221
1455
|
RegisteredMCPServerSigV4Details.add_member(:service, Shapes::ShapeRef.new(shape: RegisteredMCPServerSigV4DetailsServiceString, required: true, location_name: "service"))
|
|
1222
|
-
RegisteredMCPServerSigV4Details.add_member(:role_arn, Shapes::ShapeRef.new(shape:
|
|
1456
|
+
RegisteredMCPServerSigV4Details.add_member(:role_arn, Shapes::ShapeRef.new(shape: RegisteredMCPServerSigV4DetailsRoleArnString, required: true, deprecated: true, location_name: "roleArn", metadata: {"deprecatedMessage" => "Use mcpRoleArn instead.", "deprecatedSince" => "2026-05-27"}))
|
|
1457
|
+
RegisteredMCPServerSigV4Details.add_member(:mcp_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "mcpRoleArn"))
|
|
1223
1458
|
RegisteredMCPServerSigV4Details.add_member(:custom_headers, Shapes::ShapeRef.new(shape: CustomHeaders, location_name: "customHeaders"))
|
|
1224
1459
|
RegisteredMCPServerSigV4Details.struct_class = Types::RegisteredMCPServerSigV4Details
|
|
1225
1460
|
|
|
@@ -1252,7 +1487,7 @@ module Aws::DevOpsAgent
|
|
|
1252
1487
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1253
1488
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
1254
1489
|
|
|
1255
|
-
Scopes.member = Shapes::ShapeRef.new(shape:
|
|
1490
|
+
Scopes.member = Shapes::ShapeRef.new(shape: OAuthScope)
|
|
1256
1491
|
|
|
1257
1492
|
SelfManagedInput.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, required: true, location_name: "resourceConfigurationId"))
|
|
1258
1493
|
SelfManagedInput.add_member(:certificate, Shapes::ShapeRef.new(shape: CertificateString, location_name: "certificate"))
|
|
@@ -1307,10 +1542,11 @@ module Aws::DevOpsAgent
|
|
|
1307
1542
|
SendMessageJsonDelta.struct_class = Types::SendMessageJsonDelta
|
|
1308
1543
|
|
|
1309
1544
|
SendMessageRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1310
|
-
SendMessageRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape:
|
|
1545
|
+
SendMessageRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: ChatExecutionId, required: true, location_name: "executionId"))
|
|
1311
1546
|
SendMessageRequest.add_member(:content, Shapes::ShapeRef.new(shape: MessageContent, required: true, location_name: "content"))
|
|
1312
1547
|
SendMessageRequest.add_member(:context, Shapes::ShapeRef.new(shape: SendMessageContext, location_name: "context"))
|
|
1313
1548
|
SendMessageRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, deprecated: true, location_name: "userId", metadata: {"deprecatedMessage" => "userId is managed by the service and should not be provided by the caller", "deprecatedSince" => "2026-04-15"}))
|
|
1549
|
+
SendMessageRequest.add_member(:asset_ids, Shapes::ShapeRef.new(shape: AssetIdList, location_name: "assetIds"))
|
|
1314
1550
|
SendMessageRequest.struct_class = Types::SendMessageRequest
|
|
1315
1551
|
|
|
1316
1552
|
SendMessageResponse.add_member(:events, Shapes::ShapeRef.new(shape: SendMessageEvents, required: true, eventstream: true, location_name: "events"))
|
|
@@ -1423,6 +1659,7 @@ module Aws::DevOpsAgent
|
|
|
1423
1659
|
ServiceManagedInput.add_member(:ipv4_addresses_per_eni, Shapes::ShapeRef.new(shape: MaxIpv4AddressesPerEni, location_name: "ipv4AddressesPerEni"))
|
|
1424
1660
|
ServiceManagedInput.add_member(:port_ranges, Shapes::ShapeRef.new(shape: PortRanges, location_name: "portRanges"))
|
|
1425
1661
|
ServiceManagedInput.add_member(:certificate, Shapes::ShapeRef.new(shape: CertificateString, location_name: "certificate"))
|
|
1662
|
+
ServiceManagedInput.add_member(:dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "dnsResolution"))
|
|
1426
1663
|
ServiceManagedInput.struct_class = Types::ServiceManagedInput
|
|
1427
1664
|
|
|
1428
1665
|
ServiceNowAuthenticationScopeList.member = Shapes::ShapeRef.new(shape: String)
|
|
@@ -1533,6 +1770,27 @@ module Aws::DevOpsAgent
|
|
|
1533
1770
|
UpdateAgentSpaceOutput.add_member(:agent_space, Shapes::ShapeRef.new(shape: AgentSpace, required: true, location_name: "agentSpace"))
|
|
1534
1771
|
UpdateAgentSpaceOutput.struct_class = Types::UpdateAgentSpaceOutput
|
|
1535
1772
|
|
|
1773
|
+
UpdateAssetFileRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1774
|
+
UpdateAssetFileRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
1775
|
+
UpdateAssetFileRequest.add_member(:path, Shapes::ShapeRef.new(shape: AssetFilePath, required: true, location: "uri", location_name: "path"))
|
|
1776
|
+
UpdateAssetFileRequest.add_member(:content, Shapes::ShapeRef.new(shape: AssetFileBody, location_name: "content"))
|
|
1777
|
+
UpdateAssetFileRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
1778
|
+
UpdateAssetFileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UpdateAssetFileRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1779
|
+
UpdateAssetFileRequest.struct_class = Types::UpdateAssetFileRequest
|
|
1780
|
+
|
|
1781
|
+
UpdateAssetFileResponse.add_member(:file, Shapes::ShapeRef.new(shape: AssetFile, required: true, location_name: "file"))
|
|
1782
|
+
UpdateAssetFileResponse.struct_class = Types::UpdateAssetFileResponse
|
|
1783
|
+
|
|
1784
|
+
UpdateAssetRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1785
|
+
UpdateAssetRequest.add_member(:asset_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "assetId"))
|
|
1786
|
+
UpdateAssetRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Document, location_name: "metadata"))
|
|
1787
|
+
UpdateAssetRequest.add_member(:content, Shapes::ShapeRef.new(shape: AssetContent, location_name: "content"))
|
|
1788
|
+
UpdateAssetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: UpdateAssetRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1789
|
+
UpdateAssetRequest.struct_class = Types::UpdateAssetRequest
|
|
1790
|
+
|
|
1791
|
+
UpdateAssetResponse.add_member(:asset, Shapes::ShapeRef.new(shape: Asset, required: true, location_name: "asset"))
|
|
1792
|
+
UpdateAssetResponse.struct_class = Types::UpdateAssetResponse
|
|
1793
|
+
|
|
1536
1794
|
UpdateAssociationInput.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
1537
1795
|
UpdateAssociationInput.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location: "uri", location_name: "associationId"))
|
|
1538
1796
|
UpdateAssociationInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ServiceConfiguration, required: true, location_name: "configuration"))
|
|
@@ -1580,6 +1838,8 @@ module Aws::DevOpsAgent
|
|
|
1580
1838
|
UpdatePrivateConnectionCertificateOutput.add_member(:resource_configuration_id, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, location_name: "resourceConfigurationId"))
|
|
1581
1839
|
UpdatePrivateConnectionCertificateOutput.add_member(:status, Shapes::ShapeRef.new(shape: PrivateConnectionStatus, required: true, location_name: "status"))
|
|
1582
1840
|
UpdatePrivateConnectionCertificateOutput.add_member(:certificate_expiry_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "certificateExpiryTime"))
|
|
1841
|
+
UpdatePrivateConnectionCertificateOutput.add_member(:dns_resolution, Shapes::ShapeRef.new(shape: ResourceConfigDnsResolution, location_name: "dnsResolution"))
|
|
1842
|
+
UpdatePrivateConnectionCertificateOutput.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "failureMessage"))
|
|
1583
1843
|
UpdatePrivateConnectionCertificateOutput.struct_class = Types::UpdatePrivateConnectionCertificateOutput
|
|
1584
1844
|
|
|
1585
1845
|
UpdateRecommendationRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
@@ -1693,6 +1953,46 @@ module Aws::DevOpsAgent
|
|
|
1693
1953
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1694
1954
|
end)
|
|
1695
1955
|
|
|
1956
|
+
api.add_operation(:create_asset, Seahorse::Model::Operation.new.tap do |o|
|
|
1957
|
+
o.name = "CreateAsset"
|
|
1958
|
+
o.http_method = "POST"
|
|
1959
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets"
|
|
1960
|
+
o.endpoint_pattern = {
|
|
1961
|
+
"hostPrefix" => "dp.",
|
|
1962
|
+
}
|
|
1963
|
+
o.input = Shapes::ShapeRef.new(shape: CreateAssetRequest)
|
|
1964
|
+
o.output = Shapes::ShapeRef.new(shape: CreateAssetResponse)
|
|
1965
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1966
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
1967
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1968
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1969
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1970
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1971
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1972
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1973
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1974
|
+
end)
|
|
1975
|
+
|
|
1976
|
+
api.add_operation(:create_asset_file, Seahorse::Model::Operation.new.tap do |o|
|
|
1977
|
+
o.name = "CreateAssetFile"
|
|
1978
|
+
o.http_method = "POST"
|
|
1979
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}"
|
|
1980
|
+
o.endpoint_pattern = {
|
|
1981
|
+
"hostPrefix" => "dp.",
|
|
1982
|
+
}
|
|
1983
|
+
o.input = Shapes::ShapeRef.new(shape: CreateAssetFileRequest)
|
|
1984
|
+
o.output = Shapes::ShapeRef.new(shape: CreateAssetFileResponse)
|
|
1985
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1986
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
1987
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1988
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1989
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1990
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1991
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1992
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1993
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1994
|
+
end)
|
|
1995
|
+
|
|
1696
1996
|
api.add_operation(:create_backlog_task, Seahorse::Model::Operation.new.tap do |o|
|
|
1697
1997
|
o.name = "CreateBacklogTask"
|
|
1698
1998
|
o.http_method = "POST"
|
|
@@ -1773,6 +2073,46 @@ module Aws::DevOpsAgent
|
|
|
1773
2073
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1774
2074
|
end)
|
|
1775
2075
|
|
|
2076
|
+
api.add_operation(:delete_asset, Seahorse::Model::Operation.new.tap do |o|
|
|
2077
|
+
o.name = "DeleteAsset"
|
|
2078
|
+
o.http_method = "DELETE"
|
|
2079
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}"
|
|
2080
|
+
o.endpoint_pattern = {
|
|
2081
|
+
"hostPrefix" => "dp.",
|
|
2082
|
+
}
|
|
2083
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteAssetRequest)
|
|
2084
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteAssetResponse)
|
|
2085
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2086
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2087
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2088
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2089
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2090
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2091
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2092
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2093
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2094
|
+
end)
|
|
2095
|
+
|
|
2096
|
+
api.add_operation(:delete_asset_file, Seahorse::Model::Operation.new.tap do |o|
|
|
2097
|
+
o.name = "DeleteAssetFile"
|
|
2098
|
+
o.http_method = "DELETE"
|
|
2099
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}"
|
|
2100
|
+
o.endpoint_pattern = {
|
|
2101
|
+
"hostPrefix" => "dp.",
|
|
2102
|
+
}
|
|
2103
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteAssetFileRequest)
|
|
2104
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteAssetFileResponse)
|
|
2105
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2106
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2107
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2108
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2109
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2110
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2111
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2112
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2113
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2114
|
+
end)
|
|
2115
|
+
|
|
1776
2116
|
api.add_operation(:delete_private_connection, Seahorse::Model::Operation.new.tap do |o|
|
|
1777
2117
|
o.name = "DeletePrivateConnection"
|
|
1778
2118
|
o.http_method = "DELETE"
|
|
@@ -1935,6 +2275,66 @@ module Aws::DevOpsAgent
|
|
|
1935
2275
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1936
2276
|
end)
|
|
1937
2277
|
|
|
2278
|
+
api.add_operation(:get_asset, Seahorse::Model::Operation.new.tap do |o|
|
|
2279
|
+
o.name = "GetAsset"
|
|
2280
|
+
o.http_method = "GET"
|
|
2281
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}"
|
|
2282
|
+
o.endpoint_pattern = {
|
|
2283
|
+
"hostPrefix" => "dp.",
|
|
2284
|
+
}
|
|
2285
|
+
o.input = Shapes::ShapeRef.new(shape: GetAssetRequest)
|
|
2286
|
+
o.output = Shapes::ShapeRef.new(shape: GetAssetResponse)
|
|
2287
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2288
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2289
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2290
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2291
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2292
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2293
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2294
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2295
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2296
|
+
end)
|
|
2297
|
+
|
|
2298
|
+
api.add_operation(:get_asset_content, Seahorse::Model::Operation.new.tap do |o|
|
|
2299
|
+
o.name = "GetAssetContent"
|
|
2300
|
+
o.http_method = "GET"
|
|
2301
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/content"
|
|
2302
|
+
o.endpoint_pattern = {
|
|
2303
|
+
"hostPrefix" => "dp.",
|
|
2304
|
+
}
|
|
2305
|
+
o.input = Shapes::ShapeRef.new(shape: GetAssetContentRequest)
|
|
2306
|
+
o.output = Shapes::ShapeRef.new(shape: GetAssetContentResponse)
|
|
2307
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2308
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2309
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2310
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2311
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2312
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2313
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2314
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2315
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2316
|
+
end)
|
|
2317
|
+
|
|
2318
|
+
api.add_operation(:get_asset_file, Seahorse::Model::Operation.new.tap do |o|
|
|
2319
|
+
o.name = "GetAssetFile"
|
|
2320
|
+
o.http_method = "GET"
|
|
2321
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}"
|
|
2322
|
+
o.endpoint_pattern = {
|
|
2323
|
+
"hostPrefix" => "dp.",
|
|
2324
|
+
}
|
|
2325
|
+
o.input = Shapes::ShapeRef.new(shape: GetAssetFileRequest)
|
|
2326
|
+
o.output = Shapes::ShapeRef.new(shape: GetAssetFileResponse)
|
|
2327
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2328
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2329
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2330
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2331
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2332
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2333
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2334
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2335
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2336
|
+
end)
|
|
2337
|
+
|
|
1938
2338
|
api.add_operation(:get_association, Seahorse::Model::Operation.new.tap do |o|
|
|
1939
2339
|
o.name = "GetAssociation"
|
|
1940
2340
|
o.http_method = "GET"
|
|
@@ -2061,6 +2461,110 @@ module Aws::DevOpsAgent
|
|
|
2061
2461
|
)
|
|
2062
2462
|
end)
|
|
2063
2463
|
|
|
2464
|
+
api.add_operation(:list_asset_files, Seahorse::Model::Operation.new.tap do |o|
|
|
2465
|
+
o.name = "ListAssetFiles"
|
|
2466
|
+
o.http_method = "GET"
|
|
2467
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files"
|
|
2468
|
+
o.endpoint_pattern = {
|
|
2469
|
+
"hostPrefix" => "dp.",
|
|
2470
|
+
}
|
|
2471
|
+
o.input = Shapes::ShapeRef.new(shape: ListAssetFilesRequest)
|
|
2472
|
+
o.output = Shapes::ShapeRef.new(shape: ListAssetFilesResponse)
|
|
2473
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2474
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2475
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2476
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2477
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2478
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2479
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2480
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2481
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2482
|
+
o[:pager] = Aws::Pager.new(
|
|
2483
|
+
limit_key: "max_results",
|
|
2484
|
+
tokens: {
|
|
2485
|
+
"next_token" => "next_token"
|
|
2486
|
+
}
|
|
2487
|
+
)
|
|
2488
|
+
end)
|
|
2489
|
+
|
|
2490
|
+
api.add_operation(:list_asset_types, Seahorse::Model::Operation.new.tap do |o|
|
|
2491
|
+
o.name = "ListAssetTypes"
|
|
2492
|
+
o.http_method = "GET"
|
|
2493
|
+
o.http_request_uri = "/asset/types"
|
|
2494
|
+
o.endpoint_pattern = {
|
|
2495
|
+
"hostPrefix" => "dp.",
|
|
2496
|
+
}
|
|
2497
|
+
o.input = Shapes::ShapeRef.new(shape: ListAssetTypesRequest)
|
|
2498
|
+
o.output = Shapes::ShapeRef.new(shape: ListAssetTypesResponse)
|
|
2499
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2500
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2501
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2502
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2503
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2504
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2505
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2506
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2507
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2508
|
+
o[:pager] = Aws::Pager.new(
|
|
2509
|
+
limit_key: "max_results",
|
|
2510
|
+
tokens: {
|
|
2511
|
+
"next_token" => "next_token"
|
|
2512
|
+
}
|
|
2513
|
+
)
|
|
2514
|
+
end)
|
|
2515
|
+
|
|
2516
|
+
api.add_operation(:list_asset_versions, Seahorse::Model::Operation.new.tap do |o|
|
|
2517
|
+
o.name = "ListAssetVersions"
|
|
2518
|
+
o.http_method = "GET"
|
|
2519
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/versions"
|
|
2520
|
+
o.endpoint_pattern = {
|
|
2521
|
+
"hostPrefix" => "dp.",
|
|
2522
|
+
}
|
|
2523
|
+
o.input = Shapes::ShapeRef.new(shape: ListAssetVersionsRequest)
|
|
2524
|
+
o.output = Shapes::ShapeRef.new(shape: ListAssetVersionsResponse)
|
|
2525
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2526
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2527
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2528
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2529
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2530
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2531
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2532
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2533
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2534
|
+
o[:pager] = Aws::Pager.new(
|
|
2535
|
+
limit_key: "max_results",
|
|
2536
|
+
tokens: {
|
|
2537
|
+
"next_token" => "next_token"
|
|
2538
|
+
}
|
|
2539
|
+
)
|
|
2540
|
+
end)
|
|
2541
|
+
|
|
2542
|
+
api.add_operation(:list_assets, Seahorse::Model::Operation.new.tap do |o|
|
|
2543
|
+
o.name = "ListAssets"
|
|
2544
|
+
o.http_method = "GET"
|
|
2545
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets"
|
|
2546
|
+
o.endpoint_pattern = {
|
|
2547
|
+
"hostPrefix" => "dp.",
|
|
2548
|
+
}
|
|
2549
|
+
o.input = Shapes::ShapeRef.new(shape: ListAssetsRequest)
|
|
2550
|
+
o.output = Shapes::ShapeRef.new(shape: ListAssetsResponse)
|
|
2551
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2552
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2553
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2554
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2555
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2556
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2557
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2558
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2559
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2560
|
+
o[:pager] = Aws::Pager.new(
|
|
2561
|
+
limit_key: "max_results",
|
|
2562
|
+
tokens: {
|
|
2563
|
+
"next_token" => "next_token"
|
|
2564
|
+
}
|
|
2565
|
+
)
|
|
2566
|
+
end)
|
|
2567
|
+
|
|
2064
2568
|
api.add_operation(:list_associations, Seahorse::Model::Operation.new.tap do |o|
|
|
2065
2569
|
o.name = "ListAssociations"
|
|
2066
2570
|
o.http_method = "POST"
|
|
@@ -2437,6 +2941,46 @@ module Aws::DevOpsAgent
|
|
|
2437
2941
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2438
2942
|
end)
|
|
2439
2943
|
|
|
2944
|
+
api.add_operation(:update_asset, Seahorse::Model::Operation.new.tap do |o|
|
|
2945
|
+
o.name = "UpdateAsset"
|
|
2946
|
+
o.http_method = "PATCH"
|
|
2947
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}"
|
|
2948
|
+
o.endpoint_pattern = {
|
|
2949
|
+
"hostPrefix" => "dp.",
|
|
2950
|
+
}
|
|
2951
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAssetRequest)
|
|
2952
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateAssetResponse)
|
|
2953
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2954
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2955
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2956
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2957
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2958
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2959
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2960
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2961
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2962
|
+
end)
|
|
2963
|
+
|
|
2964
|
+
api.add_operation(:update_asset_file, Seahorse::Model::Operation.new.tap do |o|
|
|
2965
|
+
o.name = "UpdateAssetFile"
|
|
2966
|
+
o.http_method = "PATCH"
|
|
2967
|
+
o.http_request_uri = "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}"
|
|
2968
|
+
o.endpoint_pattern = {
|
|
2969
|
+
"hostPrefix" => "dp.",
|
|
2970
|
+
}
|
|
2971
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAssetFileRequest)
|
|
2972
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateAssetFileResponse)
|
|
2973
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
2974
|
+
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
2975
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
2976
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
2977
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
2978
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2979
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2980
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
2981
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
2982
|
+
end)
|
|
2983
|
+
|
|
2440
2984
|
api.add_operation(:update_association, Seahorse::Model::Operation.new.tap do |o|
|
|
2441
2985
|
o.name = "UpdateAssociation"
|
|
2442
2986
|
o.http_method = "PATCH"
|