@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetFilesCommandInput, ListAssetFilesCommandOutput } from "../commands/ListAssetFilesCommand";
|
|
3
|
+
import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssetFiles: (config: DevOpsAgentPaginationConfiguration, input: ListAssetFilesCommandInput, ...rest: any[]) => Paginator<ListAssetFilesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetTypesCommandInput, ListAssetTypesCommandOutput } from "../commands/ListAssetTypesCommand";
|
|
3
|
+
import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssetTypes: (config: DevOpsAgentPaginationConfiguration, input: ListAssetTypesCommandInput, ...rest: any[]) => Paginator<ListAssetTypesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetVersionsCommandInput, ListAssetVersionsCommandOutput } from "../commands/ListAssetVersionsCommand";
|
|
3
|
+
import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssetVersions: (config: DevOpsAgentPaginationConfiguration, input: ListAssetVersionsCommandInput, ...rest: any[]) => Paginator<ListAssetVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand";
|
|
3
|
+
import type { DevOpsAgentPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListAssets: (config: DevOpsAgentPaginationConfiguration, input: ListAssetsCommandInput, ...rest: any[]) => Paginator<ListAssetsCommandOutput>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAgentSpacesPaginator";
|
|
3
|
+
export * from "./ListAssetFilesPaginator";
|
|
4
|
+
export * from "./ListAssetsPaginator";
|
|
5
|
+
export * from "./ListAssetTypesPaginator";
|
|
6
|
+
export * from "./ListAssetVersionsPaginator";
|
|
3
7
|
export * from "./ListAssociationsPaginator";
|
|
4
8
|
export * from "./ListBacklogTasksPaginator";
|
|
5
9
|
export * from "./ListExecutionsPaginator";
|
|
@@ -18,6 +18,13 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
18
18
|
*/
|
|
19
19
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
20
20
|
export declare var AgentSpace$: StaticStructureSchema;
|
|
21
|
+
export declare var Asset$: StaticStructureSchema;
|
|
22
|
+
export declare var AssetFile$: StaticStructureSchema;
|
|
23
|
+
export declare var AssetFileContent$: StaticStructureSchema;
|
|
24
|
+
export declare var AssetFileSummary$: StaticStructureSchema;
|
|
25
|
+
export declare var AssetTypeSummary$: StaticStructureSchema;
|
|
26
|
+
export declare var AssetVersionMetadata$: StaticStructureSchema;
|
|
27
|
+
export declare var AssetZipContent$: StaticStructureSchema;
|
|
21
28
|
export declare var AssociateServiceInput$: StaticStructureSchema;
|
|
22
29
|
export declare var AssociateServiceOutput$: StaticStructureSchema;
|
|
23
30
|
export declare var Association$: StaticStructureSchema;
|
|
@@ -27,6 +34,10 @@ export declare var AzureDevOpsConfiguration$: StaticStructureSchema;
|
|
|
27
34
|
export declare var ChatExecution$: StaticStructureSchema;
|
|
28
35
|
export declare var CreateAgentSpaceInput$: StaticStructureSchema;
|
|
29
36
|
export declare var CreateAgentSpaceOutput$: StaticStructureSchema;
|
|
37
|
+
export declare var CreateAssetFileRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var CreateAssetFileResponse$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateAssetRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateAssetResponse$: StaticStructureSchema;
|
|
30
41
|
export declare var CreateBacklogTaskRequest$: StaticStructureSchema;
|
|
31
42
|
export declare var CreateBacklogTaskResponse$: StaticStructureSchema;
|
|
32
43
|
export declare var CreateChatRequest$: StaticStructureSchema;
|
|
@@ -36,6 +47,10 @@ export declare var CreatePrivateConnectionOutput$: StaticStructureSchema;
|
|
|
36
47
|
export declare var DatadogServiceDetails$: StaticStructureSchema;
|
|
37
48
|
export declare var DeleteAgentSpaceInput$: StaticStructureSchema;
|
|
38
49
|
export declare var DeleteAgentSpaceOutput$: StaticStructureSchema;
|
|
50
|
+
export declare var DeleteAssetFileRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var DeleteAssetFileResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var DeleteAssetRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var DeleteAssetResponse$: StaticStructureSchema;
|
|
39
54
|
export declare var DeletePrivateConnectionInput$: StaticStructureSchema;
|
|
40
55
|
export declare var DeletePrivateConnectionOutput$: StaticStructureSchema;
|
|
41
56
|
export declare var DeregisterServiceInput$: StaticStructureSchema;
|
|
@@ -58,6 +73,12 @@ export declare var GetAccountUsageInput$: StaticStructureSchema;
|
|
|
58
73
|
export declare var GetAccountUsageOutput$: StaticStructureSchema;
|
|
59
74
|
export declare var GetAgentSpaceInput$: StaticStructureSchema;
|
|
60
75
|
export declare var GetAgentSpaceOutput$: StaticStructureSchema;
|
|
76
|
+
export declare var GetAssetContentRequest$: StaticStructureSchema;
|
|
77
|
+
export declare var GetAssetContentResponse$: StaticStructureSchema;
|
|
78
|
+
export declare var GetAssetFileRequest$: StaticStructureSchema;
|
|
79
|
+
export declare var GetAssetFileResponse$: StaticStructureSchema;
|
|
80
|
+
export declare var GetAssetRequest$: StaticStructureSchema;
|
|
81
|
+
export declare var GetAssetResponse$: StaticStructureSchema;
|
|
61
82
|
export declare var GetAssociationInput$: StaticStructureSchema;
|
|
62
83
|
export declare var GetAssociationOutput$: StaticStructureSchema;
|
|
63
84
|
export declare var GetBacklogTaskRequest$: StaticStructureSchema;
|
|
@@ -82,6 +103,14 @@ export declare var IdpAuthConfiguration$: StaticStructureSchema;
|
|
|
82
103
|
export declare var JournalRecord$: StaticStructureSchema;
|
|
83
104
|
export declare var ListAgentSpacesInput$: StaticStructureSchema;
|
|
84
105
|
export declare var ListAgentSpacesOutput$: StaticStructureSchema;
|
|
106
|
+
export declare var ListAssetFilesRequest$: StaticStructureSchema;
|
|
107
|
+
export declare var ListAssetFilesResponse$: StaticStructureSchema;
|
|
108
|
+
export declare var ListAssetsRequest$: StaticStructureSchema;
|
|
109
|
+
export declare var ListAssetsResponse$: StaticStructureSchema;
|
|
110
|
+
export declare var ListAssetTypesRequest$: StaticStructureSchema;
|
|
111
|
+
export declare var ListAssetTypesResponse$: StaticStructureSchema;
|
|
112
|
+
export declare var ListAssetVersionsRequest$: StaticStructureSchema;
|
|
113
|
+
export declare var ListAssetVersionsResponse$: StaticStructureSchema;
|
|
85
114
|
export declare var ListAssociationsInput$: StaticStructureSchema;
|
|
86
115
|
export declare var ListAssociationsOutput$: StaticStructureSchema;
|
|
87
116
|
export declare var ListBacklogTasksRequest$: StaticStructureSchema;
|
|
@@ -178,6 +207,10 @@ export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
|
178
207
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
179
208
|
export declare var UpdateAgentSpaceInput$: StaticStructureSchema;
|
|
180
209
|
export declare var UpdateAgentSpaceOutput$: StaticStructureSchema;
|
|
210
|
+
export declare var UpdateAssetFileRequest$: StaticStructureSchema;
|
|
211
|
+
export declare var UpdateAssetFileResponse$: StaticStructureSchema;
|
|
212
|
+
export declare var UpdateAssetRequest$: StaticStructureSchema;
|
|
213
|
+
export declare var UpdateAssetResponse$: StaticStructureSchema;
|
|
181
214
|
export declare var UpdateAssociationInput$: StaticStructureSchema;
|
|
182
215
|
export declare var UpdateAssociationOutput$: StaticStructureSchema;
|
|
183
216
|
export declare var UpdateBacklogTaskRequest$: StaticStructureSchema;
|
|
@@ -198,6 +231,8 @@ export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
|
198
231
|
export declare var Webhook$: StaticStructureSchema;
|
|
199
232
|
export declare var AdditionalServiceDetails$: StaticUnionSchema;
|
|
200
233
|
export declare var AdditionalServiceRegistrationStep$: StaticUnionSchema;
|
|
234
|
+
export declare var AssetContent$: StaticUnionSchema;
|
|
235
|
+
export declare var AssetFileBody$: StaticUnionSchema;
|
|
201
236
|
export declare var AssistantMessageBlock$: StaticUnionSchema;
|
|
202
237
|
export declare var DatadogAuthorizationConfig$: StaticUnionSchema;
|
|
203
238
|
export declare var DynatraceServiceAuthorizationConfig$: StaticUnionSchema;
|
|
@@ -214,10 +249,14 @@ export declare var ServiceNowServiceAuthorizationConfig$: StaticUnionSchema;
|
|
|
214
249
|
export declare var UserMessageBlock$: StaticUnionSchema;
|
|
215
250
|
export declare var AssociateService$: StaticOperationSchema;
|
|
216
251
|
export declare var CreateAgentSpace$: StaticOperationSchema;
|
|
252
|
+
export declare var CreateAsset$: StaticOperationSchema;
|
|
253
|
+
export declare var CreateAssetFile$: StaticOperationSchema;
|
|
217
254
|
export declare var CreateBacklogTask$: StaticOperationSchema;
|
|
218
255
|
export declare var CreateChat$: StaticOperationSchema;
|
|
219
256
|
export declare var CreatePrivateConnection$: StaticOperationSchema;
|
|
220
257
|
export declare var DeleteAgentSpace$: StaticOperationSchema;
|
|
258
|
+
export declare var DeleteAsset$: StaticOperationSchema;
|
|
259
|
+
export declare var DeleteAssetFile$: StaticOperationSchema;
|
|
221
260
|
export declare var DeletePrivateConnection$: StaticOperationSchema;
|
|
222
261
|
export declare var DeregisterService$: StaticOperationSchema;
|
|
223
262
|
export declare var DescribePrivateConnection$: StaticOperationSchema;
|
|
@@ -226,12 +265,19 @@ export declare var DisassociateService$: StaticOperationSchema;
|
|
|
226
265
|
export declare var EnableOperatorApp$: StaticOperationSchema;
|
|
227
266
|
export declare var GetAccountUsage$: StaticOperationSchema;
|
|
228
267
|
export declare var GetAgentSpace$: StaticOperationSchema;
|
|
268
|
+
export declare var GetAsset$: StaticOperationSchema;
|
|
269
|
+
export declare var GetAssetContent$: StaticOperationSchema;
|
|
270
|
+
export declare var GetAssetFile$: StaticOperationSchema;
|
|
229
271
|
export declare var GetAssociation$: StaticOperationSchema;
|
|
230
272
|
export declare var GetBacklogTask$: StaticOperationSchema;
|
|
231
273
|
export declare var GetOperatorApp$: StaticOperationSchema;
|
|
232
274
|
export declare var GetRecommendation$: StaticOperationSchema;
|
|
233
275
|
export declare var GetService$: StaticOperationSchema;
|
|
234
276
|
export declare var ListAgentSpaces$: StaticOperationSchema;
|
|
277
|
+
export declare var ListAssetFiles$: StaticOperationSchema;
|
|
278
|
+
export declare var ListAssets$: StaticOperationSchema;
|
|
279
|
+
export declare var ListAssetTypes$: StaticOperationSchema;
|
|
280
|
+
export declare var ListAssetVersions$: StaticOperationSchema;
|
|
235
281
|
export declare var ListAssociations$: StaticOperationSchema;
|
|
236
282
|
export declare var ListBacklogTasks$: StaticOperationSchema;
|
|
237
283
|
export declare var ListChats$: StaticOperationSchema;
|
|
@@ -249,6 +295,8 @@ export declare var SendMessage$: StaticOperationSchema;
|
|
|
249
295
|
export declare var TagResource$: StaticOperationSchema;
|
|
250
296
|
export declare var UntagResource$: StaticOperationSchema;
|
|
251
297
|
export declare var UpdateAgentSpace$: StaticOperationSchema;
|
|
298
|
+
export declare var UpdateAsset$: StaticOperationSchema;
|
|
299
|
+
export declare var UpdateAssetFile$: StaticOperationSchema;
|
|
252
300
|
export declare var UpdateAssociation$: StaticOperationSchema;
|
|
253
301
|
export declare var UpdateBacklogTask$: StaticOperationSchema;
|
|
254
302
|
export declare var UpdateGoal$: StaticOperationSchema;
|
|
@@ -11,6 +11,14 @@ import {
|
|
|
11
11
|
CreateAgentSpaceCommandInput,
|
|
12
12
|
CreateAgentSpaceCommandOutput,
|
|
13
13
|
} from "./commands/CreateAgentSpaceCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAssetCommandInput,
|
|
16
|
+
CreateAssetCommandOutput,
|
|
17
|
+
} from "./commands/CreateAssetCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateAssetFileCommandInput,
|
|
20
|
+
CreateAssetFileCommandOutput,
|
|
21
|
+
} from "./commands/CreateAssetFileCommand";
|
|
14
22
|
import {
|
|
15
23
|
CreateBacklogTaskCommandInput,
|
|
16
24
|
CreateBacklogTaskCommandOutput,
|
|
@@ -27,6 +35,14 @@ import {
|
|
|
27
35
|
DeleteAgentSpaceCommandInput,
|
|
28
36
|
DeleteAgentSpaceCommandOutput,
|
|
29
37
|
} from "./commands/DeleteAgentSpaceCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteAssetCommandInput,
|
|
40
|
+
DeleteAssetCommandOutput,
|
|
41
|
+
} from "./commands/DeleteAssetCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteAssetFileCommandInput,
|
|
44
|
+
DeleteAssetFileCommandOutput,
|
|
45
|
+
} from "./commands/DeleteAssetFileCommand";
|
|
30
46
|
import {
|
|
31
47
|
DeletePrivateConnectionCommandInput,
|
|
32
48
|
DeletePrivateConnectionCommandOutput,
|
|
@@ -59,6 +75,18 @@ import {
|
|
|
59
75
|
GetAgentSpaceCommandInput,
|
|
60
76
|
GetAgentSpaceCommandOutput,
|
|
61
77
|
} from "./commands/GetAgentSpaceCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetAssetCommandInput,
|
|
80
|
+
GetAssetCommandOutput,
|
|
81
|
+
} from "./commands/GetAssetCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetAssetContentCommandInput,
|
|
84
|
+
GetAssetContentCommandOutput,
|
|
85
|
+
} from "./commands/GetAssetContentCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetAssetFileCommandInput,
|
|
88
|
+
GetAssetFileCommandOutput,
|
|
89
|
+
} from "./commands/GetAssetFileCommand";
|
|
62
90
|
import {
|
|
63
91
|
GetAssociationCommandInput,
|
|
64
92
|
GetAssociationCommandOutput,
|
|
@@ -83,6 +111,22 @@ import {
|
|
|
83
111
|
ListAgentSpacesCommandInput,
|
|
84
112
|
ListAgentSpacesCommandOutput,
|
|
85
113
|
} from "./commands/ListAgentSpacesCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListAssetFilesCommandInput,
|
|
116
|
+
ListAssetFilesCommandOutput,
|
|
117
|
+
} from "./commands/ListAssetFilesCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListAssetsCommandInput,
|
|
120
|
+
ListAssetsCommandOutput,
|
|
121
|
+
} from "./commands/ListAssetsCommand";
|
|
122
|
+
import {
|
|
123
|
+
ListAssetTypesCommandInput,
|
|
124
|
+
ListAssetTypesCommandOutput,
|
|
125
|
+
} from "./commands/ListAssetTypesCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListAssetVersionsCommandInput,
|
|
128
|
+
ListAssetVersionsCommandOutput,
|
|
129
|
+
} from "./commands/ListAssetVersionsCommand";
|
|
86
130
|
import {
|
|
87
131
|
ListAssociationsCommandInput,
|
|
88
132
|
ListAssociationsCommandOutput,
|
|
@@ -151,6 +195,14 @@ import {
|
|
|
151
195
|
UpdateAgentSpaceCommandInput,
|
|
152
196
|
UpdateAgentSpaceCommandOutput,
|
|
153
197
|
} from "./commands/UpdateAgentSpaceCommand";
|
|
198
|
+
import {
|
|
199
|
+
UpdateAssetCommandInput,
|
|
200
|
+
UpdateAssetCommandOutput,
|
|
201
|
+
} from "./commands/UpdateAssetCommand";
|
|
202
|
+
import {
|
|
203
|
+
UpdateAssetFileCommandInput,
|
|
204
|
+
UpdateAssetFileCommandOutput,
|
|
205
|
+
} from "./commands/UpdateAssetFileCommand";
|
|
154
206
|
import {
|
|
155
207
|
UpdateAssociationCommandInput,
|
|
156
208
|
UpdateAssociationCommandOutput,
|
|
@@ -207,6 +259,32 @@ export interface DevOpsAgent {
|
|
|
207
259
|
options: __HttpHandlerOptions,
|
|
208
260
|
cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void
|
|
209
261
|
): void;
|
|
262
|
+
createAsset(
|
|
263
|
+
args: CreateAssetCommandInput,
|
|
264
|
+
options?: __HttpHandlerOptions
|
|
265
|
+
): Promise<CreateAssetCommandOutput>;
|
|
266
|
+
createAsset(
|
|
267
|
+
args: CreateAssetCommandInput,
|
|
268
|
+
cb: (err: any, data?: CreateAssetCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
createAsset(
|
|
271
|
+
args: CreateAssetCommandInput,
|
|
272
|
+
options: __HttpHandlerOptions,
|
|
273
|
+
cb: (err: any, data?: CreateAssetCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
createAssetFile(
|
|
276
|
+
args: CreateAssetFileCommandInput,
|
|
277
|
+
options?: __HttpHandlerOptions
|
|
278
|
+
): Promise<CreateAssetFileCommandOutput>;
|
|
279
|
+
createAssetFile(
|
|
280
|
+
args: CreateAssetFileCommandInput,
|
|
281
|
+
cb: (err: any, data?: CreateAssetFileCommandOutput) => void
|
|
282
|
+
): void;
|
|
283
|
+
createAssetFile(
|
|
284
|
+
args: CreateAssetFileCommandInput,
|
|
285
|
+
options: __HttpHandlerOptions,
|
|
286
|
+
cb: (err: any, data?: CreateAssetFileCommandOutput) => void
|
|
287
|
+
): void;
|
|
210
288
|
createBacklogTask(
|
|
211
289
|
args: CreateBacklogTaskCommandInput,
|
|
212
290
|
options?: __HttpHandlerOptions
|
|
@@ -259,6 +337,32 @@ export interface DevOpsAgent {
|
|
|
259
337
|
options: __HttpHandlerOptions,
|
|
260
338
|
cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void
|
|
261
339
|
): void;
|
|
340
|
+
deleteAsset(
|
|
341
|
+
args: DeleteAssetCommandInput,
|
|
342
|
+
options?: __HttpHandlerOptions
|
|
343
|
+
): Promise<DeleteAssetCommandOutput>;
|
|
344
|
+
deleteAsset(
|
|
345
|
+
args: DeleteAssetCommandInput,
|
|
346
|
+
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
347
|
+
): void;
|
|
348
|
+
deleteAsset(
|
|
349
|
+
args: DeleteAssetCommandInput,
|
|
350
|
+
options: __HttpHandlerOptions,
|
|
351
|
+
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
352
|
+
): void;
|
|
353
|
+
deleteAssetFile(
|
|
354
|
+
args: DeleteAssetFileCommandInput,
|
|
355
|
+
options?: __HttpHandlerOptions
|
|
356
|
+
): Promise<DeleteAssetFileCommandOutput>;
|
|
357
|
+
deleteAssetFile(
|
|
358
|
+
args: DeleteAssetFileCommandInput,
|
|
359
|
+
cb: (err: any, data?: DeleteAssetFileCommandOutput) => void
|
|
360
|
+
): void;
|
|
361
|
+
deleteAssetFile(
|
|
362
|
+
args: DeleteAssetFileCommandInput,
|
|
363
|
+
options: __HttpHandlerOptions,
|
|
364
|
+
cb: (err: any, data?: DeleteAssetFileCommandOutput) => void
|
|
365
|
+
): void;
|
|
262
366
|
deletePrivateConnection(
|
|
263
367
|
args: DeletePrivateConnectionCommandInput,
|
|
264
368
|
options?: __HttpHandlerOptions
|
|
@@ -364,6 +468,45 @@ export interface DevOpsAgent {
|
|
|
364
468
|
options: __HttpHandlerOptions,
|
|
365
469
|
cb: (err: any, data?: GetAgentSpaceCommandOutput) => void
|
|
366
470
|
): void;
|
|
471
|
+
getAsset(
|
|
472
|
+
args: GetAssetCommandInput,
|
|
473
|
+
options?: __HttpHandlerOptions
|
|
474
|
+
): Promise<GetAssetCommandOutput>;
|
|
475
|
+
getAsset(
|
|
476
|
+
args: GetAssetCommandInput,
|
|
477
|
+
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
478
|
+
): void;
|
|
479
|
+
getAsset(
|
|
480
|
+
args: GetAssetCommandInput,
|
|
481
|
+
options: __HttpHandlerOptions,
|
|
482
|
+
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
483
|
+
): void;
|
|
484
|
+
getAssetContent(
|
|
485
|
+
args: GetAssetContentCommandInput,
|
|
486
|
+
options?: __HttpHandlerOptions
|
|
487
|
+
): Promise<GetAssetContentCommandOutput>;
|
|
488
|
+
getAssetContent(
|
|
489
|
+
args: GetAssetContentCommandInput,
|
|
490
|
+
cb: (err: any, data?: GetAssetContentCommandOutput) => void
|
|
491
|
+
): void;
|
|
492
|
+
getAssetContent(
|
|
493
|
+
args: GetAssetContentCommandInput,
|
|
494
|
+
options: __HttpHandlerOptions,
|
|
495
|
+
cb: (err: any, data?: GetAssetContentCommandOutput) => void
|
|
496
|
+
): void;
|
|
497
|
+
getAssetFile(
|
|
498
|
+
args: GetAssetFileCommandInput,
|
|
499
|
+
options?: __HttpHandlerOptions
|
|
500
|
+
): Promise<GetAssetFileCommandOutput>;
|
|
501
|
+
getAssetFile(
|
|
502
|
+
args: GetAssetFileCommandInput,
|
|
503
|
+
cb: (err: any, data?: GetAssetFileCommandOutput) => void
|
|
504
|
+
): void;
|
|
505
|
+
getAssetFile(
|
|
506
|
+
args: GetAssetFileCommandInput,
|
|
507
|
+
options: __HttpHandlerOptions,
|
|
508
|
+
cb: (err: any, data?: GetAssetFileCommandOutput) => void
|
|
509
|
+
): void;
|
|
367
510
|
getAssociation(
|
|
368
511
|
args: GetAssociationCommandInput,
|
|
369
512
|
options?: __HttpHandlerOptions
|
|
@@ -443,6 +586,59 @@ export interface DevOpsAgent {
|
|
|
443
586
|
options: __HttpHandlerOptions,
|
|
444
587
|
cb: (err: any, data?: ListAgentSpacesCommandOutput) => void
|
|
445
588
|
): void;
|
|
589
|
+
listAssetFiles(
|
|
590
|
+
args: ListAssetFilesCommandInput,
|
|
591
|
+
options?: __HttpHandlerOptions
|
|
592
|
+
): Promise<ListAssetFilesCommandOutput>;
|
|
593
|
+
listAssetFiles(
|
|
594
|
+
args: ListAssetFilesCommandInput,
|
|
595
|
+
cb: (err: any, data?: ListAssetFilesCommandOutput) => void
|
|
596
|
+
): void;
|
|
597
|
+
listAssetFiles(
|
|
598
|
+
args: ListAssetFilesCommandInput,
|
|
599
|
+
options: __HttpHandlerOptions,
|
|
600
|
+
cb: (err: any, data?: ListAssetFilesCommandOutput) => void
|
|
601
|
+
): void;
|
|
602
|
+
listAssets(
|
|
603
|
+
args: ListAssetsCommandInput,
|
|
604
|
+
options?: __HttpHandlerOptions
|
|
605
|
+
): Promise<ListAssetsCommandOutput>;
|
|
606
|
+
listAssets(
|
|
607
|
+
args: ListAssetsCommandInput,
|
|
608
|
+
cb: (err: any, data?: ListAssetsCommandOutput) => void
|
|
609
|
+
): void;
|
|
610
|
+
listAssets(
|
|
611
|
+
args: ListAssetsCommandInput,
|
|
612
|
+
options: __HttpHandlerOptions,
|
|
613
|
+
cb: (err: any, data?: ListAssetsCommandOutput) => void
|
|
614
|
+
): void;
|
|
615
|
+
listAssetTypes(): Promise<ListAssetTypesCommandOutput>;
|
|
616
|
+
listAssetTypes(
|
|
617
|
+
args: ListAssetTypesCommandInput,
|
|
618
|
+
options?: __HttpHandlerOptions
|
|
619
|
+
): Promise<ListAssetTypesCommandOutput>;
|
|
620
|
+
listAssetTypes(
|
|
621
|
+
args: ListAssetTypesCommandInput,
|
|
622
|
+
cb: (err: any, data?: ListAssetTypesCommandOutput) => void
|
|
623
|
+
): void;
|
|
624
|
+
listAssetTypes(
|
|
625
|
+
args: ListAssetTypesCommandInput,
|
|
626
|
+
options: __HttpHandlerOptions,
|
|
627
|
+
cb: (err: any, data?: ListAssetTypesCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
listAssetVersions(
|
|
630
|
+
args: ListAssetVersionsCommandInput,
|
|
631
|
+
options?: __HttpHandlerOptions
|
|
632
|
+
): Promise<ListAssetVersionsCommandOutput>;
|
|
633
|
+
listAssetVersions(
|
|
634
|
+
args: ListAssetVersionsCommandInput,
|
|
635
|
+
cb: (err: any, data?: ListAssetVersionsCommandOutput) => void
|
|
636
|
+
): void;
|
|
637
|
+
listAssetVersions(
|
|
638
|
+
args: ListAssetVersionsCommandInput,
|
|
639
|
+
options: __HttpHandlerOptions,
|
|
640
|
+
cb: (err: any, data?: ListAssetVersionsCommandOutput) => void
|
|
641
|
+
): void;
|
|
446
642
|
listAssociations(
|
|
447
643
|
args: ListAssociationsCommandInput,
|
|
448
644
|
options?: __HttpHandlerOptions
|
|
@@ -666,6 +862,32 @@ export interface DevOpsAgent {
|
|
|
666
862
|
options: __HttpHandlerOptions,
|
|
667
863
|
cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void
|
|
668
864
|
): void;
|
|
865
|
+
updateAsset(
|
|
866
|
+
args: UpdateAssetCommandInput,
|
|
867
|
+
options?: __HttpHandlerOptions
|
|
868
|
+
): Promise<UpdateAssetCommandOutput>;
|
|
869
|
+
updateAsset(
|
|
870
|
+
args: UpdateAssetCommandInput,
|
|
871
|
+
cb: (err: any, data?: UpdateAssetCommandOutput) => void
|
|
872
|
+
): void;
|
|
873
|
+
updateAsset(
|
|
874
|
+
args: UpdateAssetCommandInput,
|
|
875
|
+
options: __HttpHandlerOptions,
|
|
876
|
+
cb: (err: any, data?: UpdateAssetCommandOutput) => void
|
|
877
|
+
): void;
|
|
878
|
+
updateAssetFile(
|
|
879
|
+
args: UpdateAssetFileCommandInput,
|
|
880
|
+
options?: __HttpHandlerOptions
|
|
881
|
+
): Promise<UpdateAssetFileCommandOutput>;
|
|
882
|
+
updateAssetFile(
|
|
883
|
+
args: UpdateAssetFileCommandInput,
|
|
884
|
+
cb: (err: any, data?: UpdateAssetFileCommandOutput) => void
|
|
885
|
+
): void;
|
|
886
|
+
updateAssetFile(
|
|
887
|
+
args: UpdateAssetFileCommandInput,
|
|
888
|
+
options: __HttpHandlerOptions,
|
|
889
|
+
cb: (err: any, data?: UpdateAssetFileCommandOutput) => void
|
|
890
|
+
): void;
|
|
669
891
|
updateAssociation(
|
|
670
892
|
args: UpdateAssociationCommandInput,
|
|
671
893
|
options?: __HttpHandlerOptions
|
|
@@ -770,6 +992,34 @@ export interface DevOpsAgent {
|
|
|
770
992
|
Exclude<keyof PaginationConfiguration, "client">
|
|
771
993
|
>
|
|
772
994
|
): Paginator<ListAgentSpacesCommandOutput>;
|
|
995
|
+
paginateListAssetFiles(
|
|
996
|
+
args: ListAssetFilesCommandInput,
|
|
997
|
+
paginationConfig?: Pick<
|
|
998
|
+
PaginationConfiguration,
|
|
999
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1000
|
+
>
|
|
1001
|
+
): Paginator<ListAssetFilesCommandOutput>;
|
|
1002
|
+
paginateListAssets(
|
|
1003
|
+
args: ListAssetsCommandInput,
|
|
1004
|
+
paginationConfig?: Pick<
|
|
1005
|
+
PaginationConfiguration,
|
|
1006
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1007
|
+
>
|
|
1008
|
+
): Paginator<ListAssetsCommandOutput>;
|
|
1009
|
+
paginateListAssetTypes(
|
|
1010
|
+
args?: ListAssetTypesCommandInput,
|
|
1011
|
+
paginationConfig?: Pick<
|
|
1012
|
+
PaginationConfiguration,
|
|
1013
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1014
|
+
>
|
|
1015
|
+
): Paginator<ListAssetTypesCommandOutput>;
|
|
1016
|
+
paginateListAssetVersions(
|
|
1017
|
+
args: ListAssetVersionsCommandInput,
|
|
1018
|
+
paginationConfig?: Pick<
|
|
1019
|
+
PaginationConfiguration,
|
|
1020
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1021
|
+
>
|
|
1022
|
+
): Paginator<ListAssetVersionsCommandOutput>;
|
|
773
1023
|
paginateListAssociations(
|
|
774
1024
|
args: ListAssociationsCommandInput,
|
|
775
1025
|
paginationConfig?: Pick<
|
|
@@ -49,6 +49,14 @@ import {
|
|
|
49
49
|
CreateAgentSpaceCommandInput,
|
|
50
50
|
CreateAgentSpaceCommandOutput,
|
|
51
51
|
} from "./commands/CreateAgentSpaceCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateAssetCommandInput,
|
|
54
|
+
CreateAssetCommandOutput,
|
|
55
|
+
} from "./commands/CreateAssetCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateAssetFileCommandInput,
|
|
58
|
+
CreateAssetFileCommandOutput,
|
|
59
|
+
} from "./commands/CreateAssetFileCommand";
|
|
52
60
|
import {
|
|
53
61
|
CreateBacklogTaskCommandInput,
|
|
54
62
|
CreateBacklogTaskCommandOutput,
|
|
@@ -65,6 +73,14 @@ import {
|
|
|
65
73
|
DeleteAgentSpaceCommandInput,
|
|
66
74
|
DeleteAgentSpaceCommandOutput,
|
|
67
75
|
} from "./commands/DeleteAgentSpaceCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteAssetCommandInput,
|
|
78
|
+
DeleteAssetCommandOutput,
|
|
79
|
+
} from "./commands/DeleteAssetCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteAssetFileCommandInput,
|
|
82
|
+
DeleteAssetFileCommandOutput,
|
|
83
|
+
} from "./commands/DeleteAssetFileCommand";
|
|
68
84
|
import {
|
|
69
85
|
DeletePrivateConnectionCommandInput,
|
|
70
86
|
DeletePrivateConnectionCommandOutput,
|
|
@@ -97,6 +113,18 @@ import {
|
|
|
97
113
|
GetAgentSpaceCommandInput,
|
|
98
114
|
GetAgentSpaceCommandOutput,
|
|
99
115
|
} from "./commands/GetAgentSpaceCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetAssetCommandInput,
|
|
118
|
+
GetAssetCommandOutput,
|
|
119
|
+
} from "./commands/GetAssetCommand";
|
|
120
|
+
import {
|
|
121
|
+
GetAssetContentCommandInput,
|
|
122
|
+
GetAssetContentCommandOutput,
|
|
123
|
+
} from "./commands/GetAssetContentCommand";
|
|
124
|
+
import {
|
|
125
|
+
GetAssetFileCommandInput,
|
|
126
|
+
GetAssetFileCommandOutput,
|
|
127
|
+
} from "./commands/GetAssetFileCommand";
|
|
100
128
|
import {
|
|
101
129
|
GetAssociationCommandInput,
|
|
102
130
|
GetAssociationCommandOutput,
|
|
@@ -121,6 +149,22 @@ import {
|
|
|
121
149
|
ListAgentSpacesCommandInput,
|
|
122
150
|
ListAgentSpacesCommandOutput,
|
|
123
151
|
} from "./commands/ListAgentSpacesCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListAssetFilesCommandInput,
|
|
154
|
+
ListAssetFilesCommandOutput,
|
|
155
|
+
} from "./commands/ListAssetFilesCommand";
|
|
156
|
+
import {
|
|
157
|
+
ListAssetsCommandInput,
|
|
158
|
+
ListAssetsCommandOutput,
|
|
159
|
+
} from "./commands/ListAssetsCommand";
|
|
160
|
+
import {
|
|
161
|
+
ListAssetTypesCommandInput,
|
|
162
|
+
ListAssetTypesCommandOutput,
|
|
163
|
+
} from "./commands/ListAssetTypesCommand";
|
|
164
|
+
import {
|
|
165
|
+
ListAssetVersionsCommandInput,
|
|
166
|
+
ListAssetVersionsCommandOutput,
|
|
167
|
+
} from "./commands/ListAssetVersionsCommand";
|
|
124
168
|
import {
|
|
125
169
|
ListAssociationsCommandInput,
|
|
126
170
|
ListAssociationsCommandOutput,
|
|
@@ -189,6 +233,14 @@ import {
|
|
|
189
233
|
UpdateAgentSpaceCommandInput,
|
|
190
234
|
UpdateAgentSpaceCommandOutput,
|
|
191
235
|
} from "./commands/UpdateAgentSpaceCommand";
|
|
236
|
+
import {
|
|
237
|
+
UpdateAssetCommandInput,
|
|
238
|
+
UpdateAssetCommandOutput,
|
|
239
|
+
} from "./commands/UpdateAssetCommand";
|
|
240
|
+
import {
|
|
241
|
+
UpdateAssetFileCommandInput,
|
|
242
|
+
UpdateAssetFileCommandOutput,
|
|
243
|
+
} from "./commands/UpdateAssetFileCommand";
|
|
192
244
|
import {
|
|
193
245
|
UpdateAssociationCommandInput,
|
|
194
246
|
UpdateAssociationCommandOutput,
|
|
@@ -227,10 +279,14 @@ export { __Client };
|
|
|
227
279
|
export type ServiceInputTypes =
|
|
228
280
|
| AssociateServiceCommandInput
|
|
229
281
|
| CreateAgentSpaceCommandInput
|
|
282
|
+
| CreateAssetCommandInput
|
|
283
|
+
| CreateAssetFileCommandInput
|
|
230
284
|
| CreateBacklogTaskCommandInput
|
|
231
285
|
| CreateChatCommandInput
|
|
232
286
|
| CreatePrivateConnectionCommandInput
|
|
233
287
|
| DeleteAgentSpaceCommandInput
|
|
288
|
+
| DeleteAssetCommandInput
|
|
289
|
+
| DeleteAssetFileCommandInput
|
|
234
290
|
| DeletePrivateConnectionCommandInput
|
|
235
291
|
| DeregisterServiceCommandInput
|
|
236
292
|
| DescribePrivateConnectionCommandInput
|
|
@@ -239,12 +295,19 @@ export type ServiceInputTypes =
|
|
|
239
295
|
| EnableOperatorAppCommandInput
|
|
240
296
|
| GetAccountUsageCommandInput
|
|
241
297
|
| GetAgentSpaceCommandInput
|
|
298
|
+
| GetAssetCommandInput
|
|
299
|
+
| GetAssetContentCommandInput
|
|
300
|
+
| GetAssetFileCommandInput
|
|
242
301
|
| GetAssociationCommandInput
|
|
243
302
|
| GetBacklogTaskCommandInput
|
|
244
303
|
| GetOperatorAppCommandInput
|
|
245
304
|
| GetRecommendationCommandInput
|
|
246
305
|
| GetServiceCommandInput
|
|
247
306
|
| ListAgentSpacesCommandInput
|
|
307
|
+
| ListAssetFilesCommandInput
|
|
308
|
+
| ListAssetTypesCommandInput
|
|
309
|
+
| ListAssetVersionsCommandInput
|
|
310
|
+
| ListAssetsCommandInput
|
|
248
311
|
| ListAssociationsCommandInput
|
|
249
312
|
| ListBacklogTasksCommandInput
|
|
250
313
|
| ListChatsCommandInput
|
|
@@ -262,6 +325,8 @@ export type ServiceInputTypes =
|
|
|
262
325
|
| TagResourceCommandInput
|
|
263
326
|
| UntagResourceCommandInput
|
|
264
327
|
| UpdateAgentSpaceCommandInput
|
|
328
|
+
| UpdateAssetCommandInput
|
|
329
|
+
| UpdateAssetFileCommandInput
|
|
265
330
|
| UpdateAssociationCommandInput
|
|
266
331
|
| UpdateBacklogTaskCommandInput
|
|
267
332
|
| UpdateGoalCommandInput
|
|
@@ -272,10 +337,14 @@ export type ServiceInputTypes =
|
|
|
272
337
|
export type ServiceOutputTypes =
|
|
273
338
|
| AssociateServiceCommandOutput
|
|
274
339
|
| CreateAgentSpaceCommandOutput
|
|
340
|
+
| CreateAssetCommandOutput
|
|
341
|
+
| CreateAssetFileCommandOutput
|
|
275
342
|
| CreateBacklogTaskCommandOutput
|
|
276
343
|
| CreateChatCommandOutput
|
|
277
344
|
| CreatePrivateConnectionCommandOutput
|
|
278
345
|
| DeleteAgentSpaceCommandOutput
|
|
346
|
+
| DeleteAssetCommandOutput
|
|
347
|
+
| DeleteAssetFileCommandOutput
|
|
279
348
|
| DeletePrivateConnectionCommandOutput
|
|
280
349
|
| DeregisterServiceCommandOutput
|
|
281
350
|
| DescribePrivateConnectionCommandOutput
|
|
@@ -284,12 +353,19 @@ export type ServiceOutputTypes =
|
|
|
284
353
|
| EnableOperatorAppCommandOutput
|
|
285
354
|
| GetAccountUsageCommandOutput
|
|
286
355
|
| GetAgentSpaceCommandOutput
|
|
356
|
+
| GetAssetCommandOutput
|
|
357
|
+
| GetAssetContentCommandOutput
|
|
358
|
+
| GetAssetFileCommandOutput
|
|
287
359
|
| GetAssociationCommandOutput
|
|
288
360
|
| GetBacklogTaskCommandOutput
|
|
289
361
|
| GetOperatorAppCommandOutput
|
|
290
362
|
| GetRecommendationCommandOutput
|
|
291
363
|
| GetServiceCommandOutput
|
|
292
364
|
| ListAgentSpacesCommandOutput
|
|
365
|
+
| ListAssetFilesCommandOutput
|
|
366
|
+
| ListAssetTypesCommandOutput
|
|
367
|
+
| ListAssetVersionsCommandOutput
|
|
368
|
+
| ListAssetsCommandOutput
|
|
293
369
|
| ListAssociationsCommandOutput
|
|
294
370
|
| ListBacklogTasksCommandOutput
|
|
295
371
|
| ListChatsCommandOutput
|
|
@@ -307,6 +383,8 @@ export type ServiceOutputTypes =
|
|
|
307
383
|
| TagResourceCommandOutput
|
|
308
384
|
| UntagResourceCommandOutput
|
|
309
385
|
| UpdateAgentSpaceCommandOutput
|
|
386
|
+
| UpdateAssetCommandOutput
|
|
387
|
+
| UpdateAssetFileCommandOutput
|
|
310
388
|
| UpdateAssociationCommandOutput
|
|
311
389
|
| UpdateBacklogTaskCommandOutput
|
|
312
390
|
| UpdateGoalCommandOutput
|