Skip to content

Commit fe3f065

Browse files
author
AWS
committed
AWS Glue Update: Add AttributesToGet parameter support for Glue GetTables
1 parent 6a9aedd commit fe3f065

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
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": "AWS Glue",
4+
"contributor": "",
5+
"description": "Add AttributesToGet parameter support for Glue GetTables"
6+
}

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13411,6 +13411,10 @@
1341113411
"IncludeStatusDetails":{
1341213412
"shape":"BooleanNullable",
1341313413
"documentation":"<p>Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.</p>"
13414+
},
13415+
"AttributesToGet":{
13416+
"shape":"TableAttributesList",
13417+
"documentation":"<p> Specifies the table fields returned by the <code>GetTables</code> call. This parameter doesn’t accept an empty list. The request must include <code>NAME</code>.</p> <p>The following are the valid combinations of values:</p> <ul> <li> <p> <code>NAME</code> - Names of all tables in the database.</p> </li> <li> <p> <code>NAME</code>, <code>TABLE_TYPE</code> - Names of all tables and the table types.</p> </li> </ul>"
1341413418
}
1341513419
}
1341613420
},
@@ -21402,6 +21406,17 @@
2140221406
},
2140321407
"documentation":"<p>Represents a collection of related data organized in columns and rows.</p>"
2140421408
},
21409+
"TableAttributes":{
21410+
"type":"string",
21411+
"enum":[
21412+
"NAME",
21413+
"TABLE_TYPE"
21414+
]
21415+
},
21416+
"TableAttributesList":{
21417+
"type":"list",
21418+
"member":{"shape":"TableAttributes"}
21419+
},
2140521420
"TableError":{
2140621421
"type":"structure",
2140721422
"members":{

0 commit comments

Comments
 (0)