Skip to content

Commit

Permalink
Release v1.34.20 (2020-09-09) (#3530)
Browse files Browse the repository at this point in the history
Release v1.34.20 (2020-09-09)
===

### Service Client Updates
* `service/glue`: Updates service API, documentation, and paginators
  * Adding support for partitionIndexes to improve GetPartitions performance.
* `service/kinesisanalyticsv2`: Updates service API and documentation
* `service/redshift-data`: Adds new service
  • Loading branch information
aws-sdk-go-automation committed Sep 9, 2020
1 parent b392926 commit 6e3ed9d
Show file tree
Hide file tree
Showing 22 changed files with 5,057 additions and 32 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.34.20 (2020-09-09)
===

### Service Client Updates
* `service/glue`: Updates service API, documentation, and paginators
* Adding support for partitionIndexes to improve GetPartitions performance.
* `service/kinesisanalyticsv2`: Updates service API and documentation
* `service/redshift-data`: Adds new service

Release v1.34.19 (2020-09-08)
===

Expand Down
3 changes: 3 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.34.19"
const SDKVersion = "1.34.20"
104 changes: 103 additions & 1 deletion models/apis/glue/2017-03-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1086,6 +1086,22 @@
{"shape":"GlueEncryptionException"}
]
},
"GetPartitionIndexes":{
"name":"GetPartitionIndexes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetPartitionIndexesRequest"},
"output":{"shape":"GetPartitionIndexesResponse"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"},
{"shape":"EntityNotFoundException"},
{"shape":"ConflictException"}
]
},
"GetPartitions":{
"name":"GetPartitions",
"http":{
Expand Down Expand Up @@ -2681,6 +2697,13 @@
"type":"list",
"member":{"shape":"Condition"}
},
"ConflictException":{
"type":"structure",
"members":{
"Message":{"shape":"MessageString"}
},
"exception":true
},
"ConfusionMatrix":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3188,7 +3211,8 @@
"members":{
"CatalogId":{"shape":"CatalogIdString"},
"DatabaseName":{"shape":"NameString"},
"TableInput":{"shape":"TableInput"}
"TableInput":{"shape":"TableInput"},
"PartitionIndexes":{"shape":"PartitionIndexList"}
}
},
"CreateTableResponse":{
Expand Down Expand Up @@ -4337,6 +4361,26 @@
"Mapping":{"shape":"MappingList"}
}
},
"GetPartitionIndexesRequest":{
"type":"structure",
"required":[
"DatabaseName",
"TableName"
],
"members":{
"CatalogId":{"shape":"CatalogIdString"},
"DatabaseName":{"shape":"NameString"},
"TableName":{"shape":"NameString"},
"NextToken":{"shape":"Token"}
}
},
"GetPartitionIndexesResponse":{
"type":"structure",
"members":{
"PartitionIndexDescriptorList":{"shape":"PartitionIndexDescriptorList"},
"NextToken":{"shape":"Token"}
}
},
"GetPartitionRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4999,6 +5043,27 @@
},
"JsonPath":{"type":"string"},
"JsonValue":{"type":"string"},
"KeyList":{
"type":"list",
"member":{"shape":"NameString"},
"min":1
},
"KeySchemaElement":{
"type":"structure",
"required":[
"Name",
"Type"
],
"members":{
"Name":{"shape":"NameString"},
"Type":{"shape":"ColumnTypeString"}
}
},
"KeySchemaElementList":{
"type":"list",
"member":{"shape":"KeySchemaElement"},
"min":1
},
"KeyString":{
"type":"string",
"max":255,
Expand Down Expand Up @@ -5404,6 +5469,43 @@
"type":"list",
"member":{"shape":"PartitionError"}
},
"PartitionIndex":{
"type":"structure",
"required":[
"Keys",
"IndexName"
],
"members":{
"Keys":{"shape":"KeyList"},
"IndexName":{"shape":"NameString"}
}
},
"PartitionIndexDescriptor":{
"type":"structure",
"required":[
"IndexName",
"Keys",
"IndexStatus"
],
"members":{
"IndexName":{"shape":"NameString"},
"Keys":{"shape":"KeySchemaElementList"},
"IndexStatus":{"shape":"PartitionIndexStatus"}
}
},
"PartitionIndexDescriptorList":{
"type":"list",
"member":{"shape":"PartitionIndexDescriptor"}
},
"PartitionIndexList":{
"type":"list",
"member":{"shape":"PartitionIndex"},
"max":3
},
"PartitionIndexStatus":{
"type":"string",
"enum":["ACTIVE"]
},
"PartitionInput":{
"type":"structure",
"members":{
Expand Down

0 comments on commit 6e3ed9d

Please sign in to comment.