Skip to content

Commit 7c4b5de

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent 82f8640 commit 7c4b5de

File tree

10 files changed

+220
-84
lines changed

10 files changed

+220
-84
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::DirectoryService - Updated the API, and documentation for AWS Directory Service.
5+
6+
* Feature - Aws::EFS - Updated the API, and documentation for Amazon Elastic File System.
7+
8+
* Feature - Aws::IoT - Updated the API, and documentation for AWS IoT.
9+
10+
* Feature - Aws::SSM - Updated the API, and documentation for Amazon Simple Systems Manager (SSM).
11+
412
2.11.223 (2019-02-18)
513
------------------
614

aws-sdk-core/apis/ds/2015-04-16/api-2.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,8 @@
991991
"Password":{"shape":"ConnectPassword"},
992992
"Description":{"shape":"Description"},
993993
"Size":{"shape":"DirectorySize"},
994-
"ConnectSettings":{"shape":"DirectoryConnectSettings"}
994+
"ConnectSettings":{"shape":"DirectoryConnectSettings"},
995+
"Tags":{"shape":"Tags"}
995996
}
996997
},
997998
"ConnectDirectoryResult":{
@@ -1077,7 +1078,8 @@
10771078
"Password":{"shape":"Password"},
10781079
"Description":{"shape":"Description"},
10791080
"Size":{"shape":"DirectorySize"},
1080-
"VpcSettings":{"shape":"DirectoryVpcSettings"}
1081+
"VpcSettings":{"shape":"DirectoryVpcSettings"},
1082+
"Tags":{"shape":"Tags"}
10811083
}
10821084
},
10831085
"CreateDirectoryResult":{
@@ -1115,7 +1117,8 @@
11151117
"Password":{"shape":"Password"},
11161118
"Description":{"shape":"Description"},
11171119
"VpcSettings":{"shape":"DirectoryVpcSettings"},
1118-
"Edition":{"shape":"DirectoryEdition"}
1120+
"Edition":{"shape":"DirectoryEdition"},
1121+
"Tags":{"shape":"Tags"}
11191122
}
11201123
},
11211124
"CreateMicrosoftADResult":{

aws-sdk-core/apis/ds/2015-04-16/docs-2.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,9 @@
15471547
"base": null,
15481548
"refs": {
15491549
"AddTagsToResourceRequest$Tags": "<p>The tags to be assigned to the directory.</p>",
1550+
"ConnectDirectoryRequest$Tags": "<p>The tags to be assigned to AD Connector.</p>",
1551+
"CreateDirectoryRequest$Tags": "<p>The tags to be assigned to the Simple AD directory.</p>",
1552+
"CreateMicrosoftADRequest$Tags": "<p>The tags to be assigned to the AWS Managed Microsoft AD directory.</p>",
15501553
"ListTagsForResourceResult$Tags": "<p>List of tags returned by the ListTagsForResource operation.</p>"
15511554
}
15521555
},

aws-sdk-core/apis/elasticfilesystem/2015-02-01/api-2.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,8 @@
262262
"Encrypted":{"shape":"Encrypted"},
263263
"KmsKeyId":{"shape":"KmsKeyId"},
264264
"ThroughputMode":{"shape":"ThroughputMode"},
265-
"ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"}
265+
"ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"},
266+
"Tags":{"shape":"Tags"}
266267
}
267268
},
268269
"CreateMountTargetRequest":{
@@ -500,7 +501,8 @@
500501
"LifeCycleState",
501502
"NumberOfMountTargets",
502503
"SizeInBytes",
503-
"PerformanceMode"
504+
"PerformanceMode",
505+
"Tags"
504506
],
505507
"members":{
506508
"OwnerId":{"shape":"AwsAccountId"},
@@ -515,7 +517,8 @@
515517
"Encrypted":{"shape":"Encrypted"},
516518
"KmsKeyId":{"shape":"KmsKeyId"},
517519
"ThroughputMode":{"shape":"ThroughputMode"},
518-
"ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"}
520+
"ProvisionedThroughputInMibps":{"shape":"ProvisionedThroughputInMibps"},
521+
"Tags":{"shape":"Tags"}
519522
}
520523
},
521524
"FileSystemDescriptions":{

aws-sdk-core/apis/elasticfilesystem/2015-02-01/docs-2.json

Lines changed: 53 additions & 51 deletions
Large diffs are not rendered by default.

aws-sdk-core/apis/elasticfilesystem/2015-02-01/examples-1.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
{
66
"input": {
77
"CreationToken": "tokenstring",
8-
"PerformanceMode": "generalPurpose"
8+
"PerformanceMode": "generalPurpose",
9+
"Tags": [
10+
{
11+
"Key": "Name",
12+
"Value": "MyFileSystem"
13+
}
14+
]
915
},
1016
"output": {
1117
"CreationTime": "1481841524.0",
@@ -17,7 +23,13 @@
1723
"PerformanceMode": "generalPurpose",
1824
"SizeInBytes": {
1925
"Value": 0
20-
}
26+
},
27+
"Tags": [
28+
{
29+
"Key": "Name",
30+
"Value": "MyFileSystem"
31+
}
32+
]
2133
},
2234
"comments": {
2335
"input": {
@@ -130,7 +142,13 @@
130142
"PerformanceMode": "generalPurpose",
131143
"SizeInBytes": {
132144
"Value": 6144
133-
}
145+
},
146+
"Tags": [
147+
{
148+
"Key": "Name",
149+
"Value": "MyFileSystem"
150+
}
151+
]
134152
}
135153
]
136154
},

aws-sdk-core/apis/iot/2015-05-28/api-2.json

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2811,6 +2811,10 @@
28112811
"members":{
28122812
}
28132813
},
2814+
"AdditionalMetricsToRetainList":{
2815+
"type":"list",
2816+
"member":{"shape":"BehaviorMetric"}
2817+
},
28142818
"AdditionalParameterMap":{
28152819
"type":"map",
28162820
"key":{"shape":"AttributeKey"},
@@ -3218,7 +3222,10 @@
32183222
"members":{
32193223
"comparisonOperator":{"shape":"ComparisonOperator"},
32203224
"value":{"shape":"MetricValue"},
3221-
"durationSeconds":{"shape":"DurationSeconds"}
3225+
"durationSeconds":{"shape":"DurationSeconds"},
3226+
"consecutiveDatapointsToAlarm":{"shape":"ConsecutiveDatapointsToAlarm"},
3227+
"consecutiveDatapointsToClear":{"shape":"ConsecutiveDatapointsToClear"},
3228+
"statisticalThreshold":{"shape":"StatisticalThreshold"}
32223229
}
32233230
},
32243231
"BehaviorMetric":{"type":"string"},
@@ -3603,6 +3610,16 @@
36033610
"exception":true
36043611
},
36053612
"ConnectivityTimestamp":{"type":"long"},
3613+
"ConsecutiveDatapointsToAlarm":{
3614+
"type":"integer",
3615+
"max":10,
3616+
"min":1
3617+
},
3618+
"ConsecutiveDatapointsToClear":{
3619+
"type":"integer",
3620+
"max":10,
3621+
"min":1
3622+
},
36063623
"Count":{"type":"integer"},
36073624
"CreateAuthorizerRequest":{
36083625
"type":"structure",
@@ -3874,12 +3891,12 @@
38743891
"dayOfMonth":{"shape":"DayOfMonth"},
38753892
"dayOfWeek":{"shape":"DayOfWeek"},
38763893
"targetCheckNames":{"shape":"TargetAuditCheckNames"},
3894+
"tags":{"shape":"TagList"},
38773895
"scheduledAuditName":{
38783896
"shape":"ScheduledAuditName",
38793897
"location":"uri",
38803898
"locationName":"scheduledAuditName"
3881-
},
3882-
"tags":{"shape":"TagList"}
3899+
}
38833900
}
38843901
},
38853902
"CreateScheduledAuditResponse":{
@@ -3890,10 +3907,7 @@
38903907
},
38913908
"CreateSecurityProfileRequest":{
38923909
"type":"structure",
3893-
"required":[
3894-
"securityProfileName",
3895-
"behaviors"
3896-
],
3910+
"required":["securityProfileName"],
38973911
"members":{
38983912
"securityProfileName":{
38993913
"shape":"SecurityProfileName",
@@ -3903,6 +3917,7 @@
39033917
"securityProfileDescription":{"shape":"SecurityProfileDescription"},
39043918
"behaviors":{"shape":"Behaviors"},
39053919
"alertTargets":{"shape":"AlertTargets"},
3920+
"additionalMetricsToRetain":{"shape":"AdditionalMetricsToRetainList"},
39063921
"tags":{"shape":"TagList"}
39073922
}
39083923
},
@@ -4078,6 +4093,8 @@
40784093
"members":{
40794094
}
40804095
},
4096+
"DeleteAdditionalMetricsToRetain":{"type":"boolean"},
4097+
"DeleteAlertTargets":{"type":"boolean"},
40814098
"DeleteAuthorizerRequest":{
40824099
"type":"structure",
40834100
"required":["authorizerName"],
@@ -4094,6 +4111,7 @@
40944111
"members":{
40954112
}
40964113
},
4114+
"DeleteBehaviors":{"type":"boolean"},
40974115
"DeleteBillingGroupRequest":{
40984116
"type":"structure",
40994117
"required":["billingGroupName"],
@@ -4747,6 +4765,7 @@
47474765
"securityProfileDescription":{"shape":"SecurityProfileDescription"},
47484766
"behaviors":{"shape":"Behaviors"},
47494767
"alertTargets":{"shape":"AlertTargets"},
4768+
"additionalMetricsToRetain":{"shape":"AdditionalMetricsToRetainList"},
47504769
"version":{"shape":"Version"},
47514770
"creationDate":{"shape":"Timestamp"},
47524771
"lastModifiedDate":{"shape":"Timestamp"}
@@ -5097,6 +5116,10 @@
50975116
"type":"string",
50985117
"max":2048
50995118
},
5119+
"EvaluationStatistic":{
5120+
"type":"string",
5121+
"pattern":"(p0|p0\\.1|p0\\.01|p1|p10|p50|p90|p99|p99\\.9|p99\\.99|p100)"
5122+
},
51005123
"EventConfigurations":{
51015124
"type":"map",
51025125
"key":{"shape":"EventType"},
@@ -7892,6 +7915,12 @@
78927915
"StateMachineName":{"type":"string"},
78937916
"StateReason":{"type":"string"},
78947917
"StateValue":{"type":"string"},
7918+
"StatisticalThreshold":{
7919+
"type":"structure",
7920+
"members":{
7921+
"statistic":{"shape":"EvaluationStatistic"}
7922+
}
7923+
},
78957924
"Status":{
78967925
"type":"string",
78977926
"enum":[
@@ -8685,6 +8714,10 @@
86858714
"securityProfileDescription":{"shape":"SecurityProfileDescription"},
86868715
"behaviors":{"shape":"Behaviors"},
86878716
"alertTargets":{"shape":"AlertTargets"},
8717+
"additionalMetricsToRetain":{"shape":"AdditionalMetricsToRetainList"},
8718+
"deleteBehaviors":{"shape":"DeleteBehaviors"},
8719+
"deleteAlertTargets":{"shape":"DeleteAlertTargets"},
8720+
"deleteAdditionalMetricsToRetain":{"shape":"DeleteAdditionalMetricsToRetain"},
86888721
"expectedVersion":{
86898722
"shape":"OptionalVersion",
86908723
"location":"querystring",
@@ -8700,6 +8733,7 @@
87008733
"securityProfileDescription":{"shape":"SecurityProfileDescription"},
87018734
"behaviors":{"shape":"Behaviors"},
87028735
"alertTargets":{"shape":"AlertTargets"},
8736+
"additionalMetricsToRetain":{"shape":"AdditionalMetricsToRetainList"},
87038737
"version":{"shape":"Version"},
87048738
"creationDate":{"shape":"Timestamp"},
87058739
"lastModifiedDate":{"shape":"Timestamp"}

0 commit comments

Comments
 (0)