@aws-sdk/client-emr-containers 3.194.0 → 3.197.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 (92) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist-cjs/EMRContainersClient.js +11 -8
  3. package/dist-cjs/commands/CancelJobRunCommand.js +10 -0
  4. package/dist-cjs/commands/CreateManagedEndpointCommand.js +10 -0
  5. package/dist-cjs/commands/CreateVirtualClusterCommand.js +10 -0
  6. package/dist-cjs/commands/DeleteManagedEndpointCommand.js +10 -0
  7. package/dist-cjs/commands/DeleteVirtualClusterCommand.js +10 -0
  8. package/dist-cjs/commands/DescribeJobRunCommand.js +10 -0
  9. package/dist-cjs/commands/DescribeManagedEndpointCommand.js +10 -0
  10. package/dist-cjs/commands/DescribeVirtualClusterCommand.js +10 -0
  11. package/dist-cjs/commands/ListJobRunsCommand.js +10 -0
  12. package/dist-cjs/commands/ListManagedEndpointsCommand.js +10 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
  14. package/dist-cjs/commands/ListVirtualClustersCommand.js +10 -0
  15. package/dist-cjs/commands/StartJobRunCommand.js +10 -0
  16. package/dist-cjs/commands/TagResourceCommand.js +10 -0
  17. package/dist-cjs/commands/UntagResourceCommand.js +10 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +318 -0
  21. package/dist-cjs/runtimeConfig.shared.js +3 -3
  22. package/dist-es/EMRContainersClient.js +12 -9
  23. package/dist-es/commands/CancelJobRunCommand.js +10 -0
  24. package/dist-es/commands/CreateManagedEndpointCommand.js +10 -0
  25. package/dist-es/commands/CreateVirtualClusterCommand.js +10 -0
  26. package/dist-es/commands/DeleteManagedEndpointCommand.js +10 -0
  27. package/dist-es/commands/DeleteVirtualClusterCommand.js +10 -0
  28. package/dist-es/commands/DescribeJobRunCommand.js +10 -0
  29. package/dist-es/commands/DescribeManagedEndpointCommand.js +10 -0
  30. package/dist-es/commands/DescribeVirtualClusterCommand.js +10 -0
  31. package/dist-es/commands/ListJobRunsCommand.js +10 -0
  32. package/dist-es/commands/ListManagedEndpointsCommand.js +10 -0
  33. package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
  34. package/dist-es/commands/ListVirtualClustersCommand.js +10 -0
  35. package/dist-es/commands/StartJobRunCommand.js +10 -0
  36. package/dist-es/commands/TagResourceCommand.js +10 -0
  37. package/dist-es/commands/UntagResourceCommand.js +10 -0
  38. package/dist-es/endpoint/EndpointParameters.js +8 -0
  39. package/dist-es/endpoint/endpointResolver.js +8 -0
  40. package/dist-es/endpoint/ruleset.js +315 -0
  41. package/dist-es/runtimeConfig.shared.js +2 -2
  42. package/dist-types/EMRContainersClient.d.ts +6 -9
  43. package/dist-types/commands/CancelJobRunCommand.d.ts +2 -0
  44. package/dist-types/commands/CreateManagedEndpointCommand.d.ts +2 -0
  45. package/dist-types/commands/CreateVirtualClusterCommand.d.ts +2 -0
  46. package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +2 -0
  47. package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +2 -0
  48. package/dist-types/commands/DescribeJobRunCommand.d.ts +2 -0
  49. package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +2 -0
  50. package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +2 -0
  51. package/dist-types/commands/ListJobRunsCommand.d.ts +2 -0
  52. package/dist-types/commands/ListManagedEndpointsCommand.d.ts +2 -0
  53. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  54. package/dist-types/commands/ListVirtualClustersCommand.d.ts +2 -0
  55. package/dist-types/commands/StartJobRunCommand.d.ts +2 -0
  56. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  57. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  58. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  59. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  60. package/dist-types/endpoint/ruleset.d.ts +2 -0
  61. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  62. package/dist-types/runtimeConfig.d.ts +4 -2
  63. package/dist-types/runtimeConfig.native.d.ts +4 -2
  64. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  65. package/dist-types/ts3.4/EMRContainersClient.d.ts +15 -8
  66. package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +2 -0
  67. package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +2 -0
  68. package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +2 -0
  69. package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +2 -0
  70. package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +2 -0
  71. package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +2 -0
  72. package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +2 -0
  73. package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +2 -0
  74. package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +2 -0
  75. package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +2 -0
  76. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
  77. package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +2 -0
  78. package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +2 -0
  79. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
  80. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
  81. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  82. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  83. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  84. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +23 -4
  85. package/dist-types/ts3.4/runtimeConfig.d.ts +23 -4
  86. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
  87. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  88. package/package.json +28 -26
  89. package/dist-cjs/endpoints.js +0 -178
  90. package/dist-es/endpoints.js +0 -174
  91. package/dist-types/endpoints.d.ts +0 -2
  92. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
@@ -32,6 +33,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
32
33
  */
33
34
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EMRContainersClientResolvedConfig> {
34
35
  readonly input: TagResourceCommandInput;
36
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
35
37
  constructor(input: TagResourceCommandInput);
36
38
  /**
37
39
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
26
  */
26
27
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EMRContainersClientResolvedConfig> {
27
28
  readonly input: UntagResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: UntagResourceCommandInput);
29
31
  /**
30
32
  * @internal
@@ -0,0 +1,19 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region?: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
23
23
  serviceId: string;
24
24
  region: string | import("@aws-sdk/types").Provider<any>;
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
26
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
27
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
30
32
  tls?: boolean | undefined;
31
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
34
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -6,8 +6,10 @@ import { EMRContainersClientConfig } from "./EMRContainersClient";
6
6
  export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
7
7
  apiVersion: string;
8
8
  disableHostPrefix: boolean;
9
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
+ logger?: __Logger | undefined;
11
+ }) => import("@aws-sdk/types").EndpointV2;
9
12
  logger: __Logger;
10
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
13
  serviceId: string;
12
14
  urlParser: import("@aws-sdk/types").UrlParser;
13
15
  };
@@ -1,9 +1,11 @@
1
1
  import {
2
- EndpointsInputConfig,
3
- EndpointsResolvedConfig,
4
2
  RegionInputConfig,
5
3
  RegionResolvedConfig,
6
4
  } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
7
9
  import {
8
10
  HostHeaderInputConfig,
9
11
  HostHeaderResolvedConfig,
@@ -37,7 +39,6 @@ import {
37
39
  Logger as __Logger,
38
40
  Provider as __Provider,
39
41
  Provider,
40
- RegionInfoProvider,
41
42
  StreamCollector as __StreamCollector,
42
43
  UrlParser as __UrlParser,
43
44
  UserAgent as __UserAgent,
@@ -102,6 +103,11 @@ import {
102
103
  UntagResourceCommandInput,
103
104
  UntagResourceCommandOutput,
104
105
  } from "./commands/UntagResourceCommand";
106
+ import {
107
+ ClientInputEndpointParameters,
108
+ ClientResolvedEndpointParameters,
109
+ EndpointParameters,
110
+ } from "./endpoint/EndpointParameters";
105
111
  export declare type ServiceInputTypes =
106
112
  | CancelJobRunCommandInput
107
113
  | CreateManagedEndpointCommandInput
@@ -155,7 +161,6 @@ export interface ClientDefaults
155
161
  serviceId?: string;
156
162
  region?: string | __Provider<string>;
157
163
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
158
- regionInfoProvider?: RegionInfoProvider;
159
164
  defaultUserAgentProvider?: Provider<__UserAgent>;
160
165
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
161
166
  }
@@ -164,22 +169,24 @@ declare type EMRContainersClientConfigType = Partial<
164
169
  > &
165
170
  ClientDefaults &
166
171
  RegionInputConfig &
167
- EndpointsInputConfig &
172
+ EndpointInputConfig<EndpointParameters> &
168
173
  RetryInputConfig &
169
174
  HostHeaderInputConfig &
170
175
  AwsAuthInputConfig &
171
- UserAgentInputConfig;
176
+ UserAgentInputConfig &
177
+ ClientInputEndpointParameters;
172
178
  export interface EMRContainersClientConfig
173
179
  extends EMRContainersClientConfigType {}
174
180
  declare type EMRContainersClientResolvedConfigType =
175
181
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
176
182
  Required<ClientDefaults> &
177
183
  RegionResolvedConfig &
178
- EndpointsResolvedConfig &
184
+ EndpointResolvedConfig<EndpointParameters> &
179
185
  RetryResolvedConfig &
180
186
  HostHeaderResolvedConfig &
181
187
  AwsAuthResolvedConfig &
182
- UserAgentResolvedConfig;
188
+ UserAgentResolvedConfig &
189
+ ClientResolvedEndpointParameters;
183
190
  export interface EMRContainersClientResolvedConfig
184
191
  extends EMRContainersClientResolvedConfigType {}
185
192
  export declare class EMRContainersClient extends __Client<
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class CancelJobRunCommand extends $Command<
21
22
  EMRContainersClientResolvedConfig
22
23
  > {
23
24
  readonly input: CancelJobRunCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: CancelJobRunCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class CreateManagedEndpointCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: CreateManagedEndpointCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: CreateManagedEndpointCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class CreateVirtualClusterCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: CreateVirtualClusterCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: CreateVirtualClusterCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DeleteManagedEndpointCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: DeleteManagedEndpointCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteManagedEndpointCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DeleteVirtualClusterCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: DeleteVirtualClusterCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DeleteVirtualClusterCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class DescribeJobRunCommand extends $Command<
24
25
  EMRContainersClientResolvedConfig
25
26
  > {
26
27
  readonly input: DescribeJobRunCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: DescribeJobRunCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DescribeManagedEndpointCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: DescribeManagedEndpointCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeManagedEndpointCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class DescribeVirtualClusterCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: DescribeVirtualClusterCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: DescribeVirtualClusterCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class ListJobRunsCommand extends $Command<
21
22
  EMRContainersClientResolvedConfig
22
23
  > {
23
24
  readonly input: ListJobRunsCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: ListJobRunsCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListManagedEndpointsCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListManagedEndpointsCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListManagedEndpointsCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListTagsForResourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListTagsForResourceCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ListVirtualClustersCommand extends $Command<
25
26
  EMRContainersClientResolvedConfig
26
27
  > {
27
28
  readonly input: ListVirtualClustersCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ListVirtualClustersCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class StartJobRunCommand extends $Command<
21
22
  EMRContainersClientResolvedConfig
22
23
  > {
23
24
  readonly input: StartJobRunCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: StartJobRunCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
21
22
  EMRContainersClientResolvedConfig
22
23
  > {
23
24
  readonly input: TagResourceCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
24
26
  constructor(input: TagResourceCommandInput);
25
27
  resolveMiddleware(
26
28
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
24
25
  EMRContainersClientResolvedConfig
25
26
  > {
26
27
  readonly input: UntagResourceCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
29
  constructor(input: UntagResourceCommandInput);
28
30
  resolveMiddleware(
29
31
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -0,0 +1,34 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@aws-sdk/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export declare type ClientResolvedEndpointParameters =
20
+ ClientInputEndpointParameters & {
21
+ defaultSigningName: string;
22
+ };
23
+ export declare const resolveClientEndpointParameters: <T>(
24
+ options: T & ClientInputEndpointParameters
25
+ ) => T &
26
+ ClientInputEndpointParameters & {
27
+ defaultSigningName: string;
28
+ };
29
+ export interface EndpointParameters extends __EndpointParameters {
30
+ Region?: string;
31
+ UseDualStack?: boolean;
32
+ UseFIPS?: boolean;
33
+ Endpoint?: string;
34
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -36,12 +36,31 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
36
36
  disableHostPrefix: boolean;
37
37
  logger: import("@aws-sdk/types").Logger;
38
38
  serviceId: string;
39
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
39
  endpoint?:
41
- | string
42
- | import("@aws-sdk/types").Endpoint
43
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
40
+ | ((
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@aws-sdk/types").Provider<string>
50
+ | import("@aws-sdk/types").Endpoint
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@aws-sdk/types").EndpointV2
53
+ | import("@aws-sdk/types").Provider<
54
+ import("@aws-sdk/types").EndpointV2
55
+ >
56
+ ))
44
57
  | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@aws-sdk/types").Logger | undefined;
62
+ }
63
+ ) => import("@aws-sdk/types").EndpointV2;
45
64
  tls?: boolean | undefined;
46
65
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
66
  credentials?:
@@ -36,12 +36,31 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
36
36
  disableHostPrefix: boolean;
37
37
  logger: import("@aws-sdk/types").Logger;
38
38
  serviceId: string;
39
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
40
39
  endpoint?:
41
- | string
42
- | import("@aws-sdk/types").Endpoint
43
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
40
+ | ((
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@aws-sdk/types").Provider<string>
50
+ | import("@aws-sdk/types").Endpoint
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@aws-sdk/types").EndpointV2
53
+ | import("@aws-sdk/types").Provider<
54
+ import("@aws-sdk/types").EndpointV2
55
+ >
56
+ ))
44
57
  | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@aws-sdk/types").Logger | undefined;
62
+ }
63
+ ) => import("@aws-sdk/types").EndpointV2;
45
64
  tls?: boolean | undefined;
46
65
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
47
66
  credentials?:
@@ -29,7 +29,6 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
29
29
  credentialDefaultProvider: (
30
30
  input: any
31
31
  ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
32
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
33
32
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<
34
33
  import("@aws-sdk/types").UserAgent
35
34
  >;
@@ -42,7 +41,15 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
42
41
  | string
43
42
  | import("@aws-sdk/types").Endpoint
44
43
  | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
45
46
  | undefined;
47
+ endpointProvider: (
48
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
49
+ context?: {
50
+ logger?: import("@aws-sdk/types").Logger | undefined;
51
+ }
52
+ ) => import("@aws-sdk/types").EndpointV2;
46
53
  tls?: boolean | undefined;
47
54
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
55
  credentials?:
@@ -3,8 +3,13 @@ import { EMRContainersClientConfig } from "./EMRContainersClient";
3
3
  export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
4
4
  apiVersion: string;
5
5
  disableHostPrefix: boolean;
6
+ endpointProvider: (
7
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
8
+ context?: {
9
+ logger?: __Logger | undefined;
10
+ }
11
+ ) => import("@aws-sdk/types").EndpointV2;
6
12
  logger: __Logger;
7
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
8
13
  serviceId: string;
9
14
  urlParser: import("@aws-sdk/types").UrlParser;
10
15
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-containers",
3
3
  "description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
4
- "version": "3.194.0",
4
+ "version": "3.197.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,37 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.194.0",
23
- "@aws-sdk/config-resolver": "3.193.0",
24
- "@aws-sdk/credential-provider-node": "3.193.0",
25
- "@aws-sdk/fetch-http-handler": "3.193.0",
26
- "@aws-sdk/hash-node": "3.193.0",
27
- "@aws-sdk/invalid-dependency": "3.193.0",
28
- "@aws-sdk/middleware-content-length": "3.193.0",
29
- "@aws-sdk/middleware-host-header": "3.193.0",
30
- "@aws-sdk/middleware-logger": "3.193.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.193.0",
32
- "@aws-sdk/middleware-retry": "3.193.0",
33
- "@aws-sdk/middleware-serde": "3.193.0",
34
- "@aws-sdk/middleware-signing": "3.193.0",
35
- "@aws-sdk/middleware-stack": "3.193.0",
36
- "@aws-sdk/middleware-user-agent": "3.193.0",
37
- "@aws-sdk/node-config-provider": "3.193.0",
38
- "@aws-sdk/node-http-handler": "3.193.0",
39
- "@aws-sdk/protocol-http": "3.193.0",
40
- "@aws-sdk/smithy-client": "3.193.0",
41
- "@aws-sdk/types": "3.193.0",
42
- "@aws-sdk/url-parser": "3.193.0",
22
+ "@aws-sdk/client-sts": "3.197.0",
23
+ "@aws-sdk/config-resolver": "3.197.0",
24
+ "@aws-sdk/credential-provider-node": "3.197.0",
25
+ "@aws-sdk/fetch-http-handler": "3.197.0",
26
+ "@aws-sdk/hash-node": "3.197.0",
27
+ "@aws-sdk/invalid-dependency": "3.197.0",
28
+ "@aws-sdk/middleware-content-length": "3.197.0",
29
+ "@aws-sdk/middleware-endpoint": "3.197.0",
30
+ "@aws-sdk/middleware-host-header": "3.197.0",
31
+ "@aws-sdk/middleware-logger": "3.197.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.197.0",
33
+ "@aws-sdk/middleware-retry": "3.197.0",
34
+ "@aws-sdk/middleware-serde": "3.197.0",
35
+ "@aws-sdk/middleware-signing": "3.197.0",
36
+ "@aws-sdk/middleware-stack": "3.197.0",
37
+ "@aws-sdk/middleware-user-agent": "3.197.0",
38
+ "@aws-sdk/node-config-provider": "3.197.0",
39
+ "@aws-sdk/node-http-handler": "3.197.0",
40
+ "@aws-sdk/protocol-http": "3.197.0",
41
+ "@aws-sdk/smithy-client": "3.197.0",
42
+ "@aws-sdk/types": "3.197.0",
43
+ "@aws-sdk/url-parser": "3.197.0",
43
44
  "@aws-sdk/util-base64-browser": "3.188.0",
44
45
  "@aws-sdk/util-base64-node": "3.188.0",
45
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
46
47
  "@aws-sdk/util-body-length-node": "3.188.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.193.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.193.0",
49
- "@aws-sdk/util-user-agent-browser": "3.193.0",
50
- "@aws-sdk/util-user-agent-node": "3.193.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.197.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.197.0",
50
+ "@aws-sdk/util-endpoints": "3.197.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.197.0",
52
+ "@aws-sdk/util-user-agent-node": "3.197.0",
51
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
52
54
  "@aws-sdk/util-utf8-node": "3.188.0",
53
55
  "tslib": "^2.3.1",