@aws-sdk/client-emr-serverless 3.927.0 → 3.929.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 (40) hide show
  1. package/dist-cjs/index.js +1024 -968
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/EMRServerlessClient.js +2 -0
  4. package/dist-es/commands/CancelJobRunCommand.js +3 -9
  5. package/dist-es/commands/CreateApplicationCommand.js +3 -10
  6. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  7. package/dist-es/commands/GetApplicationCommand.js +3 -10
  8. package/dist-es/commands/GetDashboardForJobRunCommand.js +3 -9
  9. package/dist-es/commands/GetJobRunCommand.js +3 -10
  10. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  11. package/dist-es/commands/ListJobRunAttemptsCommand.js +3 -9
  12. package/dist-es/commands/ListJobRunsCommand.js +3 -9
  13. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  14. package/dist-es/commands/StartApplicationCommand.js +3 -9
  15. package/dist-es/commands/StartJobRunCommand.js +3 -10
  16. package/dist-es/commands/StopApplicationCommand.js +3 -9
  17. package/dist-es/commands/TagResourceCommand.js +3 -9
  18. package/dist-es/commands/UntagResourceCommand.js +3 -9
  19. package/dist-es/commands/UpdateApplicationCommand.js +3 -10
  20. package/dist-es/models/models_0.js +0 -78
  21. package/dist-es/runtimeConfig.shared.js +2 -0
  22. package/dist-es/schemas/schemas_0.js +991 -0
  23. package/dist-types/EMRServerlessClient.d.ts +10 -1
  24. package/dist-types/models/models_0.d.ts +0 -52
  25. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  26. package/dist-types/runtimeConfig.d.ts +1 -0
  27. package/dist-types/runtimeConfig.native.d.ts +1 -0
  28. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  29. package/dist-types/schemas/schemas_0.d.ts +112 -0
  30. package/dist-types/ts3.4/EMRServerlessClient.d.ts +4 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +0 -29
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +119 -0
  37. package/package.json +5 -6
  38. package/dist-es/protocols/Aws_restJson1.js +0 -759
  39. package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand";
11
11
  import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
@@ -157,6 +157,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
157
157
  * Optional extensions
158
158
  */
159
159
  extensions?: RuntimeExtension[];
160
+ /**
161
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
162
+ * may be overridden. A default will always be set by the client.
163
+ * Available options depend on the service's supported protocols and will not be validated by
164
+ * the client.
165
+ * @alpha
166
+ *
167
+ */
168
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
160
169
  /**
161
170
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
162
171
  */
@@ -1774,55 +1774,3 @@ export interface GetJobRunResponse {
1774
1774
  */
1775
1775
  jobRun: JobRun | undefined;
1776
1776
  }
1777
- /**
1778
- * @internal
1779
- */
1780
- export declare const HiveFilterSensitiveLog: (obj: Hive) => any;
1781
- /**
1782
- * @internal
1783
- */
1784
- export declare const SparkSubmitFilterSensitiveLog: (obj: SparkSubmit) => any;
1785
- /**
1786
- * @internal
1787
- */
1788
- export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
1789
- /**
1790
- * @internal
1791
- */
1792
- export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
1793
- /**
1794
- * @internal
1795
- */
1796
- export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
1797
- /**
1798
- * @internal
1799
- */
1800
- export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
1801
- /**
1802
- * @internal
1803
- */
1804
- export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
1805
- /**
1806
- * @internal
1807
- */
1808
- export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
1809
- /**
1810
- * @internal
1811
- */
1812
- export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
1813
- /**
1814
- * @internal
1815
- */
1816
- export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
1817
- /**
1818
- * @internal
1819
- */
1820
- export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
1821
- /**
1822
- * @internal
1823
- */
1824
- export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
1825
- /**
1826
- * @internal
1827
- */
1828
- export declare const GetJobRunResponseFilterSensitiveLog: (obj: GetJobRunResponse) => any;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EMRServerlessHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,112 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var EntryPointArgument: StaticSimpleSchema;
3
+ export declare var EntryPointPath: StaticSimpleSchema;
4
+ export declare var HiveCliParameters: StaticSimpleSchema;
5
+ export declare var InitScriptPath: StaticSimpleSchema;
6
+ export declare var Query: StaticSimpleSchema;
7
+ export declare var SparkSubmitParameters: StaticSimpleSchema;
8
+ export declare var Application: StaticStructureSchema;
9
+ export declare var ApplicationSummary: StaticStructureSchema;
10
+ export declare var AutoStartConfig: StaticStructureSchema;
11
+ export declare var AutoStopConfig: StaticStructureSchema;
12
+ export declare var CancelJobRunRequest: StaticStructureSchema;
13
+ export declare var CancelJobRunResponse: StaticStructureSchema;
14
+ export declare var CloudWatchLoggingConfiguration: StaticStructureSchema;
15
+ export declare var Configuration: StaticStructureSchema;
16
+ export declare var ConfigurationOverrides: StaticStructureSchema;
17
+ export declare var ConflictException: StaticErrorSchema;
18
+ export declare var CreateApplicationRequest: StaticStructureSchema;
19
+ export declare var CreateApplicationResponse: StaticStructureSchema;
20
+ export declare var DeleteApplicationRequest: StaticStructureSchema;
21
+ export declare var DeleteApplicationResponse: StaticStructureSchema;
22
+ export declare var GetApplicationRequest: StaticStructureSchema;
23
+ export declare var GetApplicationResponse: StaticStructureSchema;
24
+ export declare var GetDashboardForJobRunRequest: StaticStructureSchema;
25
+ export declare var GetDashboardForJobRunResponse: StaticStructureSchema;
26
+ export declare var GetJobRunRequest: StaticStructureSchema;
27
+ export declare var GetJobRunResponse: StaticStructureSchema;
28
+ export declare var Hive: StaticStructureSchema;
29
+ export declare var IdentityCenterConfiguration: StaticStructureSchema;
30
+ export declare var IdentityCenterConfigurationInput: StaticStructureSchema;
31
+ export declare var ImageConfiguration: StaticStructureSchema;
32
+ export declare var ImageConfigurationInput: StaticStructureSchema;
33
+ export declare var InitialCapacityConfig: StaticStructureSchema;
34
+ export declare var InteractiveConfiguration: StaticStructureSchema;
35
+ export declare var InternalServerException: StaticErrorSchema;
36
+ export declare var JobRun: StaticStructureSchema;
37
+ export declare var JobRunAttemptSummary: StaticStructureSchema;
38
+ export declare var JobRunExecutionIamPolicy: StaticStructureSchema;
39
+ export declare var JobRunSummary: StaticStructureSchema;
40
+ export declare var ListApplicationsRequest: StaticStructureSchema;
41
+ export declare var ListApplicationsResponse: StaticStructureSchema;
42
+ export declare var ListJobRunAttemptsRequest: StaticStructureSchema;
43
+ export declare var ListJobRunAttemptsResponse: StaticStructureSchema;
44
+ export declare var ListJobRunsRequest: StaticStructureSchema;
45
+ export declare var ListJobRunsResponse: StaticStructureSchema;
46
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
47
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
48
+ export declare var ManagedPersistenceMonitoringConfiguration: StaticStructureSchema;
49
+ export declare var MaximumAllowedResources: StaticStructureSchema;
50
+ export declare var MonitoringConfiguration: StaticStructureSchema;
51
+ export declare var NetworkConfiguration: StaticStructureSchema;
52
+ export declare var PrometheusMonitoringConfiguration: StaticStructureSchema;
53
+ export declare var ResourceNotFoundException: StaticErrorSchema;
54
+ export declare var ResourceUtilization: StaticStructureSchema;
55
+ export declare var RetryPolicy: StaticStructureSchema;
56
+ export declare var S3MonitoringConfiguration: StaticStructureSchema;
57
+ export declare var SchedulerConfiguration: StaticStructureSchema;
58
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
59
+ export declare var SparkSubmit: StaticStructureSchema;
60
+ export declare var StartApplicationRequest: StaticStructureSchema;
61
+ export declare var StartApplicationResponse: StaticStructureSchema;
62
+ export declare var StartJobRunRequest: StaticStructureSchema;
63
+ export declare var StartJobRunResponse: StaticStructureSchema;
64
+ export declare var StopApplicationRequest: StaticStructureSchema;
65
+ export declare var StopApplicationResponse: StaticStructureSchema;
66
+ export declare var TagResourceRequest: StaticStructureSchema;
67
+ export declare var TagResourceResponse: StaticStructureSchema;
68
+ export declare var TotalResourceUtilization: StaticStructureSchema;
69
+ export declare var UntagResourceRequest: StaticStructureSchema;
70
+ export declare var UntagResourceResponse: StaticStructureSchema;
71
+ export declare var UpdateApplicationRequest: StaticStructureSchema;
72
+ export declare var UpdateApplicationResponse: StaticStructureSchema;
73
+ export declare var ValidationException: StaticErrorSchema;
74
+ export declare var WorkerResourceConfig: StaticStructureSchema;
75
+ export declare var WorkerTypeSpecification: StaticStructureSchema;
76
+ export declare var WorkerTypeSpecificationInput: StaticStructureSchema;
77
+ export declare var EMRServerlessServiceException: StaticErrorSchema;
78
+ export declare var ApplicationList: StaticListSchema;
79
+ export declare var ApplicationStateSet: number;
80
+ export declare var ConfigurationList: StaticListSchema;
81
+ export declare var EntryPointArguments: StaticListSchema;
82
+ export declare var JobRunAttempts: StaticListSchema;
83
+ export declare var JobRuns: StaticListSchema;
84
+ export declare var JobRunStateSet: number;
85
+ export declare var LogTypeList: number;
86
+ export declare var PolicyArnList: number;
87
+ export declare var SecurityGroupIds: number;
88
+ export declare var SubnetIds: number;
89
+ export declare var TagKeyList: number;
90
+ export declare var InitialCapacityConfigMap: StaticMapSchema;
91
+ export declare var LogTypeMap: StaticMapSchema;
92
+ export declare var SensitivePropertiesMap: StaticMapSchema;
93
+ export declare var TagMap: number;
94
+ export declare var WorkerTypeSpecificationInputMap: StaticMapSchema;
95
+ export declare var WorkerTypeSpecificationMap: StaticMapSchema;
96
+ export declare var JobDriver: StaticStructureSchema;
97
+ export declare var CancelJobRun: StaticOperationSchema;
98
+ export declare var CreateApplication: StaticOperationSchema;
99
+ export declare var DeleteApplication: StaticOperationSchema;
100
+ export declare var GetApplication: StaticOperationSchema;
101
+ export declare var GetDashboardForJobRun: StaticOperationSchema;
102
+ export declare var GetJobRun: StaticOperationSchema;
103
+ export declare var ListApplications: StaticOperationSchema;
104
+ export declare var ListJobRunAttempts: StaticOperationSchema;
105
+ export declare var ListJobRuns: StaticOperationSchema;
106
+ export declare var ListTagsForResource: StaticOperationSchema;
107
+ export declare var StartApplication: StaticOperationSchema;
108
+ export declare var StartJobRun: StaticOperationSchema;
109
+ export declare var StopApplication: StaticOperationSchema;
110
+ export declare var TagResource: StaticOperationSchema;
111
+ export declare var UntagResource: StaticOperationSchema;
112
+ export declare var UpdateApplication: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -174,6 +177,7 @@ export interface ClientDefaults
174
177
  retryMode?: string | __Provider<string>;
175
178
  logger?: __Logger;
176
179
  extensions?: RuntimeExtension[];
180
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
177
181
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
178
182
  }
179
183
  export type EMRServerlessClientConfigType = Partial<
@@ -478,32 +478,3 @@ export interface UpdateApplicationResponse {
478
478
  export interface GetJobRunResponse {
479
479
  jobRun: JobRun | undefined;
480
480
  }
481
- export declare const HiveFilterSensitiveLog: (obj: Hive) => any;
482
- export declare const SparkSubmitFilterSensitiveLog: (obj: SparkSubmit) => any;
483
- export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
484
- export declare const ConfigurationFilterSensitiveLog: (
485
- obj: Configuration
486
- ) => any;
487
- export declare const ApplicationFilterSensitiveLog: (obj: Application) => any;
488
- export declare const ConfigurationOverridesFilterSensitiveLog: (
489
- obj: ConfigurationOverrides
490
- ) => any;
491
- export declare const CreateApplicationRequestFilterSensitiveLog: (
492
- obj: CreateApplicationRequest
493
- ) => any;
494
- export declare const UpdateApplicationRequestFilterSensitiveLog: (
495
- obj: UpdateApplicationRequest
496
- ) => any;
497
- export declare const GetApplicationResponseFilterSensitiveLog: (
498
- obj: GetApplicationResponse
499
- ) => any;
500
- export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
501
- export declare const StartJobRunRequestFilterSensitiveLog: (
502
- obj: StartJobRunRequest
503
- ) => any;
504
- export declare const UpdateApplicationResponseFilterSensitiveLog: (
505
- obj: UpdateApplicationResponse
506
- ) => any;
507
- export declare const GetJobRunResponseFilterSensitiveLog: (
508
- obj: GetJobRunResponse
509
- ) => any;
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  userAgentAppId?:
43
47
  | string
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  retryStrategy?:
43
47
  | import("@smithy/types").RetryStrategy
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
37
37
  retryMode: string | import("@smithy/types").Provider<string>;
38
38
  logger: import("@smithy/types").Logger;
39
39
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ protocol: import("@smithy/types").ClientProtocol<
41
+ import("@smithy/types").HttpRequest,
42
+ import("@smithy/types").HttpResponse
43
+ >;
40
44
  defaultsMode:
41
45
  | import("@smithy/smithy-client").DefaultsMode
42
46
  | import("@smithy/types").Provider<
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: EMRServerlessClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EMRServerlessHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<
18
+ import("@smithy/types").HttpRequest,
19
+ import("@smithy/types").HttpResponse
20
+ >;
17
21
  serviceId: string;
18
22
  urlParser: import("@smithy/types").UrlParser;
19
23
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,119 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticMapSchema,
5
+ StaticOperationSchema,
6
+ StaticSimpleSchema,
7
+ StaticStructureSchema,
8
+ } from "@smithy/types";
9
+ export declare var EntryPointArgument: StaticSimpleSchema;
10
+ export declare var EntryPointPath: StaticSimpleSchema;
11
+ export declare var HiveCliParameters: StaticSimpleSchema;
12
+ export declare var InitScriptPath: StaticSimpleSchema;
13
+ export declare var Query: StaticSimpleSchema;
14
+ export declare var SparkSubmitParameters: StaticSimpleSchema;
15
+ export declare var Application: StaticStructureSchema;
16
+ export declare var ApplicationSummary: StaticStructureSchema;
17
+ export declare var AutoStartConfig: StaticStructureSchema;
18
+ export declare var AutoStopConfig: StaticStructureSchema;
19
+ export declare var CancelJobRunRequest: StaticStructureSchema;
20
+ export declare var CancelJobRunResponse: StaticStructureSchema;
21
+ export declare var CloudWatchLoggingConfiguration: StaticStructureSchema;
22
+ export declare var Configuration: StaticStructureSchema;
23
+ export declare var ConfigurationOverrides: StaticStructureSchema;
24
+ export declare var ConflictException: StaticErrorSchema;
25
+ export declare var CreateApplicationRequest: StaticStructureSchema;
26
+ export declare var CreateApplicationResponse: StaticStructureSchema;
27
+ export declare var DeleteApplicationRequest: StaticStructureSchema;
28
+ export declare var DeleteApplicationResponse: StaticStructureSchema;
29
+ export declare var GetApplicationRequest: StaticStructureSchema;
30
+ export declare var GetApplicationResponse: StaticStructureSchema;
31
+ export declare var GetDashboardForJobRunRequest: StaticStructureSchema;
32
+ export declare var GetDashboardForJobRunResponse: StaticStructureSchema;
33
+ export declare var GetJobRunRequest: StaticStructureSchema;
34
+ export declare var GetJobRunResponse: StaticStructureSchema;
35
+ export declare var Hive: StaticStructureSchema;
36
+ export declare var IdentityCenterConfiguration: StaticStructureSchema;
37
+ export declare var IdentityCenterConfigurationInput: StaticStructureSchema;
38
+ export declare var ImageConfiguration: StaticStructureSchema;
39
+ export declare var ImageConfigurationInput: StaticStructureSchema;
40
+ export declare var InitialCapacityConfig: StaticStructureSchema;
41
+ export declare var InteractiveConfiguration: StaticStructureSchema;
42
+ export declare var InternalServerException: StaticErrorSchema;
43
+ export declare var JobRun: StaticStructureSchema;
44
+ export declare var JobRunAttemptSummary: StaticStructureSchema;
45
+ export declare var JobRunExecutionIamPolicy: StaticStructureSchema;
46
+ export declare var JobRunSummary: StaticStructureSchema;
47
+ export declare var ListApplicationsRequest: StaticStructureSchema;
48
+ export declare var ListApplicationsResponse: StaticStructureSchema;
49
+ export declare var ListJobRunAttemptsRequest: StaticStructureSchema;
50
+ export declare var ListJobRunAttemptsResponse: StaticStructureSchema;
51
+ export declare var ListJobRunsRequest: StaticStructureSchema;
52
+ export declare var ListJobRunsResponse: StaticStructureSchema;
53
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
54
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
55
+ export declare var ManagedPersistenceMonitoringConfiguration: StaticStructureSchema;
56
+ export declare var MaximumAllowedResources: StaticStructureSchema;
57
+ export declare var MonitoringConfiguration: StaticStructureSchema;
58
+ export declare var NetworkConfiguration: StaticStructureSchema;
59
+ export declare var PrometheusMonitoringConfiguration: StaticStructureSchema;
60
+ export declare var ResourceNotFoundException: StaticErrorSchema;
61
+ export declare var ResourceUtilization: StaticStructureSchema;
62
+ export declare var RetryPolicy: StaticStructureSchema;
63
+ export declare var S3MonitoringConfiguration: StaticStructureSchema;
64
+ export declare var SchedulerConfiguration: StaticStructureSchema;
65
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
66
+ export declare var SparkSubmit: StaticStructureSchema;
67
+ export declare var StartApplicationRequest: StaticStructureSchema;
68
+ export declare var StartApplicationResponse: StaticStructureSchema;
69
+ export declare var StartJobRunRequest: StaticStructureSchema;
70
+ export declare var StartJobRunResponse: StaticStructureSchema;
71
+ export declare var StopApplicationRequest: StaticStructureSchema;
72
+ export declare var StopApplicationResponse: StaticStructureSchema;
73
+ export declare var TagResourceRequest: StaticStructureSchema;
74
+ export declare var TagResourceResponse: StaticStructureSchema;
75
+ export declare var TotalResourceUtilization: StaticStructureSchema;
76
+ export declare var UntagResourceRequest: StaticStructureSchema;
77
+ export declare var UntagResourceResponse: StaticStructureSchema;
78
+ export declare var UpdateApplicationRequest: StaticStructureSchema;
79
+ export declare var UpdateApplicationResponse: StaticStructureSchema;
80
+ export declare var ValidationException: StaticErrorSchema;
81
+ export declare var WorkerResourceConfig: StaticStructureSchema;
82
+ export declare var WorkerTypeSpecification: StaticStructureSchema;
83
+ export declare var WorkerTypeSpecificationInput: StaticStructureSchema;
84
+ export declare var EMRServerlessServiceException: StaticErrorSchema;
85
+ export declare var ApplicationList: StaticListSchema;
86
+ export declare var ApplicationStateSet: number;
87
+ export declare var ConfigurationList: StaticListSchema;
88
+ export declare var EntryPointArguments: StaticListSchema;
89
+ export declare var JobRunAttempts: StaticListSchema;
90
+ export declare var JobRuns: StaticListSchema;
91
+ export declare var JobRunStateSet: number;
92
+ export declare var LogTypeList: number;
93
+ export declare var PolicyArnList: number;
94
+ export declare var SecurityGroupIds: number;
95
+ export declare var SubnetIds: number;
96
+ export declare var TagKeyList: number;
97
+ export declare var InitialCapacityConfigMap: StaticMapSchema;
98
+ export declare var LogTypeMap: StaticMapSchema;
99
+ export declare var SensitivePropertiesMap: StaticMapSchema;
100
+ export declare var TagMap: number;
101
+ export declare var WorkerTypeSpecificationInputMap: StaticMapSchema;
102
+ export declare var WorkerTypeSpecificationMap: StaticMapSchema;
103
+ export declare var JobDriver: StaticStructureSchema;
104
+ export declare var CancelJobRun: StaticOperationSchema;
105
+ export declare var CreateApplication: StaticOperationSchema;
106
+ export declare var DeleteApplication: StaticOperationSchema;
107
+ export declare var GetApplication: StaticOperationSchema;
108
+ export declare var GetDashboardForJobRun: StaticOperationSchema;
109
+ export declare var GetJobRun: StaticOperationSchema;
110
+ export declare var ListApplications: StaticOperationSchema;
111
+ export declare var ListJobRunAttempts: StaticOperationSchema;
112
+ export declare var ListJobRuns: StaticOperationSchema;
113
+ export declare var ListTagsForResource: StaticOperationSchema;
114
+ export declare var StartApplication: StaticOperationSchema;
115
+ export declare var StartJobRun: StaticOperationSchema;
116
+ export declare var StopApplication: StaticOperationSchema;
117
+ export declare var TagResource: StaticOperationSchema;
118
+ export declare var UntagResource: StaticOperationSchema;
119
+ export declare var UpdateApplication: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-emr-serverless",
3
3
  "description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
4
- "version": "3.927.0",
4
+ "version": "3.929.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-emr-serverless",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.927.0",
24
- "@aws-sdk/credential-provider-node": "3.927.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.929.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.927.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.927.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",
@@ -56,7 +56,6 @@
56
56
  "@smithy/util-middleware": "^4.2.4",
57
57
  "@smithy/util-retry": "^4.2.4",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
- "@smithy/uuid": "^1.1.0",
60
59
  "tslib": "^2.6.2"
61
60
  },
62
61
  "devDependencies": {