Skip to content

Commit 3e65c7e

Browse files
author
AWS
committed
AWSDeadlineCloud Update: With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching.
1 parent 03c331b commit 3e65c7e

File tree

2 files changed

+29
-13
lines changed

2 files changed

+29
-13
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWSDeadlineCloud",
4+
"contributor": "",
5+
"description": "With this release you can use a new field to specify the search term match type. Search term match types currently support fuzzy and contains matching."
6+
}

services/deadline/src/main/resources/codegen-resources/service-2.json

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2499,7 +2499,6 @@
24992499
"AssignedTaskRunSessionActionDefinition":{
25002500
"type":"structure",
25012501
"required":[
2502-
"taskId",
25032502
"stepId",
25042503
"parameters"
25052504
],
@@ -3525,7 +3524,7 @@
35253524
},
35263525
"priority":{
35273526
"shape":"JobPriority",
3528-
"documentation":"<p>The priority of the job on a scale of 0 to 100. The highest priority (first scheduled) is 100. When two jobs have the same priority, the oldest job is scheduled first.</p>"
3527+
"documentation":"<p>The priority of the job. The highest priority (first scheduled) is 100. When two jobs have the same priority, the oldest job is scheduled first.</p>"
35293528
},
35303529
"parameters":{
35313530
"shape":"JobParameters",
@@ -3765,7 +3764,7 @@
37653764
},
37663765
"priority":{
37673766
"shape":"Priority",
3768-
"documentation":"<p>Sets the priority of the environments in the queue from 0 to 10,000, where 0 is the highest priority. If two environments share the same priority value, the environment created first takes higher priority.</p>"
3767+
"documentation":"<p>Sets the priority of the environments in the queue from 0 to 10,000, where 0 is the highest priority (activated first and deactivated last). If two environments share the same priority value, the environment created first takes higher priority.</p>"
37693768
},
37703769
"templateType":{
37713770
"shape":"EnvironmentTemplateType",
@@ -4984,8 +4983,7 @@
49844983
"type":"string",
49854984
"max":64,
49864985
"min":1,
4987-
"pattern":"[0-9A-Za-z ]*",
4988-
"sensitive":true
4986+
"pattern":"[0-9A-Za-z ]*"
49894987
},
49904988
"FileSystemLocationType":{
49914989
"type":"string",
@@ -6254,7 +6252,7 @@
62546252
},
62556253
"processExitCode":{
62566254
"shape":"ProcessExitCode",
6257-
"documentation":"<p>The exit code to exit the session.</p>"
6255+
"documentation":"<p>The process exit code. The default Deadline Cloud worker agent converts unsigned 32-bit exit codes to signed 32-bit exit codes.</p>"
62586256
},
62596257
"progressMessage":{
62606258
"shape":"SessionActionProgressMessage",
@@ -7296,10 +7294,15 @@
72967294
},
72977295
"JobParameters":{
72987296
"type":"map",
7299-
"key":{"shape":"String"},
7297+
"key":{"shape":"JobParametersKeyString"},
73007298
"value":{"shape":"JobParameter"},
73017299
"sensitive":true
73027300
},
7301+
"JobParametersKeyString":{
7302+
"type":"string",
7303+
"max":1024,
7304+
"min":1
7305+
},
73037306
"JobPriority":{
73047307
"type":"integer",
73057308
"box":true,
@@ -10201,10 +10204,21 @@
1020110204
"searchTerm":{
1020210205
"shape":"SearchTerm",
1020310206
"documentation":"<p>The term to search for.</p>"
10207+
},
10208+
"matchType":{
10209+
"shape":"SearchTermMatchingType",
10210+
"documentation":"<p>Specifies how Deadline Cloud matches your search term in the results. If you don't specify a <code>matchType</code> the default is <code>FUZZY_MATCH</code>.</p> <ul> <li> <p> <code>FUZZY_MATCH</code> - Matches if a portion of the search term is found in the result.</p> </li> <li> <p> <code>CONTAINS</code> - Matches if the exact search term is contained in the result.</p> </li> </ul>"
1020410211
}
1020510212
},
1020610213
"documentation":"<p>Searches for a particular search term.</p>"
1020710214
},
10215+
"SearchTermMatchingType":{
10216+
"type":"string",
10217+
"enum":[
10218+
"FUZZY_MATCH",
10219+
"CONTAINS"
10220+
]
10221+
},
1020810222
"SearchWorkersRequest":{
1020910223
"type":"structure",
1021010224
"required":[
@@ -11408,7 +11422,6 @@
1140811422
"TaskRunSessionActionDefinition":{
1140911423
"type":"structure",
1141011424
"required":[
11411-
"taskId",
1141211425
"stepId",
1141311426
"parameters"
1141411427
],
@@ -11430,10 +11443,7 @@
1143011443
},
1143111444
"TaskRunSessionActionDefinitionSummary":{
1143211445
"type":"structure",
11433-
"required":[
11434-
"taskId",
11435-
"stepId"
11436-
],
11446+
"required":["stepId"],
1143711447
"members":{
1143811448
"taskId":{
1143911449
"shape":"TaskId",
@@ -12506,7 +12516,7 @@
1250612516
},
1250712517
"processExitCode":{
1250812518
"shape":"ProcessExitCode",
12509-
"documentation":"<p>The process exit code.</p>"
12519+
"documentation":"<p>The process exit code. The default Deadline Cloud worker agent converts unsigned 32-bit exit codes to signed 32-bit exit codes.</p>"
1251012520
},
1251112521
"progressMessage":{
1251212522
"shape":"SessionActionProgressMessage",

0 commit comments

Comments
 (0)