@aws-sdk/client-emr-containers 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 (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/EMRContainers.d.ts +259 -80
  3. package/dist-types/ts3.4/EMRContainersClient.d.ts +195 -88
  4. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +39 -17
  9. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +6 -6
  22. package/dist-types/ts3.4/models/EMRContainersServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +435 -567
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  26. package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListManagedEndpointsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/ListVirtualClustersPaginator.d.ts +11 -4
  29. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  30. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -47
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  35. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { EMRContainers } from "../EMRContainers";
3
- import { EMRContainersClient } from "../EMRContainersClient";
4
- export interface EMRContainersPaginationConfiguration extends PaginationConfiguration {
5
- client: EMRContainers | EMRContainersClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { EMRContainers } from "../EMRContainers";
3
+ import { EMRContainersClient } from "../EMRContainersClient";
4
+ export interface EMRContainersPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: EMRContainers | EMRContainersClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
3
- import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListJobRuns(config: EMRContainersPaginationConfiguration, input: ListJobRunsCommandInput, ...additionalArguments: any): Paginator<ListJobRunsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListJobRunsCommandInput,
4
+ ListJobRunsCommandOutput,
5
+ } from "../commands/ListJobRunsCommand";
6
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListJobRuns(
8
+ config: EMRContainersPaginationConfiguration,
9
+ input: ListJobRunsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListJobRunsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
3
- import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListManagedEndpoints(config: EMRContainersPaginationConfiguration, input: ListManagedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListManagedEndpointsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListManagedEndpointsCommandInput,
4
+ ListManagedEndpointsCommandOutput,
5
+ } from "../commands/ListManagedEndpointsCommand";
6
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListManagedEndpoints(
8
+ config: EMRContainersPaginationConfiguration,
9
+ input: ListManagedEndpointsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListManagedEndpointsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
3
- import { EMRContainersPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListVirtualClusters(config: EMRContainersPaginationConfiguration, input: ListVirtualClustersCommandInput, ...additionalArguments: any): Paginator<ListVirtualClustersCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListVirtualClustersCommandInput,
4
+ ListVirtualClustersCommandOutput,
5
+ } from "../commands/ListVirtualClustersCommand";
6
+ import { EMRContainersPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListVirtualClusters(
8
+ config: EMRContainersPaginationConfiguration,
9
+ input: ListVirtualClustersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListVirtualClustersCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListJobRunsPaginator";
3
- export * from "./ListManagedEndpointsPaginator";
4
- export * from "./ListVirtualClustersPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListJobRunsPaginator";
3
+ export * from "./ListManagedEndpointsPaginator";
4
+ export * from "./ListVirtualClustersPaginator";
@@ -1,47 +1,185 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "../commands/CancelJobRunCommand";
4
- import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "../commands/CreateManagedEndpointCommand";
5
- import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "../commands/CreateVirtualClusterCommand";
6
- import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "../commands/DeleteManagedEndpointCommand";
7
- import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } from "../commands/DeleteVirtualClusterCommand";
8
- import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "../commands/DescribeJobRunCommand";
9
- import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "../commands/DescribeManagedEndpointCommand";
10
- import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "../commands/DescribeVirtualClusterCommand";
11
- import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
12
- import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
13
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
- import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
15
- import { StartJobRunCommandInput, StartJobRunCommandOutput } from "../commands/StartJobRunCommand";
16
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
17
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
- export declare const serializeAws_restJson1CancelJobRunCommand: (input: CancelJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1CreateManagedEndpointCommand: (input: CreateManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1CreateVirtualClusterCommand: (input: CreateVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1DeleteManagedEndpointCommand: (input: DeleteManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1DeleteVirtualClusterCommand: (input: DeleteVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1DescribeJobRunCommand: (input: DescribeJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1DescribeManagedEndpointCommand: (input: DescribeManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1DescribeVirtualClusterCommand: (input: DescribeVirtualClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1ListJobRunsCommand: (input: ListJobRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1ListManagedEndpointsCommand: (input: ListManagedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1ListVirtualClustersCommand: (input: ListVirtualClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1StartJobRunCommand: (input: StartJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const deserializeAws_restJson1CancelJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobRunCommandOutput>;
34
- export declare const deserializeAws_restJson1CreateManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateManagedEndpointCommandOutput>;
35
- export declare const deserializeAws_restJson1CreateVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVirtualClusterCommandOutput>;
36
- export declare const deserializeAws_restJson1DeleteManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteManagedEndpointCommandOutput>;
37
- export declare const deserializeAws_restJson1DeleteVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVirtualClusterCommandOutput>;
38
- export declare const deserializeAws_restJson1DescribeJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobRunCommandOutput>;
39
- export declare const deserializeAws_restJson1DescribeManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeManagedEndpointCommandOutput>;
40
- export declare const deserializeAws_restJson1DescribeVirtualClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVirtualClusterCommandOutput>;
41
- export declare const deserializeAws_restJson1ListJobRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobRunsCommandOutput>;
42
- export declare const deserializeAws_restJson1ListManagedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedEndpointsCommandOutput>;
43
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
44
- export declare const deserializeAws_restJson1ListVirtualClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVirtualClustersCommandOutput>;
45
- export declare const deserializeAws_restJson1StartJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartJobRunCommandOutput>;
46
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
47
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelJobRunCommandInput,
8
+ CancelJobRunCommandOutput,
9
+ } from "../commands/CancelJobRunCommand";
10
+ import {
11
+ CreateManagedEndpointCommandInput,
12
+ CreateManagedEndpointCommandOutput,
13
+ } from "../commands/CreateManagedEndpointCommand";
14
+ import {
15
+ CreateVirtualClusterCommandInput,
16
+ CreateVirtualClusterCommandOutput,
17
+ } from "../commands/CreateVirtualClusterCommand";
18
+ import {
19
+ DeleteManagedEndpointCommandInput,
20
+ DeleteManagedEndpointCommandOutput,
21
+ } from "../commands/DeleteManagedEndpointCommand";
22
+ import {
23
+ DeleteVirtualClusterCommandInput,
24
+ DeleteVirtualClusterCommandOutput,
25
+ } from "../commands/DeleteVirtualClusterCommand";
26
+ import {
27
+ DescribeJobRunCommandInput,
28
+ DescribeJobRunCommandOutput,
29
+ } from "../commands/DescribeJobRunCommand";
30
+ import {
31
+ DescribeManagedEndpointCommandInput,
32
+ DescribeManagedEndpointCommandOutput,
33
+ } from "../commands/DescribeManagedEndpointCommand";
34
+ import {
35
+ DescribeVirtualClusterCommandInput,
36
+ DescribeVirtualClusterCommandOutput,
37
+ } from "../commands/DescribeVirtualClusterCommand";
38
+ import {
39
+ ListJobRunsCommandInput,
40
+ ListJobRunsCommandOutput,
41
+ } from "../commands/ListJobRunsCommand";
42
+ import {
43
+ ListManagedEndpointsCommandInput,
44
+ ListManagedEndpointsCommandOutput,
45
+ } from "../commands/ListManagedEndpointsCommand";
46
+ import {
47
+ ListTagsForResourceCommandInput,
48
+ ListTagsForResourceCommandOutput,
49
+ } from "../commands/ListTagsForResourceCommand";
50
+ import {
51
+ ListVirtualClustersCommandInput,
52
+ ListVirtualClustersCommandOutput,
53
+ } from "../commands/ListVirtualClustersCommand";
54
+ import {
55
+ StartJobRunCommandInput,
56
+ StartJobRunCommandOutput,
57
+ } from "../commands/StartJobRunCommand";
58
+ import {
59
+ TagResourceCommandInput,
60
+ TagResourceCommandOutput,
61
+ } from "../commands/TagResourceCommand";
62
+ import {
63
+ UntagResourceCommandInput,
64
+ UntagResourceCommandOutput,
65
+ } from "../commands/UntagResourceCommand";
66
+ export declare const serializeAws_restJson1CancelJobRunCommand: (
67
+ input: CancelJobRunCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1CreateManagedEndpointCommand: (
71
+ input: CreateManagedEndpointCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1CreateVirtualClusterCommand: (
75
+ input: CreateVirtualClusterCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1DeleteManagedEndpointCommand: (
79
+ input: DeleteManagedEndpointCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1DeleteVirtualClusterCommand: (
83
+ input: DeleteVirtualClusterCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1DescribeJobRunCommand: (
87
+ input: DescribeJobRunCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1DescribeManagedEndpointCommand: (
91
+ input: DescribeManagedEndpointCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1DescribeVirtualClusterCommand: (
95
+ input: DescribeVirtualClusterCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1ListJobRunsCommand: (
99
+ input: ListJobRunsCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1ListManagedEndpointsCommand: (
103
+ input: ListManagedEndpointsCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
107
+ input: ListTagsForResourceCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1ListVirtualClustersCommand: (
111
+ input: ListVirtualClustersCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1StartJobRunCommand: (
115
+ input: StartJobRunCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1TagResourceCommand: (
119
+ input: TagResourceCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1UntagResourceCommand: (
123
+ input: UntagResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const deserializeAws_restJson1CancelJobRunCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<CancelJobRunCommandOutput>;
130
+ export declare const deserializeAws_restJson1CreateManagedEndpointCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<CreateManagedEndpointCommandOutput>;
134
+ export declare const deserializeAws_restJson1CreateVirtualClusterCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<CreateVirtualClusterCommandOutput>;
138
+ export declare const deserializeAws_restJson1DeleteManagedEndpointCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<DeleteManagedEndpointCommandOutput>;
142
+ export declare const deserializeAws_restJson1DeleteVirtualClusterCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<DeleteVirtualClusterCommandOutput>;
146
+ export declare const deserializeAws_restJson1DescribeJobRunCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<DescribeJobRunCommandOutput>;
150
+ export declare const deserializeAws_restJson1DescribeManagedEndpointCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<DescribeManagedEndpointCommandOutput>;
154
+ export declare const deserializeAws_restJson1DescribeVirtualClusterCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DescribeVirtualClusterCommandOutput>;
158
+ export declare const deserializeAws_restJson1ListJobRunsCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<ListJobRunsCommandOutput>;
162
+ export declare const deserializeAws_restJson1ListManagedEndpointsCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<ListManagedEndpointsCommandOutput>;
166
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<ListTagsForResourceCommandOutput>;
170
+ export declare const deserializeAws_restJson1ListVirtualClustersCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<ListVirtualClustersCommandOutput>;
174
+ export declare const deserializeAws_restJson1StartJobRunCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<StartJobRunCommandOutput>;
178
+ export declare const deserializeAws_restJson1TagResourceCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<TagResourceCommandOutput>;
182
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<UntagResourceCommandOutput>;
@@ -1,38 +1,65 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { EMRContainersClientConfig } from "./EMRContainersClient";
3
-
4
- export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { EMRContainersClientConfig } from "./EMRContainersClient";
3
+ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };
@@ -1,38 +1,65 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { EMRContainersClientConfig } from "./EMRContainersClient";
3
-
4
- export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { EMRContainersClientConfig } from "./EMRContainersClient";
3
+ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ base64Decoder: import("@aws-sdk/types").Decoder;
9
+ base64Encoder: import("@aws-sdk/types").Encoder;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sha256: import("@aws-sdk/types").HashConstructor;
29
+ streamCollector: import("@aws-sdk/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ utf8Decoder: import("@aws-sdk/types").Decoder;
33
+ utf8Encoder: import("@aws-sdk/types").Encoder;
34
+ apiVersion: string;
35
+ urlParser: import("@aws-sdk/types").UrlParser;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
+ endpoint?:
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | undefined;
45
+ tls?: boolean | undefined;
46
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
+ credentials?:
48
+ | import("@aws-sdk/types").Credentials
49
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
50
+ | undefined;
51
+ signer?:
52
+ | import("@aws-sdk/types").RequestSigner
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | undefined;
55
+ signingEscapePath?: boolean | undefined;
56
+ systemClockOffset?: number | undefined;
57
+ signingRegion?: string | undefined;
58
+ signerConstructor?:
59
+ | (new (
60
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
61
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
62
+ ) => import("@aws-sdk/types").RequestSigner)
63
+ | undefined;
64
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
65
+ };