Skip to content

Commit ccb5213

Browse files
Update to latest models
1 parent bbb3372 commit ccb5213

File tree

14 files changed

+631
-119
lines changed

14 files changed

+631
-119
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``autoscaling``",
4+
"description": "Added WaitForTransitioningInstances parameter to the CancelInstanceRefresh API, allowing the caller to cancel an instance refresh without waiting for on-going launches and terminations."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``cloudwatch``",
4+
"description": "Added a new API - DescribeAlarmContributors API, to retrieve alarm contributors in ALARM state. Added support in DescribeAlarmHistory API to query alarm contributor history"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``connect``",
4+
"description": "SDK release for user defined predefined attributes."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``datazone``",
4+
"description": "Adds support for custom blueprints"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``mediapackagev2``",
4+
"description": "Added CUE tag SCTE output to MediaPackageV2 HLS and LL-HLS manifests."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``organizations``",
4+
"description": "Documentation updates for AWS Organizations APIs."
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "api-change",
3+
"category": "``sagemaker``",
4+
"description": "Released IPv6 support with dual-stack domain options on SageMaker Studio and introduced support for p6-b200.48xlarge instance type on SageMaker Studio for JupyterLab and CodeEditor applications."
5+
}

awscli/botocore/data/autoscaling/2011-01-01/service-2.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1835,6 +1835,7 @@
18351835
"type":"list",
18361836
"member":{"shape":"BlockDeviceMapping"}
18371837
},
1838+
"BooleanType":{"type":"boolean"},
18381839
"BurstablePerformance":{
18391840
"type":"string",
18401841
"enum":[
@@ -1859,6 +1860,10 @@
18591860
"AutoScalingGroupName":{
18601861
"shape":"XmlStringMaxLen255",
18611862
"documentation":"<p>The name of the Auto Scaling group.</p>"
1863+
},
1864+
"WaitForTransitioningInstances":{
1865+
"shape":"BooleanType",
1866+
"documentation":"<p>When cancelling an instance refresh, this indicates whether to wait for in-flight launches and terminations to complete. The default is true.</p> <p>When set to false, Amazon EC2 Auto Scaling cancels the instance refresh without waiting for any pending launches or terminations to complete.</p>"
18621867
}
18631868
}
18641869
},

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

Lines changed: 119 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,23 @@
100100
],
101101
"documentation":"<p>Permanently deletes the metric stream that you specify.</p>"
102102
},
103+
"DescribeAlarmContributors":{
104+
"name":"DescribeAlarmContributors",
105+
"http":{
106+
"method":"POST",
107+
"requestUri":"/"
108+
},
109+
"input":{"shape":"DescribeAlarmContributorsInput"},
110+
"output":{
111+
"shape":"DescribeAlarmContributorsOutput",
112+
"resultWrapper":"DescribeAlarmContributorsResult"
113+
},
114+
"errors":[
115+
{"shape":"InvalidNextToken"},
116+
{"shape":"ResourceNotFoundException"}
117+
],
118+
"documentation":"<p>Returns the information of the current alarm contributors that are in <code>ALARM</code> state. This operation returns details about the individual time series that contribute to the alarm's state.</p>"
119+
},
103120
"DescribeAlarmHistory":{
104121
"name":"DescribeAlarmHistory",
105122
"http":{
@@ -679,6 +696,43 @@
679696
"max":1600,
680697
"min":1
681698
},
699+
"AlarmContributor":{
700+
"type":"structure",
701+
"required":[
702+
"ContributorId",
703+
"ContributorAttributes",
704+
"StateReason"
705+
],
706+
"members":{
707+
"ContributorId":{
708+
"shape":"ContributorId",
709+
"documentation":"<p>The unique identifier for this alarm contributor.</p>"
710+
},
711+
"ContributorAttributes":{
712+
"shape":"ContributorAttributes",
713+
"documentation":"<p>A map of attributes that describe the contributor, such as metric dimensions and other identifying characteristics.</p>"
714+
},
715+
"StateReason":{
716+
"shape":"StateReason",
717+
"documentation":"<p>An explanation for the contributor's current state, providing context about why it is in its current condition.</p>"
718+
},
719+
"StateTransitionedTimestamp":{
720+
"shape":"Timestamp",
721+
"documentation":"<p>The timestamp when the contributor last transitioned to its current state.</p>"
722+
}
723+
},
724+
"documentation":"<p>Represents an individual contributor to a multi-timeseries alarm, containing information about a specific time series and its contribution to the alarm's state.</p>",
725+
"xmlOrder":[
726+
"ContributorId",
727+
"ContributorAttributes",
728+
"StateReason",
729+
"StateTransitionedTimestamp"
730+
]
731+
},
732+
"AlarmContributors":{
733+
"type":"list",
734+
"member":{"shape":"AlarmContributor"}
735+
},
682736
"AlarmDescription":{
683737
"type":"string",
684738
"max":1024,
@@ -691,6 +745,10 @@
691745
"shape":"AlarmName",
692746
"documentation":"<p>The descriptive name for the alarm.</p>"
693747
},
748+
"AlarmContributorId":{
749+
"shape":"ContributorId",
750+
"documentation":"<p>The unique identifier of the alarm contributor associated with this history item, if applicable.</p>"
751+
},
694752
"AlarmType":{
695753
"shape":"AlarmType",
696754
"documentation":"<p>The type of alarm, either metric alarm or composite alarm.</p>"
@@ -710,6 +768,10 @@
710768
"HistoryData":{
711769
"shape":"HistoryData",
712770
"documentation":"<p>Data about the alarm, in JSON format.</p>"
771+
},
772+
"AlarmContributorAttributes":{
773+
"shape":"ContributorAttributes",
774+
"documentation":"<p>A map of attributes that describe the alarm contributor associated with this history item, providing context about the contributor's characteristics at the time of the event.</p>"
713775
}
714776
},
715777
"documentation":"<p>Represents the history of a specific alarm.</p>"
@@ -856,6 +918,16 @@
856918
"type":"list",
857919
"member":{"shape":"AnomalyDetector"}
858920
},
921+
"AttributeName":{
922+
"type":"string",
923+
"max":255,
924+
"min":1
925+
},
926+
"AttributeValue":{
927+
"type":"string",
928+
"max":1024,
929+
"min":1
930+
},
859931
"AwsQueryErrorMessage":{"type":"string"},
860932
"BatchFailures":{
861933
"type":"list",
@@ -999,6 +1071,17 @@
9991071
"documentation":"<p>This operation attempted to create a resource that already exists.</p>",
10001072
"exception":true
10011073
},
1074+
"ContributorAttributes":{
1075+
"type":"map",
1076+
"key":{"shape":"AttributeName"},
1077+
"value":{"shape":"AttributeValue"},
1078+
"max":30
1079+
},
1080+
"ContributorId":{
1081+
"type":"string",
1082+
"max":1024,
1083+
"min":1
1084+
},
10021085
"Counts":{
10031086
"type":"list",
10041087
"member":{"shape":"DatapointValue"}
@@ -1248,13 +1331,45 @@
12481331
"type":"structure",
12491332
"members":{}
12501333
},
1334+
"DescribeAlarmContributorsInput":{
1335+
"type":"structure",
1336+
"required":["AlarmName"],
1337+
"members":{
1338+
"AlarmName":{
1339+
"shape":"AlarmName",
1340+
"documentation":"<p>The name of the alarm for which to retrieve contributor information.</p>"
1341+
},
1342+
"NextToken":{
1343+
"shape":"NextToken",
1344+
"documentation":"<p>The token returned by a previous call to indicate that there is more data available.</p>"
1345+
}
1346+
}
1347+
},
1348+
"DescribeAlarmContributorsOutput":{
1349+
"type":"structure",
1350+
"required":["AlarmContributors"],
1351+
"members":{
1352+
"AlarmContributors":{
1353+
"shape":"AlarmContributors",
1354+
"documentation":"<p>A list of alarm contributors that provide details about the individual time series contributing to the alarm's state.</p>"
1355+
},
1356+
"NextToken":{
1357+
"shape":"NextToken",
1358+
"documentation":"<p>The token that marks the start of the next batch of returned results.</p>"
1359+
}
1360+
}
1361+
},
12511362
"DescribeAlarmHistoryInput":{
12521363
"type":"structure",
12531364
"members":{
12541365
"AlarmName":{
12551366
"shape":"AlarmName",
12561367
"documentation":"<p>The name of the alarm.</p>"
12571368
},
1369+
"AlarmContributorId":{
1370+
"shape":"ContributorId",
1371+
"documentation":"<p>The unique identifier of a specific alarm contributor to filter the alarm history results.</p>"
1372+
},
12581373
"AlarmTypes":{
12591374
"shape":"AlarmTypes",
12601375
"documentation":"<p>Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned.</p>"
@@ -1990,7 +2105,9 @@
19902105
"enum":[
19912106
"ConfigurationUpdate",
19922107
"StateUpdate",
1993-
"Action"
2108+
"Action",
2109+
"AlarmContributorStateUpdate",
2110+
"AlarmContributorAction"
19942111
]
19952112
},
19962113
"HistorySummary":{
@@ -3277,7 +3394,7 @@
32773394
},
32783395
"ApplyOnTransformedLogs":{
32793396
"shape":"InsightRuleOnTransformedLogs",
3280-
"documentation":"<p>Specify <code>true</code> to have this rule evalute log events after they have been transformed by <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html\">Log transformation</a>. If you specify <code>true</code>, then the log events in log groups that have transformers will be evaluated by Contributor Insights after being transformed. Log groups that don't have transformers will still have their original log events evaluated by Contributor Insights.</p> <p>The default is <code>false</code> </p> <note> <p>If a log group has a transformer, and transformation fails for some log events, those log events won't be evaluated by Contributor Insights. For information about investigating log transformation failures, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html\">Transformation metrics and errors</a>.</p> </note>"
3397+
"documentation":"<p>Specify <code>true</code> to have this rule evaluate log events after they have been transformed by <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html\">Log transformation</a>. If you specify <code>true</code>, then the log events in log groups that have transformers will be evaluated by Contributor Insights after being transformed. Log groups that don't have transformers will still have their original log events evaluated by Contributor Insights.</p> <p>The default is <code>false</code> </p> <note> <p>If a log group has a transformer, and transformation fails for some log events, those log events won't be evaluated by Contributor Insights. For information about investigating log transformation failures, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html\">Transformation metrics and errors</a>.</p> </note>"
32813398
}
32823399
}
32833400
},

0 commit comments

Comments
 (0)