Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.46.5 #5039

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Release v1.46.5 (2023-10-26)
===

### Service Client Updates
* `service/appstream`: Updates service API and documentation
* This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
* `service/ec2`: Updates service API, documentation, and paginators
* Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC.
* `service/network-firewall`: Updates service API and documentation
* `service/opensearch`: Updates service API and documentation
* `service/redshift`: Updates service API, documentation, and paginators
* Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations.
* `service/sagemaker`: Updates service API and documentation
* Amazon Sagemaker Autopilot now supports Text Generation jobs.
* `service/sns`: Updates service API and documentation
* Message Archiving and Replay is now supported in Amazon SNS for FIFO topics.
* `service/ssm-sap`: Updates service API and documentation
* `service/transfer`: Updates service API, documentation, waiters, and paginators
* No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.

Release v1.46.4 (2023-10-25)
===

Expand Down
9 changes: 9 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.46.4"
const SDKVersion = "1.46.5"
34 changes: 22 additions & 12 deletions models/apis/appstream/2016-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1487,9 +1487,9 @@
},
"ComputeCapacity":{
"type":"structure",
"required":["DesiredInstances"],
"members":{
"DesiredInstances":{"shape":"Integer"}
"DesiredInstances":{"shape":"Integer"},
"DesiredSessions":{"shape":"Integer"}
}
},
"ComputeCapacityStatus":{
Expand All @@ -1499,7 +1499,11 @@
"Desired":{"shape":"Integer"},
"Running":{"shape":"Integer"},
"InUse":{"shape":"Integer"},
"Available":{"shape":"Integer"}
"Available":{"shape":"Integer"},
"DesiredUserSessions":{"shape":"Integer"},
"AvailableUserSessions":{"shape":"Integer"},
"ActiveUserSessions":{"shape":"Integer"},
"ActualUserSessions":{"shape":"Integer"}
}
},
"ConcurrentModificationException":{
Expand Down Expand Up @@ -1692,7 +1696,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"CreateFleetResult":{
Expand Down Expand Up @@ -2186,12 +2191,13 @@
"FleetName"
],
"members":{
"StackName":{"shape":"String"},
"FleetName":{"shape":"String"},
"StackName":{"shape":"Name"},
"FleetName":{"shape":"Name"},
"UserId":{"shape":"UserId"},
"NextToken":{"shape":"String"},
"Limit":{"shape":"Integer"},
"AuthenticationType":{"shape":"AuthenticationType"}
"AuthenticationType":{"shape":"AuthenticationType"},
"InstanceId":{"shape":"String"}
}
},
"DescribeSessionsResult":{
Expand Down Expand Up @@ -2540,7 +2546,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"FleetAttribute":{
Expand All @@ -2551,7 +2558,8 @@
"DOMAIN_JOIN_INFO",
"IAM_ROLE_ARN",
"USB_DEVICE_FILTER_STRINGS",
"SESSION_SCRIPT_S3_LOCATION"
"SESSION_SCRIPT_S3_LOCATION",
"MAX_SESSIONS_PER_INSTANCE"
]
},
"FleetAttributes":{
Expand Down Expand Up @@ -3063,7 +3071,8 @@
"StartTime":{"shape":"Timestamp"},
"MaxExpirationTime":{"shape":"Timestamp"},
"AuthenticationType":{"shape":"AuthenticationType"},
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"}
"NetworkAccessConfiguration":{"shape":"NetworkAccessConfiguration"},
"InstanceId":{"shape":"String"}
}
},
"SessionConnectionState":{
Expand Down Expand Up @@ -3438,7 +3447,7 @@
"members":{
"ImageName":{"shape":"String"},
"ImageArn":{"shape":"Arn"},
"Name":{"shape":"String"},
"Name":{"shape":"Name"},
"InstanceType":{"shape":"String"},
"ComputeCapacity":{"shape":"ComputeCapacity"},
"VpcConfig":{"shape":"VpcConfig"},
Expand All @@ -3459,7 +3468,8 @@
"Platform":{"shape":"PlatformType"},
"MaxConcurrentSessions":{"shape":"Integer"},
"UsbDeviceFilterStrings":{"shape":"UsbDeviceFilterStrings"},
"SessionScriptS3Location":{"shape":"S3Location"}
"SessionScriptS3Location":{"shape":"S3Location"},
"MaxSessionsPerInstance":{"shape":"Integer"}
}
},
"UpdateFleetResult":{
Expand Down
Loading
Loading