@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.
Files changed (89) hide show
  1. package/README.md +92 -1
  2. package/dist-cjs/index.js +204 -0
  3. package/dist-cjs/schemas/schemas_0.js +375 -77
  4. package/dist-es/DevOpsAgent.js +34 -0
  5. package/dist-es/commands/CreateAssetCommand.js +16 -0
  6. package/dist-es/commands/CreateAssetFileCommand.js +16 -0
  7. package/dist-es/commands/DeleteAssetCommand.js +16 -0
  8. package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
  9. package/dist-es/commands/GetAssetCommand.js +16 -0
  10. package/dist-es/commands/GetAssetContentCommand.js +16 -0
  11. package/dist-es/commands/GetAssetFileCommand.js +16 -0
  12. package/dist-es/commands/ListAssetFilesCommand.js +16 -0
  13. package/dist-es/commands/ListAssetTypesCommand.js +16 -0
  14. package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
  15. package/dist-es/commands/ListAssetsCommand.js +16 -0
  16. package/dist-es/commands/UpdateAssetCommand.js +16 -0
  17. package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
  18. package/dist-es/commands/index.js +13 -0
  19. package/dist-es/models/enums.js +5 -0
  20. package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
  21. package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
  22. package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListAssetsPaginator.js +4 -0
  24. package/dist-es/pagination/index.js +4 -0
  25. package/dist-es/schemas/schemas_0.js +369 -71
  26. package/dist-types/DevOpsAgent.d.ts +121 -1
  27. package/dist-types/DevOpsAgentClient.d.ts +16 -3
  28. package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
  29. package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
  30. package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
  32. package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
  33. package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
  34. package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
  35. package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
  36. package/dist-types/commands/GetAssetCommand.d.ts +112 -0
  37. package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
  38. package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
  39. package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
  40. package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
  41. package/dist-types/commands/GetServiceCommand.d.ts +1 -0
  42. package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
  43. package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
  44. package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
  45. package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
  46. package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
  47. package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
  48. package/dist-types/commands/ListServicesCommand.d.ts +1 -0
  49. package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
  50. package/dist-types/commands/SendMessageCommand.d.ts +3 -0
  51. package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
  52. package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
  53. package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
  54. package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
  55. package/dist-types/commands/index.d.ts +13 -0
  56. package/dist-types/index.d.ts +1 -1
  57. package/dist-types/models/enums.d.ts +22 -0
  58. package/dist-types/models/models_0.d.ts +879 -27
  59. package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
  60. package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +4 -0
  64. package/dist-types/schemas/schemas_0.d.ts +48 -0
  65. package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
  66. package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
  67. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
  68. package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
  69. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
  70. package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
  71. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
  72. package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
  73. package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
  74. package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
  75. package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
  76. package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
  77. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
  78. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
  79. package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
  80. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  81. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  82. package/dist-types/ts3.4/models/models_0.d.ts +230 -1
  83. package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
  87. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  88. package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
  89. package/package.json +5 -5
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { CreateAssetRequest, CreateAssetResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateAssetCommandInput extends CreateAssetRequest {}
12
+ export interface CreateAssetCommandOutput
13
+ extends CreateAssetResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateAssetCommand_base: {
16
+ new (
17
+ input: CreateAssetCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ CreateAssetCommandInput,
20
+ CreateAssetCommandOutput,
21
+ DevOpsAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateAssetCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ CreateAssetCommandInput,
29
+ CreateAssetCommandOutput,
30
+ DevOpsAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class CreateAssetCommand extends CreateAssetCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: CreateAssetRequest;
42
+ output: CreateAssetResponse;
43
+ };
44
+ sdk: {
45
+ input: CreateAssetCommandInput;
46
+ output: CreateAssetCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ CreateAssetFileRequest,
10
+ CreateAssetFileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateAssetFileCommandInput extends CreateAssetFileRequest {}
15
+ export interface CreateAssetFileCommandOutput
16
+ extends CreateAssetFileResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateAssetFileCommand_base: {
19
+ new (
20
+ input: CreateAssetFileCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ CreateAssetFileCommandInput,
23
+ CreateAssetFileCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateAssetFileCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ CreateAssetFileCommandInput,
32
+ CreateAssetFileCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class CreateAssetFileCommand extends CreateAssetFileCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: CreateAssetFileRequest;
45
+ output: CreateAssetFileResponse;
46
+ };
47
+ sdk: {
48
+ input: CreateAssetFileCommandInput;
49
+ output: CreateAssetFileCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteAssetCommandInput extends DeleteAssetRequest {}
12
+ export interface DeleteAssetCommandOutput
13
+ extends DeleteAssetResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteAssetCommand_base: {
16
+ new (
17
+ input: DeleteAssetCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ DeleteAssetCommandInput,
20
+ DeleteAssetCommandOutput,
21
+ DevOpsAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteAssetCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ DeleteAssetCommandInput,
29
+ DeleteAssetCommandOutput,
30
+ DevOpsAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class DeleteAssetCommand extends DeleteAssetCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: DeleteAssetRequest;
42
+ output: {};
43
+ };
44
+ sdk: {
45
+ input: DeleteAssetCommandInput;
46
+ output: DeleteAssetCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ DeleteAssetFileRequest,
10
+ DeleteAssetFileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteAssetFileCommandInput extends DeleteAssetFileRequest {}
15
+ export interface DeleteAssetFileCommandOutput
16
+ extends DeleteAssetFileResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteAssetFileCommand_base: {
19
+ new (
20
+ input: DeleteAssetFileCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ DeleteAssetFileCommandInput,
23
+ DeleteAssetFileCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteAssetFileCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ DeleteAssetFileCommandInput,
32
+ DeleteAssetFileCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class DeleteAssetFileCommand extends DeleteAssetFileCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: DeleteAssetFileRequest;
45
+ output: {};
46
+ };
47
+ sdk: {
48
+ input: DeleteAssetFileCommandInput;
49
+ output: DeleteAssetFileCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { GetAssetRequest, GetAssetResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetAssetCommandInput extends GetAssetRequest {}
12
+ export interface GetAssetCommandOutput
13
+ extends GetAssetResponse,
14
+ __MetadataBearer {}
15
+ declare const GetAssetCommand_base: {
16
+ new (input: GetAssetCommandInput): import("@smithy/core/client").CommandImpl<
17
+ GetAssetCommandInput,
18
+ GetAssetCommandOutput,
19
+ DevOpsAgentClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (input: GetAssetCommandInput): import("@smithy/core/client").CommandImpl<
24
+ GetAssetCommandInput,
25
+ GetAssetCommandOutput,
26
+ DevOpsAgentClientResolvedConfig,
27
+ ServiceInputTypes,
28
+ ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): {
31
+ [x: string]: unknown;
32
+ };
33
+ };
34
+ export declare class GetAssetCommand extends GetAssetCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: GetAssetRequest;
38
+ output: GetAssetResponse;
39
+ };
40
+ sdk: {
41
+ input: GetAssetCommandInput;
42
+ output: GetAssetCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ GetAssetContentRequest,
10
+ GetAssetContentResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetAssetContentCommandInput extends GetAssetContentRequest {}
15
+ export interface GetAssetContentCommandOutput
16
+ extends GetAssetContentResponse,
17
+ __MetadataBearer {}
18
+ declare const GetAssetContentCommand_base: {
19
+ new (
20
+ input: GetAssetContentCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ GetAssetContentCommandInput,
23
+ GetAssetContentCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetAssetContentCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ GetAssetContentCommandInput,
32
+ GetAssetContentCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class GetAssetContentCommand extends GetAssetContentCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: GetAssetContentRequest;
45
+ output: GetAssetContentResponse;
46
+ };
47
+ sdk: {
48
+ input: GetAssetContentCommandInput;
49
+ output: GetAssetContentCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { GetAssetFileRequest, GetAssetFileResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetAssetFileCommandInput extends GetAssetFileRequest {}
12
+ export interface GetAssetFileCommandOutput
13
+ extends GetAssetFileResponse,
14
+ __MetadataBearer {}
15
+ declare const GetAssetFileCommand_base: {
16
+ new (
17
+ input: GetAssetFileCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ GetAssetFileCommandInput,
20
+ GetAssetFileCommandOutput,
21
+ DevOpsAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetAssetFileCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ GetAssetFileCommandInput,
29
+ GetAssetFileCommandOutput,
30
+ DevOpsAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class GetAssetFileCommand extends GetAssetFileCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: GetAssetFileRequest;
42
+ output: GetAssetFileResponse;
43
+ };
44
+ sdk: {
45
+ input: GetAssetFileCommandInput;
46
+ output: GetAssetFileCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ ListAssetFilesRequest,
10
+ ListAssetFilesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAssetFilesCommandInput extends ListAssetFilesRequest {}
15
+ export interface ListAssetFilesCommandOutput
16
+ extends ListAssetFilesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAssetFilesCommand_base: {
19
+ new (
20
+ input: ListAssetFilesCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ ListAssetFilesCommandInput,
23
+ ListAssetFilesCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListAssetFilesCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ ListAssetFilesCommandInput,
32
+ ListAssetFilesCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class ListAssetFilesCommand extends ListAssetFilesCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: ListAssetFilesRequest;
45
+ output: ListAssetFilesResponse;
46
+ };
47
+ sdk: {
48
+ input: ListAssetFilesCommandInput;
49
+ output: ListAssetFilesCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ ListAssetTypesRequest,
10
+ ListAssetTypesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAssetTypesCommandInput extends ListAssetTypesRequest {}
15
+ export interface ListAssetTypesCommandOutput
16
+ extends ListAssetTypesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListAssetTypesCommand_base: {
19
+ new (
20
+ input: ListAssetTypesCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ ListAssetTypesCommandInput,
23
+ ListAssetTypesCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListAssetTypesCommandInput]
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ ListAssetTypesCommandInput,
32
+ ListAssetTypesCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class ListAssetTypesCommand extends ListAssetTypesCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: ListAssetTypesRequest;
45
+ output: ListAssetTypesResponse;
46
+ };
47
+ sdk: {
48
+ input: ListAssetTypesCommandInput;
49
+ output: ListAssetTypesCommandOutput;
50
+ };
51
+ };
52
+ }
@@ -0,0 +1,53 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ ListAssetVersionsRequest,
10
+ ListAssetVersionsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAssetVersionsCommandInput
15
+ extends ListAssetVersionsRequest {}
16
+ export interface ListAssetVersionsCommandOutput
17
+ extends ListAssetVersionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAssetVersionsCommand_base: {
20
+ new (
21
+ input: ListAssetVersionsCommandInput
22
+ ): import("@smithy/core/client").CommandImpl<
23
+ ListAssetVersionsCommandInput,
24
+ ListAssetVersionsCommandOutput,
25
+ DevOpsAgentClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAssetVersionsCommandInput
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ ListAssetVersionsCommandInput,
33
+ ListAssetVersionsCommandOutput,
34
+ DevOpsAgentClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): {
39
+ [x: string]: unknown;
40
+ };
41
+ };
42
+ export declare class ListAssetVersionsCommand extends ListAssetVersionsCommand_base {
43
+ protected static __types: {
44
+ api: {
45
+ input: ListAssetVersionsRequest;
46
+ output: ListAssetVersionsResponse;
47
+ };
48
+ sdk: {
49
+ input: ListAssetVersionsCommandInput;
50
+ output: ListAssetVersionsCommandOutput;
51
+ };
52
+ };
53
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListAssetsCommandInput extends ListAssetsRequest {}
12
+ export interface ListAssetsCommandOutput
13
+ extends ListAssetsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListAssetsCommand_base: {
16
+ new (
17
+ input: ListAssetsCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ ListAssetsCommandInput,
20
+ ListAssetsCommandOutput,
21
+ DevOpsAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: ListAssetsCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ ListAssetsCommandInput,
29
+ ListAssetsCommandOutput,
30
+ DevOpsAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class ListAssetsCommand extends ListAssetsCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: ListAssetsRequest;
42
+ output: ListAssetsResponse;
43
+ };
44
+ sdk: {
45
+ input: ListAssetsCommandInput;
46
+ output: ListAssetsCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,49 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateAssetCommandInput extends UpdateAssetRequest {}
12
+ export interface UpdateAssetCommandOutput
13
+ extends UpdateAssetResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateAssetCommand_base: {
16
+ new (
17
+ input: UpdateAssetCommandInput
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ UpdateAssetCommandInput,
20
+ UpdateAssetCommandOutput,
21
+ DevOpsAgentClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateAssetCommandInput
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ UpdateAssetCommandInput,
29
+ UpdateAssetCommandOutput,
30
+ DevOpsAgentClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): {
35
+ [x: string]: unknown;
36
+ };
37
+ };
38
+ export declare class UpdateAssetCommand extends UpdateAssetCommand_base {
39
+ protected static __types: {
40
+ api: {
41
+ input: UpdateAssetRequest;
42
+ output: UpdateAssetResponse;
43
+ };
44
+ sdk: {
45
+ input: UpdateAssetCommandInput;
46
+ output: UpdateAssetCommandOutput;
47
+ };
48
+ };
49
+ }
@@ -0,0 +1,52 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DevOpsAgentClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DevOpsAgentClient";
8
+ import {
9
+ UpdateAssetFileRequest,
10
+ UpdateAssetFileResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateAssetFileCommandInput extends UpdateAssetFileRequest {}
15
+ export interface UpdateAssetFileCommandOutput
16
+ extends UpdateAssetFileResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateAssetFileCommand_base: {
19
+ new (
20
+ input: UpdateAssetFileCommandInput
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ UpdateAssetFileCommandInput,
23
+ UpdateAssetFileCommandOutput,
24
+ DevOpsAgentClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UpdateAssetFileCommandInput
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ UpdateAssetFileCommandInput,
32
+ UpdateAssetFileCommandOutput,
33
+ DevOpsAgentClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): {
38
+ [x: string]: unknown;
39
+ };
40
+ };
41
+ export declare class UpdateAssetFileCommand extends UpdateAssetFileCommand_base {
42
+ protected static __types: {
43
+ api: {
44
+ input: UpdateAssetFileRequest;
45
+ output: UpdateAssetFileResponse;
46
+ };
47
+ sdk: {
48
+ input: UpdateAssetFileCommandInput;
49
+ output: UpdateAssetFileCommandOutput;
50
+ };
51
+ };
52
+ }