@aws-sdk/client-m2 3.300.0 → 3.303.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/models/models_0.js +65 -75
- package/dist-es/models/models_0.js +65 -75
- package/dist-types/commands/CancelBatchJobExecutionCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
- package/dist-types/commands/CreateDataSetImportTaskCommand.d.ts +13 -13
- package/dist-types/commands/CreateDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -8
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationFromEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetBatchJobExecutionCommand.d.ts +1 -1
- package/dist-types/commands/GetDataSetDetailsCommand.d.ts +1 -1
- package/dist-types/commands/GetDataSetImportTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/ListBatchJobDefinitionsCommand.d.ts +1 -1
- package/dist-types/commands/ListBatchJobExecutionsCommand.d.ts +2 -2
- package/dist-types/commands/ListDataSetImportHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/ListEngineVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartApplicationCommand.d.ts +1 -1
- package/dist-types/commands/StartBatchJobCommand.d.ts +5 -5
- package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +115 -65
- package/dist-types/ts3.4/models/models_0.d.ts +83 -65
- package/package.json +34 -34
|
@@ -60,12 +60,14 @@ export interface ValidationExceptionField {
|
|
|
60
60
|
name: string | undefined;
|
|
61
61
|
message: string | undefined;
|
|
62
62
|
}
|
|
63
|
-
export declare
|
|
64
|
-
CANNOT_PARSE
|
|
65
|
-
FIELD_VALIDATION_FAILED
|
|
66
|
-
OTHER
|
|
67
|
-
UNKNOWN_OPERATION
|
|
68
|
-
}
|
|
63
|
+
export declare const ValidationExceptionReason: {
|
|
64
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
65
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
66
|
+
readonly OTHER: "other";
|
|
67
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
68
|
+
};
|
|
69
|
+
export type ValidationExceptionReason =
|
|
70
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
69
71
|
export declare class ValidationException extends __BaseException {
|
|
70
72
|
readonly name: "ValidationException";
|
|
71
73
|
readonly $fault: "client";
|
|
@@ -102,10 +104,11 @@ export declare namespace Definition {
|
|
|
102
104
|
}
|
|
103
105
|
const visit: <T>(value: Definition, visitor: Visitor<T>) => T;
|
|
104
106
|
}
|
|
105
|
-
export declare
|
|
106
|
-
BLUAGE
|
|
107
|
-
MICROFOCUS
|
|
108
|
-
}
|
|
107
|
+
export declare const EngineType: {
|
|
108
|
+
readonly BLUAGE: "bluage";
|
|
109
|
+
readonly MICROFOCUS: "microfocus";
|
|
110
|
+
};
|
|
111
|
+
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
109
112
|
export interface CreateApplicationRequest {
|
|
110
113
|
name: string | undefined;
|
|
111
114
|
description?: string;
|
|
@@ -263,21 +266,25 @@ export interface DeleteApplicationFromEnvironmentResponse {}
|
|
|
263
266
|
export interface GetApplicationRequest {
|
|
264
267
|
applicationId: string | undefined;
|
|
265
268
|
}
|
|
266
|
-
export declare
|
|
267
|
-
DEPLOYING
|
|
268
|
-
FAILED
|
|
269
|
-
SUCCEEDED
|
|
270
|
-
}
|
|
269
|
+
export declare const DeploymentLifecycle: {
|
|
270
|
+
readonly DEPLOYING: "Deploying";
|
|
271
|
+
readonly FAILED: "Failed";
|
|
272
|
+
readonly SUCCEEDED: "Succeeded";
|
|
273
|
+
};
|
|
274
|
+
export type DeploymentLifecycle =
|
|
275
|
+
(typeof DeploymentLifecycle)[keyof typeof DeploymentLifecycle];
|
|
271
276
|
export interface DeployedVersionSummary {
|
|
272
277
|
applicationVersion: number | undefined;
|
|
273
278
|
status: DeploymentLifecycle | string | undefined;
|
|
274
279
|
statusReason?: string;
|
|
275
280
|
}
|
|
276
|
-
export declare
|
|
277
|
-
AVAILABLE
|
|
278
|
-
CREATING
|
|
279
|
-
FAILED
|
|
280
|
-
}
|
|
281
|
+
export declare const ApplicationVersionLifecycle: {
|
|
282
|
+
readonly AVAILABLE: "Available";
|
|
283
|
+
readonly CREATING: "Creating";
|
|
284
|
+
readonly FAILED: "Failed";
|
|
285
|
+
};
|
|
286
|
+
export type ApplicationVersionLifecycle =
|
|
287
|
+
(typeof ApplicationVersionLifecycle)[keyof typeof ApplicationVersionLifecycle];
|
|
281
288
|
export interface ApplicationVersionSummary {
|
|
282
289
|
applicationVersion: number | undefined;
|
|
283
290
|
status: ApplicationVersionLifecycle | string | undefined;
|
|
@@ -288,19 +295,21 @@ export interface LogGroupSummary {
|
|
|
288
295
|
logType: string | undefined;
|
|
289
296
|
logGroupName: string | undefined;
|
|
290
297
|
}
|
|
291
|
-
export declare
|
|
292
|
-
AVAILABLE
|
|
293
|
-
CREATED
|
|
294
|
-
CREATING
|
|
295
|
-
DELETING
|
|
296
|
-
DELETING_FROM_ENVIRONMENT
|
|
297
|
-
FAILED
|
|
298
|
-
READY
|
|
299
|
-
RUNNING
|
|
300
|
-
STARTING
|
|
301
|
-
STOPPED
|
|
302
|
-
STOPPING
|
|
303
|
-
}
|
|
298
|
+
export declare const ApplicationLifecycle: {
|
|
299
|
+
readonly AVAILABLE: "Available";
|
|
300
|
+
readonly CREATED: "Created";
|
|
301
|
+
readonly CREATING: "Creating";
|
|
302
|
+
readonly DELETING: "Deleting";
|
|
303
|
+
readonly DELETING_FROM_ENVIRONMENT: "Deleting From Environment";
|
|
304
|
+
readonly FAILED: "Failed";
|
|
305
|
+
readonly READY: "Ready";
|
|
306
|
+
readonly RUNNING: "Running";
|
|
307
|
+
readonly STARTING: "Starting";
|
|
308
|
+
readonly STOPPED: "Stopped";
|
|
309
|
+
readonly STOPPING: "Stopping";
|
|
310
|
+
};
|
|
311
|
+
export type ApplicationLifecycle =
|
|
312
|
+
(typeof ApplicationLifecycle)[keyof typeof ApplicationLifecycle];
|
|
304
313
|
export interface GetApplicationResponse {
|
|
305
314
|
name: string | undefined;
|
|
306
315
|
description?: string;
|
|
@@ -373,22 +382,25 @@ export declare namespace BatchJobIdentifier {
|
|
|
373
382
|
}
|
|
374
383
|
const visit: <T>(value: BatchJobIdentifier, visitor: Visitor<T>) => T;
|
|
375
384
|
}
|
|
376
|
-
export declare
|
|
377
|
-
JES2
|
|
378
|
-
JES3
|
|
379
|
-
VSE
|
|
380
|
-
}
|
|
381
|
-
export
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
385
|
+
export declare const BatchJobType: {
|
|
386
|
+
readonly JES2: "JES2";
|
|
387
|
+
readonly JES3: "JES3";
|
|
388
|
+
readonly VSE: "VSE";
|
|
389
|
+
};
|
|
390
|
+
export type BatchJobType = (typeof BatchJobType)[keyof typeof BatchJobType];
|
|
391
|
+
export declare const BatchJobExecutionStatus: {
|
|
392
|
+
readonly CANCELLED: "Cancelled";
|
|
393
|
+
readonly CANCELLING: "Cancelling";
|
|
394
|
+
readonly DISPATCH: "Dispatching";
|
|
395
|
+
readonly FAILED: "Failed";
|
|
396
|
+
readonly HOLDING: "Holding";
|
|
397
|
+
readonly RUNNING: "Running";
|
|
398
|
+
readonly SUBMITTING: "Submitting";
|
|
399
|
+
readonly SUCCEEDED: "Succeeded";
|
|
400
|
+
readonly SUCCEEDED_WITH_WARNING: "Succeeded With Warning";
|
|
401
|
+
};
|
|
402
|
+
export type BatchJobExecutionStatus =
|
|
403
|
+
(typeof BatchJobExecutionStatus)[keyof typeof BatchJobExecutionStatus];
|
|
392
404
|
export interface GetBatchJobExecutionResponse {
|
|
393
405
|
executionId: string | undefined;
|
|
394
406
|
applicationId: string | undefined;
|
|
@@ -460,11 +472,13 @@ export interface GetDataSetImportTaskRequest {
|
|
|
460
472
|
applicationId: string | undefined;
|
|
461
473
|
taskId: string | undefined;
|
|
462
474
|
}
|
|
463
|
-
export declare
|
|
464
|
-
COMPLETED
|
|
465
|
-
CREATING
|
|
466
|
-
RUNNING
|
|
467
|
-
}
|
|
475
|
+
export declare const DataSetTaskLifecycle: {
|
|
476
|
+
readonly COMPLETED: "Completed";
|
|
477
|
+
readonly CREATING: "Creating";
|
|
478
|
+
readonly RUNNING: "Running";
|
|
479
|
+
};
|
|
480
|
+
export type DataSetTaskLifecycle =
|
|
481
|
+
(typeof DataSetTaskLifecycle)[keyof typeof DataSetTaskLifecycle];
|
|
468
482
|
export interface DataSetImportSummary {
|
|
469
483
|
total: number | undefined;
|
|
470
484
|
succeeded: number | undefined;
|
|
@@ -496,10 +510,12 @@ export interface ListApplicationsRequest {
|
|
|
496
510
|
names?: string[];
|
|
497
511
|
environmentId?: string;
|
|
498
512
|
}
|
|
499
|
-
export declare
|
|
500
|
-
DEPLOYED
|
|
501
|
-
DEPLOYING
|
|
502
|
-
}
|
|
513
|
+
export declare const ApplicationDeploymentLifecycle: {
|
|
514
|
+
readonly DEPLOYED: "Deployed";
|
|
515
|
+
readonly DEPLOYING: "Deploying";
|
|
516
|
+
};
|
|
517
|
+
export type ApplicationDeploymentLifecycle =
|
|
518
|
+
(typeof ApplicationDeploymentLifecycle)[keyof typeof ApplicationDeploymentLifecycle];
|
|
503
519
|
export interface ApplicationSummary {
|
|
504
520
|
name: string | undefined;
|
|
505
521
|
description?: string;
|
|
@@ -745,13 +761,15 @@ export interface PendingMaintenance {
|
|
|
745
761
|
schedule?: MaintenanceSchedule;
|
|
746
762
|
engineVersion?: string;
|
|
747
763
|
}
|
|
748
|
-
export declare
|
|
749
|
-
AVAILABLE
|
|
750
|
-
CREATING
|
|
751
|
-
DELETING
|
|
752
|
-
FAILED
|
|
753
|
-
UPDATING
|
|
754
|
-
}
|
|
764
|
+
export declare const EnvironmentLifecycle: {
|
|
765
|
+
readonly AVAILABLE: "Available";
|
|
766
|
+
readonly CREATING: "Creating";
|
|
767
|
+
readonly DELETING: "Deleting";
|
|
768
|
+
readonly FAILED: "Failed";
|
|
769
|
+
readonly UPDATING: "Updating";
|
|
770
|
+
};
|
|
771
|
+
export type EnvironmentLifecycle =
|
|
772
|
+
(typeof EnvironmentLifecycle)[keyof typeof EnvironmentLifecycle];
|
|
755
773
|
export interface GetEnvironmentResponse {
|
|
756
774
|
name: string | undefined;
|
|
757
775
|
description?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-m2",
|
|
3
3
|
"description": "AWS SDK for JavaScript M2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.303.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",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|