Skip to content

Commit

Permalink
Release v1.50.13 (2024-02-07) (#5164)
Browse files Browse the repository at this point in the history
Release v1.50.13 (2024-02-07)
===

### Service Client Updates
* `service/datasync`: Updates service API and documentation
* `service/models.lex.v2`: Updates service API, documentation, and paginators
* `service/redshift`: Updates service API, documentation, and paginators
  * LisRecommendations API to fetch Amazon Redshift Advisor recommendations.
  • Loading branch information
aws-sdk-go-automation committed Feb 7, 2024
1 parent 57fb93a commit 3ededa8
Show file tree
Hide file tree
Showing 17 changed files with 4,029 additions and 474 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.50.13 (2024-02-07)
===

### Service Client Updates
* `service/datasync`: Updates service API and documentation
* `service/models.lex.v2`: Updates service API, documentation, and paginators
* `service/redshift`: Updates service API, documentation, and paginators
* LisRecommendations API to fetch Amazon Redshift Advisor recommendations.

Release v1.50.12 (2024-02-06)
===

Expand Down
50 changes: 10 additions & 40 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.50.12"
const SDKVersion = "1.50.13"
54 changes: 51 additions & 3 deletions models/apis/datasync/2018-11-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1246,6 +1246,7 @@
"Schedule":{"shape":"TaskSchedule"},
"Tags":{"shape":"InputTagList"},
"Includes":{"shape":"FilterList"},
"ManifestConfig":{"shape":"ManifestConfig"},
"TaskReportConfig":{"shape":"TaskReportConfig"}
}
},
Expand Down Expand Up @@ -1629,14 +1630,15 @@
"Options":{"shape":"Options"},
"Excludes":{"shape":"FilterList"},
"Includes":{"shape":"FilterList"},
"ManifestConfig":{"shape":"ManifestConfig"},
"StartTime":{"shape":"Time"},
"EstimatedFilesToTransfer":{"shape":"long"},
"EstimatedBytesToTransfer":{"shape":"long"},
"FilesTransferred":{"shape":"long"},
"BytesWritten":{"shape":"long"},
"BytesTransferred":{"shape":"long"},
"Result":{"shape":"TaskExecutionResultDetail"},
"BytesCompressed":{"shape":"long"},
"Result":{"shape":"TaskExecutionResultDetail"},
"TaskReportConfig":{"shape":"TaskReportConfig"},
"FilesDeleted":{"shape":"long"},
"FilesSkipped":{"shape":"long"},
Expand Down Expand Up @@ -1671,6 +1673,7 @@
"ErrorDetail":{"shape":"string"},
"CreationTime":{"shape":"Time"},
"Includes":{"shape":"FilterList"},
"ManifestConfig":{"shape":"ManifestConfig"},
"TaskReportConfig":{"shape":"TaskReportConfig"}
}
},
Expand Down Expand Up @@ -2255,6 +2258,22 @@
"TRANSFER"
]
},
"ManifestAction":{
"type":"string",
"enum":["TRANSFER"]
},
"ManifestConfig":{
"type":"structure",
"members":{
"Action":{"shape":"ManifestAction"},
"Format":{"shape":"ManifestFormat"},
"Source":{"shape":"SourceManifestConfig"}
}
},
"ManifestFormat":{
"type":"string",
"enum":["CSV"]
},
"MaxP95Performance":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2737,6 +2756,26 @@
"BucketAccessRoleArn":{"shape":"IamRoleArn"}
}
},
"S3ManifestConfig":{
"type":"structure",
"required":[
"ManifestObjectPath",
"BucketAccessRoleArn",
"S3BucketArn"
],
"members":{
"ManifestObjectPath":{"shape":"S3Subdirectory"},
"BucketAccessRoleArn":{"shape":"IamRoleArn"},
"S3BucketArn":{"shape":"S3BucketArn"},
"ManifestObjectVersionId":{"shape":"S3ObjectVersionId"}
}
},
"S3ObjectVersionId":{
"type":"string",
"max":100,
"min":1,
"pattern":"^.+$"
},
"S3StorageClass":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2815,6 +2854,13 @@
"SMB2_0"
]
},
"SourceManifestConfig":{
"type":"structure",
"required":["S3"],
"members":{
"S3":{"shape":"S3ManifestConfig"}
}
},
"SourceNetworkInterfaceArns":{
"type":"list",
"member":{"shape":"NetworkInterfaceArn"}
Expand Down Expand Up @@ -2850,8 +2896,9 @@
"OverrideOptions":{"shape":"Options"},
"Includes":{"shape":"FilterList"},
"Excludes":{"shape":"FilterList"},
"Tags":{"shape":"InputTagList"},
"TaskReportConfig":{"shape":"TaskReportConfig"}
"ManifestConfig":{"shape":"ManifestConfig"},
"TaskReportConfig":{"shape":"TaskReportConfig"},
"Tags":{"shape":"InputTagList"}
}
},
"StartTaskExecutionResponse":{
Expand Down Expand Up @@ -3275,6 +3322,7 @@
"Name":{"shape":"TagValue"},
"CloudWatchLogGroupArn":{"shape":"LogGroupArn"},
"Includes":{"shape":"FilterList"},
"ManifestConfig":{"shape":"ManifestConfig"},
"TaskReportConfig":{"shape":"TaskReportConfig"}
}
},
Expand Down
Loading

0 comments on commit 3ededa8

Please sign in to comment.