@aws-sdk/client-m2 3.928.0 → 3.930.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1918 -1865
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/M2Client.js +2 -0
- package/dist-es/commands/CancelBatchJobExecutionCommand.js +3 -9
- package/dist-es/commands/CreateApplicationCommand.js +3 -9
- package/dist-es/commands/CreateDataSetExportTaskCommand.js +3 -9
- package/dist-es/commands/CreateDataSetImportTaskCommand.js +3 -9
- package/dist-es/commands/CreateDeploymentCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationCommand.js +3 -9
- package/dist-es/commands/DeleteApplicationFromEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetApplicationCommand.js +3 -9
- package/dist-es/commands/GetApplicationVersionCommand.js +3 -9
- package/dist-es/commands/GetBatchJobExecutionCommand.js +3 -9
- package/dist-es/commands/GetDataSetDetailsCommand.js +3 -9
- package/dist-es/commands/GetDataSetExportTaskCommand.js +3 -9
- package/dist-es/commands/GetDataSetImportTaskCommand.js +3 -9
- package/dist-es/commands/GetDeploymentCommand.js +3 -9
- package/dist-es/commands/GetEnvironmentCommand.js +3 -9
- package/dist-es/commands/GetSignedBluinsightsUrlCommand.js +3 -9
- package/dist-es/commands/ListApplicationVersionsCommand.js +3 -9
- package/dist-es/commands/ListApplicationsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobDefinitionsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobExecutionsCommand.js +3 -9
- package/dist-es/commands/ListBatchJobRestartPointsCommand.js +3 -9
- package/dist-es/commands/ListDataSetExportHistoryCommand.js +3 -9
- package/dist-es/commands/ListDataSetImportHistoryCommand.js +3 -9
- package/dist-es/commands/ListDataSetsCommand.js +3 -9
- package/dist-es/commands/ListDeploymentsCommand.js +3 -9
- package/dist-es/commands/ListEngineVersionsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartApplicationCommand.js +3 -9
- package/dist-es/commands/StartBatchJobCommand.js +3 -9
- package/dist-es/commands/StopApplicationCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateApplicationCommand.js +3 -9
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -110
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1835 -0
- package/dist-types/M2Client.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +40 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +199 -0
- package/dist-types/ts3.4/M2Client.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -10
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +204 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1481
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -335
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -449
package/dist-types/M2Client.d.ts
CHANGED
|
@@ -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 { CancelBatchJobExecutionCommandInput, CancelBatchJobExecutionCommandOutput } from "./commands/CancelBatchJobExecutionCommand";
|
|
11
11
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
@@ -178,6 +178,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
178
178
|
* Optional extensions
|
|
179
179
|
*/
|
|
180
180
|
extensions?: RuntimeExtension[];
|
|
181
|
+
/**
|
|
182
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
183
|
+
* may be overridden. A default will always be set by the client.
|
|
184
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
185
|
+
* the client.
|
|
186
|
+
* @alpha
|
|
187
|
+
*
|
|
188
|
+
*/
|
|
189
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
181
190
|
/**
|
|
182
191
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
183
192
|
*/
|
|
@@ -249,12 +249,15 @@ export declare namespace Definition {
|
|
|
249
249
|
content?: never;
|
|
250
250
|
$unknown: [string, any];
|
|
251
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* @deprecated unused in schema-serde mode.
|
|
254
|
+
*
|
|
255
|
+
*/
|
|
252
256
|
interface Visitor<T> {
|
|
253
257
|
s3Location: (value: string) => T;
|
|
254
258
|
content: (value: string) => T;
|
|
255
259
|
_: (name: string, value: any) => T;
|
|
256
260
|
}
|
|
257
|
-
const visit: <T>(value: Definition, visitor: Visitor<T>) => T;
|
|
258
261
|
}
|
|
259
262
|
/**
|
|
260
263
|
* @public
|
|
@@ -392,11 +395,14 @@ export declare namespace ExternalLocation {
|
|
|
392
395
|
s3Location?: never;
|
|
393
396
|
$unknown: [string, any];
|
|
394
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
* @deprecated unused in schema-serde mode.
|
|
400
|
+
*
|
|
401
|
+
*/
|
|
395
402
|
interface Visitor<T> {
|
|
396
403
|
s3Location: (value: string) => T;
|
|
397
404
|
_: (name: string, value: any) => T;
|
|
398
405
|
}
|
|
399
|
-
const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
|
|
400
406
|
}
|
|
401
407
|
/**
|
|
402
408
|
* <p>Identifies a specific data set to export from an external location.</p>
|
|
@@ -449,12 +455,15 @@ export declare namespace DataSetExportConfig {
|
|
|
449
455
|
dataSets?: never;
|
|
450
456
|
$unknown: [string, any];
|
|
451
457
|
}
|
|
458
|
+
/**
|
|
459
|
+
* @deprecated unused in schema-serde mode.
|
|
460
|
+
*
|
|
461
|
+
*/
|
|
452
462
|
interface Visitor<T> {
|
|
453
463
|
s3Location: (value: string) => T;
|
|
454
464
|
dataSets: (value: DataSetExportItem[]) => T;
|
|
455
465
|
_: (name: string, value: any) => T;
|
|
456
466
|
}
|
|
457
|
-
const visit: <T>(value: DataSetExportConfig, visitor: Visitor<T>) => T;
|
|
458
467
|
}
|
|
459
468
|
/**
|
|
460
469
|
* @public
|
|
@@ -670,6 +679,10 @@ export declare namespace DatasetOrgAttributes {
|
|
|
670
679
|
ps?: never;
|
|
671
680
|
$unknown: [string, any];
|
|
672
681
|
}
|
|
682
|
+
/**
|
|
683
|
+
* @deprecated unused in schema-serde mode.
|
|
684
|
+
*
|
|
685
|
+
*/
|
|
673
686
|
interface Visitor<T> {
|
|
674
687
|
vsam: (value: VsamAttributes) => T;
|
|
675
688
|
gdg: (value: GdgAttributes) => T;
|
|
@@ -677,7 +690,6 @@ export declare namespace DatasetOrgAttributes {
|
|
|
677
690
|
ps: (value: PsAttributes) => T;
|
|
678
691
|
_: (name: string, value: any) => T;
|
|
679
692
|
}
|
|
680
|
-
const visit: <T>(value: DatasetOrgAttributes, visitor: Visitor<T>) => T;
|
|
681
693
|
}
|
|
682
694
|
/**
|
|
683
695
|
* <p>The length of the records in the data set.</p>
|
|
@@ -780,12 +792,15 @@ export declare namespace DataSetImportConfig {
|
|
|
780
792
|
dataSets?: never;
|
|
781
793
|
$unknown: [string, any];
|
|
782
794
|
}
|
|
795
|
+
/**
|
|
796
|
+
* @deprecated unused in schema-serde mode.
|
|
797
|
+
*
|
|
798
|
+
*/
|
|
783
799
|
interface Visitor<T> {
|
|
784
800
|
s3Location: (value: string) => T;
|
|
785
801
|
dataSets: (value: DataSetImportItem[]) => T;
|
|
786
802
|
_: (name: string, value: any) => T;
|
|
787
803
|
}
|
|
788
|
-
const visit: <T>(value: DataSetImportConfig, visitor: Visitor<T>) => T;
|
|
789
804
|
}
|
|
790
805
|
/**
|
|
791
806
|
* @public
|
|
@@ -1307,12 +1322,15 @@ export declare namespace JobIdentifier {
|
|
|
1307
1322
|
scriptName?: never;
|
|
1308
1323
|
$unknown: [string, any];
|
|
1309
1324
|
}
|
|
1325
|
+
/**
|
|
1326
|
+
* @deprecated unused in schema-serde mode.
|
|
1327
|
+
*
|
|
1328
|
+
*/
|
|
1310
1329
|
interface Visitor<T> {
|
|
1311
1330
|
fileName: (value: string) => T;
|
|
1312
1331
|
scriptName: (value: string) => T;
|
|
1313
1332
|
_: (name: string, value: any) => T;
|
|
1314
1333
|
}
|
|
1315
|
-
const visit: <T>(value: JobIdentifier, visitor: Visitor<T>) => T;
|
|
1316
1334
|
}
|
|
1317
1335
|
/**
|
|
1318
1336
|
* <p>A batch job identifier in which the batch jobs to run are identified by an Amazon S3 location.</p>
|
|
@@ -1411,6 +1429,10 @@ export declare namespace BatchJobIdentifier {
|
|
|
1411
1429
|
restartBatchJobIdentifier?: never;
|
|
1412
1430
|
$unknown: [string, any];
|
|
1413
1431
|
}
|
|
1432
|
+
/**
|
|
1433
|
+
* @deprecated unused in schema-serde mode.
|
|
1434
|
+
*
|
|
1435
|
+
*/
|
|
1414
1436
|
interface Visitor<T> {
|
|
1415
1437
|
fileBatchJobIdentifier: (value: FileBatchJobIdentifier) => T;
|
|
1416
1438
|
scriptBatchJobIdentifier: (value: ScriptBatchJobIdentifier) => T;
|
|
@@ -1418,7 +1440,6 @@ export declare namespace BatchJobIdentifier {
|
|
|
1418
1440
|
restartBatchJobIdentifier: (value: RestartBatchJobIdentifier) => T;
|
|
1419
1441
|
_: (name: string, value: any) => T;
|
|
1420
1442
|
}
|
|
1421
|
-
const visit: <T>(value: BatchJobIdentifier, visitor: Visitor<T>) => T;
|
|
1422
1443
|
}
|
|
1423
1444
|
/**
|
|
1424
1445
|
* @public
|
|
@@ -1711,6 +1732,10 @@ export declare namespace DatasetDetailOrgAttributes {
|
|
|
1711
1732
|
ps?: never;
|
|
1712
1733
|
$unknown: [string, any];
|
|
1713
1734
|
}
|
|
1735
|
+
/**
|
|
1736
|
+
* @deprecated unused in schema-serde mode.
|
|
1737
|
+
*
|
|
1738
|
+
*/
|
|
1714
1739
|
interface Visitor<T> {
|
|
1715
1740
|
vsam: (value: VsamDetailAttributes) => T;
|
|
1716
1741
|
gdg: (value: GdgDetailAttributes) => T;
|
|
@@ -1718,7 +1743,6 @@ export declare namespace DatasetDetailOrgAttributes {
|
|
|
1718
1743
|
ps: (value: PsDetailAttributes) => T;
|
|
1719
1744
|
_: (name: string, value: any) => T;
|
|
1720
1745
|
}
|
|
1721
|
-
const visit: <T>(value: DatasetDetailOrgAttributes, visitor: Visitor<T>) => T;
|
|
1722
1746
|
}
|
|
1723
1747
|
/**
|
|
1724
1748
|
* @public
|
|
@@ -2251,12 +2275,15 @@ export declare namespace BatchJobDefinition {
|
|
|
2251
2275
|
scriptBatchJobDefinition?: never;
|
|
2252
2276
|
$unknown: [string, any];
|
|
2253
2277
|
}
|
|
2278
|
+
/**
|
|
2279
|
+
* @deprecated unused in schema-serde mode.
|
|
2280
|
+
*
|
|
2281
|
+
*/
|
|
2254
2282
|
interface Visitor<T> {
|
|
2255
2283
|
fileBatchJobDefinition: (value: FileBatchJobDefinition) => T;
|
|
2256
2284
|
scriptBatchJobDefinition: (value: ScriptBatchJobDefinition) => T;
|
|
2257
2285
|
_: (name: string, value: any) => T;
|
|
2258
2286
|
}
|
|
2259
|
-
const visit: <T>(value: BatchJobDefinition, visitor: Visitor<T>) => T;
|
|
2260
2287
|
}
|
|
2261
2288
|
/**
|
|
2262
2289
|
* @public
|
|
@@ -2970,12 +2997,15 @@ export declare namespace StorageConfiguration {
|
|
|
2970
2997
|
fsx?: never;
|
|
2971
2998
|
$unknown: [string, any];
|
|
2972
2999
|
}
|
|
3000
|
+
/**
|
|
3001
|
+
* @deprecated unused in schema-serde mode.
|
|
3002
|
+
*
|
|
3003
|
+
*/
|
|
2973
3004
|
interface Visitor<T> {
|
|
2974
3005
|
efs: (value: EfsStorageConfiguration) => T;
|
|
2975
3006
|
fsx: (value: FsxStorageConfiguration) => T;
|
|
2976
3007
|
_: (name: string, value: any) => T;
|
|
2977
3008
|
}
|
|
2978
|
-
const visit: <T>(value: StorageConfiguration, visitor: Visitor<T>) => T;
|
|
2979
3009
|
}
|
|
2980
3010
|
/**
|
|
2981
3011
|
* @public
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").M2HttpAuthSchemeProvider;
|
|
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,199 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
3
|
+
export declare var AlternateKey: StaticStructureSchema;
|
|
4
|
+
export declare var ApplicationSummary: StaticStructureSchema;
|
|
5
|
+
export declare var ApplicationVersionSummary: StaticStructureSchema;
|
|
6
|
+
export declare var BatchJobExecutionSummary: StaticStructureSchema;
|
|
7
|
+
export declare var CancelBatchJobExecutionRequest: StaticStructureSchema;
|
|
8
|
+
export declare var CancelBatchJobExecutionResponse: StaticStructureSchema;
|
|
9
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
10
|
+
export declare var CreateApplicationRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateApplicationResponse: StaticStructureSchema;
|
|
12
|
+
export declare var CreateDataSetExportTaskRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CreateDataSetExportTaskResponse: StaticStructureSchema;
|
|
14
|
+
export declare var CreateDataSetImportTaskRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateDataSetImportTaskResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateDeploymentRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateDeploymentResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateEnvironmentRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateEnvironmentResponse: StaticStructureSchema;
|
|
20
|
+
export declare var DataSet: StaticStructureSchema;
|
|
21
|
+
export declare var DataSetExportItem: StaticStructureSchema;
|
|
22
|
+
export declare var DataSetExportSummary: StaticStructureSchema;
|
|
23
|
+
export declare var DataSetExportTask: StaticStructureSchema;
|
|
24
|
+
export declare var DataSetImportItem: StaticStructureSchema;
|
|
25
|
+
export declare var DataSetImportSummary: StaticStructureSchema;
|
|
26
|
+
export declare var DataSetImportTask: StaticStructureSchema;
|
|
27
|
+
export declare var DataSetSummary: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteApplicationFromEnvironmentRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteApplicationFromEnvironmentResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteApplicationRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteApplicationResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteEnvironmentRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteEnvironmentResponse: StaticStructureSchema;
|
|
34
|
+
export declare var DeployedVersionSummary: StaticStructureSchema;
|
|
35
|
+
export declare var DeploymentSummary: StaticStructureSchema;
|
|
36
|
+
export declare var EfsStorageConfiguration: StaticStructureSchema;
|
|
37
|
+
export declare var EngineVersionsSummary: StaticStructureSchema;
|
|
38
|
+
export declare var EnvironmentSummary: StaticStructureSchema;
|
|
39
|
+
export declare var ExecutionTimeoutException: StaticErrorSchema;
|
|
40
|
+
export declare var FileBatchJobDefinition: StaticStructureSchema;
|
|
41
|
+
export declare var FileBatchJobIdentifier: StaticStructureSchema;
|
|
42
|
+
export declare var FsxStorageConfiguration: StaticStructureSchema;
|
|
43
|
+
export declare var GdgAttributes: StaticStructureSchema;
|
|
44
|
+
export declare var GdgDetailAttributes: StaticStructureSchema;
|
|
45
|
+
export declare var GetApplicationRequest: StaticStructureSchema;
|
|
46
|
+
export declare var GetApplicationResponse: StaticStructureSchema;
|
|
47
|
+
export declare var GetApplicationVersionRequest: StaticStructureSchema;
|
|
48
|
+
export declare var GetApplicationVersionResponse: StaticStructureSchema;
|
|
49
|
+
export declare var GetBatchJobExecutionRequest: StaticStructureSchema;
|
|
50
|
+
export declare var GetBatchJobExecutionResponse: StaticStructureSchema;
|
|
51
|
+
export declare var GetDataSetDetailsRequest: StaticStructureSchema;
|
|
52
|
+
export declare var GetDataSetDetailsResponse: StaticStructureSchema;
|
|
53
|
+
export declare var GetDataSetExportTaskRequest: StaticStructureSchema;
|
|
54
|
+
export declare var GetDataSetExportTaskResponse: StaticStructureSchema;
|
|
55
|
+
export declare var GetDataSetImportTaskRequest: StaticStructureSchema;
|
|
56
|
+
export declare var GetDataSetImportTaskResponse: StaticStructureSchema;
|
|
57
|
+
export declare var GetDeploymentRequest: StaticStructureSchema;
|
|
58
|
+
export declare var GetDeploymentResponse: StaticStructureSchema;
|
|
59
|
+
export declare var GetEnvironmentRequest: StaticStructureSchema;
|
|
60
|
+
export declare var GetEnvironmentResponse: StaticStructureSchema;
|
|
61
|
+
export declare var GetSignedBluinsightsUrlResponse: StaticStructureSchema;
|
|
62
|
+
export declare var HighAvailabilityConfig: StaticStructureSchema;
|
|
63
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
64
|
+
export declare var JobStep: StaticStructureSchema;
|
|
65
|
+
export declare var JobStepRestartMarker: StaticStructureSchema;
|
|
66
|
+
export declare var ListApplicationsRequest: StaticStructureSchema;
|
|
67
|
+
export declare var ListApplicationsResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ListApplicationVersionsRequest: StaticStructureSchema;
|
|
69
|
+
export declare var ListApplicationVersionsResponse: StaticStructureSchema;
|
|
70
|
+
export declare var ListBatchJobDefinitionsRequest: StaticStructureSchema;
|
|
71
|
+
export declare var ListBatchJobDefinitionsResponse: StaticStructureSchema;
|
|
72
|
+
export declare var ListBatchJobExecutionsRequest: StaticStructureSchema;
|
|
73
|
+
export declare var ListBatchJobExecutionsResponse: StaticStructureSchema;
|
|
74
|
+
export declare var ListBatchJobRestartPointsRequest: StaticStructureSchema;
|
|
75
|
+
export declare var ListBatchJobRestartPointsResponse: StaticStructureSchema;
|
|
76
|
+
export declare var ListDataSetExportHistoryRequest: StaticStructureSchema;
|
|
77
|
+
export declare var ListDataSetExportHistoryResponse: StaticStructureSchema;
|
|
78
|
+
export declare var ListDataSetImportHistoryRequest: StaticStructureSchema;
|
|
79
|
+
export declare var ListDataSetImportHistoryResponse: StaticStructureSchema;
|
|
80
|
+
export declare var ListDataSetsRequest: StaticStructureSchema;
|
|
81
|
+
export declare var ListDataSetsResponse: StaticStructureSchema;
|
|
82
|
+
export declare var ListDeploymentsRequest: StaticStructureSchema;
|
|
83
|
+
export declare var ListDeploymentsResponse: StaticStructureSchema;
|
|
84
|
+
export declare var ListEngineVersionsRequest: StaticStructureSchema;
|
|
85
|
+
export declare var ListEngineVersionsResponse: StaticStructureSchema;
|
|
86
|
+
export declare var ListEnvironmentsRequest: StaticStructureSchema;
|
|
87
|
+
export declare var ListEnvironmentsResponse: StaticStructureSchema;
|
|
88
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
89
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
90
|
+
export declare var LogGroupSummary: StaticStructureSchema;
|
|
91
|
+
export declare var MaintenanceSchedule: StaticStructureSchema;
|
|
92
|
+
export declare var PendingMaintenance: StaticStructureSchema;
|
|
93
|
+
export declare var PoAttributes: StaticStructureSchema;
|
|
94
|
+
export declare var PoDetailAttributes: StaticStructureSchema;
|
|
95
|
+
export declare var PrimaryKey: StaticStructureSchema;
|
|
96
|
+
export declare var PsAttributes: StaticStructureSchema;
|
|
97
|
+
export declare var PsDetailAttributes: StaticStructureSchema;
|
|
98
|
+
export declare var RecordLength: StaticStructureSchema;
|
|
99
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
100
|
+
export declare var RestartBatchJobIdentifier: StaticStructureSchema;
|
|
101
|
+
export declare var S3BatchJobIdentifier: StaticStructureSchema;
|
|
102
|
+
export declare var ScriptBatchJobDefinition: StaticStructureSchema;
|
|
103
|
+
export declare var ScriptBatchJobIdentifier: StaticStructureSchema;
|
|
104
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
105
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
106
|
+
export declare var StartApplicationRequest: StaticStructureSchema;
|
|
107
|
+
export declare var StartApplicationResponse: StaticStructureSchema;
|
|
108
|
+
export declare var StartBatchJobRequest: StaticStructureSchema;
|
|
109
|
+
export declare var StartBatchJobResponse: StaticStructureSchema;
|
|
110
|
+
export declare var StopApplicationRequest: StaticStructureSchema;
|
|
111
|
+
export declare var StopApplicationResponse: StaticStructureSchema;
|
|
112
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
113
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
114
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
115
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
116
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
117
|
+
export declare var UpdateApplicationRequest: StaticStructureSchema;
|
|
118
|
+
export declare var UpdateApplicationResponse: StaticStructureSchema;
|
|
119
|
+
export declare var UpdateEnvironmentRequest: StaticStructureSchema;
|
|
120
|
+
export declare var UpdateEnvironmentResponse: StaticStructureSchema;
|
|
121
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
122
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
123
|
+
export declare var VsamAttributes: StaticStructureSchema;
|
|
124
|
+
export declare var VsamDetailAttributes: StaticStructureSchema;
|
|
125
|
+
export declare var __Unit: "unit";
|
|
126
|
+
export declare var M2ServiceException: StaticErrorSchema;
|
|
127
|
+
export declare var AlternateKeyList: StaticListSchema;
|
|
128
|
+
export declare var ApplicationSummaryList: StaticListSchema;
|
|
129
|
+
export declare var ApplicationVersionSummaryList: StaticListSchema;
|
|
130
|
+
export declare var ArnList: number;
|
|
131
|
+
export declare var BatchJobDefinitions: StaticListSchema;
|
|
132
|
+
export declare var BatchJobExecutionSummaryList: StaticListSchema;
|
|
133
|
+
export declare var BatchJobStepList: StaticListSchema;
|
|
134
|
+
export declare var DataSetExportList: StaticListSchema;
|
|
135
|
+
export declare var DataSetExportTaskList: StaticListSchema;
|
|
136
|
+
export declare var DataSetImportList: StaticListSchema;
|
|
137
|
+
export declare var DataSetImportTaskList: StaticListSchema;
|
|
138
|
+
export declare var DataSetsSummaryList: StaticListSchema;
|
|
139
|
+
export declare var DeploymentList: StaticListSchema;
|
|
140
|
+
export declare var EngineVersionsSummaryList: StaticListSchema;
|
|
141
|
+
export declare var EntityNameList: number;
|
|
142
|
+
export declare var EnvironmentSummaryList: StaticListSchema;
|
|
143
|
+
export declare var IdentifierList: number;
|
|
144
|
+
export declare var LogGroupSummaries: StaticListSchema;
|
|
145
|
+
export declare var PortList: number;
|
|
146
|
+
export declare var StorageConfigurationList: StaticListSchema;
|
|
147
|
+
export declare var String20List: number;
|
|
148
|
+
export declare var String50List: number;
|
|
149
|
+
export declare var TagKeyList: number;
|
|
150
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
151
|
+
export declare var BatchJobParametersMap: number;
|
|
152
|
+
export declare var TagMap: number;
|
|
153
|
+
export declare var BatchJobDefinition: StaticStructureSchema;
|
|
154
|
+
export declare var BatchJobIdentifier: StaticStructureSchema;
|
|
155
|
+
export declare var DatasetDetailOrgAttributes: StaticStructureSchema;
|
|
156
|
+
export declare var DataSetExportConfig: StaticStructureSchema;
|
|
157
|
+
export declare var DataSetImportConfig: StaticStructureSchema;
|
|
158
|
+
export declare var DatasetOrgAttributes: StaticStructureSchema;
|
|
159
|
+
export declare var Definition: StaticStructureSchema;
|
|
160
|
+
export declare var ExternalLocation: StaticStructureSchema;
|
|
161
|
+
export declare var JobIdentifier: StaticStructureSchema;
|
|
162
|
+
export declare var StorageConfiguration: StaticStructureSchema;
|
|
163
|
+
export declare var CancelBatchJobExecution: StaticOperationSchema;
|
|
164
|
+
export declare var CreateApplication: StaticOperationSchema;
|
|
165
|
+
export declare var CreateDataSetExportTask: StaticOperationSchema;
|
|
166
|
+
export declare var CreateDataSetImportTask: StaticOperationSchema;
|
|
167
|
+
export declare var CreateDeployment: StaticOperationSchema;
|
|
168
|
+
export declare var CreateEnvironment: StaticOperationSchema;
|
|
169
|
+
export declare var DeleteApplication: StaticOperationSchema;
|
|
170
|
+
export declare var DeleteApplicationFromEnvironment: StaticOperationSchema;
|
|
171
|
+
export declare var DeleteEnvironment: StaticOperationSchema;
|
|
172
|
+
export declare var GetApplication: StaticOperationSchema;
|
|
173
|
+
export declare var GetApplicationVersion: StaticOperationSchema;
|
|
174
|
+
export declare var GetBatchJobExecution: StaticOperationSchema;
|
|
175
|
+
export declare var GetDataSetDetails: StaticOperationSchema;
|
|
176
|
+
export declare var GetDataSetExportTask: StaticOperationSchema;
|
|
177
|
+
export declare var GetDataSetImportTask: StaticOperationSchema;
|
|
178
|
+
export declare var GetDeployment: StaticOperationSchema;
|
|
179
|
+
export declare var GetEnvironment: StaticOperationSchema;
|
|
180
|
+
export declare var GetSignedBluinsightsUrl: StaticOperationSchema;
|
|
181
|
+
export declare var ListApplications: StaticOperationSchema;
|
|
182
|
+
export declare var ListApplicationVersions: StaticOperationSchema;
|
|
183
|
+
export declare var ListBatchJobDefinitions: StaticOperationSchema;
|
|
184
|
+
export declare var ListBatchJobExecutions: StaticOperationSchema;
|
|
185
|
+
export declare var ListBatchJobRestartPoints: StaticOperationSchema;
|
|
186
|
+
export declare var ListDataSetExportHistory: StaticOperationSchema;
|
|
187
|
+
export declare var ListDataSetImportHistory: StaticOperationSchema;
|
|
188
|
+
export declare var ListDataSets: StaticOperationSchema;
|
|
189
|
+
export declare var ListDeployments: StaticOperationSchema;
|
|
190
|
+
export declare var ListEngineVersions: StaticOperationSchema;
|
|
191
|
+
export declare var ListEnvironments: StaticOperationSchema;
|
|
192
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
193
|
+
export declare var StartApplication: StaticOperationSchema;
|
|
194
|
+
export declare var StartBatchJob: StaticOperationSchema;
|
|
195
|
+
export declare var StopApplication: StaticOperationSchema;
|
|
196
|
+
export declare var TagResource: StaticOperationSchema;
|
|
197
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
198
|
+
export declare var UpdateApplication: StaticOperationSchema;
|
|
199
|
+
export declare var UpdateEnvironment: 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,
|
|
@@ -300,6 +303,7 @@ export interface ClientDefaults
|
|
|
300
303
|
retryMode?: string | __Provider<string>;
|
|
301
304
|
logger?: __Logger;
|
|
302
305
|
extensions?: RuntimeExtension[];
|
|
306
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
303
307
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
304
308
|
}
|
|
305
309
|
export type M2ClientConfigType = Partial<
|
|
@@ -105,7 +105,6 @@ export declare namespace Definition {
|
|
|
105
105
|
content: (value: string) => T;
|
|
106
106
|
_: (name: string, value: any) => T;
|
|
107
107
|
}
|
|
108
|
-
const visit: <T>(value: Definition, visitor: Visitor<T>) => T;
|
|
109
108
|
}
|
|
110
109
|
export declare const EngineType: {
|
|
111
110
|
readonly BLUAGE: "bluage";
|
|
@@ -154,7 +153,6 @@ export declare namespace ExternalLocation {
|
|
|
154
153
|
s3Location: (value: string) => T;
|
|
155
154
|
_: (name: string, value: any) => T;
|
|
156
155
|
}
|
|
157
|
-
const visit: <T>(value: ExternalLocation, visitor: Visitor<T>) => T;
|
|
158
156
|
}
|
|
159
157
|
export interface DataSetExportItem {
|
|
160
158
|
datasetName: string | undefined;
|
|
@@ -185,7 +183,6 @@ export declare namespace DataSetExportConfig {
|
|
|
185
183
|
dataSets: (value: DataSetExportItem[]) => T;
|
|
186
184
|
_: (name: string, value: any) => T;
|
|
187
185
|
}
|
|
188
|
-
const visit: <T>(value: DataSetExportConfig, visitor: Visitor<T>) => T;
|
|
189
186
|
}
|
|
190
187
|
export interface CreateDataSetExportTaskRequest {
|
|
191
188
|
applicationId: string | undefined;
|
|
@@ -270,7 +267,6 @@ export declare namespace DatasetOrgAttributes {
|
|
|
270
267
|
ps: (value: PsAttributes) => T;
|
|
271
268
|
_: (name: string, value: any) => T;
|
|
272
269
|
}
|
|
273
|
-
const visit: <T>(value: DatasetOrgAttributes, visitor: Visitor<T>) => T;
|
|
274
270
|
}
|
|
275
271
|
export interface RecordLength {
|
|
276
272
|
min: number | undefined;
|
|
@@ -312,7 +308,6 @@ export declare namespace DataSetImportConfig {
|
|
|
312
308
|
dataSets: (value: DataSetImportItem[]) => T;
|
|
313
309
|
_: (name: string, value: any) => T;
|
|
314
310
|
}
|
|
315
|
-
const visit: <T>(value: DataSetImportConfig, visitor: Visitor<T>) => T;
|
|
316
311
|
}
|
|
317
312
|
export interface CreateDataSetImportTaskRequest {
|
|
318
313
|
applicationId: string | undefined;
|
|
@@ -468,7 +463,6 @@ export declare namespace JobIdentifier {
|
|
|
468
463
|
scriptName: (value: string) => T;
|
|
469
464
|
_: (name: string, value: any) => T;
|
|
470
465
|
}
|
|
471
|
-
const visit: <T>(value: JobIdentifier, visitor: Visitor<T>) => T;
|
|
472
466
|
}
|
|
473
467
|
export interface S3BatchJobIdentifier {
|
|
474
468
|
bucket: string | undefined;
|
|
@@ -527,7 +521,6 @@ export declare namespace BatchJobIdentifier {
|
|
|
527
521
|
restartBatchJobIdentifier: (value: RestartBatchJobIdentifier) => T;
|
|
528
522
|
_: (name: string, value: any) => T;
|
|
529
523
|
}
|
|
530
|
-
const visit: <T>(value: BatchJobIdentifier, visitor: Visitor<T>) => T;
|
|
531
524
|
}
|
|
532
525
|
export declare const BatchJobType: {
|
|
533
526
|
readonly JES2: "JES2";
|
|
@@ -645,7 +638,6 @@ export declare namespace DatasetDetailOrgAttributes {
|
|
|
645
638
|
ps: (value: PsDetailAttributes) => T;
|
|
646
639
|
_: (name: string, value: any) => T;
|
|
647
640
|
}
|
|
648
|
-
const visit: <T>(value: DatasetDetailOrgAttributes, visitor: Visitor<T>) => T;
|
|
649
641
|
}
|
|
650
642
|
export interface GetDataSetDetailsResponse {
|
|
651
643
|
dataSetName: string | undefined;
|
|
@@ -799,7 +791,6 @@ export declare namespace BatchJobDefinition {
|
|
|
799
791
|
scriptBatchJobDefinition: (value: ScriptBatchJobDefinition) => T;
|
|
800
792
|
_: (name: string, value: any) => T;
|
|
801
793
|
}
|
|
802
|
-
const visit: <T>(value: BatchJobDefinition, visitor: Visitor<T>) => T;
|
|
803
794
|
}
|
|
804
795
|
export interface ListBatchJobDefinitionsResponse {
|
|
805
796
|
batchJobDefinitions: BatchJobDefinition[] | undefined;
|
|
@@ -985,7 +976,6 @@ export declare namespace StorageConfiguration {
|
|
|
985
976
|
fsx: (value: FsxStorageConfiguration) => T;
|
|
986
977
|
_: (name: string, value: any) => T;
|
|
987
978
|
}
|
|
988
|
-
const visit: <T>(value: StorageConfiguration, visitor: Visitor<T>) => T;
|
|
989
979
|
}
|
|
990
980
|
export interface CreateEnvironmentRequest {
|
|
991
981
|
name: string | undefined;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
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: M2ClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").M2HttpAuthSchemeProvider;
|
|
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;
|