Skip to content

Commit 69205cd

Browse files
Update SDK models
1 parent 15ef1fa commit 69205cd

File tree

174 files changed

+12060
-667
lines changed

Some content is hidden

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

174 files changed

+12060
-667
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[workspace]
22
resolver = "2"
33
exclude = [
4-
"examples/webassembly",
5-
"examples/test-utils",
64
"examples/lambda",
5+
"examples/test-utils",
76
"examples/cross_service",
7+
"examples/webassembly",
88
"examples/examples",
9-
"tests/webassembly",
109
"tests/no-default-features",
11-
"tests/telemetry"
10+
"tests/telemetry",
11+
"tests/webassembly"
1212
]
1313
members = [
1414
"sdk/accessanalyzer",

aws-models/ec2.json

Lines changed: 571 additions & 12 deletions
Large diffs are not rendered by default.

aws-models/freetier.json

Lines changed: 998 additions & 115 deletions
Large diffs are not rendered by default.

aws-models/opsworkscm.json

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

aws-models/sdk-endpoints.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,6 +1625,7 @@
16251625
"endpoints" : {
16261626
"af-south-1" : { },
16271627
"ap-east-1" : { },
1628+
"ap-east-2" : { },
16281629
"ap-northeast-1" : { },
16291630
"ap-northeast-2" : { },
16301631
"ap-northeast-3" : { },
@@ -9338,6 +9339,7 @@
93389339
"tags" : [ "dualstack" ]
93399340
} ]
93409341
},
9342+
"me-central-1" : { },
93419343
"me-south-1" : {
93429344
"variants" : [ {
93439345
"hostname" : "elasticbeanstalk.me-south-1.api.aws",
@@ -14251,6 +14253,7 @@
1425114253
"endpoints" : {
1425214254
"af-south-1" : { },
1425314255
"ap-east-1" : { },
14256+
"ap-east-2" : { },
1425414257
"ap-northeast-1" : { },
1425514258
"ap-northeast-2" : { },
1425614259
"ap-northeast-3" : { },
@@ -22504,6 +22507,7 @@
2250422507
"endpoints" : {
2250522508
"af-south-1" : { },
2250622509
"ap-east-1" : { },
22510+
"ap-east-2" : { },
2250722511
"ap-northeast-1" : { },
2250822512
"ap-northeast-2" : { },
2250922513
"ap-northeast-3" : { },
@@ -22513,6 +22517,8 @@
2251322517
"ap-southeast-2" : { },
2251422518
"ap-southeast-3" : { },
2251522519
"ap-southeast-4" : { },
22520+
"ap-southeast-5" : { },
22521+
"ap-southeast-7" : { },
2251622522
"ca-central-1" : { },
2251722523
"ca-west-1" : { },
2251822524
"eu-central-1" : { },
@@ -22526,6 +22532,7 @@
2252622532
"il-central-1" : { },
2252722533
"me-central-1" : { },
2252822534
"me-south-1" : { },
22535+
"mx-central-1" : { },
2252922536
"sa-east-1" : { },
2253022537
"us-east-1" : { },
2253122538
"us-east-2" : { },

examples/examples/auto-scaling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tracing = "0.1.37"
1212
tokio-stream = "0.1.14"
1313
aws-config= { version = "1.8.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1414
aws-sdk-autoscaling= { version = "1.84.0", path = "../../../sdk/autoscaling" }
15-
aws-sdk-ec2= { version = "1.144.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.145.0", path = "../../../sdk/ec2" }
1616
aws-types= { version = "1.3.7", path = "../../../sdk/aws-types" }
1717

1818
[dependencies.tokio]

examples/examples/ebs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ base64 = "0.13.0"
1111
sha2 = "0.9.5"
1212
aws-config= { version = "1.8.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
1313
aws-sdk-ebs= { version = "1.74.0", path = "../../../sdk/ebs" }
14-
aws-sdk-ec2= { version = "1.144.0", path = "../../../sdk/ec2" }
14+
aws-sdk-ec2= { version = "1.145.0", path = "../../../sdk/ec2" }
1515

1616
[dependencies.tokio]
1717
version = "1.20.1"

examples/examples/ec2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ aws-smithy-runtime-api= { version = "1.8.1", path = "../../../sdk/aws-smithy-run
1515
aws-sdk-ssm= { version = "1.83.0", path = "../../../sdk/ssm" }
1616
aws-smithy-async= { version = "1.2.5", path = "../../../sdk/aws-smithy-async" }
1717
aws-config= { version = "1.8.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
18-
aws-sdk-ec2= { version = "1.144.0", path = "../../../sdk/ec2" }
18+
aws-sdk-ec2= { version = "1.145.0", path = "../../../sdk/ec2" }
1919
aws-types= { version = "1.3.7", path = "../../../sdk/aws-types" }
2020

2121
[dependencies.tokio]

examples/examples/lambda/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ anyhow = "1.0.71"
1212
lambda_runtime = "0.8.0"
1313
serde = "1.0.164"
1414
aws-config= { version = "1.8.1", path = "../../../sdk/aws-config", features = ["behavior-version-latest"] }
15-
aws-sdk-ec2= { version = "1.144.0", path = "../../../sdk/ec2" }
15+
aws-sdk-ec2= { version = "1.145.0", path = "../../../sdk/ec2" }
1616
aws-sdk-iam= { version = "1.79.0", path = "../../../sdk/iam" }
1717
aws-sdk-lambda= { version = "1.86.0", path = "../../../sdk/lambda" }
1818
aws-sdk-s3= { version = "1.96.0", path = "../../../sdk/s3" }

examples/lambda/calculator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ serde_json = "1.0.94"
1414
anyhow = "1.0.71"
1515
serde = "1.0.164"
1616
aws-config= { version = "1.8.1", path = "../../../sdk/aws-config" }
17-
aws-sdk-ec2= { version = "1.144.0", path = "../../../sdk/ec2" }
17+
aws-sdk-ec2= { version = "1.145.0", path = "../../../sdk/ec2" }
1818
aws-sdk-lambda= { version = "1.86.0", path = "../../../sdk/lambda" }
1919
aws-sdk-s3= { version = "1.96.0", path = "../../../sdk/s3" }
2020

0 commit comments

Comments
 (0)