@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,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
|
+
}
|