@aws-sdk/client-m2 3.428.0 → 3.430.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.
@@ -195,7 +195,7 @@ export declare class ValidationException extends __BaseException {
195
195
  * @public
196
196
  * <p>The reason why it failed service validation.</p>
197
197
  */
198
- reason?: ValidationExceptionReason | string;
198
+ reason?: ValidationExceptionReason;
199
199
  /**
200
200
  * @public
201
201
  * <p>The list of fields that failed service validation.</p>
@@ -279,7 +279,7 @@ export interface CreateApplicationRequest {
279
279
  * @public
280
280
  * <p>The type of the target platform for this application.</p>
281
281
  */
282
- engineType: EngineType | string | undefined;
282
+ engineType: EngineType | undefined;
283
283
  /**
284
284
  * @public
285
285
  * <p>The application definition for this application. You can specify either inline JSON or
@@ -837,7 +837,7 @@ export interface DeployedVersionSummary {
837
837
  * @public
838
838
  * <p>The status of the deployment.</p>
839
839
  */
840
- status: DeploymentLifecycle | string | undefined;
840
+ status: DeploymentLifecycle | undefined;
841
841
  /**
842
842
  * @public
843
843
  * <p>The reason for the reported status.</p>
@@ -871,7 +871,7 @@ export interface ApplicationVersionSummary {
871
871
  * @public
872
872
  * <p>The status of the application.</p>
873
873
  */
874
- status: ApplicationVersionLifecycle | string | undefined;
874
+ status: ApplicationVersionLifecycle | undefined;
875
875
  /**
876
876
  * @public
877
877
  * <p>The reason for the reported status.</p>
@@ -949,7 +949,7 @@ export interface GetApplicationResponse {
949
949
  * @public
950
950
  * <p>The status of the application.</p>
951
951
  */
952
- status: ApplicationLifecycle | string | undefined;
952
+ status: ApplicationLifecycle | undefined;
953
953
  /**
954
954
  * @public
955
955
  * <p>The latest version of the application.</p>
@@ -964,7 +964,7 @@ export interface GetApplicationResponse {
964
964
  * @public
965
965
  * <p>The type of the target platform for the application.</p>
966
966
  */
967
- engineType: EngineType | string | undefined;
967
+ engineType: EngineType | undefined;
968
968
  /**
969
969
  * @public
970
970
  * <p>The list of log summaries. Each log summary includes the log type as well as the log
@@ -1078,7 +1078,7 @@ export interface GetApplicationVersionResponse {
1078
1078
  * @public
1079
1079
  * <p>The status of the application version.</p>
1080
1080
  */
1081
- status: ApplicationVersionLifecycle | string | undefined;
1081
+ status: ApplicationVersionLifecycle | undefined;
1082
1082
  /**
1083
1083
  * @public
1084
1084
  * <p>The timestamp when the application version was created.</p>
@@ -1242,12 +1242,12 @@ export interface GetBatchJobExecutionResponse {
1242
1242
  * @public
1243
1243
  * <p>The type of job.</p>
1244
1244
  */
1245
- jobType?: BatchJobType | string;
1245
+ jobType?: BatchJobType;
1246
1246
  /**
1247
1247
  * @public
1248
1248
  * <p>The status of the batch job execution.</p>
1249
1249
  */
1250
- status: BatchJobExecutionStatus | string | undefined;
1250
+ status: BatchJobExecutionStatus | undefined;
1251
1251
  /**
1252
1252
  * @public
1253
1253
  * <p>The timestamp when the batch job execution started.</p>
@@ -1576,7 +1576,7 @@ export interface GetDataSetImportTaskResponse {
1576
1576
  * @public
1577
1577
  * <p>The status of the task.</p>
1578
1578
  */
1579
- status: DataSetTaskLifecycle | string | undefined;
1579
+ status: DataSetTaskLifecycle | undefined;
1580
1580
  /**
1581
1581
  * @public
1582
1582
  * <p>A summary of the status of the task.</p>
@@ -1626,7 +1626,7 @@ export interface GetDeploymentResponse {
1626
1626
  * @public
1627
1627
  * <p>The status of the deployment.</p>
1628
1628
  */
1629
- status: DeploymentLifecycle | string | undefined;
1629
+ status: DeploymentLifecycle | undefined;
1630
1630
  /**
1631
1631
  * @public
1632
1632
  * <p>The timestamp when the deployment was created.</p>
@@ -1710,12 +1710,12 @@ export interface ApplicationSummary {
1710
1710
  * @public
1711
1711
  * <p>The status of the application.</p>
1712
1712
  */
1713
- status: ApplicationLifecycle | string | undefined;
1713
+ status: ApplicationLifecycle | undefined;
1714
1714
  /**
1715
1715
  * @public
1716
1716
  * <p>The type of the target platform for this application.</p>
1717
1717
  */
1718
- engineType: EngineType | string | undefined;
1718
+ engineType: EngineType | undefined;
1719
1719
  /**
1720
1720
  * @public
1721
1721
  * <p>The timestamp when the application was created.</p>
@@ -1736,13 +1736,13 @@ export interface ApplicationSummary {
1736
1736
  * @public
1737
1737
  * <p>Indicates the status of the latest version of the application.</p>
1738
1738
  */
1739
- versionStatus?: ApplicationVersionLifecycle | string;
1739
+ versionStatus?: ApplicationVersionLifecycle;
1740
1740
  /**
1741
1741
  * @public
1742
1742
  * <p>Indicates either an ongoing deployment or if the application has ever deployed
1743
1743
  * successfully.</p>
1744
1744
  */
1745
- deploymentStatus?: ApplicationDeploymentLifecycle | string;
1745
+ deploymentStatus?: ApplicationDeploymentLifecycle;
1746
1746
  /**
1747
1747
  * @public
1748
1748
  * <p>The Amazon Resource Name (ARN) of the role associated with the application.</p>
@@ -1951,7 +1951,7 @@ export interface ListBatchJobExecutionsRequest {
1951
1951
  * @public
1952
1952
  * <p>The status of the batch job executions.</p>
1953
1953
  */
1954
- status?: BatchJobExecutionStatus | string;
1954
+ status?: BatchJobExecutionStatus;
1955
1955
  /**
1956
1956
  * @public
1957
1957
  * <p>The time after which the batch job executions started.</p>
@@ -1992,12 +1992,12 @@ export interface BatchJobExecutionSummary {
1992
1992
  * @public
1993
1993
  * <p>The type of a particular batch job execution.</p>
1994
1994
  */
1995
- jobType?: BatchJobType | string;
1995
+ jobType?: BatchJobType;
1996
1996
  /**
1997
1997
  * @public
1998
1998
  * <p>The status of a particular batch job execution.</p>
1999
1999
  */
2000
- status: BatchJobExecutionStatus | string | undefined;
2000
+ status: BatchJobExecutionStatus | undefined;
2001
2001
  /**
2002
2002
  * @public
2003
2003
  * <p>The timestamp when a particular batch job execution started.</p>
@@ -2074,7 +2074,7 @@ export interface DataSetImportTask {
2074
2074
  * @public
2075
2075
  * <p>The status of the data set import task.</p>
2076
2076
  */
2077
- status: DataSetTaskLifecycle | string | undefined;
2077
+ status: DataSetTaskLifecycle | undefined;
2078
2078
  /**
2079
2079
  * @public
2080
2080
  * <p>A summary of the data set import task.</p>
@@ -2231,7 +2231,7 @@ export interface DeploymentSummary {
2231
2231
  * @public
2232
2232
  * <p>The current status of the deployment.</p>
2233
2233
  */
2234
- status: DeploymentLifecycle | string | undefined;
2234
+ status: DeploymentLifecycle | undefined;
2235
2235
  /**
2236
2236
  * @public
2237
2237
  * <p>The timestamp when the deployment was created.</p>
@@ -2471,7 +2471,7 @@ export interface CreateEnvironmentRequest {
2471
2471
  * @public
2472
2472
  * <p>The engine type for the runtime environment.</p>
2473
2473
  */
2474
- engineType: EngineType | string | undefined;
2474
+ engineType: EngineType | undefined;
2475
2475
  /**
2476
2476
  * @public
2477
2477
  * <p>The version of the engine type for the runtime environment.</p>
@@ -2643,12 +2643,12 @@ export interface GetEnvironmentResponse {
2643
2643
  * @public
2644
2644
  * <p>The status of the runtime environment.</p>
2645
2645
  */
2646
- status: EnvironmentLifecycle | string | undefined;
2646
+ status: EnvironmentLifecycle | undefined;
2647
2647
  /**
2648
2648
  * @public
2649
2649
  * <p>The target platform for the runtime environment.</p>
2650
2650
  */
2651
- engineType: EngineType | string | undefined;
2651
+ engineType: EngineType | undefined;
2652
2652
  /**
2653
2653
  * @public
2654
2654
  * <p>The version of the runtime engine.</p>
@@ -2756,7 +2756,7 @@ export interface ListEnvironmentsRequest {
2756
2756
  * @public
2757
2757
  * <p>The engine type for the runtime environment.</p>
2758
2758
  */
2759
- engineType?: EngineType | string;
2759
+ engineType?: EngineType;
2760
2760
  }
2761
2761
  /**
2762
2762
  * @public
@@ -2788,12 +2788,12 @@ export interface EnvironmentSummary {
2788
2788
  * @public
2789
2789
  * <p>The status of the runtime environment</p>
2790
2790
  */
2791
- status: EnvironmentLifecycle | string | undefined;
2791
+ status: EnvironmentLifecycle | undefined;
2792
2792
  /**
2793
2793
  * @public
2794
2794
  * <p>The target platform for the runtime environment.</p>
2795
2795
  */
2796
- engineType: EngineType | string | undefined;
2796
+ engineType: EngineType | undefined;
2797
2797
  /**
2798
2798
  * @public
2799
2799
  * <p>The version of the runtime engine.</p>
@@ -2890,7 +2890,7 @@ export interface ListEngineVersionsRequest {
2890
2890
  * @public
2891
2891
  * <p>The type of target platform.</p>
2892
2892
  */
2893
- engineType?: EngineType | string;
2893
+ engineType?: EngineType;
2894
2894
  /**
2895
2895
  * @public
2896
2896
  * <p>A pagination token returned from a previous call to
@@ -71,7 +71,7 @@ export type ValidationExceptionReason =
71
71
  export declare class ValidationException extends __BaseException {
72
72
  readonly name: "ValidationException";
73
73
  readonly $fault: "client";
74
- reason?: ValidationExceptionReason | string;
74
+ reason?: ValidationExceptionReason;
75
75
  fieldList?: ValidationExceptionField[];
76
76
  constructor(
77
77
  opts: __ExceptionOptionType<ValidationException, __BaseException>
@@ -112,7 +112,7 @@ export type EngineType = (typeof EngineType)[keyof typeof EngineType];
112
112
  export interface CreateApplicationRequest {
113
113
  name: string | undefined;
114
114
  description?: string;
115
- engineType: EngineType | string | undefined;
115
+ engineType: EngineType | undefined;
116
116
  definition: Definition | undefined;
117
117
  tags?: Record<string, string>;
118
118
  clientToken?: string;
@@ -309,7 +309,7 @@ export type DeploymentLifecycle =
309
309
  (typeof DeploymentLifecycle)[keyof typeof DeploymentLifecycle];
310
310
  export interface DeployedVersionSummary {
311
311
  applicationVersion: number | undefined;
312
- status: DeploymentLifecycle | string | undefined;
312
+ status: DeploymentLifecycle | undefined;
313
313
  statusReason?: string;
314
314
  }
315
315
  export declare const ApplicationVersionLifecycle: {
@@ -321,7 +321,7 @@ export type ApplicationVersionLifecycle =
321
321
  (typeof ApplicationVersionLifecycle)[keyof typeof ApplicationVersionLifecycle];
322
322
  export interface ApplicationVersionSummary {
323
323
  applicationVersion: number | undefined;
324
- status: ApplicationVersionLifecycle | string | undefined;
324
+ status: ApplicationVersionLifecycle | undefined;
325
325
  statusReason?: string;
326
326
  creationTime: Date | undefined;
327
327
  }
@@ -349,10 +349,10 @@ export interface GetApplicationResponse {
349
349
  description?: string;
350
350
  applicationId: string | undefined;
351
351
  applicationArn: string | undefined;
352
- status: ApplicationLifecycle | string | undefined;
352
+ status: ApplicationLifecycle | undefined;
353
353
  latestVersion: ApplicationVersionSummary | undefined;
354
354
  deployedVersion?: DeployedVersionSummary;
355
- engineType: EngineType | string | undefined;
355
+ engineType: EngineType | undefined;
356
356
  logGroups?: LogGroupSummary[];
357
357
  creationTime: Date | undefined;
358
358
  lastStartTime?: Date;
@@ -375,7 +375,7 @@ export interface GetApplicationVersionResponse {
375
375
  applicationVersion: number | undefined;
376
376
  description?: string;
377
377
  definitionContent: string | undefined;
378
- status: ApplicationVersionLifecycle | string | undefined;
378
+ status: ApplicationVersionLifecycle | undefined;
379
379
  creationTime: Date | undefined;
380
380
  statusReason?: string;
381
381
  }
@@ -442,8 +442,8 @@ export interface GetBatchJobExecutionResponse {
442
442
  jobId?: string;
443
443
  jobName?: string;
444
444
  jobUser?: string;
445
- jobType?: BatchJobType | string;
446
- status: BatchJobExecutionStatus | string | undefined;
445
+ jobType?: BatchJobType;
446
+ status: BatchJobExecutionStatus | undefined;
447
447
  startTime: Date | undefined;
448
448
  endTime?: Date;
449
449
  statusReason?: string;
@@ -555,7 +555,7 @@ export interface DataSetImportSummary {
555
555
  }
556
556
  export interface GetDataSetImportTaskResponse {
557
557
  taskId: string | undefined;
558
- status: DataSetTaskLifecycle | string | undefined;
558
+ status: DataSetTaskLifecycle | undefined;
559
559
  summary?: DataSetImportSummary;
560
560
  }
561
561
  export interface GetDeploymentRequest {
@@ -567,7 +567,7 @@ export interface GetDeploymentResponse {
567
567
  applicationId: string | undefined;
568
568
  environmentId: string | undefined;
569
569
  applicationVersion: number | undefined;
570
- status: DeploymentLifecycle | string | undefined;
570
+ status: DeploymentLifecycle | undefined;
571
571
  creationTime: Date | undefined;
572
572
  statusReason?: string;
573
573
  }
@@ -589,13 +589,13 @@ export interface ApplicationSummary {
589
589
  applicationId: string | undefined;
590
590
  applicationArn: string | undefined;
591
591
  applicationVersion: number | undefined;
592
- status: ApplicationLifecycle | string | undefined;
593
- engineType: EngineType | string | undefined;
592
+ status: ApplicationLifecycle | undefined;
593
+ engineType: EngineType | undefined;
594
594
  creationTime: Date | undefined;
595
595
  environmentId?: string;
596
596
  lastStartTime?: Date;
597
- versionStatus?: ApplicationVersionLifecycle | string;
598
- deploymentStatus?: ApplicationDeploymentLifecycle | string;
597
+ versionStatus?: ApplicationVersionLifecycle;
598
+ deploymentStatus?: ApplicationDeploymentLifecycle;
599
599
  roleArn?: string;
600
600
  }
601
601
  export interface ListApplicationsResponse {
@@ -661,7 +661,7 @@ export interface ListBatchJobExecutionsRequest {
661
661
  applicationId: string | undefined;
662
662
  executionIds?: string[];
663
663
  jobName?: string;
664
- status?: BatchJobExecutionStatus | string;
664
+ status?: BatchJobExecutionStatus;
665
665
  startedAfter?: Date;
666
666
  startedBefore?: Date;
667
667
  }
@@ -670,8 +670,8 @@ export interface BatchJobExecutionSummary {
670
670
  applicationId: string | undefined;
671
671
  jobId?: string;
672
672
  jobName?: string;
673
- jobType?: BatchJobType | string;
674
- status: BatchJobExecutionStatus | string | undefined;
673
+ jobType?: BatchJobType;
674
+ status: BatchJobExecutionStatus | undefined;
675
675
  startTime: Date | undefined;
676
676
  endTime?: Date;
677
677
  returnCode?: string;
@@ -688,7 +688,7 @@ export interface ListDataSetImportHistoryRequest {
688
688
  }
689
689
  export interface DataSetImportTask {
690
690
  taskId: string | undefined;
691
- status: DataSetTaskLifecycle | string | undefined;
691
+ status: DataSetTaskLifecycle | undefined;
692
692
  summary: DataSetImportSummary | undefined;
693
693
  }
694
694
  export interface ListDataSetImportHistoryResponse {
@@ -723,7 +723,7 @@ export interface DeploymentSummary {
723
723
  applicationId: string | undefined;
724
724
  environmentId: string | undefined;
725
725
  applicationVersion: number | undefined;
726
- status: DeploymentLifecycle | string | undefined;
726
+ status: DeploymentLifecycle | undefined;
727
727
  creationTime: Date | undefined;
728
728
  statusReason?: string;
729
729
  }
@@ -799,7 +799,7 @@ export interface CreateEnvironmentRequest {
799
799
  name: string | undefined;
800
800
  instanceType: string | undefined;
801
801
  description?: string;
802
- engineType: EngineType | string | undefined;
802
+ engineType: EngineType | undefined;
803
803
  engineVersion?: string;
804
804
  subnetIds?: string[];
805
805
  securityGroupIds?: string[];
@@ -844,8 +844,8 @@ export interface GetEnvironmentResponse {
844
844
  environmentArn: string | undefined;
845
845
  environmentId: string | undefined;
846
846
  instanceType: string | undefined;
847
- status: EnvironmentLifecycle | string | undefined;
848
- engineType: EngineType | string | undefined;
847
+ status: EnvironmentLifecycle | undefined;
848
+ engineType: EngineType | undefined;
849
849
  engineVersion: string | undefined;
850
850
  vpcId: string | undefined;
851
851
  subnetIds: string[] | undefined;
@@ -866,15 +866,15 @@ export interface ListEnvironmentsRequest {
866
866
  nextToken?: string;
867
867
  maxResults?: number;
868
868
  names?: string[];
869
- engineType?: EngineType | string;
869
+ engineType?: EngineType;
870
870
  }
871
871
  export interface EnvironmentSummary {
872
872
  name: string | undefined;
873
873
  environmentArn: string | undefined;
874
874
  environmentId: string | undefined;
875
875
  instanceType: string | undefined;
876
- status: EnvironmentLifecycle | string | undefined;
877
- engineType: EngineType | string | undefined;
876
+ status: EnvironmentLifecycle | undefined;
877
+ engineType: EngineType | undefined;
878
878
  engineVersion: string | undefined;
879
879
  creationTime: Date | undefined;
880
880
  }
@@ -897,7 +897,7 @@ export interface GetSignedBluinsightsUrlResponse {
897
897
  signedBiUrl: string | undefined;
898
898
  }
899
899
  export interface ListEngineVersionsRequest {
900
- engineType?: EngineType | string;
900
+ engineType?: EngineType;
901
901
  nextToken?: string;
902
902
  maxResults?: number;
903
903
  }
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.428.0",
4
+ "version": "3.430.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,28 +21,28 @@
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.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",