Skip to content

Commit

Permalink
Release v1.44.42 (2022-06-24) (#4455)
Browse files Browse the repository at this point in the history
Release v1.44.42 (2022-06-24)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
  * This release enables the new ListCrawls API for viewing the AWS Glue Crawler run history.
* `service/rds-data`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation committed Jun 24, 2022
1 parent 9d5119e commit 32d9e06
Show file tree
Hide file tree
Showing 10 changed files with 713 additions and 74 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.44.42 (2022-06-24)
===

### Service Client Updates
* `service/glue`: Updates service API and documentation
* This release enables the new ListCrawls API for viewing the AWS Glue Crawler run history.
* `service/rds-data`: Updates service documentation

Release v1.44.41 (2022-06-23)
===

Expand Down
37 changes: 0 additions & 37 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.41"
const SDKVersion = "1.44.42"
93 changes: 93 additions & 0 deletions models/apis/glue/2017-03-31/api-2.json
Expand Up @@ -1953,6 +1953,20 @@
{"shape":"OperationTimeoutException"}
]
},
"ListCrawls":{
"name":"ListCrawls",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListCrawlsRequest"},
"output":{"shape":"ListCrawlsResponse"},
"errors":[
{"shape":"EntityNotFoundException"},
{"shape":"OperationTimeoutException"},
{"shape":"InvalidInputException"}
]
},
"ListCustomEntityTypes":{
"name":"ListCustomEntityTypes",
"http":{
Expand Down Expand Up @@ -4191,6 +4205,7 @@
"LogStream":{"shape":"LogStream"}
}
},
"CrawlId":{"type":"string"},
"CrawlList":{
"type":"list",
"member":{"shape":"Crawl"}
Expand Down Expand Up @@ -4231,6 +4246,34 @@
}
},
"CrawlerConfiguration":{"type":"string"},
"CrawlerHistory":{
"type":"structure",
"members":{
"CrawlId":{"shape":"CrawlId"},
"State":{"shape":"CrawlerHistoryState"},
"StartTime":{"shape":"Timestamp"},
"EndTime":{"shape":"Timestamp"},
"Summary":{"shape":"NameString"},
"ErrorMessage":{"shape":"DescriptionString"},
"LogGroup":{"shape":"LogGroup"},
"LogStream":{"shape":"LogStream"},
"MessagePrefix":{"shape":"MessagePrefix"},
"DPUHour":{"shape":"NonNegativeDouble"}
}
},
"CrawlerHistoryList":{
"type":"list",
"member":{"shape":"CrawlerHistory"}
},
"CrawlerHistoryState":{
"type":"string",
"enum":[
"RUNNING",
"COMPLETED",
"FAILED",
"STOPPED"
]
},
"CrawlerLineageSettings":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -4316,6 +4359,18 @@
"DeltaTargets":{"shape":"DeltaTargetList"}
}
},
"CrawlsFilter":{
"type":"structure",
"members":{
"FieldName":{"shape":"FieldName"},
"FilterOperator":{"shape":"FilterOperator"},
"FieldValue":{"shape":"GenericString"}
}
},
"CrawlsFilterList":{
"type":"list",
"member":{"shape":"CrawlsFilter"}
},
"CreateBlueprintRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -5720,6 +5775,16 @@
"type":"string",
"pattern":"[\\s\\S]*"
},
"FieldName":{
"type":"string",
"enum":[
"CRAWL_ID",
"STATE",
"START_TIME",
"END_TIME",
"DPU_HOUR"
]
},
"FieldType":{"type":"string"},
"FillMissingValues":{
"type":"structure",
Expand Down Expand Up @@ -5785,6 +5850,17 @@
"ISNULL"
]
},
"FilterOperator":{
"type":"string",
"enum":[
"GT",
"GE",
"LT",
"LE",
"EQ",
"NE"
]
},
"FilterString":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -7689,6 +7765,23 @@
"NextToken":{"shape":"Token"}
}
},
"ListCrawlsRequest":{
"type":"structure",
"required":["CrawlerName"],
"members":{
"CrawlerName":{"shape":"NameString"},
"MaxResults":{"shape":"PageSize"},
"Filters":{"shape":"CrawlsFilterList"},
"NextToken":{"shape":"Token"}
}
},
"ListCrawlsResponse":{
"type":"structure",
"members":{
"Crawls":{"shape":"CrawlerHistoryList"},
"NextToken":{"shape":"Token"}
}
},
"ListCustomEntityTypesRequest":{
"type":"structure",
"members":{
Expand Down

0 comments on commit 32d9e06

Please sign in to comment.