Skip to content

Commit 50a2db8

Browse files
Merge branch 'release-1.19.62' into develop
* release-1.19.62: Bumping version to 1.19.62 Update to latest endpoints Update to latest models
2 parents ff8ae76 + 2b4f3f0 commit 50a2db8

File tree

12 files changed

+588
-151
lines changed

12 files changed

+588
-151
lines changed

.changes/1.19.62.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"category": "``wellarchitected``",
4+
"description": "Update wellarchitected client to latest version",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``managedblockchain``",
9+
"description": "Update managedblockchain client to latest version",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``cloudwatch``",
14+
"description": "Update cloudwatch client to latest version",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``databrew``",
19+
"description": "Update databrew client to latest version",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "Validator",
24+
"description": "Fix showing incorrect max-value in error message for range and length value validation",
25+
"type": "bugfix"
26+
},
27+
{
28+
"category": "``iot``",
29+
"description": "Update iot client to latest version",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``robomaker``",
34+
"description": "Update robomaker client to latest version",
35+
"type": "api-change"
36+
}
37+
]

.changes/next-release/bugfix-Validator-69448.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

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.19.62
6+
=======
7+
8+
* api-change:``wellarchitected``: Update wellarchitected client to latest version
9+
* api-change:``managedblockchain``: Update managedblockchain client to latest version
10+
* api-change:``cloudwatch``: Update cloudwatch client to latest version
11+
* api-change:``databrew``: Update databrew client to latest version
12+
* bugfix:Validator: Fix showing incorrect max-value in error message for range and length value validation
13+
* api-change:``iot``: Update iot client to latest version
14+
* api-change:``robomaker``: Update robomaker client to latest version
15+
16+
517
1.19.61
618
=======
719

botocore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import re
1717
import logging
1818

19-
__version__ = '1.19.61'
19+
__version__ = '1.19.62'
2020

2121

2222
class NullHandler(logging.Handler):

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

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1467,9 +1467,14 @@
14671467
"MaxDatapoints":{
14681468
"shape":"GetMetricDataMaxDatapoints",
14691469
"documentation":"<p>The maximum number of data points the request should return before paginating. If you omit this, the default of 100,800 is used.</p>"
1470+
},
1471+
"LabelOptions":{
1472+
"shape":"LabelOptions",
1473+
"documentation":"<p>This structure includes the <code>Timezone</code> parameter, which you can use to specify your time zone so that the labels of returned data display the correct time for your time zone. </p>"
14701474
}
14711475
}
14721476
},
1477+
"GetMetricDataLabelTimezone":{"type":"string"},
14731478
"GetMetricDataMaxDatapoints":{"type":"integer"},
14741479
"GetMetricDataOutput":{
14751480
"type":"structure",
@@ -1854,6 +1859,16 @@
18541859
"exception":true,
18551860
"synthetic":true
18561861
},
1862+
"LabelOptions":{
1863+
"type":"structure",
1864+
"members":{
1865+
"Timezone":{
1866+
"shape":"GetMetricDataLabelTimezone",
1867+
"documentation":"<p>The time zone to use for metric data return in this operation. The format is <code>+</code> or <code>-</code> followed by four digits. The first two digits indicate the number of hours ahead or behind of UTC, and the final two digits are the number of minutes. For example, +0130 indicates a time zone that is 1 hour and 30 minutes ahead of UTC. The default is +0000. </p>"
1868+
}
1869+
},
1870+
"documentation":"<p>This structure includes the <code>Timezone</code> parameter, which you can use to specify your time zone so that the labels that are associated with returned metrics display the correct time for your time zone. </p> <p>The <code>Timezone</code> value affects a label only if you have a time-based dynamic expression in the label. For more information about dynamic expressions in labels, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html\">Using Dynamic Labels</a>.</p>"
1871+
},
18571872
"LastModified":{"type":"timestamp"},
18581873
"LimitExceededException":{
18591874
"type":"structure",
@@ -2192,7 +2207,7 @@
21922207
},
21932208
"Label":{
21942209
"shape":"MetricLabel",
2195-
"documentation":"<p>A human-readable label for this metric or expression. This is especially useful if this is an expression, so that you know what the value represents. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown. If Label is omitted, CloudWatch generates a default.</p>"
2210+
"documentation":"<p>A human-readable label for this metric or expression. This is especially useful if this is an expression, so that you know what the value represents. If the metric or expression is shown in a CloudWatch dashboard widget, the label is shown. If Label is omitted, CloudWatch generates a default.</p> <p>You can put dynamic expressions into a label, so that it is more descriptive. For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/graph-dynamic-labels.html\">Using Dynamic Labels</a>.</p>"
21962211
},
21972212
"ReturnData":{
21982213
"shape":"ReturnData",

0 commit comments

Comments
 (0)