Skip to content

Commit

Permalink
Release v1.50.28 (2024-02-28) (#5185)
Browse files Browse the repository at this point in the history
Release v1.50.28 (2024-02-28)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
  * This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/ce`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
  * This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
* `service/iot`: Updates service API and documentation
  * This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
* `service/wafv2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Feb 28, 2024
1 parent 1a86d22 commit b79e466
Show file tree
Hide file tree
Showing 20 changed files with 5,968 additions and 3,573 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,17 @@
Release v1.50.28 (2024-02-28)
===

### Service Client Updates
* `service/batch`: Updates service API and documentation
* This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
* `service/bedrock-agent-runtime`: Updates service API and documentation
* `service/ce`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
* `service/iot`: Updates service API and documentation
* This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
* `service/wafv2`: Updates service API and documentation

Release v1.50.27 (2024-02-27)
===

Expand Down
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.50.27"
const SDKVersion = "1.50.28"
176 changes: 170 additions & 6 deletions models/apis/batch/2016-08-10/api-2.json
Expand Up @@ -920,6 +920,58 @@
"type":"list",
"member":{"shape":"Ec2Configuration"}
},
"EcsProperties":{
"type":"structure",
"required":["taskProperties"],
"members":{
"taskProperties":{"shape":"ListEcsTaskProperties"}
}
},
"EcsPropertiesDetail":{
"type":"structure",
"members":{
"taskProperties":{"shape":"ListEcsTaskDetails"}
}
},
"EcsPropertiesOverride":{
"type":"structure",
"members":{
"taskProperties":{"shape":"ListTaskPropertiesOverride"}
}
},
"EcsTaskDetails":{
"type":"structure",
"members":{
"containers":{"shape":"ListTaskContainerDetails"},
"containerInstanceArn":{"shape":"String"},
"taskArn":{"shape":"String"},
"ephemeralStorage":{"shape":"EphemeralStorage"},
"executionRoleArn":{"shape":"String"},
"platformVersion":{"shape":"String"},
"ipcMode":{"shape":"String"},
"taskRoleArn":{"shape":"String"},
"pidMode":{"shape":"String"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"runtimePlatform":{"shape":"RuntimePlatform"},
"volumes":{"shape":"Volumes"}
}
},
"EcsTaskProperties":{
"type":"structure",
"required":["containers"],
"members":{
"containers":{"shape":"ListTaskContainerProperties"},
"ephemeralStorage":{"shape":"EphemeralStorage"},
"executionRoleArn":{"shape":"String"},
"platformVersion":{"shape":"String"},
"ipcMode":{"shape":"String"},
"taskRoleArn":{"shape":"String"},
"pidMode":{"shape":"String"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"runtimePlatform":{"shape":"RuntimePlatform"},
"volumes":{"shape":"Volumes"}
}
},
"EksAttemptContainerDetail":{
"type":"structure",
"members":{
Expand All @@ -935,6 +987,7 @@
"type":"structure",
"members":{
"containers":{"shape":"EksAttemptContainerDetails"},
"initContainers":{"shape":"EksAttemptContainerDetails"},
"podName":{"shape":"String"},
"nodeName":{"shape":"String"},
"startedAt":{"shape":"Long"},
Expand Down Expand Up @@ -1007,6 +1060,7 @@
"EksContainerOverride":{
"type":"structure",
"members":{
"name":{"shape":"String"},
"image":{"shape":"String"},
"command":{"shape":"StringList"},
"args":{"shape":"StringList"},
Expand Down Expand Up @@ -1087,8 +1141,10 @@
"hostNetwork":{"shape":"Boolean"},
"dnsPolicy":{"shape":"String"},
"containers":{"shape":"EksContainers"},
"initContainers":{"shape":"EksContainers"},
"volumes":{"shape":"EksVolumes"},
"metadata":{"shape":"EksMetadata"}
"metadata":{"shape":"EksMetadata"},
"shareProcessNamespace":{"shape":"Boolean"}
}
},
"EksPodPropertiesDetail":{
Expand All @@ -1098,16 +1154,19 @@
"hostNetwork":{"shape":"Boolean"},
"dnsPolicy":{"shape":"String"},
"containers":{"shape":"EksContainerDetails"},
"initContainers":{"shape":"EksContainerDetails"},
"volumes":{"shape":"EksVolumes"},
"podName":{"shape":"String"},
"nodeName":{"shape":"String"},
"metadata":{"shape":"EksMetadata"}
"metadata":{"shape":"EksMetadata"},
"shareProcessNamespace":{"shape":"Boolean"}
}
},
"EksPodPropertiesOverride":{
"type":"structure",
"members":{
"containers":{"shape":"EksContainerOverrideList"},
"initContainers":{"shape":"EksContainerOverrideList"},
"metadata":{"shape":"EksMetadata"}
}
},
Expand Down Expand Up @@ -1254,6 +1313,7 @@
"tags":{"shape":"TagrisTagsMap"},
"propagateTags":{"shape":"Boolean"},
"platformCapabilities":{"shape":"PlatformCapabilityList"},
"ecsProperties":{"shape":"EcsProperties"},
"eksProperties":{"shape":"EksProperties"},
"containerOrchestrationType":{"shape":"OrchestrationType"}
}
Expand Down Expand Up @@ -1317,6 +1377,7 @@
"platformCapabilities":{"shape":"PlatformCapabilityList"},
"eksProperties":{"shape":"EksPropertiesDetail"},
"eksAttempts":{"shape":"EksAttemptDetails"},
"ecsProperties":{"shape":"EcsPropertiesDetail"},
"isCancelled":{"shape":"Boolean"},
"isTerminated":{"shape":"Boolean"}
}
Expand Down Expand Up @@ -1436,6 +1497,14 @@
"swappiness":{"shape":"Integer"}
}
},
"ListEcsTaskDetails":{
"type":"list",
"member":{"shape":"EcsTaskDetails"}
},
"ListEcsTaskProperties":{
"type":"list",
"member":{"shape":"EcsTaskProperties"}
},
"ListJobsFilterList":{
"type":"list",
"member":{"shape":"KeyValuesPair"}
Expand Down Expand Up @@ -1491,6 +1560,22 @@
"tags":{"shape":"TagrisTagsMap"}
}
},
"ListTaskContainerDetails":{
"type":"list",
"member":{"shape":"TaskContainerDetails"}
},
"ListTaskContainerOverrides":{
"type":"list",
"member":{"shape":"TaskContainerOverrides"}
},
"ListTaskContainerProperties":{
"type":"list",
"member":{"shape":"TaskContainerProperties"}
},
"ListTaskPropertiesOverride":{
"type":"list",
"member":{"shape":"TaskPropertiesOverride"}
},
"LogConfiguration":{
"type":"structure",
"required":["logDriver"],
Expand Down Expand Up @@ -1588,7 +1673,9 @@
"required":["targetNodes"],
"members":{
"targetNodes":{"shape":"String"},
"containerOverrides":{"shape":"ContainerOverrides"}
"containerOverrides":{"shape":"ContainerOverrides"},
"ecsPropertiesOverride":{"shape":"EcsPropertiesOverride"},
"instanceTypes":{"shape":"StringList"}
}
},
"NodePropertyOverrides":{
Expand All @@ -1604,7 +1691,9 @@
"required":["targetNodes"],
"members":{
"targetNodes":{"shape":"String"},
"container":{"shape":"ContainerProperties"}
"container":{"shape":"ContainerProperties"},
"instanceTypes":{"shape":"StringList"},
"ecsProperties":{"shape":"EcsProperties"}
}
},
"OrchestrationType":{
Expand Down Expand Up @@ -1653,7 +1742,8 @@
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"},
"platformCapabilities":{"shape":"PlatformCapabilityList"},
"eksProperties":{"shape":"EksProperties"}
"eksProperties":{"shape":"EksProperties"},
"ecsProperties":{"shape":"EcsProperties"}
}
},
"RegisterJobDefinitionResponse":{
Expand Down Expand Up @@ -1811,7 +1901,8 @@
"propagateTags":{"shape":"Boolean"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"},
"eksPropertiesOverride":{"shape":"EksPropertiesOverride"}
"eksPropertiesOverride":{"shape":"EksPropertiesOverride"},
"ecsPropertiesOverride":{"shape":"EcsPropertiesOverride"}
}
},
"SubmitJobResponse":{
Expand Down Expand Up @@ -1873,6 +1964,79 @@
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"TaskContainerDependency":{
"type":"structure",
"members":{
"containerName":{"shape":"String"},
"condition":{"shape":"String"}
}
},
"TaskContainerDependencyList":{
"type":"list",
"member":{"shape":"TaskContainerDependency"}
},
"TaskContainerDetails":{
"type":"structure",
"members":{
"command":{"shape":"StringList"},
"dependsOn":{"shape":"TaskContainerDependencyList"},
"environment":{"shape":"EnvironmentVariables"},
"essential":{"shape":"Boolean"},
"image":{"shape":"String"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"mountPoints":{"shape":"MountPoints"},
"name":{"shape":"String"},
"privileged":{"shape":"Boolean"},
"readonlyRootFilesystem":{"shape":"Boolean"},
"repositoryCredentials":{"shape":"RepositoryCredentials"},
"resourceRequirements":{"shape":"ResourceRequirements"},
"secrets":{"shape":"SecretList"},
"ulimits":{"shape":"Ulimits"},
"user":{"shape":"String"},
"exitCode":{"shape":"Integer"},
"reason":{"shape":"String"},
"logStreamName":{"shape":"String"},
"networkInterfaces":{"shape":"NetworkInterfaceList"}
}
},
"TaskContainerOverrides":{
"type":"structure",
"members":{
"command":{"shape":"StringList"},
"environment":{"shape":"EnvironmentVariables"},
"name":{"shape":"String"},
"resourceRequirements":{"shape":"ResourceRequirements"}
}
},
"TaskContainerProperties":{
"type":"structure",
"required":["image"],
"members":{
"command":{"shape":"StringList"},
"dependsOn":{"shape":"TaskContainerDependencyList"},
"environment":{"shape":"EnvironmentVariables"},
"essential":{"shape":"Boolean"},
"image":{"shape":"String"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"mountPoints":{"shape":"MountPoints"},
"name":{"shape":"String"},
"privileged":{"shape":"Boolean"},
"readonlyRootFilesystem":{"shape":"Boolean"},
"repositoryCredentials":{"shape":"RepositoryCredentials"},
"resourceRequirements":{"shape":"ResourceRequirements"},
"secrets":{"shape":"SecretList"},
"ulimits":{"shape":"Ulimits"},
"user":{"shape":"String"}
}
},
"TaskPropertiesOverride":{
"type":"structure",
"members":{
"containers":{"shape":"ListTaskContainerOverrides"}
}
},
"TerminateJobRequest":{
"type":"structure",
"required":[
Expand Down

0 comments on commit b79e466

Please sign in to comment.