@aws-sdk/client-devops-agent 3.1063.0 → 3.1065.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.
- package/README.md +92 -1
- package/dist-cjs/index.js +204 -0
- package/dist-cjs/schemas/schemas_0.js +375 -77
- package/dist-es/DevOpsAgent.js +34 -0
- package/dist-es/commands/CreateAssetCommand.js +16 -0
- package/dist-es/commands/CreateAssetFileCommand.js +16 -0
- package/dist-es/commands/DeleteAssetCommand.js +16 -0
- package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
- package/dist-es/commands/GetAssetCommand.js +16 -0
- package/dist-es/commands/GetAssetContentCommand.js +16 -0
- package/dist-es/commands/GetAssetFileCommand.js +16 -0
- package/dist-es/commands/ListAssetFilesCommand.js +16 -0
- package/dist-es/commands/ListAssetTypesCommand.js +16 -0
- package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
- package/dist-es/commands/ListAssetsCommand.js +16 -0
- package/dist-es/commands/UpdateAssetCommand.js +16 -0
- package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAssetsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +369 -71
- package/dist-types/DevOpsAgent.d.ts +121 -1
- package/dist-types/DevOpsAgentClient.d.ts +16 -3
- package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
- package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
- package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetAssetCommand.d.ts +112 -0
- package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
- package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetServiceCommand.d.ts +1 -0
- package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
- package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
- package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
- package/dist-types/commands/ListServicesCommand.d.ts +1 -0
- package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
- package/dist-types/commands/SendMessageCommand.d.ts +3 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
- package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +879 -27
- package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +230 -1
- package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript DevOpsAgent Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>AWS DevOps Agent is your always-available operations teammate. It resolves and proactively prevents incidents, optimizes application reliability and performance, and handles on-demand SRE tasks across AWS, multicloud, and on-premises environments. AWS DevOps Agent investigates incidents as an experienced DevOps engineer would. It learns your applications and their relationships. It works with your observability tools, runbooks, code repositories, and CI/CD pipelines. The agent correlates telemetry, code, and deployment data across all of them
|
|
9
|
+
<p>AWS DevOps Agent is your always-available operations teammate. It resolves and proactively prevents incidents, optimizes application reliability and performance, and handles on-demand SRE tasks across AWS, multicloud, and on-premises environments. AWS DevOps Agent investigates incidents as an experienced DevOps engineer would. It learns your applications and their relationships. It works with your observability tools, runbooks, code repositories, and CI/CD pipelines. The agent correlates telemetry, code, and deployment data across all of them.</p>
|
|
10
10
|
|
|
11
11
|
## Installing
|
|
12
12
|
|
|
@@ -195,6 +195,20 @@ CreateAgentSpace
|
|
|
195
195
|
</details>
|
|
196
196
|
<details>
|
|
197
197
|
<summary>
|
|
198
|
+
CreateAsset
|
|
199
|
+
</summary>
|
|
200
|
+
|
|
201
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/CreateAssetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/CreateAssetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/CreateAssetCommandOutput/)
|
|
202
|
+
</details>
|
|
203
|
+
<details>
|
|
204
|
+
<summary>
|
|
205
|
+
CreateAssetFile
|
|
206
|
+
</summary>
|
|
207
|
+
|
|
208
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/CreateAssetFileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/CreateAssetFileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/CreateAssetFileCommandOutput/)
|
|
209
|
+
</details>
|
|
210
|
+
<details>
|
|
211
|
+
<summary>
|
|
198
212
|
CreateBacklogTask
|
|
199
213
|
</summary>
|
|
200
214
|
|
|
@@ -223,6 +237,20 @@ DeleteAgentSpace
|
|
|
223
237
|
</details>
|
|
224
238
|
<details>
|
|
225
239
|
<summary>
|
|
240
|
+
DeleteAsset
|
|
241
|
+
</summary>
|
|
242
|
+
|
|
243
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/DeleteAssetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DeleteAssetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DeleteAssetCommandOutput/)
|
|
244
|
+
</details>
|
|
245
|
+
<details>
|
|
246
|
+
<summary>
|
|
247
|
+
DeleteAssetFile
|
|
248
|
+
</summary>
|
|
249
|
+
|
|
250
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/DeleteAssetFileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DeleteAssetFileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DeleteAssetFileCommandOutput/)
|
|
251
|
+
</details>
|
|
252
|
+
<details>
|
|
253
|
+
<summary>
|
|
226
254
|
DeletePrivateConnection
|
|
227
255
|
</summary>
|
|
228
256
|
|
|
@@ -279,6 +307,27 @@ GetAgentSpace
|
|
|
279
307
|
</details>
|
|
280
308
|
<details>
|
|
281
309
|
<summary>
|
|
310
|
+
GetAsset
|
|
311
|
+
</summary>
|
|
312
|
+
|
|
313
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/GetAssetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetCommandOutput/)
|
|
314
|
+
</details>
|
|
315
|
+
<details>
|
|
316
|
+
<summary>
|
|
317
|
+
GetAssetContent
|
|
318
|
+
</summary>
|
|
319
|
+
|
|
320
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/GetAssetContentCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetContentCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetContentCommandOutput/)
|
|
321
|
+
</details>
|
|
322
|
+
<details>
|
|
323
|
+
<summary>
|
|
324
|
+
GetAssetFile
|
|
325
|
+
</summary>
|
|
326
|
+
|
|
327
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/GetAssetFileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetFileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/GetAssetFileCommandOutput/)
|
|
328
|
+
</details>
|
|
329
|
+
<details>
|
|
330
|
+
<summary>
|
|
282
331
|
GetAssociation
|
|
283
332
|
</summary>
|
|
284
333
|
|
|
@@ -321,6 +370,34 @@ ListAgentSpaces
|
|
|
321
370
|
</details>
|
|
322
371
|
<details>
|
|
323
372
|
<summary>
|
|
373
|
+
ListAssetFiles
|
|
374
|
+
</summary>
|
|
375
|
+
|
|
376
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/ListAssetFilesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetFilesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetFilesCommandOutput/)
|
|
377
|
+
</details>
|
|
378
|
+
<details>
|
|
379
|
+
<summary>
|
|
380
|
+
ListAssets
|
|
381
|
+
</summary>
|
|
382
|
+
|
|
383
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/ListAssetsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetsCommandOutput/)
|
|
384
|
+
</details>
|
|
385
|
+
<details>
|
|
386
|
+
<summary>
|
|
387
|
+
ListAssetTypes
|
|
388
|
+
</summary>
|
|
389
|
+
|
|
390
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/ListAssetTypesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetTypesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetTypesCommandOutput/)
|
|
391
|
+
</details>
|
|
392
|
+
<details>
|
|
393
|
+
<summary>
|
|
394
|
+
ListAssetVersions
|
|
395
|
+
</summary>
|
|
396
|
+
|
|
397
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/ListAssetVersionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetVersionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/ListAssetVersionsCommandOutput/)
|
|
398
|
+
</details>
|
|
399
|
+
<details>
|
|
400
|
+
<summary>
|
|
324
401
|
ListAssociations
|
|
325
402
|
</summary>
|
|
326
403
|
|
|
@@ -440,6 +517,20 @@ UpdateAgentSpace
|
|
|
440
517
|
</details>
|
|
441
518
|
<details>
|
|
442
519
|
<summary>
|
|
520
|
+
UpdateAsset
|
|
521
|
+
</summary>
|
|
522
|
+
|
|
523
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/UpdateAssetCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/UpdateAssetCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/UpdateAssetCommandOutput/)
|
|
524
|
+
</details>
|
|
525
|
+
<details>
|
|
526
|
+
<summary>
|
|
527
|
+
UpdateAssetFile
|
|
528
|
+
</summary>
|
|
529
|
+
|
|
530
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/UpdateAssetFileCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/UpdateAssetFileCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/UpdateAssetFileCommandOutput/)
|
|
531
|
+
</details>
|
|
532
|
+
<details>
|
|
533
|
+
<summary>
|
|
443
534
|
UpdateAssociation
|
|
444
535
|
</summary>
|
|
445
536
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -132,6 +132,30 @@ class CreateAgentSpaceCommand extends client.Command
|
|
|
132
132
|
.build() {
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
class CreateAssetCommand extends client.Command
|
|
136
|
+
.classBuilder()
|
|
137
|
+
.ep(commonParams)
|
|
138
|
+
.m(function (Command, cs, config, o) {
|
|
139
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
|
+
})
|
|
141
|
+
.s("DevOpsAgent", "CreateAsset", {})
|
|
142
|
+
.n("DevOpsAgentClient", "CreateAssetCommand")
|
|
143
|
+
.sc(schemas_0.CreateAsset$)
|
|
144
|
+
.build() {
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
class CreateAssetFileCommand extends client.Command
|
|
148
|
+
.classBuilder()
|
|
149
|
+
.ep(commonParams)
|
|
150
|
+
.m(function (Command, cs, config, o) {
|
|
151
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
|
+
})
|
|
153
|
+
.s("DevOpsAgent", "CreateAssetFile", {})
|
|
154
|
+
.n("DevOpsAgentClient", "CreateAssetFileCommand")
|
|
155
|
+
.sc(schemas_0.CreateAssetFile$)
|
|
156
|
+
.build() {
|
|
157
|
+
}
|
|
158
|
+
|
|
135
159
|
class CreateBacklogTaskCommand extends client.Command
|
|
136
160
|
.classBuilder()
|
|
137
161
|
.ep(commonParams)
|
|
@@ -180,6 +204,30 @@ class DeleteAgentSpaceCommand extends client.Command
|
|
|
180
204
|
.build() {
|
|
181
205
|
}
|
|
182
206
|
|
|
207
|
+
class DeleteAssetCommand extends client.Command
|
|
208
|
+
.classBuilder()
|
|
209
|
+
.ep(commonParams)
|
|
210
|
+
.m(function (Command, cs, config, o) {
|
|
211
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
212
|
+
})
|
|
213
|
+
.s("DevOpsAgent", "DeleteAsset", {})
|
|
214
|
+
.n("DevOpsAgentClient", "DeleteAssetCommand")
|
|
215
|
+
.sc(schemas_0.DeleteAsset$)
|
|
216
|
+
.build() {
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
class DeleteAssetFileCommand extends client.Command
|
|
220
|
+
.classBuilder()
|
|
221
|
+
.ep(commonParams)
|
|
222
|
+
.m(function (Command, cs, config, o) {
|
|
223
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
224
|
+
})
|
|
225
|
+
.s("DevOpsAgent", "DeleteAssetFile", {})
|
|
226
|
+
.n("DevOpsAgentClient", "DeleteAssetFileCommand")
|
|
227
|
+
.sc(schemas_0.DeleteAssetFile$)
|
|
228
|
+
.build() {
|
|
229
|
+
}
|
|
230
|
+
|
|
183
231
|
class DeletePrivateConnectionCommand extends client.Command
|
|
184
232
|
.classBuilder()
|
|
185
233
|
.ep(commonParams)
|
|
@@ -276,6 +324,42 @@ class GetAgentSpaceCommand extends client.Command
|
|
|
276
324
|
.build() {
|
|
277
325
|
}
|
|
278
326
|
|
|
327
|
+
class GetAssetCommand extends client.Command
|
|
328
|
+
.classBuilder()
|
|
329
|
+
.ep(commonParams)
|
|
330
|
+
.m(function (Command, cs, config, o) {
|
|
331
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
332
|
+
})
|
|
333
|
+
.s("DevOpsAgent", "GetAsset", {})
|
|
334
|
+
.n("DevOpsAgentClient", "GetAssetCommand")
|
|
335
|
+
.sc(schemas_0.GetAsset$)
|
|
336
|
+
.build() {
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
class GetAssetContentCommand extends client.Command
|
|
340
|
+
.classBuilder()
|
|
341
|
+
.ep(commonParams)
|
|
342
|
+
.m(function (Command, cs, config, o) {
|
|
343
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
344
|
+
})
|
|
345
|
+
.s("DevOpsAgent", "GetAssetContent", {})
|
|
346
|
+
.n("DevOpsAgentClient", "GetAssetContentCommand")
|
|
347
|
+
.sc(schemas_0.GetAssetContent$)
|
|
348
|
+
.build() {
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
class GetAssetFileCommand extends client.Command
|
|
352
|
+
.classBuilder()
|
|
353
|
+
.ep(commonParams)
|
|
354
|
+
.m(function (Command, cs, config, o) {
|
|
355
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
356
|
+
})
|
|
357
|
+
.s("DevOpsAgent", "GetAssetFile", {})
|
|
358
|
+
.n("DevOpsAgentClient", "GetAssetFileCommand")
|
|
359
|
+
.sc(schemas_0.GetAssetFile$)
|
|
360
|
+
.build() {
|
|
361
|
+
}
|
|
362
|
+
|
|
279
363
|
class GetAssociationCommand extends client.Command
|
|
280
364
|
.classBuilder()
|
|
281
365
|
.ep(commonParams)
|
|
@@ -348,6 +432,54 @@ class ListAgentSpacesCommand extends client.Command
|
|
|
348
432
|
.build() {
|
|
349
433
|
}
|
|
350
434
|
|
|
435
|
+
class ListAssetFilesCommand extends client.Command
|
|
436
|
+
.classBuilder()
|
|
437
|
+
.ep(commonParams)
|
|
438
|
+
.m(function (Command, cs, config, o) {
|
|
439
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
440
|
+
})
|
|
441
|
+
.s("DevOpsAgent", "ListAssetFiles", {})
|
|
442
|
+
.n("DevOpsAgentClient", "ListAssetFilesCommand")
|
|
443
|
+
.sc(schemas_0.ListAssetFiles$)
|
|
444
|
+
.build() {
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
class ListAssetsCommand extends client.Command
|
|
448
|
+
.classBuilder()
|
|
449
|
+
.ep(commonParams)
|
|
450
|
+
.m(function (Command, cs, config, o) {
|
|
451
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
452
|
+
})
|
|
453
|
+
.s("DevOpsAgent", "ListAssets", {})
|
|
454
|
+
.n("DevOpsAgentClient", "ListAssetsCommand")
|
|
455
|
+
.sc(schemas_0.ListAssets$)
|
|
456
|
+
.build() {
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
class ListAssetTypesCommand extends client.Command
|
|
460
|
+
.classBuilder()
|
|
461
|
+
.ep(commonParams)
|
|
462
|
+
.m(function (Command, cs, config, o) {
|
|
463
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
464
|
+
})
|
|
465
|
+
.s("DevOpsAgent", "ListAssetTypes", {})
|
|
466
|
+
.n("DevOpsAgentClient", "ListAssetTypesCommand")
|
|
467
|
+
.sc(schemas_0.ListAssetTypes$)
|
|
468
|
+
.build() {
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
class ListAssetVersionsCommand extends client.Command
|
|
472
|
+
.classBuilder()
|
|
473
|
+
.ep(commonParams)
|
|
474
|
+
.m(function (Command, cs, config, o) {
|
|
475
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
476
|
+
})
|
|
477
|
+
.s("DevOpsAgent", "ListAssetVersions", {})
|
|
478
|
+
.n("DevOpsAgentClient", "ListAssetVersionsCommand")
|
|
479
|
+
.sc(schemas_0.ListAssetVersions$)
|
|
480
|
+
.build() {
|
|
481
|
+
}
|
|
482
|
+
|
|
351
483
|
class ListAssociationsCommand extends client.Command
|
|
352
484
|
.classBuilder()
|
|
353
485
|
.ep(commonParams)
|
|
@@ -556,6 +688,30 @@ class UpdateAgentSpaceCommand extends client.Command
|
|
|
556
688
|
.build() {
|
|
557
689
|
}
|
|
558
690
|
|
|
691
|
+
class UpdateAssetCommand extends client.Command
|
|
692
|
+
.classBuilder()
|
|
693
|
+
.ep(commonParams)
|
|
694
|
+
.m(function (Command, cs, config, o) {
|
|
695
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
696
|
+
})
|
|
697
|
+
.s("DevOpsAgent", "UpdateAsset", {})
|
|
698
|
+
.n("DevOpsAgentClient", "UpdateAssetCommand")
|
|
699
|
+
.sc(schemas_0.UpdateAsset$)
|
|
700
|
+
.build() {
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
class UpdateAssetFileCommand extends client.Command
|
|
704
|
+
.classBuilder()
|
|
705
|
+
.ep(commonParams)
|
|
706
|
+
.m(function (Command, cs, config, o) {
|
|
707
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
708
|
+
})
|
|
709
|
+
.s("DevOpsAgent", "UpdateAssetFile", {})
|
|
710
|
+
.n("DevOpsAgentClient", "UpdateAssetFileCommand")
|
|
711
|
+
.sc(schemas_0.UpdateAssetFile$)
|
|
712
|
+
.build() {
|
|
713
|
+
}
|
|
714
|
+
|
|
559
715
|
class UpdateAssociationCommand extends client.Command
|
|
560
716
|
.classBuilder()
|
|
561
717
|
.ep(commonParams)
|
|
@@ -642,6 +798,14 @@ class ValidateAwsAssociationsCommand extends client.Command
|
|
|
642
798
|
|
|
643
799
|
const paginateListAgentSpaces = core.createPaginator(DevOpsAgentClient, ListAgentSpacesCommand, "nextToken", "nextToken", "maxResults");
|
|
644
800
|
|
|
801
|
+
const paginateListAssetFiles = core.createPaginator(DevOpsAgentClient, ListAssetFilesCommand, "nextToken", "nextToken", "maxResults");
|
|
802
|
+
|
|
803
|
+
const paginateListAssets = core.createPaginator(DevOpsAgentClient, ListAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
804
|
+
|
|
805
|
+
const paginateListAssetTypes = core.createPaginator(DevOpsAgentClient, ListAssetTypesCommand, "nextToken", "nextToken", "maxResults");
|
|
806
|
+
|
|
807
|
+
const paginateListAssetVersions = core.createPaginator(DevOpsAgentClient, ListAssetVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
808
|
+
|
|
645
809
|
const paginateListAssociations = core.createPaginator(DevOpsAgentClient, ListAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
646
810
|
|
|
647
811
|
const paginateListBacklogTasks = core.createPaginator(DevOpsAgentClient, ListBacklogTasksCommand, "nextToken", "nextToken", "limit");
|
|
@@ -657,10 +821,14 @@ const paginateListServices = core.createPaginator(DevOpsAgentClient, ListService
|
|
|
657
821
|
const commands = {
|
|
658
822
|
AssociateServiceCommand,
|
|
659
823
|
CreateAgentSpaceCommand,
|
|
824
|
+
CreateAssetCommand,
|
|
825
|
+
CreateAssetFileCommand,
|
|
660
826
|
CreateBacklogTaskCommand,
|
|
661
827
|
CreateChatCommand,
|
|
662
828
|
CreatePrivateConnectionCommand,
|
|
663
829
|
DeleteAgentSpaceCommand,
|
|
830
|
+
DeleteAssetCommand,
|
|
831
|
+
DeleteAssetFileCommand,
|
|
664
832
|
DeletePrivateConnectionCommand,
|
|
665
833
|
DeregisterServiceCommand,
|
|
666
834
|
DescribePrivateConnectionCommand,
|
|
@@ -669,12 +837,19 @@ const commands = {
|
|
|
669
837
|
EnableOperatorAppCommand,
|
|
670
838
|
GetAccountUsageCommand,
|
|
671
839
|
GetAgentSpaceCommand,
|
|
840
|
+
GetAssetCommand,
|
|
841
|
+
GetAssetContentCommand,
|
|
842
|
+
GetAssetFileCommand,
|
|
672
843
|
GetAssociationCommand,
|
|
673
844
|
GetBacklogTaskCommand,
|
|
674
845
|
GetOperatorAppCommand,
|
|
675
846
|
GetRecommendationCommand,
|
|
676
847
|
GetServiceCommand,
|
|
677
848
|
ListAgentSpacesCommand,
|
|
849
|
+
ListAssetFilesCommand,
|
|
850
|
+
ListAssetsCommand,
|
|
851
|
+
ListAssetTypesCommand,
|
|
852
|
+
ListAssetVersionsCommand,
|
|
678
853
|
ListAssociationsCommand,
|
|
679
854
|
ListBacklogTasksCommand,
|
|
680
855
|
ListChatsCommand,
|
|
@@ -692,6 +867,8 @@ const commands = {
|
|
|
692
867
|
TagResourceCommand,
|
|
693
868
|
UntagResourceCommand,
|
|
694
869
|
UpdateAgentSpaceCommand,
|
|
870
|
+
UpdateAssetCommand,
|
|
871
|
+
UpdateAssetFileCommand,
|
|
695
872
|
UpdateAssociationCommand,
|
|
696
873
|
UpdateBacklogTaskCommand,
|
|
697
874
|
UpdateGoalCommand,
|
|
@@ -702,6 +879,10 @@ const commands = {
|
|
|
702
879
|
};
|
|
703
880
|
const paginators = {
|
|
704
881
|
paginateListAgentSpaces,
|
|
882
|
+
paginateListAssetFiles,
|
|
883
|
+
paginateListAssets,
|
|
884
|
+
paginateListAssetTypes,
|
|
885
|
+
paginateListAssetVersions,
|
|
705
886
|
paginateListAssociations,
|
|
706
887
|
paginateListBacklogTasks,
|
|
707
888
|
paginateListExecutions,
|
|
@@ -773,6 +954,7 @@ const TaskStatus = {
|
|
|
773
954
|
PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL",
|
|
774
955
|
PENDING_START: "PENDING_START",
|
|
775
956
|
PENDING_TRIAGE: "PENDING_TRIAGE",
|
|
957
|
+
SKIPPED: "SKIPPED",
|
|
776
958
|
TIMED_OUT: "TIMED_OUT",
|
|
777
959
|
};
|
|
778
960
|
const UserType = {
|
|
@@ -780,6 +962,10 @@ const UserType = {
|
|
|
780
962
|
IDC: "IDC",
|
|
781
963
|
IDP: "IDP",
|
|
782
964
|
};
|
|
965
|
+
const ResourceConfigDnsResolution = {
|
|
966
|
+
IN_VPC: "IN_VPC",
|
|
967
|
+
PUBLIC: "PUBLIC",
|
|
968
|
+
};
|
|
783
969
|
const IpAddressType = {
|
|
784
970
|
DUAL_STACK: "DUAL_STACK",
|
|
785
971
|
IPV4: "IPV4",
|
|
@@ -883,10 +1069,14 @@ exports.DevOpsAgentServiceException = DevOpsAgentServiceException.DevOpsAgentSer
|
|
|
883
1069
|
exports.AssociateServiceCommand = AssociateServiceCommand;
|
|
884
1070
|
exports.AuthFlow = AuthFlow;
|
|
885
1071
|
exports.CreateAgentSpaceCommand = CreateAgentSpaceCommand;
|
|
1072
|
+
exports.CreateAssetCommand = CreateAssetCommand;
|
|
1073
|
+
exports.CreateAssetFileCommand = CreateAssetFileCommand;
|
|
886
1074
|
exports.CreateBacklogTaskCommand = CreateBacklogTaskCommand;
|
|
887
1075
|
exports.CreateChatCommand = CreateChatCommand;
|
|
888
1076
|
exports.CreatePrivateConnectionCommand = CreatePrivateConnectionCommand;
|
|
889
1077
|
exports.DeleteAgentSpaceCommand = DeleteAgentSpaceCommand;
|
|
1078
|
+
exports.DeleteAssetCommand = DeleteAssetCommand;
|
|
1079
|
+
exports.DeleteAssetFileCommand = DeleteAssetFileCommand;
|
|
890
1080
|
exports.DeletePrivateConnectionCommand = DeletePrivateConnectionCommand;
|
|
891
1081
|
exports.DeregisterServiceCommand = DeregisterServiceCommand;
|
|
892
1082
|
exports.DescribePrivateConnectionCommand = DescribePrivateConnectionCommand;
|
|
@@ -899,6 +1089,9 @@ exports.EventChannelType = EventChannelType;
|
|
|
899
1089
|
exports.ExecutionStatus = ExecutionStatus;
|
|
900
1090
|
exports.GetAccountUsageCommand = GetAccountUsageCommand;
|
|
901
1091
|
exports.GetAgentSpaceCommand = GetAgentSpaceCommand;
|
|
1092
|
+
exports.GetAssetCommand = GetAssetCommand;
|
|
1093
|
+
exports.GetAssetContentCommand = GetAssetContentCommand;
|
|
1094
|
+
exports.GetAssetFileCommand = GetAssetFileCommand;
|
|
902
1095
|
exports.GetAssociationCommand = GetAssociationCommand;
|
|
903
1096
|
exports.GetBacklogTaskCommand = GetBacklogTaskCommand;
|
|
904
1097
|
exports.GetOperatorAppCommand = GetOperatorAppCommand;
|
|
@@ -910,6 +1103,10 @@ exports.GoalStatus = GoalStatus;
|
|
|
910
1103
|
exports.GoalType = GoalType;
|
|
911
1104
|
exports.IpAddressType = IpAddressType;
|
|
912
1105
|
exports.ListAgentSpacesCommand = ListAgentSpacesCommand;
|
|
1106
|
+
exports.ListAssetFilesCommand = ListAssetFilesCommand;
|
|
1107
|
+
exports.ListAssetTypesCommand = ListAssetTypesCommand;
|
|
1108
|
+
exports.ListAssetVersionsCommand = ListAssetVersionsCommand;
|
|
1109
|
+
exports.ListAssetsCommand = ListAssetsCommand;
|
|
913
1110
|
exports.ListAssociationsCommand = ListAssociationsCommand;
|
|
914
1111
|
exports.ListBacklogTasksCommand = ListBacklogTasksCommand;
|
|
915
1112
|
exports.ListChatsCommand = ListChatsCommand;
|
|
@@ -933,6 +1130,7 @@ exports.PrivateConnectionType = PrivateConnectionType;
|
|
|
933
1130
|
exports.RecommendationPriority = RecommendationPriority;
|
|
934
1131
|
exports.RecommendationStatus = RecommendationStatus;
|
|
935
1132
|
exports.RegisterServiceCommand = RegisterServiceCommand;
|
|
1133
|
+
exports.ResourceConfigDnsResolution = ResourceConfigDnsResolution;
|
|
936
1134
|
exports.SchedulerState = SchedulerState;
|
|
937
1135
|
exports.SendMessageCommand = SendMessageCommand;
|
|
938
1136
|
exports.Service = Service;
|
|
@@ -944,6 +1142,8 @@ exports.TaskStatus = TaskStatus;
|
|
|
944
1142
|
exports.TaskType = TaskType;
|
|
945
1143
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
946
1144
|
exports.UpdateAgentSpaceCommand = UpdateAgentSpaceCommand;
|
|
1145
|
+
exports.UpdateAssetCommand = UpdateAssetCommand;
|
|
1146
|
+
exports.UpdateAssetFileCommand = UpdateAssetFileCommand;
|
|
947
1147
|
exports.UpdateAssociationCommand = UpdateAssociationCommand;
|
|
948
1148
|
exports.UpdateBacklogTaskCommand = UpdateBacklogTaskCommand;
|
|
949
1149
|
exports.UpdateGoalCommand = UpdateGoalCommand;
|
|
@@ -955,6 +1155,10 @@ exports.ValidateAwsAssociationsCommand = ValidateAwsAssociationsCommand;
|
|
|
955
1155
|
exports.ValidationStatus = ValidationStatus;
|
|
956
1156
|
exports.WebhookType = WebhookType;
|
|
957
1157
|
exports.paginateListAgentSpaces = paginateListAgentSpaces;
|
|
1158
|
+
exports.paginateListAssetFiles = paginateListAssetFiles;
|
|
1159
|
+
exports.paginateListAssetTypes = paginateListAssetTypes;
|
|
1160
|
+
exports.paginateListAssetVersions = paginateListAssetVersions;
|
|
1161
|
+
exports.paginateListAssets = paginateListAssets;
|
|
958
1162
|
exports.paginateListAssociations = paginateListAssociations;
|
|
959
1163
|
exports.paginateListBacklogTasks = paginateListBacklogTasks;
|
|
960
1164
|
exports.paginateListExecutions = paginateListExecutions;
|