Skip to content

Commit

Permalink
Release v1.44.228 (2023-03-23) (#4772)
Browse files Browse the repository at this point in the history
Release v1.44.228 (2023-03-23)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
  * This feature allows Batch to support configuration of ephemeral storage size for jobs running on FARGATE
* `service/chime-sdk-identity`: Updates service API, documentation, and paginators
* `service/chime-sdk-media-pipelines`: Updates service API, documentation, and paginators
* `service/chime-sdk-messaging`: Updates service API and documentation
* `service/chime-sdk-voice`: Updates service API, documentation, and paginators
* `service/codeartifact`: Updates service API and documentation
* `service/guardduty`: Updates service API and documentation
  * Adds AutoEnableOrganizationMembers attribute to DescribeOrganizationConfiguration and UpdateOrganizationConfiguration APIs.
* `service/ivs-realtime`: Adds new service
* `service/mediaconvert`: Updates service API and documentation
  * AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.
* `service/sagemaker`: Updates service API and documentation
  * Amazon SageMaker Autopilot adds two new APIs - CreateAutoMLJobV2 and DescribeAutoMLJobV2. Amazon SageMaker Notebook Instances now supports the ml.geospatial.interactive instance type.
* `service/servicediscovery`: Updates service API
* `service/textract`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Mar 23, 2023
1 parent 0e6aac8 commit a109cad
Show file tree
Hide file tree
Showing 75 changed files with 30,566 additions and 9,388 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
Release v1.44.228 (2023-03-23)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
* This feature allows Batch to support configuration of ephemeral storage size for jobs running on FARGATE
* `service/chime-sdk-identity`: Updates service API, documentation, and paginators
* `service/chime-sdk-media-pipelines`: Updates service API, documentation, and paginators
* `service/chime-sdk-messaging`: Updates service API and documentation
* `service/chime-sdk-voice`: Updates service API, documentation, and paginators
* `service/codeartifact`: Updates service API and documentation
* `service/guardduty`: Updates service API and documentation
* Adds AutoEnableOrganizationMembers attribute to DescribeOrganizationConfiguration and UpdateOrganizationConfiguration APIs.
* `service/ivs-realtime`: Adds new service
* `service/mediaconvert`: Updates service API and documentation
* AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.
* `service/sagemaker`: Updates service API and documentation
* Amazon SageMaker Autopilot adds two new APIs - CreateAutoMLJobV2 and DescribeAutoMLJobV2. Amazon SageMaker Notebook Instances now supports the ml.geospatial.interactive instance type.
* `service/servicediscovery`: Updates service API
* `service/textract`: Updates service API and documentation

Release v1.44.227 (2023-03-22)
===

Expand Down
19 changes: 19 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.44.227"
const SDKVersion = "1.44.228"
30 changes: 26 additions & 4 deletions models/apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,8 @@
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"},
"ephemeralStorage":{"shape":"EphemeralStorage"}
}
},
"ContainerOverrides":{
Expand Down Expand Up @@ -640,7 +641,8 @@
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"},
"ephemeralStorage":{"shape":"EphemeralStorage"}
}
},
"ContainerSummary":{
Expand Down Expand Up @@ -1056,19 +1058,31 @@
"path":{"shape":"String"}
}
},
"EksLabelsMap":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"EksLimits":{
"type":"map",
"key":{"shape":"String"},
"value":{"shape":"Quantity"}
},
"EksMetadata":{
"type":"structure",
"members":{
"labels":{"shape":"EksLabelsMap"}
}
},
"EksPodProperties":{
"type":"structure",
"members":{
"serviceAccountName":{"shape":"String"},
"hostNetwork":{"shape":"Boolean"},
"dnsPolicy":{"shape":"String"},
"containers":{"shape":"EksContainers"},
"volumes":{"shape":"EksVolumes"}
"volumes":{"shape":"EksVolumes"},
"metadata":{"shape":"EksMetadata"}
}
},
"EksPodPropertiesDetail":{
Expand All @@ -1086,7 +1100,8 @@
"EksPodPropertiesOverride":{
"type":"structure",
"members":{
"containers":{"shape":"EksContainerOverrideList"}
"containers":{"shape":"EksContainerOverrideList"},
"metadata":{"shape":"EksMetadata"}
}
},
"EksProperties":{
Expand Down Expand Up @@ -1138,6 +1153,13 @@
"type":"list",
"member":{"shape":"KeyValuePair"}
},
"EphemeralStorage":{
"type":"structure",
"required":["sizeInGiB"],
"members":{
"sizeInGiB":{"shape":"Integer"}
}
},
"EvaluateOnExit":{
"type":"structure",
"required":["action"],
Expand Down

0 comments on commit a109cad

Please sign in to comment.