Skip to content

Commit

Permalink
feat(client-glue): Update page size limits for GetJobRuns and GetTrig…
Browse files Browse the repository at this point in the history
…gers APIs.
  • Loading branch information
awstools committed Jan 31, 2024
1 parent c587e27 commit 0b8c7d8
Showing 2 changed files with 25 additions and 7 deletions.
2 changes: 1 addition & 1 deletion clients/client-glue/src/models/models_0.ts
Original file line number Diff line number Diff line change
@@ -6742,7 +6742,7 @@ export interface JobCommand {
* @public
* <p>In Ray jobs, Runtime is used to specify the versions of Ray, Python and additional
* libraries available in your environment. This field is not used in other job types. For
* 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>
* supported runtime environment values, see <a href="https://docs.aws.amazon.com/glue/latest/dg/ray-jobs-section.html">Supported Ray runtime environments</a>
* in the Glue Developer Guide.</p>
*/
Runtime?: string;
30 changes: 24 additions & 6 deletions codegen/sdk-codegen/aws-models/glue.json
Original file line number Diff line number Diff line change
@@ -17102,7 +17102,7 @@
}
},
"MaxResults": {
"target": "com.amazonaws.glue#PageSize",
"target": "com.amazonaws.glue#OrchestrationPageSize200",
"traits": {
"smithy.api#documentation": "<p>The maximum size of the response.</p>"
}
@@ -19646,7 +19646,7 @@
}
},
"MaxResults": {
"target": "com.amazonaws.glue#PageSize",
"target": "com.amazonaws.glue#OrchestrationPageSize200",
"traits": {
"smithy.api#documentation": "<p>The maximum size of the response.</p>"
}
@@ -22089,7 +22089,7 @@
"Runtime": {
"target": "com.amazonaws.glue#RuntimeNameString",
"traits": {
"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>"
"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>"
}
}
},
@@ -23188,7 +23188,7 @@
}
},
"MaxResults": {
"target": "com.amazonaws.glue#PageSize",
"target": "com.amazonaws.glue#OrchestrationPageSize25",
"traits": {
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
}
@@ -24616,7 +24616,7 @@
}
},
"MaxResults": {
"target": "com.amazonaws.glue#PageSize",
"target": "com.amazonaws.glue#OrchestrationPageSize200",
"traits": {
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
}
@@ -24690,7 +24690,7 @@
}
},
"MaxResults": {
"target": "com.amazonaws.glue#PageSize",
"target": "com.amazonaws.glue#OrchestrationPageSize25",
"traits": {
"smithy.api#documentation": "<p>The maximum size of a list to return.</p>"
}
@@ -25996,6 +25996,24 @@
"smithy.api#pattern": "^[\\.\\-_A-Za-z0-9]+$"
}
},
"com.amazonaws.glue#OrchestrationPageSize200": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 200
}
}
},
"com.amazonaws.glue#OrchestrationPageSize25": {
"type": "integer",
"traits": {
"smithy.api#range": {
"min": 1,
"max": 25
}
}
},
"com.amazonaws.glue#OrchestrationRoleArn": {
"type": "string",
"traits": {

0 comments on commit 0b8c7d8

Please sign in to comment.