Skip to content

Commit 2b41455

Browse files
author
AWS SDK for Go v2 automation user
committed
Regenerated Clients
1 parent 2327a1b commit 2b41455

File tree

117 files changed

+8113
-1089
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+8113
-1089
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "0101800d-9938-4c94-8756-ecbe4f7b75de",
3+
"type": "feature",
4+
"description": "Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.",
5+
"modules": [
6+
"service/sagemaker"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "0a5c1fe7-0c5c-4189-a8be-eeeb1e7b69ff",
3+
"type": "feature",
4+
"description": "Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations.",
5+
"modules": [
6+
"service/groundstation"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "38aeff50-ce1c-44e4-90f0-8077a952b344",
3+
"type": "feature",
4+
"description": "Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation.",
5+
"modules": [
6+
"service/quicksight"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "692c6958-22d9-4b9c-9472-37fdcec61035",
3+
"type": "feature",
4+
"description": "This release adds support for configurable spark properties for Cleanrooms PySpark workloads.",
5+
"modules": [
6+
"service/cleanrooms"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "70ac9b86-c9e4-484b-8069-d93d3a1df7d5",
3+
"type": "feature",
4+
"description": "Fixes in SDK for customers using TestCase APIs",
5+
"modules": [
6+
"service/connect"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "7f758158-5c55-4830-94f9-43d030e3aad0",
3+
"type": "feature",
4+
"description": "ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.",
5+
"modules": [
6+
"service/imagebuilder"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "c3c5eb0f-5b0b-469b-b548-6083bc2c15d9",
3+
"type": "feature",
4+
"description": "This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns.",
5+
"modules": [
6+
"service/connectcampaignsv2"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "e2565036-5f26-41a4-bf69-b864238677d9",
3+
"type": "feature",
4+
"description": "The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.",
5+
"modules": [
6+
"service/sts"
7+
]
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "e82ffd70-aa0a-413f-a501-6ae182dae627",
3+
"type": "documentation",
4+
"description": "Improving Documentation for Neptune",
5+
"modules": [
6+
"service/neptune"
7+
]
8+
}

config/go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ require (
1616
require (
1717
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.21 // indirect
1818
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.21 // indirect
19+
github.com/aws/aws-sdk-go-v2/internal/v4a v1.4.22 // indirect
1920
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.7 // indirect
2021
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.21 // indirect
2122
)
@@ -30,6 +31,8 @@ replace github.com/aws/aws-sdk-go-v2/internal/configsources => ../internal/confi
3031

3132
replace github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 => ../internal/endpoints/v2/
3233

34+
replace github.com/aws/aws-sdk-go-v2/internal/v4a => ../internal/v4a/
35+
3336
replace github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding => ../service/internal/accept-encoding/
3437

3538
replace github.com/aws/aws-sdk-go-v2/service/internal/presigned-url => ../service/internal/presigned-url/

0 commit comments

Comments
 (0)