Skip to content

Commit 5365ee5

Browse files
Update SDK models
1 parent 01f8755 commit 5365ee5

File tree

97 files changed

+2289
-399
lines changed

Some content is hidden

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

97 files changed

+2289
-399
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ resolver = "2"
33
exclude = [
44
"examples/lambda",
55
"examples/test-utils",
6-
"examples/cross_service",
7-
"examples/examples",
86
"examples/webassembly",
7+
"examples/examples",
8+
"examples/cross_service",
99
"tests/no-default-features",
1010
"tests/webassembly"
1111
]

aws-models/bedrock-agent.json

Lines changed: 157 additions & 54 deletions
Large diffs are not rendered by default.

aws-models/codeartifact.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3182,6 +3182,23 @@
31823182
"target": "com.amazonaws.codeartifact#DomainSummary"
31833183
}
31843184
},
3185+
"com.amazonaws.codeartifact#EndpointType": {
3186+
"type": "enum",
3187+
"members": {
3188+
"DUALSTACK": {
3189+
"target": "smithy.api#Unit",
3190+
"traits": {
3191+
"smithy.api#enumValue": "dualstack"
3192+
}
3193+
},
3194+
"IPV4": {
3195+
"target": "smithy.api#Unit",
3196+
"traits": {
3197+
"smithy.api#enumValue": "ipv4"
3198+
}
3199+
}
3200+
}
3201+
},
31853202
"com.amazonaws.codeartifact#ErrorMessage": {
31863203
"type": "string"
31873204
},
@@ -3817,6 +3834,13 @@
38173834
"smithy.api#httpQuery": "format",
38183835
"smithy.api#required": {}
38193836
}
3837+
},
3838+
"endpointType": {
3839+
"target": "com.amazonaws.codeartifact#EndpointType",
3840+
"traits": {
3841+
"smithy.api#documentation": "<p>A string that specifies the type of endpoint.</p>",
3842+
"smithy.api#httpQuery": "endpointType"
3843+
}
38203844
}
38213845
},
38223846
"traits": {
@@ -6990,7 +7014,7 @@
69907014
"packageFormat": {
69917015
"target": "com.amazonaws.codeartifact#PackageFormat",
69927016
"traits": {
6993-
"smithy.api#documentation": "<p>\n The package format associated with a repository's external connection. The valid package formats are:\n </p>\n <ul>\n <li>\n <p>\n <code>npm</code>: A Node Package Manager (npm) package.\n </p>\n </li>\n <li>\n <p>\n <code>pypi</code>: A Python Package Index (PyPI) package.\n </p>\n </li>\n <li>\n <p>\n <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.\n </p>\n </li>\n <li>\n <p>\n <code>nuget</code>: A NuGet package.\n </p>\n </li>\n </ul>"
7017+
"smithy.api#documentation": "<p>\n The package format associated with a repository's external connection. The valid package formats are:\n </p>\n <ul>\n <li>\n <p>\n <code>npm</code>: A Node Package Manager (npm) package.\n </p>\n </li>\n <li>\n <p>\n <code>pypi</code>: A Python Package Index (PyPI) package.\n </p>\n </li>\n <li>\n <p>\n <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file.\n </p>\n </li>\n <li>\n <p>\n <code>nuget</code>: A NuGet package.\n </p>\n </li>\n <li>\n <p>\n <code>generic</code>: A generic package.\n </p>\n </li>\n <li>\n <p>\n <code>ruby</code>: A Ruby package.\n </p>\n </li>\n <li>\n <p>\n <code>swift</code>: A Swift package.\n </p>\n </li>\n <li>\n <p>\n <code>cargo</code>: A Cargo package.\n </p>\n </li>\n </ul>"
69947018
}
69957019
},
69967020
"status": {

aws-models/rds.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2982,6 +2982,23 @@
29822982
"smithy.api#documentation": "<p>This data type is used as a response element in the <code>ModifyDBCluster</code> operation and \n contains changes that will be applied during the next maintenance window.</p>"
29832983
}
29842984
},
2985+
"com.amazonaws.rds#ClusterScalabilityType": {
2986+
"type": "enum",
2987+
"members": {
2988+
"STANDARD": {
2989+
"target": "smithy.api#Unit",
2990+
"traits": {
2991+
"smithy.api#enumValue": "standard"
2992+
}
2993+
},
2994+
"LIMITLESS": {
2995+
"target": "smithy.api#Unit",
2996+
"traits": {
2997+
"smithy.api#enumValue": "limitless"
2998+
}
2999+
}
3000+
}
3001+
},
29853002
"com.amazonaws.rds#ConnectionPoolConfiguration": {
29863003
"type": "structure",
29873004
"members": {
@@ -4463,6 +4480,12 @@
44634480
"smithy.api#documentation": "<p>The network type of the DB cluster.</p>\n <p>The network type is determined by the <code>DBSubnetGroup</code> specified for the DB cluster. \n A <code>DBSubnetGroup</code> can support only the IPv4 protocol or the IPv4 and the IPv6 \n protocols (<code>DUAL</code>).</p>\n <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html\">\n Working with a DB instance in a VPC</a> in the \n <i>Amazon Aurora User Guide.</i>\n </p>\n <p>Valid for Cluster Type: Aurora DB clusters only</p>\n <p>Valid Values: <code>IPV4 | DUAL</code>\n </p>"
44644481
}
44654482
},
4483+
"ClusterScalabilityType": {
4484+
"target": "com.amazonaws.rds#ClusterScalabilityType",
4485+
"traits": {
4486+
"smithy.api#documentation": "<p>Specifies the scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database.\n When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p>\n <p>Valid for: Aurora DB clusters only</p>\n <note>\n <p>You can't modify this setting after you create the DB cluster.</p>\n </note>"
4487+
}
4488+
},
44664489
"DBSystemId": {
44674490
"target": "com.amazonaws.rds#String",
44684491
"traits": {
@@ -6090,6 +6113,9 @@
60906113
{
60916114
"target": "com.amazonaws.rds#MaxDBShardGroupLimitReached"
60926115
},
6116+
{
6117+
"target": "com.amazonaws.rds#NetworkTypeNotSupported"
6118+
},
60936119
{
60946120
"target": "com.amazonaws.rds#UnsupportedDBEngineVersionFault"
60956121
}
@@ -6142,6 +6168,9 @@
61426168
"traits": {
61436169
"smithy.api#documentation": "<p>Specifies whether the DB shard group is publicly accessible.</p>\n <p>When the DB shard group is publicly accessible, its Domain Name System (DNS) endpoint resolves to the private IP address from \n within the DB shard group's virtual private cloud (VPC). It resolves to the public IP address from outside of the DB shard group's VPC. \n Access to the DB shard group is ultimately controlled by the security group it uses. \n That public access is not permitted if the security group assigned to the DB shard group doesn't permit it.</p>\n <p>When the DB shard group isn't publicly accessible, it is an internal DB shard group with a DNS name that resolves to a private IP address.</p>\n <p>Default: The default behavior varies depending on whether <code>DBSubnetGroupName</code> is specified.</p>\n <p>If <code>DBSubnetGroupName</code> isn't specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>\n <ul>\n <li>\n <p>If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB shard group is private.</p>\n </li>\n <li>\n <p>If the default VPC in the target Region has an internet gateway attached to it, the DB shard group is public.</p>\n </li>\n </ul>\n <p>If <code>DBSubnetGroupName</code> is specified, and <code>PubliclyAccessible</code> isn't specified, the following applies:</p>\n <ul>\n <li>\n <p>If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB shard group is private.</p>\n </li>\n <li>\n <p>If the subnets are part of a VPC that has an internet gateway attached to it, the DB shard group is public.</p>\n </li>\n </ul>"
61446170
}
6171+
},
6172+
"Tags": {
6173+
"target": "com.amazonaws.rds#TagList"
61456174
}
61466175
},
61476176
"traits": {
@@ -7535,6 +7564,12 @@
75357564
"smithy.api#documentation": "<p>The storage throughput for the DB cluster. The throughput is automatically set based on the IOPS that you provision, and is not configurable.</p>\n <p>This setting is only for non-Aurora Multi-AZ DB clusters.</p>"
75367565
}
75377566
},
7567+
"ClusterScalabilityType": {
7568+
"target": "com.amazonaws.rds#ClusterScalabilityType",
7569+
"traits": {
7570+
"smithy.api#documentation": "<p>The scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database.\n When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p>"
7571+
}
7572+
},
75387573
"CertificateDetails": {
75397574
"target": "com.amazonaws.rds#CertificateDetails"
75407575
},
@@ -11140,6 +11175,9 @@
1114011175
"traits": {
1114111176
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) for the DB shard group.</p>"
1114211177
}
11178+
},
11179+
"TagList": {
11180+
"target": "com.amazonaws.rds#TagList"
1114311181
}
1114411182
}
1114511183
},

aws-models/sdk-endpoints.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@
559559
"aoss" : {
560560
"endpoints" : {
561561
"ap-northeast-1" : { },
562+
"ap-northeast-2" : { },
562563
"ap-south-1" : { },
563564
"ap-southeast-1" : { },
564565
"ap-southeast-2" : { },
@@ -9138,6 +9139,7 @@
91389139
"ca-central-1" : { },
91399140
"eu-central-1" : { },
91409141
"eu-north-1" : { },
9142+
"eu-south-2" : { },
91419143
"eu-west-1" : { },
91429144
"eu-west-2" : { },
91439145
"sa-east-1" : { },
@@ -13001,6 +13003,7 @@
1300113003
"eu-central-1" : { },
1300213004
"eu-north-1" : { },
1300313005
"eu-south-1" : { },
13006+
"eu-south-2" : { },
1300413007
"eu-west-1" : { },
1300513008
"eu-west-2" : { },
1300613009
"eu-west-3" : { },

examples/examples/aurora/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tracing = "0.1.37"
1616
aws-config= { version = "1.5.7", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1717
aws-smithy-types= { version = "1.2.7", path = "../../../sdk/aws-smithy-types" }
1818
aws-smithy-runtime-api= { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
19-
aws-sdk-rds= { version = "1.57.0", path = "../../../sdk/rds" }
19+
aws-sdk-rds= { version = "1.58.0", path = "../../../sdk/rds" }
2020

2121
[dependencies.phf]
2222
version = "0.11.2"

examples/examples/bedrock-runtime/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ edition = "2021"
66
publish = false
77

88
[dependencies]
9-
aws-config = { version = "1.5.7", path = "../../../sdk/aws-config" }
10-
aws-sdk-bedrockruntime = { version = "1.51.0", path = "../../../sdk/bedrockruntime" }
11-
aws-smithy-runtime-api = { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
12-
aws-smithy-types = { version = "1.2.7", path = "../../../sdk/aws-smithy-types" }
139
reqwest = "0.12.5"
1410
serde = "1.0.204"
1511
serde_json = "1.0.120"
1612
tracing = "0.1.40"
1713
tracing-subscriber = "0.3.18"
14+
aws-config= { version = "1.5.7", path = "../../../sdk/aws-config" }
15+
aws-sdk-bedrockruntime= { version = "1.51.0", path = "../../../sdk/bedrockruntime" }
16+
aws-smithy-runtime-api= { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
17+
aws-smithy-types= { version = "1.2.7", path = "../../../sdk/aws-smithy-types" }
1818

1919
[dependencies.tokio]
2020
version = "1.38.1"

examples/examples/cloudwatchlogs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ path = "../../test-utils"
3232
version = "0.1.0"
3333

3434
[dev-dependencies]
35-
aws-smithy-mocks-experimental = { version = "0.2.1", path = "../../../sdk/aws-smithy-mocks-experimental" }
35+
aws-smithy-mocks-experimental= { version = "0.2.1", path = "../../../sdk/aws-smithy-mocks-experimental" }

examples/examples/ec2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ publish = false
88

99
[dependencies]
1010
tracing = "0.1.40"
11-
aws-smithy-runtime-api = { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
1211
mockall = "0.13.0"
1312
inquire = "0.7.5"
1413
reqwest = "0.12.5"
15-
aws-sdk-ssm = { version = "1.49.0", path = "../../../sdk/ssm" }
16-
aws-smithy-async = { version = "1.2.1", path = "../../../sdk/aws-smithy-async" }
14+
aws-smithy-runtime-api= { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
15+
aws-sdk-ssm= { version = "1.49.0", path = "../../../sdk/ssm" }
16+
aws-smithy-async= { version = "1.2.1", path = "../../../sdk/aws-smithy-async" }
1717
aws-config= { version = "1.5.7", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1818
aws-sdk-ec2= { version = "1.75.0", path = "../../../sdk/ec2" }
1919
aws-types= { version = "1.3.3", path = "../../../sdk/aws-types" }

examples/examples/rds/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ secrecy = "0.8.0"
1616
tracing = "0.1.37"
1717
aws-config= { version = "1.5.7", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1818
aws-smithy-runtime-api= { version = "1.7.2", path = "../../../sdk/aws-smithy-runtime-api" }
19-
aws-sdk-rds= { version = "1.57.0", path = "../../../sdk/rds" }
19+
aws-sdk-rds= { version = "1.58.0", path = "../../../sdk/rds" }
2020

2121
[dependencies.clap]
2222
version = "~4.4"

0 commit comments

Comments
 (0)