@aws-sdk/client-m2 3.169.0 → 3.171.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 (58) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/M2.d.ts +548 -165
  3. package/dist-types/ts3.4/M2Client.d.ts +295 -105
  4. package/dist-types/ts3.4/commands/CancelBatchJobExecutionCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateDataSetImportTaskCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DeleteApplicationFromEnvironmentCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetApplicationVersionCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetBatchJobExecutionCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetDataSetDetailsCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/GetDataSetImportTaskCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListBatchJobDefinitionsCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/ListBatchJobExecutionsCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/ListDataSetImportHistoryCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/ListEngineVersionsCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +35 -17
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  29. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/StartBatchJobCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +35 -17
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  34. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  35. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +36 -17
  36. package/dist-types/ts3.4/commands/index.d.ts +32 -32
  37. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  38. package/dist-types/ts3.4/index.d.ts +6 -6
  39. package/dist-types/ts3.4/models/M2ServiceException.d.ts +7 -6
  40. package/dist-types/ts3.4/models/index.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +1124 -1421
  42. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  43. package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListBatchJobDefinitionsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListBatchJobExecutionsPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListDataSetImportHistoryPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
  49. package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -4
  50. package/dist-types/ts3.4/pagination/ListEngineVersionsPaginator.d.ts +11 -4
  51. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
  52. package/dist-types/ts3.4/pagination/index.d.ts +10 -10
  53. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +389 -98
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  58. package/package.json +34 -34
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0";
5
- export interface CreateEnvironmentCommandInput extends CreateEnvironmentRequest {
6
- }
7
- export interface CreateEnvironmentCommandOutput extends CreateEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateEnvironmentCommand extends $Command<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: CreateEnvironmentCommandInput;
12
- constructor(input: CreateEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ CreateEnvironmentRequest,
15
+ CreateEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateEnvironmentCommandInput
18
+ extends CreateEnvironmentRequest {}
19
+ export interface CreateEnvironmentCommandOutput
20
+ extends CreateEnvironmentResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateEnvironmentCommand extends $Command<
23
+ CreateEnvironmentCommandInput,
24
+ CreateEnvironmentCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: CreateEnvironmentCommandInput;
28
+ constructor(input: CreateEnvironmentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
- export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
- }
7
- export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: DeleteApplicationCommandInput;
12
- constructor(input: DeleteApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ DeleteApplicationRequest,
15
+ DeleteApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationCommandInput
18
+ extends DeleteApplicationRequest {}
19
+ export interface DeleteApplicationCommandOutput
20
+ extends DeleteApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteApplicationCommand extends $Command<
23
+ DeleteApplicationCommandInput,
24
+ DeleteApplicationCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteApplicationCommandInput;
28
+ constructor(input: DeleteApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { DeleteApplicationFromEnvironmentRequest, DeleteApplicationFromEnvironmentResponse } from "../models/models_0";
5
- export interface DeleteApplicationFromEnvironmentCommandInput extends DeleteApplicationFromEnvironmentRequest {
6
- }
7
- export interface DeleteApplicationFromEnvironmentCommandOutput extends DeleteApplicationFromEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteApplicationFromEnvironmentCommand extends $Command<DeleteApplicationFromEnvironmentCommandInput, DeleteApplicationFromEnvironmentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: DeleteApplicationFromEnvironmentCommandInput;
12
- constructor(input: DeleteApplicationFromEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationFromEnvironmentCommandInput, DeleteApplicationFromEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ DeleteApplicationFromEnvironmentRequest,
15
+ DeleteApplicationFromEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteApplicationFromEnvironmentCommandInput
18
+ extends DeleteApplicationFromEnvironmentRequest {}
19
+ export interface DeleteApplicationFromEnvironmentCommandOutput
20
+ extends DeleteApplicationFromEnvironmentResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteApplicationFromEnvironmentCommand extends $Command<
23
+ DeleteApplicationFromEnvironmentCommandInput,
24
+ DeleteApplicationFromEnvironmentCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteApplicationFromEnvironmentCommandInput;
28
+ constructor(input: DeleteApplicationFromEnvironmentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DeleteApplicationFromEnvironmentCommandInput,
35
+ DeleteApplicationFromEnvironmentCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0";
5
- export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
6
- }
7
- export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: DeleteEnvironmentCommandInput;
12
- constructor(input: DeleteEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ DeleteEnvironmentRequest,
15
+ DeleteEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteEnvironmentCommandInput
18
+ extends DeleteEnvironmentRequest {}
19
+ export interface DeleteEnvironmentCommandOutput
20
+ extends DeleteEnvironmentResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteEnvironmentCommand extends $Command<
23
+ DeleteEnvironmentCommandInput,
24
+ DeleteEnvironmentCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteEnvironmentCommandInput;
28
+ constructor(input: DeleteEnvironmentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
5
- export interface GetApplicationCommandInput extends GetApplicationRequest {
6
- }
7
- export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetApplicationCommandInput;
12
- constructor(input: GetApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetApplicationRequest,
15
+ GetApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetApplicationCommandInput extends GetApplicationRequest {}
18
+ export interface GetApplicationCommandOutput
19
+ extends GetApplicationResponse,
20
+ __MetadataBearer {}
21
+ export declare class GetApplicationCommand extends $Command<
22
+ GetApplicationCommandInput,
23
+ GetApplicationCommandOutput,
24
+ M2ClientResolvedConfig
25
+ > {
26
+ readonly input: GetApplicationCommandInput;
27
+ constructor(input: GetApplicationCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: M2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetApplicationVersionRequest, GetApplicationVersionResponse } from "../models/models_0";
5
- export interface GetApplicationVersionCommandInput extends GetApplicationVersionRequest {
6
- }
7
- export interface GetApplicationVersionCommandOutput extends GetApplicationVersionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetApplicationVersionCommand extends $Command<GetApplicationVersionCommandInput, GetApplicationVersionCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetApplicationVersionCommandInput;
12
- constructor(input: GetApplicationVersionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationVersionCommandInput, GetApplicationVersionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetApplicationVersionRequest,
15
+ GetApplicationVersionResponse,
16
+ } from "../models/models_0";
17
+ export interface GetApplicationVersionCommandInput
18
+ extends GetApplicationVersionRequest {}
19
+ export interface GetApplicationVersionCommandOutput
20
+ extends GetApplicationVersionResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetApplicationVersionCommand extends $Command<
23
+ GetApplicationVersionCommandInput,
24
+ GetApplicationVersionCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: GetApplicationVersionCommandInput;
28
+ constructor(input: GetApplicationVersionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetApplicationVersionCommandInput,
35
+ GetApplicationVersionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetBatchJobExecutionRequest, GetBatchJobExecutionResponse } from "../models/models_0";
5
- export interface GetBatchJobExecutionCommandInput extends GetBatchJobExecutionRequest {
6
- }
7
- export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetBatchJobExecutionCommand extends $Command<GetBatchJobExecutionCommandInput, GetBatchJobExecutionCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetBatchJobExecutionCommandInput;
12
- constructor(input: GetBatchJobExecutionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBatchJobExecutionCommandInput, GetBatchJobExecutionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetBatchJobExecutionRequest,
15
+ GetBatchJobExecutionResponse,
16
+ } from "../models/models_0";
17
+ export interface GetBatchJobExecutionCommandInput
18
+ extends GetBatchJobExecutionRequest {}
19
+ export interface GetBatchJobExecutionCommandOutput
20
+ extends GetBatchJobExecutionResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetBatchJobExecutionCommand extends $Command<
23
+ GetBatchJobExecutionCommandInput,
24
+ GetBatchJobExecutionCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: GetBatchJobExecutionCommandInput;
28
+ constructor(input: GetBatchJobExecutionCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetBatchJobExecutionCommandInput,
35
+ GetBatchJobExecutionCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetDataSetDetailsRequest, GetDataSetDetailsResponse } from "../models/models_0";
5
- export interface GetDataSetDetailsCommandInput extends GetDataSetDetailsRequest {
6
- }
7
- export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataSetDetailsCommand extends $Command<GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetDataSetDetailsCommandInput;
12
- constructor(input: GetDataSetDetailsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetDataSetDetailsRequest,
15
+ GetDataSetDetailsResponse,
16
+ } from "../models/models_0";
17
+ export interface GetDataSetDetailsCommandInput
18
+ extends GetDataSetDetailsRequest {}
19
+ export interface GetDataSetDetailsCommandOutput
20
+ extends GetDataSetDetailsResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetDataSetDetailsCommand extends $Command<
23
+ GetDataSetDetailsCommandInput,
24
+ GetDataSetDetailsCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: GetDataSetDetailsCommandInput;
28
+ constructor(input: GetDataSetDetailsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetDataSetDetailsCommandInput, GetDataSetDetailsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetDataSetImportTaskRequest, GetDataSetImportTaskResponse } from "../models/models_0";
5
- export interface GetDataSetImportTaskCommandInput extends GetDataSetImportTaskRequest {
6
- }
7
- export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDataSetImportTaskCommand extends $Command<GetDataSetImportTaskCommandInput, GetDataSetImportTaskCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetDataSetImportTaskCommandInput;
12
- constructor(input: GetDataSetImportTaskCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetImportTaskCommandInput, GetDataSetImportTaskCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetDataSetImportTaskRequest,
15
+ GetDataSetImportTaskResponse,
16
+ } from "../models/models_0";
17
+ export interface GetDataSetImportTaskCommandInput
18
+ extends GetDataSetImportTaskRequest {}
19
+ export interface GetDataSetImportTaskCommandOutput
20
+ extends GetDataSetImportTaskResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetDataSetImportTaskCommand extends $Command<
23
+ GetDataSetImportTaskCommandInput,
24
+ GetDataSetImportTaskCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: GetDataSetImportTaskCommandInput;
28
+ constructor(input: GetDataSetImportTaskCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: M2ClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GetDataSetImportTaskCommandInput,
35
+ GetDataSetImportTaskCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0";
5
- export interface GetDeploymentCommandInput extends GetDeploymentRequest {
6
- }
7
- export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetDeploymentCommand extends $Command<GetDeploymentCommandInput, GetDeploymentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetDeploymentCommandInput;
12
- constructor(input: GetDeploymentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetDeploymentRequest,
15
+ GetDeploymentResponse,
16
+ } from "../models/models_0";
17
+ export interface GetDeploymentCommandInput extends GetDeploymentRequest {}
18
+ export interface GetDeploymentCommandOutput
19
+ extends GetDeploymentResponse,
20
+ __MetadataBearer {}
21
+ export declare class GetDeploymentCommand extends $Command<
22
+ GetDeploymentCommandInput,
23
+ GetDeploymentCommandOutput,
24
+ M2ClientResolvedConfig
25
+ > {
26
+ readonly input: GetDeploymentCommandInput;
27
+ constructor(input: GetDeploymentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: M2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetDeploymentCommandInput, GetDeploymentCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client";
4
- import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0";
5
- export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {
6
- }
7
- export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEnvironmentCommand extends $Command<GetEnvironmentCommandInput, GetEnvironmentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: GetEnvironmentCommandInput;
12
- constructor(input: GetEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ M2ClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../M2Client";
13
+ import {
14
+ GetEnvironmentRequest,
15
+ GetEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
18
+ export interface GetEnvironmentCommandOutput
19
+ extends GetEnvironmentResponse,
20
+ __MetadataBearer {}
21
+ export declare class GetEnvironmentCommand extends $Command<
22
+ GetEnvironmentCommandInput,
23
+ GetEnvironmentCommandOutput,
24
+ M2ClientResolvedConfig
25
+ > {
26
+ readonly input: GetEnvironmentCommandInput;
27
+ constructor(input: GetEnvironmentCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: M2ClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetEnvironmentCommandInput, GetEnvironmentCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }