Skip to content

Commit

Permalink
Release v1.44.154 (2022-12-06) (#4654)
Browse files Browse the repository at this point in the history
Release v1.44.154 (2022-12-06)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/connect`: Updates service API, documentation, and paginators
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
  * Endpoint Ruleset update: Use http instead of https for the "local" region.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release adds the BlueGreenDeploymentNotFoundFault to the AddTagsToResource, ListTagsForResource, and RemoveTagsFromResource operations.
* `service/sagemaker-featurestore-runtime`: Updates service API and documentation
* `service/streams.dynamodb`: Adds new service
  • Loading branch information
aws-sdk-go-automation authored Dec 6, 2022
1 parent 700263c commit 18d863d
Show file tree
Hide file tree
Showing 29 changed files with 4,248 additions and 553 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.44.154 (2022-12-06)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/connect`: Updates service API, documentation, and paginators
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
* Endpoint Ruleset update: Use http instead of https for the "local" region.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release adds the BlueGreenDeploymentNotFoundFault to the AddTagsToResource, ListTagsForResource, and RemoveTagsFromResource operations.
* `service/sagemaker-featurestore-runtime`: Updates service API and documentation
* `service/streams.dynamodb`: Adds new service

Release v1.44.153 (2022-12-05)
===

Expand Down
18 changes: 15 additions & 3 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.44.153"
const SDKVersion = "1.44.154"
69 changes: 61 additions & 8 deletions models/apis/billingconductor/2021-07-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -908,6 +908,13 @@
"Arn":{"shape":"CustomLineItemArn"}
}
},
"CreateFreeTierConfig":{
"type":"structure",
"required":["Activated"],
"members":{
"Activated":{"shape":"TieringActivated"}
}
},
"CreatePricingPlanInput":{
"type":"structure",
"required":["Name"],
Expand Down Expand Up @@ -935,8 +942,7 @@
"required":[
"Name",
"Scope",
"Type",
"ModifierPercentage"
"Type"
],
"members":{
"ClientToken":{
Expand All @@ -952,7 +958,8 @@
"ModifierPercentage":{"shape":"ModifierPercentage"},
"Service":{"shape":"Service"},
"Tags":{"shape":"TagMap"},
"BillingEntity":{"shape":"BillingEntity"}
"BillingEntity":{"shape":"BillingEntity"},
"Tiering":{"shape":"CreateTieringInput"}
}
},
"CreatePricingRuleOutput":{
Expand All @@ -961,6 +968,13 @@
"Arn":{"shape":"PricingRuleArn"}
}
},
"CreateTieringInput":{
"type":"structure",
"required":["FreeTier"],
"members":{
"FreeTier":{"shape":"CreateFreeTierConfig"}
}
},
"Currency":{"type":"string"},
"CurrencyCode":{
"type":"string",
Expand Down Expand Up @@ -1220,6 +1234,13 @@
"type":"list",
"member":{"shape":"DisassociateResourceResponseElement"}
},
"FreeTierConfig":{
"type":"structure",
"required":["Activated"],
"members":{
"Activated":{"shape":"TieringActivated"}
}
},
"Instant":{"type":"long"},
"InternalServerException":{
"type":"structure",
Expand Down Expand Up @@ -1652,7 +1673,8 @@
"AssociatedPricingPlanCount":{"shape":"NumberOfPricingPlansAssociatedWith"},
"CreationTime":{"shape":"Instant"},
"LastModifiedTime":{"shape":"Instant"},
"BillingEntity":{"shape":"BillingEntity"}
"BillingEntity":{"shape":"BillingEntity"},
"Tiering":{"shape":"Tiering"}
}
},
"PricingRuleName":{
Expand All @@ -1674,7 +1696,8 @@
"type":"string",
"enum":[
"MARKUP",
"DISCOUNT"
"DISCOUNT",
"TIERING"
]
},
"ProformaCost":{"type":"string"},
Expand Down Expand Up @@ -1784,6 +1807,17 @@
},
"exception":true
},
"Tiering":{
"type":"structure",
"required":["FreeTier"],
"members":{
"FreeTier":{"shape":"FreeTierConfig"}
}
},
"TieringActivated":{
"type":"boolean",
"box":true
},
"Token":{"type":"string"},
"UntagResourceRequest":{
"type":"structure",
Expand Down Expand Up @@ -1878,6 +1912,13 @@
"PercentageValue":{"shape":"CustomLineItemPercentageChargeValue"}
}
},
"UpdateFreeTierConfig":{
"type":"structure",
"required":["Activated"],
"members":{
"Activated":{"shape":"TieringActivated"}
}
},
"UpdatePricingPlanInput":{
"type":"structure",
"required":["Arn"],
Expand Down Expand Up @@ -1905,7 +1946,8 @@
"Name":{"shape":"PricingRuleName"},
"Description":{"shape":"PricingRuleDescription"},
"Type":{"shape":"PricingRuleType"},
"ModifierPercentage":{"shape":"ModifierPercentage"}
"ModifierPercentage":{"shape":"ModifierPercentage"},
"Tiering":{"shape":"UpdateTieringInput"}
}
},
"UpdatePricingRuleOutput":{
Expand All @@ -1920,7 +1962,15 @@
"Service":{"shape":"Service"},
"AssociatedPricingPlanCount":{"shape":"NumberOfPricingPlansAssociatedWith"},
"LastModifiedTime":{"shape":"Instant"},
"BillingEntity":{"shape":"BillingEntity"}
"BillingEntity":{"shape":"BillingEntity"},
"Tiering":{"shape":"UpdateTieringInput"}
}
},
"UpdateTieringInput":{
"type":"structure",
"required":["FreeTier"],
"members":{
"FreeTier":{"shape":"UpdateFreeTierConfig"}
}
},
"ValidationException":{
Expand Down Expand Up @@ -2004,7 +2054,10 @@
"INVALID_BILLING_GROUP",
"INVALID_BILLING_PERIOD_FOR_OPERATION",
"ILLEGAL_BILLING_ENTITY",
"ILLEGAL_MODIFIER_PERCENTAGE"
"ILLEGAL_MODIFIER_PERCENTAGE",
"ILLEGAL_TYPE",
"ILLEGAL_ENDED_BILLINGGROUP",
"ILLEGAL_TIERING_INPUT"
]
}
}
Expand Down
45 changes: 45 additions & 0 deletions models/apis/billingconductor/2021-07-30/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,12 @@
"refs": {
}
},
"CreateFreeTierConfig": {
"base": "<p> The possible Amazon Web Services Free Tier configurations. </p>",
"refs": {
"CreateTieringInput$FreeTier": "<p> The possible Amazon Web Services Free Tier configurations. </p>"
}
},
"CreatePricingPlanInput": {
"base": null,
"refs": {
Expand All @@ -368,6 +374,12 @@
"refs": {
}
},
"CreateTieringInput": {
"base": "<p> The set of tiering configurations for the pricing rule. </p>",
"refs": {
"CreatePricingRuleInput$Tiering": "<p> The set of tiering configurations for the pricing rule. </p>"
}
},
"Currency": {
"base": null,
"refs": {
Expand Down Expand Up @@ -622,6 +634,12 @@
"BatchDisassociateResourcesFromCustomLineItemOutput$FailedDisassociatedResources": "<p> A list of <code>DisassociateResourceResponseElement</code> for each resource that failed disassociation from a percentage custom line item. </p>"
}
},
"FreeTierConfig": {
"base": "<p> The possible Amazon Web Services Free Tier configurations. </p>",
"refs": {
"Tiering$FreeTier": "<p> The possible Amazon Web Services Free Tier configurations. </p>"
}
},
"Instant": {
"base": null,
"refs": {
Expand Down Expand Up @@ -1166,6 +1184,20 @@
"refs": {
}
},
"Tiering": {
"base": "<p> The set of tiering configurations for the pricing rule. </p>",
"refs": {
"PricingRuleListElement$Tiering": "<p> The set of tiering configurations for the pricing rule. </p>"
}
},
"TieringActivated": {
"base": null,
"refs": {
"CreateFreeTierConfig$Activated": "<p> Activate or deactivate Amazon Web Services Free Tier. </p>",
"FreeTierConfig$Activated": "<p> Activate or deactivate Amazon Web Services Free Tier application. </p>",
"UpdateFreeTierConfig$Activated": "<p> Activate or deactivate application of Amazon Web Services Free Tier. </p>"
}
},
"Token": {
"base": null,
"refs": {
Expand Down Expand Up @@ -1239,6 +1271,12 @@
"UpdateCustomLineItemChargeDetails$Percentage": "<p> An <code>UpdateCustomLineItemPercentageChargeDetails</code> that describes the new charge details of a percentage custom line item. </p>"
}
},
"UpdateFreeTierConfig": {
"base": "<p> The possible Amazon Web Services Free Tier configurations. </p>",
"refs": {
"UpdateTieringInput$FreeTier": "<p> The possible Amazon Web Services Free Tier configurations. </p>"
}
},
"UpdatePricingPlanInput": {
"base": null,
"refs": {
Expand All @@ -1259,6 +1297,13 @@
"refs": {
}
},
"UpdateTieringInput": {
"base": "<p> The set of tiering configurations for the pricing rule. </p>",
"refs": {
"UpdatePricingRuleInput$Tiering": "<p> The set of tiering configurations for the pricing rule. </p>",
"UpdatePricingRuleOutput$Tiering": "<p> The set of tiering configurations for the pricing rule. </p>"
}
},
"ValidationException": {
"base": "<p>The input doesn't match with the constraints specified by Amazon Web Services services.</p>",
"refs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"parameters": {
"Region": {
"builtIn": "AWS::Region",
"required": false,
"required": true,
"documentation": "The AWS region used to dispatch the request.",
"type": "String"
},
Expand Down
14 changes: 7 additions & 7 deletions models/apis/billingconductor/2021-07-30/endpoint-tests-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"authSchemes": [
{
"name": "sigv4",
"signingRegion": "us-east-1",
"signingName": "billingconductor"
"signingName": "billingconductor",
"signingRegion": "us-east-1"
}
]
},
"url": "https://billingconductor.us-east-1.amazonaws.com"
}
},
"params": {
"UseDualStack": false,
"UseFIPS": false,
"Region": "aws-global",
"UseDualStack": false
"Region": "aws-global"
}
},
{
Expand All @@ -30,9 +30,9 @@
}
},
"params": {
"UseDualStack": false,
"UseFIPS": false,
"Region": "us-east-1",
"UseDualStack": false,
"Endpoint": "https://example.com"
}
},
Expand All @@ -42,9 +42,9 @@
"error": "Invalid Configuration: FIPS and custom endpoint are not supported"
},
"params": {
"UseDualStack": false,
"UseFIPS": true,
"Region": "us-east-1",
"UseDualStack": false,
"Endpoint": "https://example.com"
}
},
Expand All @@ -54,9 +54,9 @@
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
},
"params": {
"UseDualStack": true,
"UseFIPS": false,
"Region": "us-east-1",
"UseDualStack": true,
"Endpoint": "https://example.com"
}
}
Expand Down
Loading

0 comments on commit 18d863d

Please sign in to comment.