@@ -370,7 +370,7 @@ export interface AssignedTaskRunSessionActionDefinition {
370
370
* <p>The task ID.</p>
371
371
* @public
372
372
*/
373
- taskId : string | undefined ;
373
+ taskId ? : string | undefined ;
374
374
375
375
/**
376
376
* <p>The step ID.</p>
@@ -3567,8 +3567,8 @@ export interface CreateJobRequest {
3567
3567
templateType ?: JobTemplateType | undefined ;
3568
3568
3569
3569
/**
3570
- * <p>The priority of the job on a scale of 0 to 100 . The highest priority (first scheduled)
3571
- * is 100. When two jobs have the same priority, the oldest job is scheduled first.</p>
3570
+ * <p>The priority of the job. The highest priority (first scheduled) is 100. When two jobs
3571
+ * have the same priority, the oldest job is scheduled first.</p>
3572
3572
* @public
3573
3573
*/
3574
3574
priority : number | undefined ;
@@ -3953,8 +3953,8 @@ export interface CreateQueueEnvironmentRequest {
3953
3953
3954
3954
/**
3955
3955
* <p>Sets the priority of the environments in the queue from 0 to 10,000, where 0 is the
3956
- * highest priority. If two environments share the same priority value, the environment
3957
- * created first takes higher priority.</p>
3956
+ * highest priority (activated first and deactivated last) . If two environments share the same
3957
+ * priority value, the environment created first takes higher priority.</p>
3958
3958
* @public
3959
3959
*/
3960
3960
priority : number | undefined ;
@@ -5459,7 +5459,8 @@ export interface UpdatedSessionActionInfo {
5459
5459
completedStatus ?: CompletedStatus | undefined ;
5460
5460
5461
5461
/**
5462
- * <p>The process exit code.</p>
5462
+ * <p>The process exit code. The default Deadline Cloud worker agent converts unsigned
5463
+ * 32-bit exit codes to signed 32-bit exit codes.</p>
5463
5464
* @public
5464
5465
*/
5465
5466
processExitCode ?: number | undefined ;
@@ -6987,7 +6988,7 @@ export interface TaskRunSessionActionDefinition {
6987
6988
* <p>The task ID.</p>
6988
6989
* @public
6989
6990
*/
6990
- taskId : string | undefined ;
6991
+ taskId ? : string | undefined ;
6991
6992
6992
6993
/**
6993
6994
* <p>The step ID.</p>
@@ -7164,7 +7165,8 @@ export interface GetSessionActionResponse {
7164
7165
sessionId : string | undefined ;
7165
7166
7166
7167
/**
7167
- * <p>The exit code to exit the session.</p>
7168
+ * <p>The process exit code. The default Deadline Cloud worker agent converts unsigned
7169
+ * 32-bit exit codes to signed 32-bit exit codes.</p>
7168
7170
* @public
7169
7171
*/
7170
7172
processExitCode ?: number | undefined ;
@@ -8103,7 +8105,7 @@ export interface TaskRunSessionActionDefinitionSummary {
8103
8105
* <p>The task ID.</p>
8104
8106
* @public
8105
8107
*/
8106
- taskId : string | undefined ;
8108
+ taskId ? : string | undefined ;
8107
8109
8108
8110
/**
8109
8111
* <p>The step ID.</p>
@@ -8975,7 +8977,6 @@ export const AssumeQueueRoleForWorkerResponseFilterSensitiveLog = (obj: AssumeQu
8975
8977
*/
8976
8978
export const ManifestPropertiesFilterSensitiveLog = ( obj : ManifestProperties ) : any => ( {
8977
8979
...obj ,
8978
- ...( obj . fileSystemLocationName && { fileSystemLocationName : SENSITIVE_STRING } ) ,
8979
8980
} ) ;
8980
8981
8981
8982
/**
@@ -9154,7 +9155,6 @@ export const CreateLimitRequestFilterSensitiveLog = (obj: CreateLimitRequest): a
9154
9155
export const CreateQueueRequestFilterSensitiveLog = ( obj : CreateQueueRequest ) : any => ( {
9155
9156
...obj ,
9156
9157
...( obj . description && { description : SENSITIVE_STRING } ) ,
9157
- ...( obj . requiredFileSystemLocationNames && { requiredFileSystemLocationNames : SENSITIVE_STRING } ) ,
9158
9158
} ) ;
9159
9159
9160
9160
/**
@@ -9170,7 +9170,6 @@ export const CreateQueueEnvironmentRequestFilterSensitiveLog = (obj: CreateQueue
9170
9170
*/
9171
9171
export const FileSystemLocationFilterSensitiveLog = ( obj : FileSystemLocation ) : any => ( {
9172
9172
...obj ,
9173
- ...( obj . name && { name : SENSITIVE_STRING } ) ,
9174
9173
} ) ;
9175
9174
9176
9175
/**
@@ -9267,7 +9266,6 @@ export const GetStorageProfileResponseFilterSensitiveLog = (obj: GetStorageProfi
9267
9266
export const GetQueueResponseFilterSensitiveLog = ( obj : GetQueueResponse ) : any => ( {
9268
9267
...obj ,
9269
9268
...( obj . description && { description : SENSITIVE_STRING } ) ,
9270
- ...( obj . requiredFileSystemLocationNames && { requiredFileSystemLocationNames : SENSITIVE_STRING } ) ,
9271
9269
} ) ;
9272
9270
9273
9271
/**
0 commit comments