Skip to content

Commit

Permalink
Release v1.49.19 (2024-01-11) (#5137)
Browse files Browse the repository at this point in the history
Release v1.49.19 (2024-01-11)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
* `service/ecs`: Updates service API and documentation
  * This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
* `service/eventbridge`: Updates service API and documentation
* `service/iot`: Updates service API and documentation
  * Add ConflictException to Update APIs of AWS IoT Software Package Catalog
* `service/iotfleetwise`: Updates service API
* `service/secretsmanager`: Updates service documentation and examples
  * Doc only update for Secrets Manager
* `service/workspaces`: Updates service documentation
  * Added AWS Workspaces RebootWorkspaces API - Extended Reboot documentation update
  • Loading branch information
aws-sdk-go-automation committed Jan 11, 2024
1 parent 98c36d0 commit 0a25be2
Show file tree
Hide file tree
Showing 25 changed files with 1,654 additions and 250 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release v1.49.19 (2024-01-11)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
* `service/ecs`: Updates service API and documentation
* This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
* `service/eventbridge`: Updates service API and documentation
* `service/iot`: Updates service API and documentation
* Add ConflictException to Update APIs of AWS IoT Software Package Catalog
* `service/iotfleetwise`: Updates service API
* `service/secretsmanager`: Updates service documentation and examples
* Doc only update for Secrets Manager
* `service/workspaces`: Updates service documentation
* Added AWS Workspaces RebootWorkspaces API - Extended Reboot documentation update

Release v1.49.18 (2024-01-10)
===

Expand Down
13 changes: 13 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.49.18"
const SDKVersion = "1.49.19"
16 changes: 16 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -20723,6 +20723,14 @@
"VolumeId":{
"shape":"String",
"locationName":"volumeId"
},
"AssociatedResource":{
"shape":"String",
"locationName":"associatedResource"
},
"VolumeOwnerId":{
"shape":"String",
"locationName":"volumeOwnerId"
}
}
},
Expand Down Expand Up @@ -45615,6 +45623,14 @@
"DeleteOnTermination":{
"shape":"Boolean",
"locationName":"deleteOnTermination"
},
"AssociatedResource":{
"shape":"String",
"locationName":"associatedResource"
},
"InstanceOwningService":{
"shape":"String",
"locationName":"instanceOwningService"
}
}
},
Expand Down
52 changes: 28 additions & 24 deletions models/apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

118 changes: 110 additions & 8 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,8 @@
{"shape":"ServerException"},
{"shape":"ClientException"},
{"shape":"InvalidParameterException"},
{"shape":"ClusterNotFoundException"}
{"shape":"ClusterNotFoundException"},
{"shape":"UnsupportedFeatureException"}
]
},
"StopTask":{
Expand Down Expand Up @@ -837,7 +838,8 @@
{"shape":"PlatformUnknownException"},
{"shape":"PlatformTaskDefinitionIncompatibilityException"},
{"shape":"AccessDeniedException"},
{"shape":"NamespaceNotFoundException"}
{"shape":"NamespaceNotFoundException"},
{"shape":"UnsupportedFeatureException"}
]
},
"UpdateServicePrimaryTaskSet":{
Expand Down Expand Up @@ -1477,7 +1479,8 @@
"enableECSManagedTags":{"shape":"Boolean"},
"propagateTags":{"shape":"PropagateTags"},
"enableExecuteCommand":{"shape":"Boolean"},
"serviceConnectConfiguration":{"shape":"ServiceConnectConfiguration"}
"serviceConnectConfiguration":{"shape":"ServiceConnectConfiguration"},
"volumeConfigurations":{"shape":"ServiceVolumeConfigurations"}
}
},
"CreateServiceResponse":{
Expand Down Expand Up @@ -1638,7 +1641,8 @@
"rolloutState":{"shape":"DeploymentRolloutState"},
"rolloutStateReason":{"shape":"String"},
"serviceConnectConfiguration":{"shape":"ServiceConnectConfiguration"},
"serviceConnectResources":{"shape":"ServiceConnectServiceResourceList"}
"serviceConnectResources":{"shape":"ServiceConnectServiceResourceList"},
"volumeConfigurations":{"shape":"ServiceVolumeConfigurations"}
}
},
"DeploymentAlarms":{
Expand Down Expand Up @@ -1907,6 +1911,27 @@
}
},
"Double":{"type":"double"},
"EBSKMSKeyId":{"type":"string"},
"EBSResourceType":{
"type":"string",
"enum":["volume"]
},
"EBSSnapshotId":{"type":"string"},
"EBSTagSpecification":{
"type":"structure",
"required":["resourceType"],
"members":{
"resourceType":{"shape":"EBSResourceType"},
"tags":{"shape":"Tags"},
"propagateTags":{"shape":"PropagateTags"}
}
},
"EBSTagSpecifications":{
"type":"list",
"member":{"shape":"EBSTagSpecification"}
},
"EBSVolumeType":{"type":"string"},
"ECSVolumeName":{"type":"string"},
"EFSAuthorizationConfig":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2136,6 +2161,7 @@
"sourcePath":{"shape":"String"}
}
},
"IAMRoleArn":{"type":"string"},
"InferenceAccelerator":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2960,7 +2986,8 @@
"clientToken":{
"shape":"String",
"idempotencyToken":true
}
},
"volumeConfigurations":{"shape":"TaskVolumeConfigurations"}
}
},
"RunTaskResponse":{
Expand Down Expand Up @@ -3132,6 +3159,22 @@
"type":"list",
"member":{"shape":"ServiceField"}
},
"ServiceManagedEBSVolumeConfiguration":{
"type":"structure",
"required":["roleArn"],
"members":{
"encrypted":{"shape":"BoxedBoolean"},
"kmsKeyId":{"shape":"EBSKMSKeyId"},
"volumeType":{"shape":"EBSVolumeType"},
"sizeInGiB":{"shape":"BoxedInteger"},
"snapshotId":{"shape":"EBSSnapshotId"},
"iops":{"shape":"BoxedInteger"},
"throughput":{"shape":"BoxedInteger"},
"tagSpecifications":{"shape":"EBSTagSpecifications"},
"roleArn":{"shape":"IAMRoleArn"},
"filesystemType":{"shape":"TaskFilesystemType"}
}
},
"ServiceNotActiveException":{
"type":"structure",
"members":{
Expand All @@ -3157,6 +3200,18 @@
"containerPort":{"shape":"BoxedInteger"}
}
},
"ServiceVolumeConfiguration":{
"type":"structure",
"required":["name"],
"members":{
"name":{"shape":"ECSVolumeName"},
"managedEBSVolume":{"shape":"ServiceManagedEBSVolumeConfiguration"}
}
},
"ServiceVolumeConfigurations":{
"type":"list",
"member":{"shape":"ServiceVolumeConfiguration"}
},
"Services":{
"type":"list",
"member":{"shape":"Service"}
Expand Down Expand Up @@ -3235,7 +3290,8 @@
"referenceId":{"shape":"String"},
"startedBy":{"shape":"String"},
"tags":{"shape":"Tags"},
"taskDefinition":{"shape":"String"}
"taskDefinition":{"shape":"String"},
"volumeConfigurations":{"shape":"TaskVolumeConfigurations"}
}
},
"StartTaskResponse":{
Expand Down Expand Up @@ -3521,6 +3577,38 @@
"type":"list",
"member":{"shape":"TaskField"}
},
"TaskFilesystemType":{
"type":"string",
"enum":[
"ext3",
"ext4",
"xfs"
]
},
"TaskManagedEBSVolumeConfiguration":{
"type":"structure",
"required":["roleArn"],
"members":{
"encrypted":{"shape":"BoxedBoolean"},
"kmsKeyId":{"shape":"EBSKMSKeyId"},
"volumeType":{"shape":"EBSVolumeType"},
"sizeInGiB":{"shape":"BoxedInteger"},
"snapshotId":{"shape":"EBSSnapshotId"},
"iops":{"shape":"BoxedInteger"},
"throughput":{"shape":"BoxedInteger"},
"tagSpecifications":{"shape":"EBSTagSpecifications"},
"roleArn":{"shape":"IAMRoleArn"},
"terminationPolicy":{"shape":"TaskManagedEBSVolumeTerminationPolicy"},
"filesystemType":{"shape":"TaskFilesystemType"}
}
},
"TaskManagedEBSVolumeTerminationPolicy":{
"type":"structure",
"required":["deleteOnTermination"],
"members":{
"deleteOnTermination":{"shape":"BoxedBoolean"}
}
},
"TaskOverride":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3591,6 +3679,18 @@
"TerminationNotice"
]
},
"TaskVolumeConfiguration":{
"type":"structure",
"required":["name"],
"members":{
"name":{"shape":"ECSVolumeName"},
"managedEBSVolume":{"shape":"TaskManagedEBSVolumeConfiguration"}
}
},
"TaskVolumeConfigurations":{
"type":"list",
"member":{"shape":"TaskVolumeConfiguration"}
},
"Tasks":{
"type":"list",
"member":{"shape":"Task"}
Expand Down Expand Up @@ -3807,7 +3907,8 @@
"loadBalancers":{"shape":"LoadBalancers"},
"propagateTags":{"shape":"PropagateTags"},
"serviceRegistries":{"shape":"ServiceRegistries"},
"serviceConnectConfiguration":{"shape":"ServiceConnectConfiguration"}
"serviceConnectConfiguration":{"shape":"ServiceConnectConfiguration"},
"volumeConfigurations":{"shape":"ServiceVolumeConfigurations"}
}
},
"UpdateServiceResponse":{
Expand Down Expand Up @@ -3873,7 +3974,8 @@
"host":{"shape":"HostVolumeProperties"},
"dockerVolumeConfiguration":{"shape":"DockerVolumeConfiguration"},
"efsVolumeConfiguration":{"shape":"EFSVolumeConfiguration"},
"fsxWindowsFileServerVolumeConfiguration":{"shape":"FSxWindowsFileServerVolumeConfiguration"}
"fsxWindowsFileServerVolumeConfiguration":{"shape":"FSxWindowsFileServerVolumeConfiguration"},
"configuredAtLaunch":{"shape":"BoxedBoolean"}
}
},
"VolumeFrom":{
Expand Down
Loading

0 comments on commit 0a25be2

Please sign in to comment.