Skip to content

Commit 8d0d3a2

Browse files
Merge branch 'release-1.42.7' into develop
* release-1.42.7: Bumping version to 1.42.7 Update to latest models
2 parents 89cfb9f + 198dd99 commit 8d0d3a2

11 files changed

Lines changed: 215 additions & 51 deletions

File tree

.changes/1.42.7.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``bedrock``",
4+
"description": "Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``billingconductor``",
9+
"description": "Launch itemized custom line item and service line item filter",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``cloudwatch``",
14+
"description": "This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``odb``",
19+
"description": "The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``opensearch``",
24+
"description": "The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``partnercentral-selling``",
29+
"description": "Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``signer``",
34+
"description": "Adds support for Signer GetRevocationStatus with updated endpoints",
35+
"type": "api-change"
36+
}
37+
]

CHANGELOG.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
CHANGELOG
33
=========
44

5+
1.42.7
6+
======
7+
8+
* api-change:``bedrock``: Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow.
9+
* api-change:``billingconductor``: Launch itemized custom line item and service line item filter
10+
* api-change:``cloudwatch``: This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language.
11+
* api-change:``odb``: The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters.
12+
* api-change:``opensearch``: The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption.
13+
* api-change:``partnercentral-selling``: Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed.
14+
* api-change:``signer``: Adds support for Signer GetRevocationStatus with updated endpoints
15+
16+
517
1.42.6
618
======
719

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import re
1818
from logging import NullHandler
1919

20-
__version__ = '1.42.6'
20+
__version__ = '1.42.7'
2121

2222

2323
# Configure default logger to do nothing

botocore/data/bedrock/2023-04-20/service-2.json

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2754,7 +2754,8 @@
27542754
"BUILD_LOG",
27552755
"QUALITY_REPORT",
27562756
"POLICY_DEFINITION",
2757-
"GENERATED_TEST_CASES"
2757+
"GENERATED_TEST_CASES",
2758+
"POLICY_SCENARIOS"
27582759
]
27592760
},
27602761
"AutomatedReasoningPolicyBuildResultAssets":{
@@ -2775,6 +2776,10 @@
27752776
"generatedTestCases":{
27762777
"shape":"AutomatedReasoningPolicyGeneratedTestCases",
27772778
"documentation":"<p>A comprehensive test suite generated by the build workflow, providing validation capabilities for automated reasoning policies.</p>"
2779+
},
2780+
"policyScenarios":{
2781+
"shape":"AutomatedReasoningPolicyScenarios",
2782+
"documentation":"<p>An entity encompassing all the policy scenarios generated by the build workflow, which can be used to validate an Automated Reasoning policy. </p>"
27782783
}
27792784
},
27802785
"documentation":"<p>Contains the various assets generated during a policy build workflow, including logs, quality reports, test cases, and the final policy definition.</p>",
@@ -3510,8 +3515,8 @@
35103515
"required":[
35113516
"expression",
35123517
"alternateExpression",
3513-
"ruleIds",
3514-
"expectedResult"
3518+
"expectedResult",
3519+
"ruleIds"
35153520
],
35163521
"members":{
35173522
"expression":{
@@ -3522,13 +3527,13 @@
35223527
"shape":"AutomatedReasoningPolicyScenarioAlternateExpression",
35233528
"documentation":"<p>An alternative way to express the same test scenario, used for validation and comparison purposes.</p>"
35243529
},
3525-
"ruleIds":{
3526-
"shape":"AutomatedReasoningPolicyDefinitionRuleIdList",
3527-
"documentation":"<p>The list of rule identifiers that are expected to be triggered or evaluated by this test scenario.</p>"
3528-
},
35293530
"expectedResult":{
35303531
"shape":"AutomatedReasoningCheckResult",
35313532
"documentation":"<p>The expected outcome when this scenario is evaluated against the policy (e.g., PASS, FAIL, VIOLATION).</p>"
3533+
},
3534+
"ruleIds":{
3535+
"shape":"AutomatedReasoningPolicyDefinitionRuleIdList",
3536+
"documentation":"<p>The list of rule identifiers that are expected to be triggered or evaluated by this test scenario.</p>"
35323537
}
35333538
},
35343539
"documentation":"<p>Represents a test scenario used to validate an Automated Reasoning policy, including the test conditions and expected outcomes.</p>"
@@ -3545,6 +3550,21 @@
35453550
"min":0,
35463551
"sensitive":true
35473552
},
3553+
"AutomatedReasoningPolicyScenarioList":{
3554+
"type":"list",
3555+
"member":{"shape":"AutomatedReasoningPolicyScenario"}
3556+
},
3557+
"AutomatedReasoningPolicyScenarios":{
3558+
"type":"structure",
3559+
"required":["policyScenarios"],
3560+
"members":{
3561+
"policyScenarios":{
3562+
"shape":"AutomatedReasoningPolicyScenarioList",
3563+
"documentation":"<p>Represents a collection of generated policy scenarios.</p>"
3564+
}
3565+
},
3566+
"documentation":"<p>Contains a comprehensive entity encompassing all the scenarios generated by the build workflow, which can be used to validate an Automated Reasoning policy.</p>"
3567+
},
35483568
"AutomatedReasoningPolicySummaries":{
35493569
"type":"list",
35503570
"member":{"shape":"AutomatedReasoningPolicySummary"},

botocore/data/billingconductor/2021-07-30/service-2.json

Lines changed: 30 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -832,6 +832,18 @@
832832
},
833833
"documentation":"<p>The key-value pair that represents the attribute by which the <code>BillingGroupCostReportResults</code> are grouped. For example, if you want a service-level breakdown for Amazon Simple Storage Service (Amazon S3) of the billing group, the attribute will be a key-value pair of <code>\"PRODUCT_NAME\"</code> and <code>\"S3\"</code>.</p>"
834834
},
835+
"AttributeValue":{
836+
"type":"string",
837+
"max":128,
838+
"min":1,
839+
"pattern":"[a-zA-Z0-9]+"
840+
},
841+
"AttributeValueList":{
842+
"type":"list",
843+
"member":{"shape":"AttributeValue"},
844+
"max":1,
845+
"min":0
846+
},
835847
"AttributesList":{
836848
"type":"list",
837849
"member":{"shape":"Attribute"}
@@ -1130,7 +1142,10 @@
11301142
"ComputationRuleEnum":{
11311143
"type":"string",
11321144
"documentation":"<p>The display settings of the custom line item</p>",
1133-
"enum":["CONSOLIDATED"]
1145+
"enum":[
1146+
"ITEMIZED",
1147+
"CONSOLIDATED"
1148+
]
11341149
},
11351150
"ConflictException":{
11361151
"type":"structure",
@@ -1931,8 +1946,7 @@
19311946
"type":"structure",
19321947
"required":[
19331948
"Attribute",
1934-
"MatchOption",
1935-
"Values"
1949+
"MatchOption"
19361950
],
19371951
"members":{
19381952
"Attribute":{
@@ -1946,13 +1960,20 @@
19461960
"Values":{
19471961
"shape":"LineItemFilterValuesList",
19481962
"documentation":"<p>The values of the line item filter. This specifies the values to filter on. Currently, you can only exclude Savings Plans discounts.</p>"
1963+
},
1964+
"AttributeValues":{
1965+
"shape":"AttributeValueList",
1966+
"documentation":"<p>The values of the line item filter. This specifies the values to filter on.</p>"
19491967
}
19501968
},
19511969
"documentation":"<p>A representation of the line item filter for your custom line item. You can use line item filters to include or exclude specific resource values from the billing group's total cost. For example, if you create a custom line item and you want to filter out a value, such as Savings Plans discounts, you can update <code>LineItemFilter</code> to exclude it.</p>"
19521970
},
19531971
"LineItemFilterAttributeName":{
19541972
"type":"string",
1955-
"enum":["LINE_ITEM_TYPE"]
1973+
"enum":[
1974+
"LINE_ITEM_TYPE",
1975+
"SERVICE"
1976+
]
19561977
},
19571978
"LineItemFilterValue":{
19581979
"type":"string",
@@ -2590,7 +2611,10 @@
25902611
"MarginPercentage":{"type":"string"},
25912612
"MatchOption":{
25922613
"type":"string",
2593-
"enum":["NOT_EQUAL"]
2614+
"enum":[
2615+
"NOT_EQUAL",
2616+
"EQUAL"
2617+
]
25942618
},
25952619
"MaxBillingGroupCostReportResults":{
25962620
"type":"integer",
@@ -3504,6 +3528,7 @@
35043528
"ILLEGAL_MODIFIER_PERCENTAGE",
35053529
"ILLEGAL_TYPE",
35063530
"ILLEGAL_BILLING_GROUP_TYPE",
3531+
"ILLEGAL_BILLING_GROUP_PRICING_PLAN",
35073532
"ILLEGAL_ENDED_BILLINGGROUP",
35083533
"ILLEGAL_TIERING_INPUT",
35093534
"ILLEGAL_OPERATION",

botocore/data/cloudwatch/2010-08-01/service-2.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22
"version":"2.0",
33
"metadata":{
44
"apiVersion":"2010-08-01",
5+
"awsQueryCompatible":{},
56
"endpointPrefix":"monitoring",
6-
"protocol":"query",
7-
"protocols":["query"],
7+
"jsonVersion":"1.0",
8+
"protocol":"smithy-rpc-v2-cbor",
9+
"protocols":[
10+
"smithy-rpc-v2-cbor",
11+
"json",
12+
"query"
13+
],
814
"serviceAbbreviation":"CloudWatch",
915
"serviceFullName":"Amazon CloudWatch",
1016
"serviceId":"CloudWatch",
1117
"signatureVersion":"v4",
18+
"targetPrefix":"GraniteServiceVersion20100801",
1219
"uid":"monitoring-2010-08-01",
1320
"xmlNamespace":"http://monitoring.amazonaws.com/doc/2010-08-01/",
1421
"auth":["aws.auth#sigv4"]
@@ -1069,6 +1076,7 @@
10691076
"Message":{"shape":"ErrorMessage"}
10701077
},
10711078
"documentation":"<p>This operation attempted to create a resource that already exists.</p>",
1079+
"error":{"httpStatusCode":409},
10721080
"exception":true
10731081
},
10741082
"ContributorAttributes":{

0 commit comments

Comments
 (0)