Skip to content

Commit 0b8c7d8

Browse files
author
awstools
committedJan 31, 2024
feat(client-glue): Update page size limits for GetJobRuns and GetTriggers APIs.
1 parent c587e27 commit 0b8c7d8

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed
 

‎clients/client-glue/src/models/models_0.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6742,7 +6742,7 @@ export interface JobCommand {
67426742
* @public
67436743
* <p>In Ray jobs, Runtime is used to specify the versions of Ray, Python and additional
67446744
* libraries available in your environment. This field is not used in other job types. For
6745-
* supported runtime environment values, see <a href="https://docs.aws.amazon.com/glue/latest/dg/author-job-ray-runtimes.html">Working with Ray jobs</a>
6745+
* supported runtime environment values, see <a href="https://docs.aws.amazon.com/glue/latest/dg/ray-jobs-section.html">Supported Ray runtime environments</a>
67466746
* in the Glue Developer Guide.</p>
67476747
*/
67486748
Runtime?: string;

‎codegen/sdk-codegen/aws-models/glue.json

+24-6
Original file line numberDiff line numberDiff line change
@@ -17102,7 +17102,7 @@
1710217102
}
1710317103
},
1710417104
"MaxResults": {
17105-
"target": "com.amazonaws.glue#PageSize",
17105+
"target": "com.amazonaws.glue#OrchestrationPageSize200",
1710617106
"traits": {
1710717107
"smithy.api#documentation": "<p>The maximum size of the response.</p>"
1710817108
}
@@ -19646,7 +19646,7 @@
1964619646
}
1964719647
},
1964819648
"MaxResults": {
19649-
"target": "com.amazonaws.glue#PageSize",
19649+
"target": "com.amazonaws.glue#OrchestrationPageSize200",
1965019650
"traits": {
1965119651
"smithy.api#documentation": "<p>The maximum size of the response.</p>"
1965219652
}
@@ -22089,7 +22089,7 @@
2208922089
"Runtime": {
2209022090
"target": "com.amazonaws.glue#RuntimeNameString",
2209122091
"traits": {
22092-
"smithy.api#documentation": "<p>In Ray jobs, Runtime is used to specify the versions of Ray, Python and additional\n libraries available in your environment. This field is not used in other job types. For\n supported runtime environment values, see <a href=\"https://docs.aws.amazon.com/glue/latest/dg/author-job-ray-runtimes.html\">Working with Ray jobs</a>\n in the Glue Developer Guide.</p>"
22092+
"smithy.api#documentation": "<p>In Ray jobs, Runtime is used to specify the versions of Ray, Python and additional\n libraries available in your environment. This field is not used in other job types. For\n supported runtime environment values, see <a href=\"https://docs.aws.amazon.com/glue/latest/dg/ray-jobs-section.html\">Supported Ray runtime environments</a>\n in the Glue Developer Guide.</p>"
2209322093
}
2209422094
}
2209522095
},
@@ -23188,7 +23188,7 @@
2318823188
}
2318923189
},
2319023190
"MaxResults": {
23191-
"target": "com.amazonaws.glue#PageSize",
23191+
"target": "com.amazonaws.glue#OrchestrationPageSize25",
2319223192
"traits": {
2319323193
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
2319423194
}
@@ -24616,7 +24616,7 @@
2461624616
}
2461724617
},
2461824618
"MaxResults": {
24619-
"target": "com.amazonaws.glue#PageSize",
24619+
"target": "com.amazonaws.glue#OrchestrationPageSize200",
2462024620
"traits": {
2462124621
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
2462224622
}
@@ -24690,7 +24690,7 @@
2469024690
}
2469124691
},
2469224692
"MaxResults": {
24693-
"target": "com.amazonaws.glue#PageSize",
24693+
"target": "com.amazonaws.glue#OrchestrationPageSize25",
2469424694
"traits": {
2469524695
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
2469624696
}
@@ -25996,6 +25996,24 @@
2599625996
"smithy.api#pattern": "^[\\.\\-_A-Za-z0-9]+$"
2599725997
}
2599825998
},
25999+
"com.amazonaws.glue#OrchestrationPageSize200": {
26000+
"type": "integer",
26001+
"traits": {
26002+
"smithy.api#range": {
26003+
"min": 1,
26004+
"max": 200
26005+
}
26006+
}
26007+
},
26008+
"com.amazonaws.glue#OrchestrationPageSize25": {
26009+
"type": "integer",
26010+
"traits": {
26011+
"smithy.api#range": {
26012+
"min": 1,
26013+
"max": 25
26014+
}
26015+
}
26016+
},
2599926017
"com.amazonaws.glue#OrchestrationRoleArn": {
2600026018
"type": "string",
2600126019
"traits": {

0 commit comments

Comments
 (0)