@aws-sdk/client-m2 3.168.0 → 3.170.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 +580 -165
  3. package/dist-types/ts3.4/M2Client.d.ts +320 -105
  4. package/dist-types/ts3.4/commands/CancelBatchJobExecutionCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateDataSetImportTaskCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteApplicationFromEnvironmentCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetApplicationVersionCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetBatchJobExecutionCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetDataSetDetailsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetDataSetImportTaskCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListBatchJobDefinitionsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListBatchJobExecutionsCommand.d.ts +41 -17
  23. package/dist-types/ts3.4/commands/ListDataSetImportHistoryCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/ListEngineVersionsCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +37 -17
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  29. package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/StartBatchJobCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  33. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  35. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +38 -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 +8 -6
  40. package/dist-types/ts3.4/models/index.d.ts +1 -1
  41. package/dist-types/ts3.4/models/models_0.d.ts +1524 -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 +66 -38
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  58. package/package.json +34 -34
@@ -1,17 +1,37 @@
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 { StartApplicationRequest, StartApplicationResponse } from "../models/models_0";
5
- export interface StartApplicationCommandInput extends StartApplicationRequest {
6
- }
7
- export interface StartApplicationCommandOutput extends StartApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartApplicationCommand extends $Command<StartApplicationCommandInput, StartApplicationCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: StartApplicationCommandInput;
12
- constructor(input: StartApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
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
+ StartApplicationRequest,
15
+ StartApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface StartApplicationCommandInput extends StartApplicationRequest {}
18
+ export interface StartApplicationCommandOutput
19
+ extends StartApplicationResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StartApplicationCommand extends $Command<
23
+ StartApplicationCommandInput,
24
+ StartApplicationCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: StartApplicationCommandInput;
28
+ constructor(input: StartApplicationCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: M2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StartApplicationCommandInput, StartApplicationCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { StartBatchJobRequest, StartBatchJobResponse } from "../models/models_0";
5
- export interface StartBatchJobCommandInput extends StartBatchJobRequest {
6
- }
7
- export interface StartBatchJobCommandOutput extends StartBatchJobResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartBatchJobCommand extends $Command<StartBatchJobCommandInput, StartBatchJobCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: StartBatchJobCommandInput;
12
- constructor(input: StartBatchJobCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartBatchJobCommandInput, StartBatchJobCommandOutput>;
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
+ StartBatchJobRequest,
15
+ StartBatchJobResponse,
16
+ } from "../models/models_0";
17
+ export interface StartBatchJobCommandInput extends StartBatchJobRequest {}
18
+ export interface StartBatchJobCommandOutput
19
+ extends StartBatchJobResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StartBatchJobCommand extends $Command<
23
+ StartBatchJobCommandInput,
24
+ StartBatchJobCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: StartBatchJobCommandInput;
28
+ constructor(input: StartBatchJobCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: M2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StartBatchJobCommandInput, StartBatchJobCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
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 { StopApplicationRequest, StopApplicationResponse } from "../models/models_0";
5
- export interface StopApplicationCommandInput extends StopApplicationRequest {
6
- }
7
- export interface StopApplicationCommandOutput extends StopApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StopApplicationCommand extends $Command<StopApplicationCommandInput, StopApplicationCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: StopApplicationCommandInput;
12
- constructor(input: StopApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopApplicationCommandInput, StopApplicationCommandOutput>;
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
+ StopApplicationRequest,
15
+ StopApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface StopApplicationCommandInput extends StopApplicationRequest {}
18
+ export interface StopApplicationCommandOutput
19
+ extends StopApplicationResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StopApplicationCommand extends $Command<
23
+ StopApplicationCommandInput,
24
+ StopApplicationCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: StopApplicationCommandInput;
28
+ constructor(input: StopApplicationCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: M2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StopApplicationCommandInput, StopApplicationCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ M2ClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: M2ClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ M2ClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: M2ClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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 { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
5
- export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
6
- }
7
- export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: UpdateApplicationCommandInput;
12
- constructor(input: UpdateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
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
+ UpdateApplicationRequest,
15
+ UpdateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateApplicationCommandInput
18
+ extends UpdateApplicationRequest {}
19
+ export interface UpdateApplicationCommandOutput
20
+ extends UpdateApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateApplicationCommand extends $Command<
24
+ UpdateApplicationCommandInput,
25
+ UpdateApplicationCommandOutput,
26
+ M2ClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateApplicationCommandInput;
29
+ constructor(input: UpdateApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: M2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0";
5
- export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest {
6
- }
7
- export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, M2ClientResolvedConfig> {
11
- readonly input: UpdateEnvironmentCommandInput;
12
- constructor(input: UpdateEnvironmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: M2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
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
+ UpdateEnvironmentRequest,
15
+ UpdateEnvironmentResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateEnvironmentCommandInput
18
+ extends UpdateEnvironmentRequest {}
19
+ export interface UpdateEnvironmentCommandOutput
20
+ extends UpdateEnvironmentResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateEnvironmentCommand extends $Command<
24
+ UpdateEnvironmentCommandInput,
25
+ UpdateEnvironmentCommandOutput,
26
+ M2ClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateEnvironmentCommandInput;
29
+ constructor(input: UpdateEnvironmentCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: M2ClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,32 +1,32 @@
1
- export * from "./CancelBatchJobExecutionCommand";
2
- export * from "./CreateApplicationCommand";
3
- export * from "./CreateDataSetImportTaskCommand";
4
- export * from "./CreateDeploymentCommand";
5
- export * from "./CreateEnvironmentCommand";
6
- export * from "./DeleteApplicationCommand";
7
- export * from "./DeleteApplicationFromEnvironmentCommand";
8
- export * from "./DeleteEnvironmentCommand";
9
- export * from "./GetApplicationCommand";
10
- export * from "./GetApplicationVersionCommand";
11
- export * from "./GetBatchJobExecutionCommand";
12
- export * from "./GetDataSetDetailsCommand";
13
- export * from "./GetDataSetImportTaskCommand";
14
- export * from "./GetDeploymentCommand";
15
- export * from "./GetEnvironmentCommand";
16
- export * from "./ListApplicationVersionsCommand";
17
- export * from "./ListApplicationsCommand";
18
- export * from "./ListBatchJobDefinitionsCommand";
19
- export * from "./ListBatchJobExecutionsCommand";
20
- export * from "./ListDataSetImportHistoryCommand";
21
- export * from "./ListDataSetsCommand";
22
- export * from "./ListDeploymentsCommand";
23
- export * from "./ListEngineVersionsCommand";
24
- export * from "./ListEnvironmentsCommand";
25
- export * from "./ListTagsForResourceCommand";
26
- export * from "./StartApplicationCommand";
27
- export * from "./StartBatchJobCommand";
28
- export * from "./StopApplicationCommand";
29
- export * from "./TagResourceCommand";
30
- export * from "./UntagResourceCommand";
31
- export * from "./UpdateApplicationCommand";
32
- export * from "./UpdateEnvironmentCommand";
1
+ export * from "./CancelBatchJobExecutionCommand";
2
+ export * from "./CreateApplicationCommand";
3
+ export * from "./CreateDataSetImportTaskCommand";
4
+ export * from "./CreateDeploymentCommand";
5
+ export * from "./CreateEnvironmentCommand";
6
+ export * from "./DeleteApplicationCommand";
7
+ export * from "./DeleteApplicationFromEnvironmentCommand";
8
+ export * from "./DeleteEnvironmentCommand";
9
+ export * from "./GetApplicationCommand";
10
+ export * from "./GetApplicationVersionCommand";
11
+ export * from "./GetBatchJobExecutionCommand";
12
+ export * from "./GetDataSetDetailsCommand";
13
+ export * from "./GetDataSetImportTaskCommand";
14
+ export * from "./GetDeploymentCommand";
15
+ export * from "./GetEnvironmentCommand";
16
+ export * from "./ListApplicationVersionsCommand";
17
+ export * from "./ListApplicationsCommand";
18
+ export * from "./ListBatchJobDefinitionsCommand";
19
+ export * from "./ListBatchJobExecutionsCommand";
20
+ export * from "./ListDataSetImportHistoryCommand";
21
+ export * from "./ListDataSetsCommand";
22
+ export * from "./ListDeploymentsCommand";
23
+ export * from "./ListEngineVersionsCommand";
24
+ export * from "./ListEnvironmentsCommand";
25
+ export * from "./ListTagsForResourceCommand";
26
+ export * from "./StartApplicationCommand";
27
+ export * from "./StartBatchJobCommand";
28
+ export * from "./StopApplicationCommand";
29
+ export * from "./TagResourceCommand";
30
+ export * from "./UntagResourceCommand";
31
+ export * from "./UpdateApplicationCommand";
32
+ export * from "./UpdateEnvironmentCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./M2";
2
- export * from "./M2Client";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { M2ServiceException } from "./models/M2ServiceException";
1
+ export * from "./M2";
2
+ export * from "./M2Client";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { M2ServiceException } from "./models/M2ServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class M2ServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class M2ServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";