Skip to content

Commit

Permalink
Release v1.48.12 (2023-12-04) (#5096)
Browse files Browse the repository at this point in the history
Release v1.48.12 (2023-12-04)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/braket`: Updates service API and documentation
* `service/cloud9`: Updates service API and documentation
  * This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call.
* `service/cloudformation`: Updates service waiters
  * Including UPDATE_* states as a success status for CreateStack waiter.
* `service/finspace`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
  * Adds support for custom color correction on channels using 3D LUT files.
* `service/servicecatalog-appregistry`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation authored Dec 4, 2023
1 parent ac58203 commit 012b94d
Show file tree
Hide file tree
Showing 26 changed files with 1,237 additions and 97 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Release v1.48.12 (2023-12-04)
===

### Service Client Updates
* `service/billingconductor`: Updates service API and documentation
* `service/braket`: Updates service API and documentation
* `service/cloud9`: Updates service API and documentation
* This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call.
* `service/cloudformation`: Updates service waiters
* Including UPDATE_* states as a success status for CreateStack waiter.
* `service/finspace`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
* Adds support for custom color correction on channels using 3D LUT files.
* `service/servicecatalog-appregistry`: Updates service documentation

Release v1.48.11 (2023-12-01)
===

Expand Down
253 changes: 253 additions & 0 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.48.11"
const SDKVersion = "1.48.12"
15 changes: 10 additions & 5 deletions models/apis/billingconductor/2021-07-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,8 @@
"BillingGroupArn":{"shape":"BillingGroupArn"},
"BillingPeriodRange":{"shape":"CustomLineItemBillingPeriodRange"},
"Tags":{"shape":"TagMap"},
"ChargeDetails":{"shape":"CustomLineItemChargeDetails"}
"ChargeDetails":{"shape":"CustomLineItemChargeDetails"},
"AccountId":{"shape":"AccountId"}
}
},
"CreateCustomLineItemOutput":{
Expand Down Expand Up @@ -1088,7 +1089,8 @@
"BillingGroupArn":{"shape":"BillingGroupArn"},
"CreationTime":{"shape":"Instant"},
"LastModifiedTime":{"shape":"Instant"},
"AssociationSize":{"shape":"NumberOfAssociations"}
"AssociationSize":{"shape":"NumberOfAssociations"},
"AccountId":{"shape":"AccountId"}
}
},
"CustomLineItemName":{
Expand Down Expand Up @@ -1156,7 +1158,8 @@
"StartBillingPeriod":{"shape":"BillingPeriod"},
"EndBillingPeriod":{"shape":"BillingPeriod"},
"Arn":{"shape":"CustomLineItemArn"},
"StartTime":{"shape":"Instant"}
"StartTime":{"shape":"Instant"},
"AccountId":{"shape":"AccountId"}
}
},
"DeleteBillingGroupInput":{
Expand Down Expand Up @@ -1448,7 +1451,8 @@
"members":{
"Names":{"shape":"CustomLineItemNameList"},
"BillingGroups":{"shape":"BillingGroupArnList"},
"Arns":{"shape":"CustomLineItemArns"}
"Arns":{"shape":"CustomLineItemArns"},
"AccountIds":{"shape":"AccountIdList"}
}
},
"ListCustomLineItemsInput":{
Expand Down Expand Up @@ -2159,7 +2163,8 @@
"INVALID_SKU_COMBO",
"INVALID_FILTER",
"TOO_MANY_AUTO_ASSOCIATE_BILLING_GROUPS",
"CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP"
"CANNOT_DELETE_AUTO_ASSOCIATE_BILLING_GROUP",
"ILLEGAL_ACCOUNT_ID"
]
}
}
Expand Down
6 changes: 5 additions & 1 deletion models/apis/billingconductor/2021-07-30/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
"AccountIdList$member": null,
"BillingGroupListElement$PrimaryAccountId": "<p>The account ID that serves as the main account in a billing group.</p>",
"CreateBillingGroupInput$PrimaryAccountId": "<p> The account ID that serves as the main account in a billing group. </p>",
"CreateCustomLineItemInput$AccountId": "<p>The Amazon Web Services account in which this custom line item will be applied to.</p>",
"CustomLineItemListElement$AccountId": "<p>The Amazon Web Services account in which this custom line item will be applied to.</p>",
"CustomLineItemVersionListElement$AccountId": "<p>The Amazon Web Services account in which this custom line item will be applied to.</p>",
"ListAccountAssociationsFilter$AccountId": "<p>The Amazon Web Services account ID to filter on.</p>",
"UpdateBillingGroupOutput$PrimaryAccountId": "<p> The account ID that serves as the main account in a billing group. </p>"
}
Expand All @@ -93,7 +96,8 @@
"refs": {
"AccountGrouping$LinkedAccountIds": "<p>The account IDs that make up the billing group. Account IDs must be a part of the consolidated billing family, and not associated with another billing group.</p>",
"AssociateAccountsInput$AccountIds": "<p> The associating array of account IDs. </p>",
"DisassociateAccountsInput$AccountIds": "<p>The array of account IDs to disassociate. </p>"
"DisassociateAccountsInput$AccountIds": "<p>The array of account IDs to disassociate. </p>",
"ListCustomLineItemsFilter$AccountIds": "<p>The Amazon Web Services accounts in which this custom line item will be applied to.</p>"
}
},
"AccountName": {
Expand Down
Loading

0 comments on commit 012b94d

Please sign in to comment.