Skip to content

Commit 2e8d1eb

Browse files
Update SDK models
1 parent 3611b7c commit 2e8d1eb

File tree

95 files changed

+4844
-629
lines changed

Some content is hidden

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

95 files changed

+4844
-629
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[workspace]
22
resolver = "2"
33
exclude = [
4-
"tests/telemetry",
4+
"tests/webassembly",
55
"tests/no-default-features",
6-
"tests/webassembly"
6+
"tests/telemetry"
77
]
88
members = [
99
"sdk/accessanalyzer",

aws-models/bcm-recommended-actions.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,18 @@
478478
"smithy.api#enumValue": "REVIEW_FREETIER_USAGE_ALERTS"
479479
}
480480
},
481+
"REVIEW_FREETIER_CREDITS_REMAINING": {
482+
"target": "smithy.api#Unit",
483+
"traits": {
484+
"smithy.api#enumValue": "REVIEW_FREETIER_CREDITS_REMAINING"
485+
}
486+
},
487+
"REVIEW_FREETIER_DAYS_REMAINING": {
488+
"target": "smithy.api#Unit",
489+
"traits": {
490+
"smithy.api#enumValue": "REVIEW_FREETIER_DAYS_REMAINING"
491+
}
492+
},
481493
"REVIEW_SAVINGS_OPPORTUNITY_RECOMMENDATIONS": {
482494
"target": "smithy.api#Unit",
483495
"traits": {
@@ -682,10 +694,10 @@
682694
{
683695
"id": "ListRecommendedActionsSuccess",
684696
"params": {
685-
"maxResults": 10
697+
"maxResults": 5
686698
},
687699
"expect": {
688-
"failure": {}
700+
"success": {}
689701
},
690702
"vendorParamsShape": "aws.test#AwsVendorParams"
691703
}

aws-models/connect.json

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

aws-models/datasync.json

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

aws-models/sdk-endpoints.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14324,6 +14324,7 @@
1432414324
"ap-southeast-3" : { },
1432514325
"ap-southeast-4" : { },
1432614326
"ap-southeast-5" : { },
14327+
"ap-southeast-6" : { },
1432714328
"ap-southeast-7" : { },
1432814329
"ca-central-1" : {
1432914330
"variants" : [ {
@@ -40442,6 +40443,11 @@
4044240443
"eusc-de-east-1" : { }
4044340444
}
4044440445
},
40446+
"guardduty" : {
40447+
"endpoints" : {
40448+
"eusc-de-east-1" : { }
40449+
}
40450+
},
4044540451
"health" : {
4044640452
"endpoints" : {
4044740453
"eusc-de-east-1" : {

aws-models/workspaces-web.json

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

sdk/bcmrecommendedactions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
[package]
33
name = "aws-sdk-bcmrecommendedactions"
4-
version = "1.9.0"
4+
version = "1.10.0"
55
authors = ["AWS Rust SDK Team <[email protected]>", "Russell Cohen <[email protected]>"]
66
description = "AWS SDK for AWS Billing and Cost Management Recommended Actions"
77
edition = "2021"

sdk/bcmrecommendedactions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ your project, add the following to your **Cargo.toml** file:
1717
```toml
1818
[dependencies]
1919
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
20-
aws-sdk-bcmrecommendedactions = "1.9.0"
20+
aws-sdk-bcmrecommendedactions = "1.10.0"
2121
tokio = { version = "1", features = ["full"] }
2222
```
2323

sdk/bcmrecommendedactions/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
//! ```toml
3737
//! [dependencies]
3838
//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
39-
//! aws-sdk-bcmrecommendedactions = "1.9.0"
39+
//! aws-sdk-bcmrecommendedactions = "1.10.0"
4040
//! tokio = { version = "1", features = ["full"] }
4141
//! ```
4242
//!

sdk/bcmrecommendedactions/src/types/_action_type.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
/// ActionType::ReviewBudgetAlerts => { /* ... */ },
2525
/// ActionType::ReviewExpiringRi => { /* ... */ },
2626
/// ActionType::ReviewExpiringSp => { /* ... */ },
27+
/// ActionType::ReviewFreetierCreditsRemaining => { /* ... */ },
28+
/// ActionType::ReviewFreetierDaysRemaining => { /* ... */ },
2729
/// ActionType::ReviewFreetierUsageAlerts => { /* ... */ },
2830
/// ActionType::ReviewSavingsOpportunityRecommendations => { /* ... */ },
2931
/// ActionType::UpdateExpiredPaymentMethod => { /* ... */ },
@@ -83,6 +85,10 @@ pub enum ActionType {
8385
#[allow(missing_docs)] // documentation missing in model
8486
ReviewExpiringSp,
8587
#[allow(missing_docs)] // documentation missing in model
88+
ReviewFreetierCreditsRemaining,
89+
#[allow(missing_docs)] // documentation missing in model
90+
ReviewFreetierDaysRemaining,
91+
#[allow(missing_docs)] // documentation missing in model
8692
ReviewFreetierUsageAlerts,
8793
#[allow(missing_docs)] // documentation missing in model
8894
ReviewSavingsOpportunityRecommendations,
@@ -113,6 +119,8 @@ impl ::std::convert::From<&str> for ActionType {
113119
"REVIEW_BUDGET_ALERTS" => ActionType::ReviewBudgetAlerts,
114120
"REVIEW_EXPIRING_RI" => ActionType::ReviewExpiringRi,
115121
"REVIEW_EXPIRING_SP" => ActionType::ReviewExpiringSp,
122+
"REVIEW_FREETIER_CREDITS_REMAINING" => ActionType::ReviewFreetierCreditsRemaining,
123+
"REVIEW_FREETIER_DAYS_REMAINING" => ActionType::ReviewFreetierDaysRemaining,
116124
"REVIEW_FREETIER_USAGE_ALERTS" => ActionType::ReviewFreetierUsageAlerts,
117125
"REVIEW_SAVINGS_OPPORTUNITY_RECOMMENDATIONS" => ActionType::ReviewSavingsOpportunityRecommendations,
118126
"UPDATE_EXPIRED_PAYMENT_METHOD" => ActionType::UpdateExpiredPaymentMethod,
@@ -146,6 +154,8 @@ impl ActionType {
146154
ActionType::ReviewBudgetAlerts => "REVIEW_BUDGET_ALERTS",
147155
ActionType::ReviewExpiringRi => "REVIEW_EXPIRING_RI",
148156
ActionType::ReviewExpiringSp => "REVIEW_EXPIRING_SP",
157+
ActionType::ReviewFreetierCreditsRemaining => "REVIEW_FREETIER_CREDITS_REMAINING",
158+
ActionType::ReviewFreetierDaysRemaining => "REVIEW_FREETIER_DAYS_REMAINING",
149159
ActionType::ReviewFreetierUsageAlerts => "REVIEW_FREETIER_USAGE_ALERTS",
150160
ActionType::ReviewSavingsOpportunityRecommendations => "REVIEW_SAVINGS_OPPORTUNITY_RECOMMENDATIONS",
151161
ActionType::UpdateExpiredPaymentMethod => "UPDATE_EXPIRED_PAYMENT_METHOD",
@@ -170,6 +180,8 @@ impl ActionType {
170180
"REVIEW_BUDGET_ALERTS",
171181
"REVIEW_EXPIRING_RI",
172182
"REVIEW_EXPIRING_SP",
183+
"REVIEW_FREETIER_CREDITS_REMAINING",
184+
"REVIEW_FREETIER_DAYS_REMAINING",
173185
"REVIEW_FREETIER_USAGE_ALERTS",
174186
"REVIEW_SAVINGS_OPPORTUNITY_RECOMMENDATIONS",
175187
"UPDATE_EXPIRED_PAYMENT_METHOD",
@@ -211,6 +223,8 @@ impl ::std::fmt::Display for ActionType {
211223
ActionType::ReviewBudgetAlerts => write!(f, "REVIEW_BUDGET_ALERTS"),
212224
ActionType::ReviewExpiringRi => write!(f, "REVIEW_EXPIRING_RI"),
213225
ActionType::ReviewExpiringSp => write!(f, "REVIEW_EXPIRING_SP"),
226+
ActionType::ReviewFreetierCreditsRemaining => write!(f, "REVIEW_FREETIER_CREDITS_REMAINING"),
227+
ActionType::ReviewFreetierDaysRemaining => write!(f, "REVIEW_FREETIER_DAYS_REMAINING"),
214228
ActionType::ReviewFreetierUsageAlerts => write!(f, "REVIEW_FREETIER_USAGE_ALERTS"),
215229
ActionType::ReviewSavingsOpportunityRecommendations => write!(f, "REVIEW_SAVINGS_OPPORTUNITY_RECOMMENDATIONS"),
216230
ActionType::UpdateExpiredPaymentMethod => write!(f, "UPDATE_EXPIRED_PAYMENT_METHOD"),

0 commit comments

Comments
 (0)