@aws-sdk/client-m2 3.687.0 → 3.691.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-types/models/models_0.d.ts +189 -189
- package/dist-types/ts3.4/models/models_0.d.ts +189 -189
- package/package.json +7 -7
|
@@ -23,7 +23,7 @@ export interface AlternateKey {
|
|
|
23
23
|
* <p>The name of the alternate key.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
name?: string;
|
|
26
|
+
name?: string | undefined;
|
|
27
27
|
/**
|
|
28
28
|
* <p>A positive integer value representing the offset to mark the start of the alternate key
|
|
29
29
|
* part in the record byte array.</p>
|
|
@@ -40,7 +40,7 @@ export interface AlternateKey {
|
|
|
40
40
|
* set.</p>
|
|
41
41
|
* @public
|
|
42
42
|
*/
|
|
43
|
-
allowDuplicates?: boolean;
|
|
43
|
+
allowDuplicates?: boolean | undefined;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* @public
|
|
@@ -60,7 +60,7 @@ export interface CancelBatchJobExecutionRequest {
|
|
|
60
60
|
* <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Cancel Batch Job Execution operation.</p>
|
|
61
61
|
* @public
|
|
62
62
|
*/
|
|
63
|
-
authSecretsManagerArn?: string;
|
|
63
|
+
authSecretsManagerArn?: string | undefined;
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
66
|
* @public
|
|
@@ -78,12 +78,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
78
78
|
* <p>The ID of the conflicting resource.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
resourceId?: string;
|
|
81
|
+
resourceId?: string | undefined;
|
|
82
82
|
/**
|
|
83
83
|
* <p>The type of the conflicting resource.</p>
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
|
-
resourceType?: string;
|
|
86
|
+
resourceType?: string | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* @internal
|
|
89
89
|
*/
|
|
@@ -101,7 +101,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
101
101
|
* <p>The number of seconds to wait before retrying the request.</p>
|
|
102
102
|
* @public
|
|
103
103
|
*/
|
|
104
|
-
retryAfterSeconds?: number;
|
|
104
|
+
retryAfterSeconds?: number | undefined;
|
|
105
105
|
/**
|
|
106
106
|
* @internal
|
|
107
107
|
*/
|
|
@@ -118,12 +118,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
118
118
|
* <p>The ID of the missing resource.</p>
|
|
119
119
|
* @public
|
|
120
120
|
*/
|
|
121
|
-
resourceId?: string;
|
|
121
|
+
resourceId?: string | undefined;
|
|
122
122
|
/**
|
|
123
123
|
* <p>The type of the missing resource.</p>
|
|
124
124
|
* @public
|
|
125
125
|
*/
|
|
126
|
-
resourceType?: string;
|
|
126
|
+
resourceType?: string | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* @internal
|
|
129
129
|
*/
|
|
@@ -143,17 +143,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
143
143
|
* <p>The identifier of the service that the throttled request was made to.</p>
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
|
-
serviceCode?: string;
|
|
146
|
+
serviceCode?: string | undefined;
|
|
147
147
|
/**
|
|
148
148
|
* <p>The identifier of the throttled request.</p>
|
|
149
149
|
* @public
|
|
150
150
|
*/
|
|
151
|
-
quotaCode?: string;
|
|
151
|
+
quotaCode?: string | undefined;
|
|
152
152
|
/**
|
|
153
153
|
* <p>The number of seconds to wait before retrying the request.</p>
|
|
154
154
|
* @public
|
|
155
155
|
*/
|
|
156
|
-
retryAfterSeconds?: number;
|
|
156
|
+
retryAfterSeconds?: number | undefined;
|
|
157
157
|
/**
|
|
158
158
|
* @internal
|
|
159
159
|
*/
|
|
@@ -202,12 +202,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
202
202
|
* <p>The reason why it failed service validation.</p>
|
|
203
203
|
* @public
|
|
204
204
|
*/
|
|
205
|
-
reason?: ValidationExceptionReason;
|
|
205
|
+
reason?: ValidationExceptionReason | undefined;
|
|
206
206
|
/**
|
|
207
207
|
* <p>The list of fields that failed service validation.</p>
|
|
208
208
|
* @public
|
|
209
209
|
*/
|
|
210
|
-
fieldList?: ValidationExceptionField[];
|
|
210
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* @internal
|
|
213
213
|
*/
|
|
@@ -281,7 +281,7 @@ export interface CreateApplicationRequest {
|
|
|
281
281
|
* <p>The description of the application.</p>
|
|
282
282
|
* @public
|
|
283
283
|
*/
|
|
284
|
-
description?: string;
|
|
284
|
+
description?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>The type of the target platform for this application.</p>
|
|
287
287
|
* @public
|
|
@@ -297,24 +297,24 @@ export interface CreateApplicationRequest {
|
|
|
297
297
|
* <p>A list of tags to apply to the application.</p>
|
|
298
298
|
* @public
|
|
299
299
|
*/
|
|
300
|
-
tags?: Record<string, string
|
|
300
|
+
tags?: Record<string, string> | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* <p>A client token is a unique, case-sensitive string of up to 128 ASCII characters with ASCII values of 33-126 inclusive.
|
|
303
303
|
* It's generated by the client to ensure idempotent operations, allowing for safe retries without unintended side effects.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
clientToken?: string;
|
|
306
|
+
clientToken?: string | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>The identifier of a customer managed key.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
kmsKeyId?: string;
|
|
311
|
+
kmsKeyId?: string | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>The Amazon Resource Name (ARN) that identifies a role that the application uses to access Amazon Web Services resources
|
|
314
314
|
* that are not part of the application or are in a different Amazon Web Services account.</p>
|
|
315
315
|
* @public
|
|
316
316
|
*/
|
|
317
|
-
roleArn?: string;
|
|
317
|
+
roleArn?: string | undefined;
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
320
|
* @public
|
|
@@ -347,22 +347,22 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
347
347
|
* <p>The ID of the resource that is exceeding the quota limit.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
resourceId?: string;
|
|
350
|
+
resourceId?: string | undefined;
|
|
351
351
|
/**
|
|
352
352
|
* <p>The type of resource that is exceeding the quota limit for Amazon Web Services Mainframe Modernization.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
resourceType?: string;
|
|
355
|
+
resourceType?: string | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* <p>A code that identifies the service that the exceeded quota belongs to.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
serviceCode?: string;
|
|
360
|
+
serviceCode?: string | undefined;
|
|
361
361
|
/**
|
|
362
362
|
* <p>The identifier of the exceeded quota.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
|
-
quotaCode?: string;
|
|
365
|
+
quotaCode?: string | undefined;
|
|
366
366
|
/**
|
|
367
367
|
* @internal
|
|
368
368
|
*/
|
|
@@ -381,12 +381,12 @@ export interface GdgAttributes {
|
|
|
381
381
|
* <p>The maximum number of generation data sets, up to 255, in a GDG.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
limit?: number;
|
|
384
|
+
limit?: number | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>The disposition of the data set in the catalog.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
rollDisposition?: string;
|
|
389
|
+
rollDisposition?: string | undefined;
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* <p>The supported properties for a PO type data set.</p>
|
|
@@ -402,7 +402,7 @@ export interface PoAttributes {
|
|
|
402
402
|
* <p>The character set encoding of the data set.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
encoding?: string;
|
|
405
|
+
encoding?: string | undefined;
|
|
406
406
|
/**
|
|
407
407
|
* <p>An array containing one or more filename extensions, allowing you to specify which files
|
|
408
408
|
* to be included as PDS member.</p>
|
|
@@ -424,7 +424,7 @@ export interface PsAttributes {
|
|
|
424
424
|
* <p>The character set encoding of the data set.</p>
|
|
425
425
|
* @public
|
|
426
426
|
*/
|
|
427
|
-
encoding?: string;
|
|
427
|
+
encoding?: string | undefined;
|
|
428
428
|
}
|
|
429
429
|
/**
|
|
430
430
|
* <p>The primary key for a KSDS data set.</p>
|
|
@@ -435,7 +435,7 @@ export interface PrimaryKey {
|
|
|
435
435
|
* <p>A name for the Primary Key.</p>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
name?: string;
|
|
438
|
+
name?: string | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* <p>A positive integer value representing the offset to mark the start of the primary key in
|
|
441
441
|
* the record byte array.</p>
|
|
@@ -462,25 +462,25 @@ export interface VsamAttributes {
|
|
|
462
462
|
* <p>The character set used by the data set. Can be ASCII, EBCDIC, or unknown.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
encoding?: string;
|
|
465
|
+
encoding?: string | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>Indicates whether indexes for this dataset are stored as compressed values. If you have
|
|
468
468
|
* a large data set (typically > 100 Mb), consider setting this flag to True.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
compressed?: boolean;
|
|
471
|
+
compressed?: boolean | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>The primary key of the data set.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
primaryKey?: PrimaryKey;
|
|
476
|
+
primaryKey?: PrimaryKey | undefined;
|
|
477
477
|
/**
|
|
478
478
|
* <p>The alternate key definitions, if any. A legacy dataset might not have any alternate key
|
|
479
479
|
* defined, but if those alternate keys definitions exist, provide them as some applications
|
|
480
480
|
* will make use of them.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
alternateKeys?: AlternateKey[];
|
|
483
|
+
alternateKeys?: AlternateKey[] | undefined;
|
|
484
484
|
}
|
|
485
485
|
/**
|
|
486
486
|
* <p>Additional details about the data set. Different attributes correspond to different data
|
|
@@ -584,7 +584,7 @@ export interface DataSet {
|
|
|
584
584
|
* support of file system and database corresponds to Blusam. </p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
storageType?: string;
|
|
587
|
+
storageType?: string | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The logical identifier for a specific data set (in mainframe format).</p>
|
|
590
590
|
* @public
|
|
@@ -599,7 +599,7 @@ export interface DataSet {
|
|
|
599
599
|
* <p>The relative location of the data set in the database or file system. </p>
|
|
600
600
|
* @public
|
|
601
601
|
*/
|
|
602
|
-
relativePath?: string;
|
|
602
|
+
relativePath?: string | undefined;
|
|
603
603
|
/**
|
|
604
604
|
* <p>The length of a record.</p>
|
|
605
605
|
* @public
|
|
@@ -716,7 +716,7 @@ export interface CreateDataSetImportTaskRequest {
|
|
|
716
716
|
* deleting the clientToken after it expires. </p>
|
|
717
717
|
* @public
|
|
718
718
|
*/
|
|
719
|
-
clientToken?: string;
|
|
719
|
+
clientToken?: string | undefined;
|
|
720
720
|
}
|
|
721
721
|
/**
|
|
722
722
|
* @public
|
|
@@ -756,7 +756,7 @@ export interface CreateDeploymentRequest {
|
|
|
756
756
|
* deleting the clientToken after it expires. </p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
|
-
clientToken?: string;
|
|
759
|
+
clientToken?: string | undefined;
|
|
760
760
|
}
|
|
761
761
|
/**
|
|
762
762
|
* @public
|
|
@@ -847,7 +847,7 @@ export interface DeployedVersionSummary {
|
|
|
847
847
|
* <p>The reason for the reported status.</p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
statusReason?: string;
|
|
850
|
+
statusReason?: string | undefined;
|
|
851
851
|
}
|
|
852
852
|
/**
|
|
853
853
|
* @public
|
|
@@ -881,7 +881,7 @@ export interface ApplicationVersionSummary {
|
|
|
881
881
|
* <p>The reason for the reported status.</p>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
statusReason?: string;
|
|
884
|
+
statusReason?: string | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p>The timestamp when the application version was created.</p>
|
|
887
887
|
* @public
|
|
@@ -939,7 +939,7 @@ export interface GetApplicationResponse {
|
|
|
939
939
|
* <p>The description of the application.</p>
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
|
-
description?: string;
|
|
942
|
+
description?: string | undefined;
|
|
943
943
|
/**
|
|
944
944
|
* <p>The identifier of the application.</p>
|
|
945
945
|
* @public
|
|
@@ -964,7 +964,7 @@ export interface GetApplicationResponse {
|
|
|
964
964
|
* <p>The version of the application that is deployed.</p>
|
|
965
965
|
* @public
|
|
966
966
|
*/
|
|
967
|
-
deployedVersion?: DeployedVersionSummary;
|
|
967
|
+
deployedVersion?: DeployedVersionSummary | undefined;
|
|
968
968
|
/**
|
|
969
969
|
* <p>The type of the target platform for the application.</p>
|
|
970
970
|
* @public
|
|
@@ -976,7 +976,7 @@ export interface GetApplicationResponse {
|
|
|
976
976
|
* the customer's account.</p>
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
logGroups?: LogGroupSummary[];
|
|
979
|
+
logGroups?: LogGroupSummary[] | undefined;
|
|
980
980
|
/**
|
|
981
981
|
* <p>The timestamp when this application was created.</p>
|
|
982
982
|
* @public
|
|
@@ -987,57 +987,57 @@ export interface GetApplicationResponse {
|
|
|
987
987
|
* the first time.</p>
|
|
988
988
|
* @public
|
|
989
989
|
*/
|
|
990
|
-
lastStartTime?: Date;
|
|
990
|
+
lastStartTime?: Date | undefined;
|
|
991
991
|
/**
|
|
992
992
|
* <p>A list of tags associated with the application.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
tags?: Record<string, string
|
|
995
|
+
tags?: Record<string, string> | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>The identifier of the runtime environment where you want to deploy the
|
|
998
998
|
* application.</p>
|
|
999
999
|
* @public
|
|
1000
1000
|
*/
|
|
1001
|
-
environmentId?: string;
|
|
1001
|
+
environmentId?: string | undefined;
|
|
1002
1002
|
/**
|
|
1003
1003
|
* <p>Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the
|
|
1004
1004
|
* network load balancer.</p>
|
|
1005
1005
|
* @public
|
|
1006
1006
|
*/
|
|
1007
|
-
targetGroupArns?: string[];
|
|
1007
|
+
targetGroupArns?: string[] | undefined;
|
|
1008
1008
|
/**
|
|
1009
1009
|
* <p>The Amazon Resource Name (ARN) for the network load balancer listener created in your
|
|
1010
1010
|
* Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an
|
|
1011
1011
|
* application.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
listenerArns?: string[];
|
|
1014
|
+
listenerArns?: string[] | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The port associated with the network load balancer listener created in your Amazon Web Services
|
|
1017
1017
|
* account.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
listenerPorts?: number[];
|
|
1020
|
+
listenerPorts?: number[] | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>The public DNS name of the load balancer created in your Amazon Web Services account.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
loadBalancerDnsName?: string;
|
|
1025
|
+
loadBalancerDnsName?: string | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>The reason for the reported status.</p>
|
|
1028
1028
|
* @public
|
|
1029
1029
|
*/
|
|
1030
|
-
statusReason?: string;
|
|
1030
|
+
statusReason?: string | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* <p>The identifier of a customer managed key.</p>
|
|
1033
1033
|
* @public
|
|
1034
1034
|
*/
|
|
1035
|
-
kmsKeyId?: string;
|
|
1035
|
+
kmsKeyId?: string | undefined;
|
|
1036
1036
|
/**
|
|
1037
1037
|
* <p>The Amazon Resource Name (ARN) of the role associated with the application.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
roleArn?: string;
|
|
1040
|
+
roleArn?: string | undefined;
|
|
1041
1041
|
}
|
|
1042
1042
|
/**
|
|
1043
1043
|
* @public
|
|
@@ -1072,7 +1072,7 @@ export interface GetApplicationVersionResponse {
|
|
|
1072
1072
|
* <p>The application description.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
description?: string;
|
|
1075
|
+
description?: string | undefined;
|
|
1076
1076
|
/**
|
|
1077
1077
|
* <p>The content of the application definition. This is a JSON object that contains the
|
|
1078
1078
|
* resource configuration and definitions that identify an application.</p>
|
|
@@ -1093,7 +1093,7 @@ export interface GetApplicationVersionResponse {
|
|
|
1093
1093
|
* <p>The reason for the reported status.</p>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
statusReason?: string;
|
|
1096
|
+
statusReason?: string | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
/**
|
|
1099
1099
|
* @public
|
|
@@ -1125,7 +1125,7 @@ export interface FileBatchJobIdentifier {
|
|
|
1125
1125
|
* <p>The relative path to the file name for the batch job identifier.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
folderPath?: string;
|
|
1128
|
+
folderPath?: string | undefined;
|
|
1129
1129
|
}
|
|
1130
1130
|
/**
|
|
1131
1131
|
* <p>Provides step/procedure step information for a restart batch job operation.</p>
|
|
@@ -1141,17 +1141,17 @@ export interface JobStepRestartMarker {
|
|
|
1141
1141
|
* <p>The procedure step name that a batch job was restarted from.</p>
|
|
1142
1142
|
* @public
|
|
1143
1143
|
*/
|
|
1144
|
-
fromProcStep?: string;
|
|
1144
|
+
fromProcStep?: string | undefined;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* <p>The step name that a batch job was restarted to.</p>
|
|
1147
1147
|
* @public
|
|
1148
1148
|
*/
|
|
1149
|
-
toStep?: string;
|
|
1149
|
+
toStep?: string | undefined;
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>The procedure step name that a batch job was restarted to.</p>
|
|
1152
1152
|
* @public
|
|
1153
1153
|
*/
|
|
1154
|
-
toProcStep?: string;
|
|
1154
|
+
toProcStep?: string | undefined;
|
|
1155
1155
|
}
|
|
1156
1156
|
/**
|
|
1157
1157
|
* <p>An identifier for the <code>StartBatchJob</code> API to show that it is a restart operation.</p>
|
|
@@ -1225,7 +1225,7 @@ export interface S3BatchJobIdentifier {
|
|
|
1225
1225
|
* <p>The key prefix that specifies the path to the folder in the S3 bucket that has the batch job definitions.</p>
|
|
1226
1226
|
* @public
|
|
1227
1227
|
*/
|
|
1228
|
-
keyPrefix?: string;
|
|
1228
|
+
keyPrefix?: string | undefined;
|
|
1229
1229
|
/**
|
|
1230
1230
|
* <p>Identifies the batch job definition. This identifier can also point to any batch job definition that already exists in the application or to one of the batch job definitions within the directory that is specified in <code>keyPrefix</code>.</p>
|
|
1231
1231
|
* @public
|
|
@@ -1368,22 +1368,22 @@ export interface GetBatchJobExecutionResponse {
|
|
|
1368
1368
|
* <p>The unique identifier for this batch job.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
jobId?: string;
|
|
1371
|
+
jobId?: string | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>The name of this batch job.</p>
|
|
1374
1374
|
* @public
|
|
1375
1375
|
*/
|
|
1376
|
-
jobName?: string;
|
|
1376
|
+
jobName?: string | undefined;
|
|
1377
1377
|
/**
|
|
1378
1378
|
* <p>The user for the job.</p>
|
|
1379
1379
|
* @public
|
|
1380
1380
|
*/
|
|
1381
|
-
jobUser?: string;
|
|
1381
|
+
jobUser?: string | undefined;
|
|
1382
1382
|
/**
|
|
1383
1383
|
* <p>The type of job.</p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
jobType?: BatchJobType;
|
|
1386
|
+
jobType?: BatchJobType | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* <p>The status of the batch job execution.</p>
|
|
1389
1389
|
* @public
|
|
@@ -1398,12 +1398,12 @@ export interface GetBatchJobExecutionResponse {
|
|
|
1398
1398
|
* <p>The timestamp when the batch job execution ended.</p>
|
|
1399
1399
|
* @public
|
|
1400
1400
|
*/
|
|
1401
|
-
endTime?: Date;
|
|
1401
|
+
endTime?: Date | undefined;
|
|
1402
1402
|
/**
|
|
1403
1403
|
* <p>The reason for the reported status.</p>
|
|
1404
1404
|
* @public
|
|
1405
1405
|
*/
|
|
1406
|
-
statusReason?: string;
|
|
1406
|
+
statusReason?: string | undefined;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* <p>The batch job return code from either the Blu Age or Micro Focus runtime engines. For more
|
|
1409
1409
|
* information, see <a href="https://www.ibm.com/docs/en/was/8.5.5?topic=model-batch-return-codes">Batch return
|
|
@@ -1411,17 +1411,17 @@ export interface GetBatchJobExecutionResponse {
|
|
|
1411
1411
|
* documentation.</p>
|
|
1412
1412
|
* @public
|
|
1413
1413
|
*/
|
|
1414
|
-
returnCode?: string;
|
|
1414
|
+
returnCode?: string | undefined;
|
|
1415
1415
|
/**
|
|
1416
1416
|
* <p>The unique identifier of this batch job.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
batchJobIdentifier?: BatchJobIdentifier;
|
|
1419
|
+
batchJobIdentifier?: BatchJobIdentifier | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>The step/procedure step information for the restart batch job operation.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
jobStepRestartMarker?: JobStepRestartMarker;
|
|
1424
|
+
jobStepRestartMarker?: JobStepRestartMarker | undefined;
|
|
1425
1425
|
}
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p> Failed to connect to server, or didn’t receive response within expected time period.</p>
|
|
@@ -1464,12 +1464,12 @@ export interface GdgDetailAttributes {
|
|
|
1464
1464
|
* <p>The maximum number of generation data sets, up to 255, in a GDG.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
limit?: number;
|
|
1467
|
+
limit?: number | undefined;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* <p>The disposition of the data set in the catalog.</p>
|
|
1470
1470
|
* @public
|
|
1471
1471
|
*/
|
|
1472
|
-
rollDisposition?: string;
|
|
1472
|
+
rollDisposition?: string | undefined;
|
|
1473
1473
|
}
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <p>The supported properties for a PO type data set.</p>
|
|
@@ -1512,36 +1512,36 @@ export interface VsamDetailAttributes {
|
|
|
1512
1512
|
* <p>The character set used by the data set. Can be ASCII, EBCDIC, or unknown.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
encoding?: string;
|
|
1515
|
+
encoding?: string | undefined;
|
|
1516
1516
|
/**
|
|
1517
1517
|
* <p>The record format of the data set.</p>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
recordFormat?: string;
|
|
1520
|
+
recordFormat?: string | undefined;
|
|
1521
1521
|
/**
|
|
1522
1522
|
* <p>Indicates whether indexes for this dataset are stored as compressed values. If you have
|
|
1523
1523
|
* a large data set (typically > 100 Mb), consider setting this flag to True.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
compressed?: boolean;
|
|
1526
|
+
compressed?: boolean | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>If set to True, enforces loading the data set into cache before it’s used by the
|
|
1529
1529
|
* application.</p>
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
cacheAtStartup?: boolean;
|
|
1532
|
+
cacheAtStartup?: boolean | undefined;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* <p>The primary key of the data set.</p>
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
primaryKey?: PrimaryKey;
|
|
1537
|
+
primaryKey?: PrimaryKey | undefined;
|
|
1538
1538
|
/**
|
|
1539
1539
|
* <p>The alternate key definitions, if any. A legacy dataset might not have any alternate key
|
|
1540
1540
|
* defined, but if those alternate keys definitions exist, provide them as some applications
|
|
1541
1541
|
* will make use of them.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
alternateKeys?: AlternateKey[];
|
|
1544
|
+
alternateKeys?: AlternateKey[] | undefined;
|
|
1545
1545
|
}
|
|
1546
1546
|
/**
|
|
1547
1547
|
* <p>Additional details about the data set. Different attributes correspond to different data
|
|
@@ -1630,42 +1630,42 @@ export interface GetDataSetDetailsResponse {
|
|
|
1630
1630
|
* <p>The type of data set. The only supported value is VSAM.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
dataSetOrg?: DatasetDetailOrgAttributes;
|
|
1633
|
+
dataSetOrg?: DatasetDetailOrgAttributes | undefined;
|
|
1634
1634
|
/**
|
|
1635
1635
|
* <p>The length of records in the data set.</p>
|
|
1636
1636
|
* @public
|
|
1637
1637
|
*/
|
|
1638
|
-
recordLength?: number;
|
|
1638
|
+
recordLength?: number | undefined;
|
|
1639
1639
|
/**
|
|
1640
1640
|
* <p>The location where the data set is stored.</p>
|
|
1641
1641
|
* @public
|
|
1642
1642
|
*/
|
|
1643
|
-
location?: string;
|
|
1643
|
+
location?: string | undefined;
|
|
1644
1644
|
/**
|
|
1645
1645
|
* <p>The size of the block on disk. </p>
|
|
1646
1646
|
* @public
|
|
1647
1647
|
*/
|
|
1648
|
-
blocksize?: number;
|
|
1648
|
+
blocksize?: number | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>The timestamp when the data set was created.</p>
|
|
1651
1651
|
* @public
|
|
1652
1652
|
*/
|
|
1653
|
-
creationTime?: Date;
|
|
1653
|
+
creationTime?: Date | undefined;
|
|
1654
1654
|
/**
|
|
1655
1655
|
* <p>The last time the data set was updated.</p>
|
|
1656
1656
|
* @public
|
|
1657
1657
|
*/
|
|
1658
|
-
lastUpdatedTime?: Date;
|
|
1658
|
+
lastUpdatedTime?: Date | undefined;
|
|
1659
1659
|
/**
|
|
1660
1660
|
* <p>The last time the data set was referenced.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
lastReferencedTime?: Date;
|
|
1663
|
+
lastReferencedTime?: Date | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>File size of the dataset.</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
fileSize?: number;
|
|
1668
|
+
fileSize?: number | undefined;
|
|
1669
1669
|
}
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>Server cannot process the request at the moment.</p>
|
|
@@ -1759,7 +1759,7 @@ export interface GetDataSetImportTaskResponse {
|
|
|
1759
1759
|
* <p>A summary of the status of the task.</p>
|
|
1760
1760
|
* @public
|
|
1761
1761
|
*/
|
|
1762
|
-
summary?: DataSetImportSummary;
|
|
1762
|
+
summary?: DataSetImportSummary | undefined;
|
|
1763
1763
|
}
|
|
1764
1764
|
/**
|
|
1765
1765
|
* @public
|
|
@@ -1814,7 +1814,7 @@ export interface GetDeploymentResponse {
|
|
|
1814
1814
|
* <p>The reason for the reported status.</p>
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
statusReason?: string;
|
|
1817
|
+
statusReason?: string | undefined;
|
|
1818
1818
|
}
|
|
1819
1819
|
/**
|
|
1820
1820
|
* @public
|
|
@@ -1824,23 +1824,23 @@ export interface ListApplicationsRequest {
|
|
|
1824
1824
|
* <p>A pagination token to control the number of applications displayed in the list.</p>
|
|
1825
1825
|
* @public
|
|
1826
1826
|
*/
|
|
1827
|
-
nextToken?: string;
|
|
1827
|
+
nextToken?: string | undefined;
|
|
1828
1828
|
/**
|
|
1829
1829
|
* <p>The maximum number of applications to return.</p>
|
|
1830
1830
|
* @public
|
|
1831
1831
|
*/
|
|
1832
|
-
maxResults?: number;
|
|
1832
|
+
maxResults?: number | undefined;
|
|
1833
1833
|
/**
|
|
1834
1834
|
* <p>The names of the applications.</p>
|
|
1835
1835
|
* @public
|
|
1836
1836
|
*/
|
|
1837
|
-
names?: string[];
|
|
1837
|
+
names?: string[] | undefined;
|
|
1838
1838
|
/**
|
|
1839
1839
|
* <p>The unique identifier of the runtime environment where the applications are
|
|
1840
1840
|
* deployed.</p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
environmentId?: string;
|
|
1843
|
+
environmentId?: string | undefined;
|
|
1844
1844
|
}
|
|
1845
1845
|
/**
|
|
1846
1846
|
* @public
|
|
@@ -1868,7 +1868,7 @@ export interface ApplicationSummary {
|
|
|
1868
1868
|
* <p>The description of the application.</p>
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
description?: string;
|
|
1871
|
+
description?: string | undefined;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* <p>The unique identifier of the application.</p>
|
|
1874
1874
|
* @public
|
|
@@ -1903,29 +1903,29 @@ export interface ApplicationSummary {
|
|
|
1903
1903
|
* <p>The unique identifier of the runtime environment that hosts this application.</p>
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
environmentId?: string;
|
|
1906
|
+
environmentId?: string | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>The timestamp when you last started the application. Null until the application runs for
|
|
1909
1909
|
* the first time.</p>
|
|
1910
1910
|
* @public
|
|
1911
1911
|
*/
|
|
1912
|
-
lastStartTime?: Date;
|
|
1912
|
+
lastStartTime?: Date | undefined;
|
|
1913
1913
|
/**
|
|
1914
1914
|
* <p>Indicates the status of the latest version of the application.</p>
|
|
1915
1915
|
* @public
|
|
1916
1916
|
*/
|
|
1917
|
-
versionStatus?: ApplicationVersionLifecycle;
|
|
1917
|
+
versionStatus?: ApplicationVersionLifecycle | undefined;
|
|
1918
1918
|
/**
|
|
1919
1919
|
* <p>Indicates either an ongoing deployment or if the application has ever deployed
|
|
1920
1920
|
* successfully.</p>
|
|
1921
1921
|
* @public
|
|
1922
1922
|
*/
|
|
1923
|
-
deploymentStatus?: ApplicationDeploymentLifecycle;
|
|
1923
|
+
deploymentStatus?: ApplicationDeploymentLifecycle | undefined;
|
|
1924
1924
|
/**
|
|
1925
1925
|
* <p>The Amazon Resource Name (ARN) of the role associated with the application.</p>
|
|
1926
1926
|
* @public
|
|
1927
1927
|
*/
|
|
1928
|
-
roleArn?: string;
|
|
1928
|
+
roleArn?: string | undefined;
|
|
1929
1929
|
}
|
|
1930
1930
|
/**
|
|
1931
1931
|
* @public
|
|
@@ -1942,7 +1942,7 @@ export interface ListApplicationsResponse {
|
|
|
1942
1942
|
* applications.</p>
|
|
1943
1943
|
* @public
|
|
1944
1944
|
*/
|
|
1945
|
-
nextToken?: string;
|
|
1945
|
+
nextToken?: string | undefined;
|
|
1946
1946
|
}
|
|
1947
1947
|
/**
|
|
1948
1948
|
* @public
|
|
@@ -1954,12 +1954,12 @@ export interface ListApplicationVersionsRequest {
|
|
|
1954
1954
|
* list, exclude this parameter.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
nextToken?: string;
|
|
1957
|
+
nextToken?: string | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>The maximum number of application versions to return.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
maxResults?: number;
|
|
1962
|
+
maxResults?: number | undefined;
|
|
1963
1963
|
/**
|
|
1964
1964
|
* <p>The unique identifier of the application.</p>
|
|
1965
1965
|
* @public
|
|
@@ -1980,7 +1980,7 @@ export interface ListApplicationVersionsResponse {
|
|
|
1980
1980
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
nextToken?: string;
|
|
1983
|
+
nextToken?: string | undefined;
|
|
1984
1984
|
}
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
@@ -1992,12 +1992,12 @@ export interface ListBatchJobDefinitionsRequest {
|
|
|
1992
1992
|
* list, exclude this parameter.</p>
|
|
1993
1993
|
* @public
|
|
1994
1994
|
*/
|
|
1995
|
-
nextToken?: string;
|
|
1995
|
+
nextToken?: string | undefined;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* <p>The maximum number of batch job definitions to return.</p>
|
|
1998
1998
|
* @public
|
|
1999
1999
|
*/
|
|
2000
|
-
maxResults?: number;
|
|
2000
|
+
maxResults?: number | undefined;
|
|
2001
2001
|
/**
|
|
2002
2002
|
* <p>The identifier of the application.</p>
|
|
2003
2003
|
* @public
|
|
@@ -2008,7 +2008,7 @@ export interface ListBatchJobDefinitionsRequest {
|
|
|
2008
2008
|
* on the file names of FileBatchJobDefinitions.</p>
|
|
2009
2009
|
* @public
|
|
2010
2010
|
*/
|
|
2011
|
-
prefix?: string;
|
|
2011
|
+
prefix?: string | undefined;
|
|
2012
2012
|
}
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>A file containing a batch job definition.</p>
|
|
@@ -2024,7 +2024,7 @@ export interface FileBatchJobDefinition {
|
|
|
2024
2024
|
* <p>The path to the file containing the batch job definition.</p>
|
|
2025
2025
|
* @public
|
|
2026
2026
|
*/
|
|
2027
|
-
folderPath?: string;
|
|
2027
|
+
folderPath?: string | undefined;
|
|
2028
2028
|
}
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>A batch job definition contained in a script.</p>
|
|
@@ -2093,7 +2093,7 @@ export interface ListBatchJobDefinitionsResponse {
|
|
|
2093
2093
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
2094
2094
|
* @public
|
|
2095
2095
|
*/
|
|
2096
|
-
nextToken?: string;
|
|
2096
|
+
nextToken?: string | undefined;
|
|
2097
2097
|
}
|
|
2098
2098
|
/**
|
|
2099
2099
|
* @public
|
|
@@ -2104,12 +2104,12 @@ export interface ListBatchJobExecutionsRequest {
|
|
|
2104
2104
|
* list.</p>
|
|
2105
2105
|
* @public
|
|
2106
2106
|
*/
|
|
2107
|
-
nextToken?: string;
|
|
2107
|
+
nextToken?: string | undefined;
|
|
2108
2108
|
/**
|
|
2109
2109
|
* <p>The maximum number of batch job executions to return.</p>
|
|
2110
2110
|
* @public
|
|
2111
2111
|
*/
|
|
2112
|
-
maxResults?: number;
|
|
2112
|
+
maxResults?: number | undefined;
|
|
2113
2113
|
/**
|
|
2114
2114
|
* <p>The unique identifier of the application.</p>
|
|
2115
2115
|
* @public
|
|
@@ -2119,27 +2119,27 @@ export interface ListBatchJobExecutionsRequest {
|
|
|
2119
2119
|
* <p>The unique identifier of each batch job execution.</p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
executionIds?: string[];
|
|
2122
|
+
executionIds?: string[] | undefined;
|
|
2123
2123
|
/**
|
|
2124
2124
|
* <p>The name of each batch job execution.</p>
|
|
2125
2125
|
* @public
|
|
2126
2126
|
*/
|
|
2127
|
-
jobName?: string;
|
|
2127
|
+
jobName?: string | undefined;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* <p>The status of the batch job executions.</p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
status?: BatchJobExecutionStatus;
|
|
2132
|
+
status?: BatchJobExecutionStatus | undefined;
|
|
2133
2133
|
/**
|
|
2134
2134
|
* <p>The time after which the batch job executions started.</p>
|
|
2135
2135
|
* @public
|
|
2136
2136
|
*/
|
|
2137
|
-
startedAfter?: Date;
|
|
2137
|
+
startedAfter?: Date | undefined;
|
|
2138
2138
|
/**
|
|
2139
2139
|
* <p>The time before the batch job executions started.</p>
|
|
2140
2140
|
* @public
|
|
2141
2141
|
*/
|
|
2142
|
-
startedBefore?: Date;
|
|
2142
|
+
startedBefore?: Date | undefined;
|
|
2143
2143
|
}
|
|
2144
2144
|
/**
|
|
2145
2145
|
* <p>A subset of the possible batch job attributes. Used in the batch job list.</p>
|
|
@@ -2160,17 +2160,17 @@ export interface BatchJobExecutionSummary {
|
|
|
2160
2160
|
* <p>The unique identifier of a particular batch job.</p>
|
|
2161
2161
|
* @public
|
|
2162
2162
|
*/
|
|
2163
|
-
jobId?: string;
|
|
2163
|
+
jobId?: string | undefined;
|
|
2164
2164
|
/**
|
|
2165
2165
|
* <p>The name of a particular batch job.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
jobName?: string;
|
|
2168
|
+
jobName?: string | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>The type of a particular batch job execution.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
jobType?: BatchJobType;
|
|
2173
|
+
jobType?: BatchJobType | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The status of a particular batch job execution.</p>
|
|
2176
2176
|
* @public
|
|
@@ -2185,7 +2185,7 @@ export interface BatchJobExecutionSummary {
|
|
|
2185
2185
|
* <p>The timestamp when this batch job execution ended.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
endTime?: Date;
|
|
2188
|
+
endTime?: Date | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>The batch job return code from either the Blu Age or Micro Focus runtime engines. For more
|
|
2191
2191
|
* information, see <a href="https://www.ibm.com/docs/en/was/8.5.5?topic=model-batch-return-codes">Batch return
|
|
@@ -2193,12 +2193,12 @@ export interface BatchJobExecutionSummary {
|
|
|
2193
2193
|
* documentation.</p>
|
|
2194
2194
|
* @public
|
|
2195
2195
|
*/
|
|
2196
|
-
returnCode?: string;
|
|
2196
|
+
returnCode?: string | undefined;
|
|
2197
2197
|
/**
|
|
2198
2198
|
* <p>The unique identifier of this batch job.</p>
|
|
2199
2199
|
* @public
|
|
2200
2200
|
*/
|
|
2201
|
-
batchJobIdentifier?: BatchJobIdentifier;
|
|
2201
|
+
batchJobIdentifier?: BatchJobIdentifier | undefined;
|
|
2202
2202
|
}
|
|
2203
2203
|
/**
|
|
2204
2204
|
* @public
|
|
@@ -2214,7 +2214,7 @@ export interface ListBatchJobExecutionsResponse {
|
|
|
2214
2214
|
* executions.</p>
|
|
2215
2215
|
* @public
|
|
2216
2216
|
*/
|
|
2217
|
-
nextToken?: string;
|
|
2217
|
+
nextToken?: string | undefined;
|
|
2218
2218
|
}
|
|
2219
2219
|
/**
|
|
2220
2220
|
* @public
|
|
@@ -2234,7 +2234,7 @@ export interface ListBatchJobRestartPointsRequest {
|
|
|
2234
2234
|
* <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for List Batch Job Restart Points operation.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
authSecretsManagerArn?: string;
|
|
2237
|
+
authSecretsManagerArn?: string | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* <p>Provides information related to a job step.</p>
|
|
@@ -2245,32 +2245,32 @@ export interface JobStep {
|
|
|
2245
2245
|
* <p>The number of a step.</p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
stepNumber?: number;
|
|
2248
|
+
stepNumber?: number | undefined;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>The name of a step.</p>
|
|
2251
2251
|
* @public
|
|
2252
2252
|
*/
|
|
2253
|
-
stepName?: string;
|
|
2253
|
+
stepName?: string | undefined;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* <p>The number of a procedure step.</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
procStepNumber?: number;
|
|
2258
|
+
procStepNumber?: number | undefined;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* <p>The name of a procedure step.</p>
|
|
2261
2261
|
* @public
|
|
2262
2262
|
*/
|
|
2263
|
-
procStepName?: string;
|
|
2263
|
+
procStepName?: string | undefined;
|
|
2264
2264
|
/**
|
|
2265
2265
|
* <p>The condition code of a step.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
stepCondCode?: string;
|
|
2268
|
+
stepCondCode?: string | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>Specifies if a step can be restarted or not.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
stepRestartable?: boolean;
|
|
2273
|
+
stepRestartable?: boolean | undefined;
|
|
2274
2274
|
}
|
|
2275
2275
|
/**
|
|
2276
2276
|
* @public
|
|
@@ -2280,7 +2280,7 @@ export interface ListBatchJobRestartPointsResponse {
|
|
|
2280
2280
|
* <p>Returns all the batch job steps and related information for a batch job that previously ran.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
batchJobSteps?: JobStep[];
|
|
2283
|
+
batchJobSteps?: JobStep[] | undefined;
|
|
2284
2284
|
}
|
|
2285
2285
|
/**
|
|
2286
2286
|
* @public
|
|
@@ -2292,12 +2292,12 @@ export interface ListDataSetImportHistoryRequest {
|
|
|
2292
2292
|
* list, exclude this parameter.</p>
|
|
2293
2293
|
* @public
|
|
2294
2294
|
*/
|
|
2295
|
-
nextToken?: string;
|
|
2295
|
+
nextToken?: string | undefined;
|
|
2296
2296
|
/**
|
|
2297
2297
|
* <p>The maximum number of objects to return.</p>
|
|
2298
2298
|
* @public
|
|
2299
2299
|
*/
|
|
2300
|
-
maxResults?: number;
|
|
2300
|
+
maxResults?: number | undefined;
|
|
2301
2301
|
/**
|
|
2302
2302
|
* <p>The unique identifier of the application.</p>
|
|
2303
2303
|
* @public
|
|
@@ -2328,7 +2328,7 @@ export interface DataSetImportTask {
|
|
|
2328
2328
|
* <p>If dataset import failed, the failure reason will show here.</p>
|
|
2329
2329
|
* @public
|
|
2330
2330
|
*/
|
|
2331
|
-
statusReason?: string;
|
|
2331
|
+
statusReason?: string | undefined;
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
2334
2334
|
* @public
|
|
@@ -2344,7 +2344,7 @@ export interface ListDataSetImportHistoryResponse {
|
|
|
2344
2344
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
nextToken?: string;
|
|
2347
|
+
nextToken?: string | undefined;
|
|
2348
2348
|
}
|
|
2349
2349
|
/**
|
|
2350
2350
|
* @public
|
|
@@ -2362,23 +2362,23 @@ export interface ListDataSetsRequest {
|
|
|
2362
2362
|
* list, exclude this parameter.</p>
|
|
2363
2363
|
* @public
|
|
2364
2364
|
*/
|
|
2365
|
-
nextToken?: string;
|
|
2365
|
+
nextToken?: string | undefined;
|
|
2366
2366
|
/**
|
|
2367
2367
|
* <p>The maximum number of objects to return.</p>
|
|
2368
2368
|
* @public
|
|
2369
2369
|
*/
|
|
2370
|
-
maxResults?: number;
|
|
2370
|
+
maxResults?: number | undefined;
|
|
2371
2371
|
/**
|
|
2372
2372
|
* <p>The prefix of the data set name, which you can use to filter the list of data
|
|
2373
2373
|
* sets.</p>
|
|
2374
2374
|
* @public
|
|
2375
2375
|
*/
|
|
2376
|
-
prefix?: string;
|
|
2376
|
+
prefix?: string | undefined;
|
|
2377
2377
|
/**
|
|
2378
2378
|
* <p>Filter dataset name matching the specified pattern. Can use * and % as wild cards.</p>
|
|
2379
2379
|
* @public
|
|
2380
2380
|
*/
|
|
2381
|
-
nameFilter?: string;
|
|
2381
|
+
nameFilter?: string | undefined;
|
|
2382
2382
|
}
|
|
2383
2383
|
/**
|
|
2384
2384
|
* <p>A subset of the possible data set attributes.</p>
|
|
@@ -2394,27 +2394,27 @@ export interface DataSetSummary {
|
|
|
2394
2394
|
* <p>The type of data set. The only supported value is VSAM.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
dataSetOrg?: string;
|
|
2397
|
+
dataSetOrg?: string | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>The format of the data set. </p>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
format?: string;
|
|
2402
|
+
format?: string | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>The timestamp when the data set was created.</p>
|
|
2405
2405
|
* @public
|
|
2406
2406
|
*/
|
|
2407
|
-
creationTime?: Date;
|
|
2407
|
+
creationTime?: Date | undefined;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* <p>The last time the data set was updated.</p>
|
|
2410
2410
|
* @public
|
|
2411
2411
|
*/
|
|
2412
|
-
lastUpdatedTime?: Date;
|
|
2412
|
+
lastUpdatedTime?: Date | undefined;
|
|
2413
2413
|
/**
|
|
2414
2414
|
* <p>The last time the data set was referenced.</p>
|
|
2415
2415
|
* @public
|
|
2416
2416
|
*/
|
|
2417
|
-
lastReferencedTime?: Date;
|
|
2417
|
+
lastReferencedTime?: Date | undefined;
|
|
2418
2418
|
}
|
|
2419
2419
|
/**
|
|
2420
2420
|
* @public
|
|
@@ -2432,7 +2432,7 @@ export interface ListDataSetsResponse {
|
|
|
2432
2432
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
2433
2433
|
* @public
|
|
2434
2434
|
*/
|
|
2435
|
-
nextToken?: string;
|
|
2435
|
+
nextToken?: string | undefined;
|
|
2436
2436
|
}
|
|
2437
2437
|
/**
|
|
2438
2438
|
* @public
|
|
@@ -2444,12 +2444,12 @@ export interface ListDeploymentsRequest {
|
|
|
2444
2444
|
* list, exclude this parameter.</p>
|
|
2445
2445
|
* @public
|
|
2446
2446
|
*/
|
|
2447
|
-
nextToken?: string;
|
|
2447
|
+
nextToken?: string | undefined;
|
|
2448
2448
|
/**
|
|
2449
2449
|
* <p>The maximum number of objects to return.</p>
|
|
2450
2450
|
* @public
|
|
2451
2451
|
*/
|
|
2452
|
-
maxResults?: number;
|
|
2452
|
+
maxResults?: number | undefined;
|
|
2453
2453
|
/**
|
|
2454
2454
|
* <p>The application identifier.</p>
|
|
2455
2455
|
* @public
|
|
@@ -2495,7 +2495,7 @@ export interface DeploymentSummary {
|
|
|
2495
2495
|
* <p>The reason for the reported status.</p>
|
|
2496
2496
|
* @public
|
|
2497
2497
|
*/
|
|
2498
|
-
statusReason?: string;
|
|
2498
|
+
statusReason?: string | undefined;
|
|
2499
2499
|
}
|
|
2500
2500
|
/**
|
|
2501
2501
|
* @public
|
|
@@ -2511,7 +2511,7 @@ export interface ListDeploymentsResponse {
|
|
|
2511
2511
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
2512
2512
|
* @public
|
|
2513
2513
|
*/
|
|
2514
|
-
nextToken?: string;
|
|
2514
|
+
nextToken?: string | undefined;
|
|
2515
2515
|
}
|
|
2516
2516
|
/**
|
|
2517
2517
|
* @public
|
|
@@ -2547,12 +2547,12 @@ export interface StartBatchJobRequest {
|
|
|
2547
2547
|
* see <a href="https://www.ibm.com/docs/en/workload-automation/9.3.0?topic=zos-coding-variables-in-jcl">Coding variables in JCL</a>.</p>
|
|
2548
2548
|
* @public
|
|
2549
2549
|
*/
|
|
2550
|
-
jobParams?: Record<string, string
|
|
2550
|
+
jobParams?: Record<string, string> | undefined;
|
|
2551
2551
|
/**
|
|
2552
2552
|
* <p>The Amazon Web Services Secrets Manager containing user's credentials for authentication and authorization for Start Batch Job execution operation.</p>
|
|
2553
2553
|
* @public
|
|
2554
2554
|
*/
|
|
2555
|
-
authSecretsManagerArn?: string;
|
|
2555
|
+
authSecretsManagerArn?: string | undefined;
|
|
2556
2556
|
}
|
|
2557
2557
|
/**
|
|
2558
2558
|
* @public
|
|
@@ -2579,7 +2579,7 @@ export interface StopApplicationRequest {
|
|
|
2579
2579
|
* apply another action on the application. The default value is false.</p>
|
|
2580
2580
|
* @public
|
|
2581
2581
|
*/
|
|
2582
|
-
forceStop?: boolean;
|
|
2582
|
+
forceStop?: boolean | undefined;
|
|
2583
2583
|
}
|
|
2584
2584
|
/**
|
|
2585
2585
|
* @public
|
|
@@ -2599,7 +2599,7 @@ export interface UpdateApplicationRequest {
|
|
|
2599
2599
|
* <p>The description of the application to update.</p>
|
|
2600
2600
|
* @public
|
|
2601
2601
|
*/
|
|
2602
|
-
description?: string;
|
|
2602
|
+
description?: string | undefined;
|
|
2603
2603
|
/**
|
|
2604
2604
|
* <p>The current version of the application to update.</p>
|
|
2605
2605
|
* @public
|
|
@@ -2610,7 +2610,7 @@ export interface UpdateApplicationRequest {
|
|
|
2610
2610
|
* an S3 bucket location.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
definition?: Definition;
|
|
2613
|
+
definition?: Definition | undefined;
|
|
2614
2614
|
}
|
|
2615
2615
|
/**
|
|
2616
2616
|
* @public
|
|
@@ -2725,7 +2725,7 @@ export interface CreateEnvironmentRequest {
|
|
|
2725
2725
|
* <p>The description of the runtime environment.</p>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
description?: string;
|
|
2728
|
+
description?: string | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>The engine type for the runtime environment.</p>
|
|
2731
2731
|
* @public
|
|
@@ -2735,43 +2735,43 @@ export interface CreateEnvironmentRequest {
|
|
|
2735
2735
|
* <p>The version of the engine type for the runtime environment.</p>
|
|
2736
2736
|
* @public
|
|
2737
2737
|
*/
|
|
2738
|
-
engineVersion?: string;
|
|
2738
|
+
engineVersion?: string | undefined;
|
|
2739
2739
|
/**
|
|
2740
2740
|
* <p>The list of subnets associated with the VPC for this runtime environment.</p>
|
|
2741
2741
|
* @public
|
|
2742
2742
|
*/
|
|
2743
|
-
subnetIds?: string[];
|
|
2743
|
+
subnetIds?: string[] | undefined;
|
|
2744
2744
|
/**
|
|
2745
2745
|
* <p>The list of security groups for the VPC associated with this runtime environment.</p>
|
|
2746
2746
|
* @public
|
|
2747
2747
|
*/
|
|
2748
|
-
securityGroupIds?: string[];
|
|
2748
|
+
securityGroupIds?: string[] | undefined;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* <p>Optional. The storage configurations for this runtime environment.</p>
|
|
2751
2751
|
* @public
|
|
2752
2752
|
*/
|
|
2753
|
-
storageConfigurations?: StorageConfiguration[];
|
|
2753
|
+
storageConfigurations?: StorageConfiguration[] | undefined;
|
|
2754
2754
|
/**
|
|
2755
2755
|
* <p>Specifies whether the runtime environment is publicly accessible.</p>
|
|
2756
2756
|
* @public
|
|
2757
2757
|
*/
|
|
2758
|
-
publiclyAccessible?: boolean;
|
|
2758
|
+
publiclyAccessible?: boolean | undefined;
|
|
2759
2759
|
/**
|
|
2760
2760
|
* <p>The details of a high availability configuration for this runtime environment.</p>
|
|
2761
2761
|
* @public
|
|
2762
2762
|
*/
|
|
2763
|
-
highAvailabilityConfig?: HighAvailabilityConfig;
|
|
2763
|
+
highAvailabilityConfig?: HighAvailabilityConfig | undefined;
|
|
2764
2764
|
/**
|
|
2765
2765
|
* <p>The tags for the runtime environment.</p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
tags?: Record<string, string
|
|
2768
|
+
tags?: Record<string, string> | undefined;
|
|
2769
2769
|
/**
|
|
2770
2770
|
* <p>Configures the maintenance window that you want for the runtime environment. The maintenance window must have the format <code>ddd:hh24:mi-ddd:hh24:mi</code> and must be less than 24 hours. The following two examples are valid maintenance windows: <code>sun:23:45-mon:00:15</code> or <code>sat:01:00-sat:03:00</code>. </p>
|
|
2771
2771
|
* <p>If you do not provide a value, a random system-generated value will be assigned.</p>
|
|
2772
2772
|
* @public
|
|
2773
2773
|
*/
|
|
2774
|
-
preferredMaintenanceWindow?: string;
|
|
2774
|
+
preferredMaintenanceWindow?: string | undefined;
|
|
2775
2775
|
/**
|
|
2776
2776
|
* <p>Unique, case-sensitive identifier you provide to ensure the idempotency of the request
|
|
2777
2777
|
* to create an environment. The service generates the clientToken when the API call is
|
|
@@ -2780,12 +2780,12 @@ export interface CreateEnvironmentRequest {
|
|
|
2780
2780
|
* deleting the clientToken after it expires. </p>
|
|
2781
2781
|
* @public
|
|
2782
2782
|
*/
|
|
2783
|
-
clientToken?: string;
|
|
2783
|
+
clientToken?: string | undefined;
|
|
2784
2784
|
/**
|
|
2785
2785
|
* <p>The identifier of a customer managed key.</p>
|
|
2786
2786
|
* @public
|
|
2787
2787
|
*/
|
|
2788
|
-
kmsKeyId?: string;
|
|
2788
|
+
kmsKeyId?: string | undefined;
|
|
2789
2789
|
}
|
|
2790
2790
|
/**
|
|
2791
2791
|
* @public
|
|
@@ -2831,12 +2831,12 @@ export interface MaintenanceSchedule {
|
|
|
2831
2831
|
* <p>The time the scheduled maintenance is to start.</p>
|
|
2832
2832
|
* @public
|
|
2833
2833
|
*/
|
|
2834
|
-
startTime?: Date;
|
|
2834
|
+
startTime?: Date | undefined;
|
|
2835
2835
|
/**
|
|
2836
2836
|
* <p>The time the scheduled maintenance is to end.</p>
|
|
2837
2837
|
* @public
|
|
2838
2838
|
*/
|
|
2839
|
-
endTime?: Date;
|
|
2839
|
+
endTime?: Date | undefined;
|
|
2840
2840
|
}
|
|
2841
2841
|
/**
|
|
2842
2842
|
* <p>The scheduled maintenance for a runtime engine.</p>
|
|
@@ -2847,12 +2847,12 @@ export interface PendingMaintenance {
|
|
|
2847
2847
|
* <p>The maintenance schedule for the runtime engine version.</p>
|
|
2848
2848
|
* @public
|
|
2849
2849
|
*/
|
|
2850
|
-
schedule?: MaintenanceSchedule;
|
|
2850
|
+
schedule?: MaintenanceSchedule | undefined;
|
|
2851
2851
|
/**
|
|
2852
2852
|
* <p>The specific runtime engine that the maintenance schedule applies to.</p>
|
|
2853
2853
|
* @public
|
|
2854
2854
|
*/
|
|
2855
|
-
engineVersion?: string;
|
|
2855
|
+
engineVersion?: string | undefined;
|
|
2856
2856
|
}
|
|
2857
2857
|
/**
|
|
2858
2858
|
* @public
|
|
@@ -2883,7 +2883,7 @@ export interface GetEnvironmentResponse {
|
|
|
2883
2883
|
* <p>The description of the runtime environment.</p>
|
|
2884
2884
|
* @public
|
|
2885
2885
|
*/
|
|
2886
|
-
description?: string;
|
|
2886
|
+
description?: string | undefined;
|
|
2887
2887
|
/**
|
|
2888
2888
|
* <p>The Amazon Resource Name (ARN) of the runtime environment.</p>
|
|
2889
2889
|
* @public
|
|
@@ -2940,58 +2940,58 @@ export interface GetEnvironmentResponse {
|
|
|
2940
2940
|
* <p>The storage configurations defined for the runtime environment.</p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
storageConfigurations?: StorageConfiguration[];
|
|
2943
|
+
storageConfigurations?: StorageConfiguration[] | undefined;
|
|
2944
2944
|
/**
|
|
2945
2945
|
* <p>The tags defined for this runtime environment.</p>
|
|
2946
2946
|
* @public
|
|
2947
2947
|
*/
|
|
2948
|
-
tags?: Record<string, string
|
|
2948
|
+
tags?: Record<string, string> | undefined;
|
|
2949
2949
|
/**
|
|
2950
2950
|
* <p>The desired capacity of the high availability configuration for the runtime
|
|
2951
2951
|
* environment.</p>
|
|
2952
2952
|
* @public
|
|
2953
2953
|
*/
|
|
2954
|
-
highAvailabilityConfig?: HighAvailabilityConfig;
|
|
2954
|
+
highAvailabilityConfig?: HighAvailabilityConfig | undefined;
|
|
2955
2955
|
/**
|
|
2956
2956
|
* <p>Whether applications running in this runtime environment are publicly accessible.
|
|
2957
2957
|
* </p>
|
|
2958
2958
|
* @public
|
|
2959
2959
|
*/
|
|
2960
|
-
publiclyAccessible?: boolean;
|
|
2960
|
+
publiclyAccessible?: boolean | undefined;
|
|
2961
2961
|
/**
|
|
2962
2962
|
* <p>The number of instances included in the runtime environment. A standalone runtime
|
|
2963
2963
|
* environment has a maximum of one instance. Currently, a high availability runtime
|
|
2964
2964
|
* environment has a maximum of two instances. </p>
|
|
2965
2965
|
* @public
|
|
2966
2966
|
*/
|
|
2967
|
-
actualCapacity?: number;
|
|
2967
|
+
actualCapacity?: number | undefined;
|
|
2968
2968
|
/**
|
|
2969
2969
|
* <p>The Amazon Resource Name (ARN) for the load balancer used with the runtime
|
|
2970
2970
|
* environment.</p>
|
|
2971
2971
|
* @public
|
|
2972
2972
|
*/
|
|
2973
|
-
loadBalancerArn?: string;
|
|
2973
|
+
loadBalancerArn?: string | undefined;
|
|
2974
2974
|
/**
|
|
2975
2975
|
* <p>The reason for the reported status.</p>
|
|
2976
2976
|
* @public
|
|
2977
2977
|
*/
|
|
2978
|
-
statusReason?: string;
|
|
2978
|
+
statusReason?: string | undefined;
|
|
2979
2979
|
/**
|
|
2980
2980
|
* <p>The maintenance window for the runtime environment. If you don't
|
|
2981
2981
|
* provide a value for the maintenance window, the service assigns a random value.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
preferredMaintenanceWindow?: string;
|
|
2984
|
+
preferredMaintenanceWindow?: string | undefined;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* <p>Indicates the pending maintenance scheduled on this environment.</p>
|
|
2987
2987
|
* @public
|
|
2988
2988
|
*/
|
|
2989
|
-
pendingMaintenance?: PendingMaintenance;
|
|
2989
|
+
pendingMaintenance?: PendingMaintenance | undefined;
|
|
2990
2990
|
/**
|
|
2991
2991
|
* <p>The identifier of a customer managed key.</p>
|
|
2992
2992
|
* @public
|
|
2993
2993
|
*/
|
|
2994
|
-
kmsKeyId?: string;
|
|
2994
|
+
kmsKeyId?: string | undefined;
|
|
2995
2995
|
}
|
|
2996
2996
|
/**
|
|
2997
2997
|
* @public
|
|
@@ -3002,22 +3002,22 @@ export interface ListEnvironmentsRequest {
|
|
|
3002
3002
|
* list.</p>
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
nextToken?: string;
|
|
3005
|
+
nextToken?: string | undefined;
|
|
3006
3006
|
/**
|
|
3007
3007
|
* <p>The maximum number of runtime environments to return.</p>
|
|
3008
3008
|
* @public
|
|
3009
3009
|
*/
|
|
3010
|
-
maxResults?: number;
|
|
3010
|
+
maxResults?: number | undefined;
|
|
3011
3011
|
/**
|
|
3012
3012
|
* <p>The names of the runtime environments. Must be unique within the account.</p>
|
|
3013
3013
|
* @public
|
|
3014
3014
|
*/
|
|
3015
|
-
names?: string[];
|
|
3015
|
+
names?: string[] | undefined;
|
|
3016
3016
|
/**
|
|
3017
3017
|
* <p>The engine type for the runtime environment.</p>
|
|
3018
3018
|
* @public
|
|
3019
3019
|
*/
|
|
3020
|
-
engineType?: EngineType;
|
|
3020
|
+
engineType?: EngineType | undefined;
|
|
3021
3021
|
}
|
|
3022
3022
|
/**
|
|
3023
3023
|
* <p>Contains a subset of the possible runtime environment attributes. Used in the
|
|
@@ -3081,7 +3081,7 @@ export interface ListEnvironmentsResponse {
|
|
|
3081
3081
|
* environments.</p>
|
|
3082
3082
|
* @public
|
|
3083
3083
|
*/
|
|
3084
|
-
nextToken?: string;
|
|
3084
|
+
nextToken?: string | undefined;
|
|
3085
3085
|
}
|
|
3086
3086
|
/**
|
|
3087
3087
|
* @public
|
|
@@ -3096,23 +3096,23 @@ export interface UpdateEnvironmentRequest {
|
|
|
3096
3096
|
* <p>The desired capacity for the runtime environment to update. The minimum possible value is 0 and the maximum is 100.</p>
|
|
3097
3097
|
* @public
|
|
3098
3098
|
*/
|
|
3099
|
-
desiredCapacity?: number;
|
|
3099
|
+
desiredCapacity?: number | undefined;
|
|
3100
3100
|
/**
|
|
3101
3101
|
* <p>The instance type for the runtime environment to update.</p>
|
|
3102
3102
|
* @public
|
|
3103
3103
|
*/
|
|
3104
|
-
instanceType?: string;
|
|
3104
|
+
instanceType?: string | undefined;
|
|
3105
3105
|
/**
|
|
3106
3106
|
* <p>The version of the runtime engine for the runtime environment.</p>
|
|
3107
3107
|
* @public
|
|
3108
3108
|
*/
|
|
3109
|
-
engineVersion?: string;
|
|
3109
|
+
engineVersion?: string | undefined;
|
|
3110
3110
|
/**
|
|
3111
3111
|
* <p>Configures the maintenance window that you want for the runtime environment. The maintenance window must have the format <code>ddd:hh24:mi-ddd:hh24:mi</code> and must be less than 24 hours. The following two examples are valid maintenance windows: <code>sun:23:45-mon:00:15</code> or <code>sat:01:00-sat:03:00</code>. </p>
|
|
3112
3112
|
* <p>If you do not provide a value, a random system-generated value will be assigned.</p>
|
|
3113
3113
|
* @public
|
|
3114
3114
|
*/
|
|
3115
|
-
preferredMaintenanceWindow?: string;
|
|
3115
|
+
preferredMaintenanceWindow?: string | undefined;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* <p>Indicates whether to update the runtime environment during the maintenance window. The
|
|
3118
3118
|
* default is false. Currently, Amazon Web Services Mainframe Modernization accepts the <code>engineVersion</code> parameter
|
|
@@ -3121,14 +3121,14 @@ export interface UpdateEnvironmentRequest {
|
|
|
3121
3121
|
* fail if <code>applyDuringMaintenanceWindow</code> is set to true.</p>
|
|
3122
3122
|
* @public
|
|
3123
3123
|
*/
|
|
3124
|
-
applyDuringMaintenanceWindow?: boolean;
|
|
3124
|
+
applyDuringMaintenanceWindow?: boolean | undefined;
|
|
3125
3125
|
/**
|
|
3126
3126
|
* <p>Forces the updates on the environment. This option is needed if the applications in the environment are not stopped or if there are ongoing application-related activities in the environment.</p>
|
|
3127
3127
|
* <p>If you use this option, be aware that it could lead to data corruption in the applications, and that you might need to perform repair and recovery procedures for the applications.</p>
|
|
3128
3128
|
* <p>This option is not needed if the attribute being updated is <code>preferredMaintenanceWindow</code>.</p>
|
|
3129
3129
|
* @public
|
|
3130
3130
|
*/
|
|
3131
|
-
forceUpdate?: boolean;
|
|
3131
|
+
forceUpdate?: boolean | undefined;
|
|
3132
3132
|
}
|
|
3133
3133
|
/**
|
|
3134
3134
|
* @public
|
|
@@ -3158,19 +3158,19 @@ export interface ListEngineVersionsRequest {
|
|
|
3158
3158
|
* <p>The type of target platform.</p>
|
|
3159
3159
|
* @public
|
|
3160
3160
|
*/
|
|
3161
|
-
engineType?: EngineType;
|
|
3161
|
+
engineType?: EngineType | undefined;
|
|
3162
3162
|
/**
|
|
3163
3163
|
* <p>A pagination token returned from a previous call to
|
|
3164
3164
|
* this operation. This specifies the next item to return. To return to the beginning of the
|
|
3165
3165
|
* list, exclude this parameter.</p>
|
|
3166
3166
|
* @public
|
|
3167
3167
|
*/
|
|
3168
|
-
nextToken?: string;
|
|
3168
|
+
nextToken?: string | undefined;
|
|
3169
3169
|
/**
|
|
3170
3170
|
* <p>The maximum number of objects to return.</p>
|
|
3171
3171
|
* @public
|
|
3172
3172
|
*/
|
|
3173
|
-
maxResults?: number;
|
|
3173
|
+
maxResults?: number | undefined;
|
|
3174
3174
|
}
|
|
3175
3175
|
/**
|
|
3176
3176
|
* <p>A subset of information about the engine version for a specific application.</p>
|
|
@@ -3202,7 +3202,7 @@ export interface ListEngineVersionsResponse {
|
|
|
3202
3202
|
* that is passed to a subsequent call to this operation to retrieve the next set of items.</p>
|
|
3203
3203
|
* @public
|
|
3204
3204
|
*/
|
|
3205
|
-
nextToken?: string;
|
|
3205
|
+
nextToken?: string | undefined;
|
|
3206
3206
|
}
|
|
3207
3207
|
/**
|
|
3208
3208
|
* @public
|