@aws-sdk/client-emr-containers 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/EMRContainers.d.ts +78 -95
- package/dist-types/ts3.4/EMRContainersClient.d.ts +9 -28
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSecurityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSecurityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetManagedEndpointSessionCredentialsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSecurityConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CancelJobRunCommandInput extends CancelJobRunRequest {}
|
|
5
|
-
export interface CancelJobRunCommandOutput
|
|
6
|
-
extends CancelJobRunResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __MetadataBearer {}
|
|
8
6
|
declare const CancelJobRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CancelJobRunCommandInput
|
|
8
|
+
input: CancelJobRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CancelJobRunCommandInput,
|
|
13
11
|
CancelJobRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CancelJobRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CancelJobRunCommandInput
|
|
17
|
+
input: CancelJobRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CancelJobRunCommandInput,
|
|
22
20
|
CancelJobRunCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateJobTemplateRequest,
|
|
4
|
-
CreateJobTemplateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateJobTemplateCommandInput
|
|
8
|
-
extends CreateJobTemplateRequest {}
|
|
4
|
+
export interface CreateJobTemplateCommandInput extends CreateJobTemplateRequest {}
|
|
9
5
|
export interface CreateJobTemplateCommandOutput
|
|
10
|
-
extends CreateJobTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateJobTemplateResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateJobTemplateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateJobTemplateCommandInput
|
|
9
|
+
input: CreateJobTemplateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateJobTemplateCommandInput,
|
|
17
12
|
CreateJobTemplateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateJobTemplateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateJobTemplateCommandInput
|
|
18
|
+
input: CreateJobTemplateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateJobTemplateCommandInput,
|
|
26
21
|
CreateJobTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateManagedEndpointRequest,
|
|
4
|
-
CreateManagedEndpointResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateManagedEndpointRequest, CreateManagedEndpointResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateManagedEndpointCommandInput
|
|
8
|
-
extends CreateManagedEndpointRequest {}
|
|
4
|
+
export interface CreateManagedEndpointCommandInput extends CreateManagedEndpointRequest {}
|
|
9
5
|
export interface CreateManagedEndpointCommandOutput
|
|
10
|
-
extends CreateManagedEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateManagedEndpointResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateManagedEndpointCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateManagedEndpointCommandInput
|
|
9
|
+
input: CreateManagedEndpointCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateManagedEndpointCommandInput,
|
|
17
12
|
CreateManagedEndpointCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateManagedEndpointCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateManagedEndpointCommandInput
|
|
18
|
+
input: CreateManagedEndpointCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateManagedEndpointCommandInput,
|
|
26
21
|
CreateManagedEndpointCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreateSecurityConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateSecurityConfigurationCommandInput
|
|
8
|
-
extends CreateSecurityConfigurationRequest {}
|
|
7
|
+
export interface CreateSecurityConfigurationCommandInput extends CreateSecurityConfigurationRequest {}
|
|
9
8
|
export interface CreateSecurityConfigurationCommandOutput
|
|
10
|
-
extends CreateSecurityConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreateSecurityConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreateSecurityConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreateSecurityConfigurationCommandInput
|
|
12
|
+
input: CreateSecurityConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreateSecurityConfigurationCommandInput,
|
|
17
15
|
CreateSecurityConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreateSecurityConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreateSecurityConfigurationCommandInput
|
|
21
|
+
input: CreateSecurityConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreateSecurityConfigurationCommandInput,
|
|
26
24
|
CreateSecurityConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateVirtualClusterRequest,
|
|
4
|
-
CreateVirtualClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateVirtualClusterRequest, CreateVirtualClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateVirtualClusterCommandInput
|
|
8
|
-
extends CreateVirtualClusterRequest {}
|
|
4
|
+
export interface CreateVirtualClusterCommandInput extends CreateVirtualClusterRequest {}
|
|
9
5
|
export interface CreateVirtualClusterCommandOutput
|
|
10
|
-
extends CreateVirtualClusterResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateVirtualClusterResponse, __MetadataBearer {}
|
|
12
7
|
declare const CreateVirtualClusterCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateVirtualClusterCommandInput
|
|
9
|
+
input: CreateVirtualClusterCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateVirtualClusterCommandInput,
|
|
17
12
|
CreateVirtualClusterCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateVirtualClusterCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateVirtualClusterCommandInput
|
|
18
|
+
input: CreateVirtualClusterCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateVirtualClusterCommandInput,
|
|
26
21
|
CreateVirtualClusterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteJobTemplateRequest,
|
|
4
|
-
DeleteJobTemplateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteJobTemplateCommandInput
|
|
8
|
-
extends DeleteJobTemplateRequest {}
|
|
4
|
+
export interface DeleteJobTemplateCommandInput extends DeleteJobTemplateRequest {}
|
|
9
5
|
export interface DeleteJobTemplateCommandOutput
|
|
10
|
-
extends DeleteJobTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteJobTemplateResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteJobTemplateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteJobTemplateCommandInput
|
|
9
|
+
input: DeleteJobTemplateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteJobTemplateCommandInput,
|
|
17
12
|
DeleteJobTemplateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteJobTemplateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteJobTemplateCommandInput
|
|
18
|
+
input: DeleteJobTemplateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteJobTemplateCommandInput,
|
|
26
21
|
DeleteJobTemplateCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteManagedEndpointRequest,
|
|
4
|
-
DeleteManagedEndpointResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteManagedEndpointRequest, DeleteManagedEndpointResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteManagedEndpointCommandInput
|
|
8
|
-
extends DeleteManagedEndpointRequest {}
|
|
4
|
+
export interface DeleteManagedEndpointCommandInput extends DeleteManagedEndpointRequest {}
|
|
9
5
|
export interface DeleteManagedEndpointCommandOutput
|
|
10
|
-
extends DeleteManagedEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteManagedEndpointResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteManagedEndpointCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteManagedEndpointCommandInput
|
|
9
|
+
input: DeleteManagedEndpointCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteManagedEndpointCommandInput,
|
|
17
12
|
DeleteManagedEndpointCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteManagedEndpointCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteManagedEndpointCommandInput
|
|
18
|
+
input: DeleteManagedEndpointCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteManagedEndpointCommandInput,
|
|
26
21
|
DeleteManagedEndpointCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteVirtualClusterRequest,
|
|
4
|
-
DeleteVirtualClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteVirtualClusterRequest, DeleteVirtualClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteVirtualClusterCommandInput
|
|
8
|
-
extends DeleteVirtualClusterRequest {}
|
|
4
|
+
export interface DeleteVirtualClusterCommandInput extends DeleteVirtualClusterRequest {}
|
|
9
5
|
export interface DeleteVirtualClusterCommandOutput
|
|
10
|
-
extends DeleteVirtualClusterResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteVirtualClusterResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteVirtualClusterCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteVirtualClusterCommandInput
|
|
9
|
+
input: DeleteVirtualClusterCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteVirtualClusterCommandInput,
|
|
17
12
|
DeleteVirtualClusterCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteVirtualClusterCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteVirtualClusterCommandInput
|
|
18
|
+
input: DeleteVirtualClusterCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteVirtualClusterCommandInput,
|
|
26
21
|
DeleteVirtualClusterCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeJobRunRequest,
|
|
4
|
-
DescribeJobRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeJobRunCommandInput extends DescribeJobRunRequest {}
|
|
8
|
-
export interface DescribeJobRunCommandOutput
|
|
9
|
-
extends DescribeJobRunResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeJobRunCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeJobRunCommandInput
|
|
8
|
+
input: DescribeJobRunCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeJobRunCommandInput,
|
|
16
11
|
DescribeJobRunCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DescribeJobRunCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DescribeJobRunCommandInput
|
|
17
|
+
input: DescribeJobRunCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DescribeJobRunCommandInput,
|
|
25
20
|
DescribeJobRunCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeJobTemplateRequest,
|
|
4
|
-
DescribeJobTemplateResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeJobTemplateCommandInput
|
|
8
|
-
extends DescribeJobTemplateRequest {}
|
|
4
|
+
export interface DescribeJobTemplateCommandInput extends DescribeJobTemplateRequest {}
|
|
9
5
|
export interface DescribeJobTemplateCommandOutput
|
|
10
|
-
extends DescribeJobTemplateResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeJobTemplateResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeJobTemplateCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeJobTemplateCommandInput
|
|
9
|
+
input: DescribeJobTemplateCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeJobTemplateCommandInput,
|
|
17
12
|
DescribeJobTemplateCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeJobTemplateCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeJobTemplateCommandInput
|
|
18
|
+
input: DescribeJobTemplateCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeJobTemplateCommandInput,
|
|
26
21
|
DescribeJobTemplateCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeManagedEndpointResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeManagedEndpointCommandInput
|
|
8
|
-
extends DescribeManagedEndpointRequest {}
|
|
7
|
+
export interface DescribeManagedEndpointCommandInput extends DescribeManagedEndpointRequest {}
|
|
9
8
|
export interface DescribeManagedEndpointCommandOutput
|
|
10
|
-
extends DescribeManagedEndpointResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeManagedEndpointResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeManagedEndpointCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeManagedEndpointCommandInput
|
|
12
|
+
input: DescribeManagedEndpointCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeManagedEndpointCommandInput,
|
|
17
15
|
DescribeManagedEndpointCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeManagedEndpointCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeManagedEndpointCommandInput
|
|
21
|
+
input: DescribeManagedEndpointCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeManagedEndpointCommandInput,
|
|
26
24
|
DescribeManagedEndpointCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeSecurityConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSecurityConfigurationCommandInput
|
|
8
|
-
extends DescribeSecurityConfigurationRequest {}
|
|
7
|
+
export interface DescribeSecurityConfigurationCommandInput extends DescribeSecurityConfigurationRequest {}
|
|
9
8
|
export interface DescribeSecurityConfigurationCommandOutput
|
|
10
|
-
extends DescribeSecurityConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeSecurityConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeSecurityConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeSecurityConfigurationCommandInput
|
|
12
|
+
input: DescribeSecurityConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeSecurityConfigurationCommandInput,
|
|
17
15
|
DescribeSecurityConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DescribeSecurityConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DescribeSecurityConfigurationCommandInput
|
|
21
|
+
input: DescribeSecurityConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DescribeSecurityConfigurationCommandInput,
|
|
26
24
|
DescribeSecurityConfigurationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeVirtualClusterRequest,
|
|
4
|
-
DescribeVirtualClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeVirtualClusterRequest, DescribeVirtualClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeVirtualClusterCommandInput
|
|
8
|
-
extends DescribeVirtualClusterRequest {}
|
|
4
|
+
export interface DescribeVirtualClusterCommandInput extends DescribeVirtualClusterRequest {}
|
|
9
5
|
export interface DescribeVirtualClusterCommandOutput
|
|
10
|
-
extends DescribeVirtualClusterResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeVirtualClusterResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeVirtualClusterCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeVirtualClusterCommandInput
|
|
9
|
+
input: DescribeVirtualClusterCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeVirtualClusterCommandInput,
|
|
17
12
|
DescribeVirtualClusterCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeVirtualClusterCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeVirtualClusterCommandInput
|
|
18
|
+
input: DescribeVirtualClusterCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeVirtualClusterCommandInput,
|
|
26
21
|
DescribeVirtualClusterCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetManagedEndpointSessionCredentialsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetManagedEndpointSessionCredentialsCommandInput
|
|
8
|
-
extends GetManagedEndpointSessionCredentialsRequest {}
|
|
7
|
+
export interface GetManagedEndpointSessionCredentialsCommandInput extends GetManagedEndpointSessionCredentialsRequest {}
|
|
9
8
|
export interface GetManagedEndpointSessionCredentialsCommandOutput
|
|
10
|
-
extends GetManagedEndpointSessionCredentialsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetManagedEndpointSessionCredentialsResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetManagedEndpointSessionCredentialsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetManagedEndpointSessionCredentialsCommandInput
|
|
12
|
+
input: GetManagedEndpointSessionCredentialsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetManagedEndpointSessionCredentialsCommandInput,
|
|
17
15
|
GetManagedEndpointSessionCredentialsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetManagedEndpointSessionCredentialsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetManagedEndpointSessionCredentialsCommandInput
|
|
21
|
+
input: GetManagedEndpointSessionCredentialsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetManagedEndpointSessionCredentialsCommandInput,
|
|
26
24
|
GetManagedEndpointSessionCredentialsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListJobRunsCommandInput extends ListJobRunsRequest {}
|
|
5
|
-
export interface ListJobRunsCommandOutput
|
|
6
|
-
extends ListJobRunsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListJobRunsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListJobRunsCommandInput
|
|
8
|
+
input: ListJobRunsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListJobRunsCommandInput,
|
|
13
11
|
ListJobRunsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListJobRunsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListJobRunsCommandInput
|
|
17
|
+
input: ListJobRunsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListJobRunsCommandInput,
|
|
22
20
|
ListJobRunsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListJobTemplatesRequest,
|
|
4
|
-
ListJobTemplatesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListJobTemplatesCommandInput extends ListJobTemplatesRequest {}
|
|
8
|
-
export interface ListJobTemplatesCommandOutput
|
|
9
|
-
extends ListJobTemplatesResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListJobTemplatesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListJobTemplatesCommandInput
|
|
8
|
+
input: ListJobTemplatesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListJobTemplatesCommandInput,
|
|
16
11
|
ListJobTemplatesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListManagedEndpointsRequest,
|
|
4
|
-
ListManagedEndpointsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListManagedEndpointsRequest, ListManagedEndpointsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListManagedEndpointsCommandInput
|
|
8
|
-
extends ListManagedEndpointsRequest {}
|
|
4
|
+
export interface ListManagedEndpointsCommandInput extends ListManagedEndpointsRequest {}
|
|
9
5
|
export interface ListManagedEndpointsCommandOutput
|
|
10
|
-
extends ListManagedEndpointsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListManagedEndpointsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListManagedEndpointsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListManagedEndpointsCommandInput
|
|
9
|
+
input: ListManagedEndpointsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListManagedEndpointsCommandInput,
|
|
17
12
|
ListManagedEndpointsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListManagedEndpointsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListManagedEndpointsCommandInput
|
|
18
|
+
input: ListManagedEndpointsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListManagedEndpointsCommandInput,
|
|
26
21
|
ListManagedEndpointsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSecurityConfigurationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSecurityConfigurationsCommandInput
|
|
8
|
-
extends ListSecurityConfigurationsRequest {}
|
|
7
|
+
export interface ListSecurityConfigurationsCommandInput extends ListSecurityConfigurationsRequest {}
|
|
9
8
|
export interface ListSecurityConfigurationsCommandOutput
|
|
10
|
-
extends ListSecurityConfigurationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSecurityConfigurationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListSecurityConfigurationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSecurityConfigurationsCommandInput
|
|
12
|
+
input: ListSecurityConfigurationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSecurityConfigurationsCommandInput,
|
|
17
15
|
ListSecurityConfigurationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListVirtualClustersRequest,
|
|
4
|
-
ListVirtualClustersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListVirtualClustersRequest, ListVirtualClustersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListVirtualClustersCommandInput
|
|
8
|
-
extends ListVirtualClustersRequest {}
|
|
4
|
+
export interface ListVirtualClustersCommandInput extends ListVirtualClustersRequest {}
|
|
9
5
|
export interface ListVirtualClustersCommandOutput
|
|
10
|
-
extends ListVirtualClustersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListVirtualClustersResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListVirtualClustersCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListVirtualClustersCommandInput
|
|
9
|
+
input: ListVirtualClustersCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListVirtualClustersCommandInput,
|
|
17
12
|
ListVirtualClustersCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartJobRunCommandInput extends StartJobRunRequest {}
|
|
5
|
-
export interface StartJobRunCommandOutput
|
|
6
|
-
extends StartJobRunResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartJobRunCommandOutput extends StartJobRunResponse, __MetadataBearer {}
|
|
8
6
|
declare const StartJobRunCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartJobRunCommandInput
|
|
8
|
+
input: StartJobRunCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartJobRunCommandInput,
|
|
13
11
|
StartJobRunCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartJobRunCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartJobRunCommandInput
|
|
17
|
+
input: StartJobRunCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartJobRunCommandInput,
|
|
22
20
|
StartJobRunCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|