Skip to content

Commit 8fec8ea

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent bf84530 commit 8fec8ea

File tree

9 files changed

+256
-138
lines changed

9 files changed

+256
-138
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::EC2 - Updated the API, and documentation for Amazon Elastic Compute Cloud.
5+
6+
* Feature - Aws::SageMaker - Updated the API, and documentation for Amazon SageMaker Service.
7+
8+
* Feature - Aws::WAFRegional - Updated the API, and documentation for AWS WAF Regional.
9+
10+
* Feature - Aws::WAF - Updated the API, and documentation for AWS WAF.
11+
412
2.11.194 (2018-12-18)
513
------------------
614

aws-sdk-core/apis/ec2/2016-11-15/api-2.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6032,10 +6032,6 @@
60326032
},
60336033
"CreatePlacementGroupRequest":{
60346034
"type":"structure",
6035-
"required":[
6036-
"GroupName",
6037-
"Strategy"
6038-
],
60396035
"members":{
60406036
"DryRun":{
60416037
"shape":"Boolean",
@@ -6048,7 +6044,8 @@
60486044
"Strategy":{
60496045
"shape":"PlacementStrategy",
60506046
"locationName":"strategy"
6051-
}
6047+
},
6048+
"PartitionCount":{"shape":"Integer"}
60526049
}
60536050
},
60546051
"CreateReservedInstancesListingRequest":{
@@ -15732,7 +15729,8 @@
1573215729
"Tenancy":{
1573315730
"shape":"HostTenancy",
1573415731
"locationName":"tenancy"
15735-
}
15732+
},
15733+
"PartitionNumber":{"shape":"Integer"}
1573615734
}
1573715735
},
1573815736
"ModifyInstancePlacementResult":{
@@ -16873,6 +16871,10 @@
1687316871
"shape":"String",
1687416872
"locationName":"groupName"
1687516873
},
16874+
"PartitionNumber":{
16875+
"shape":"Integer",
16876+
"locationName":"partitionNumber"
16877+
},
1687616878
"HostId":{
1687716879
"shape":"String",
1687816880
"locationName":"hostId"
@@ -16901,6 +16903,10 @@
1690116903
"Strategy":{
1690216904
"shape":"PlacementStrategy",
1690316905
"locationName":"strategy"
16906+
},
16907+
"PartitionCount":{
16908+
"shape":"Integer",
16909+
"locationName":"partitionCount"
1690416910
}
1690516911
}
1690616912
},
@@ -16937,7 +16943,8 @@
1693716943
"type":"string",
1693816944
"enum":[
1693916945
"cluster",
16940-
"spread"
16946+
"spread",
16947+
"partition"
1694116948
]
1694216949
},
1694316950
"PlatformValues":{

aws-sdk-core/apis/ec2/2016-11-15/docs-2.json

Lines changed: 15 additions & 11 deletions
Large diffs are not rendered by default.

aws-sdk-core/apis/sagemaker/2017-07-24/api-2.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1156,6 +1156,7 @@
11561156
"CompilationJobName":{"shape":"EntityName"},
11571157
"CompilationJobArn":{"shape":"CompilationJobArn"},
11581158
"CreationTime":{"shape":"CreationTime"},
1159+
"CompilationStartTime":{"shape":"Timestamp"},
11591160
"CompilationEndTime":{"shape":"Timestamp"},
11601161
"CompilationTargetDevice":{"shape":"TargetDevice"},
11611162
"LastModifiedTime":{"shape":"LastModifiedTime"},
@@ -2367,7 +2368,7 @@
23672368
"type":"structure",
23682369
"required":["RepositoryUrl"],
23692370
"members":{
2370-
"RepositoryUrl":{"shape":"Url"},
2371+
"RepositoryUrl":{"shape":"GitConfigUrl"},
23712372
"Branch":{"shape":"Branch"},
23722373
"SecretArn":{"shape":"SecretArn"}
23732374
}
@@ -2378,6 +2379,10 @@
23782379
"SecretArn":{"shape":"SecretArn"}
23792380
}
23802381
},
2382+
"GitConfigUrl":{
2383+
"type":"string",
2384+
"pattern":"^https://([^/]+)/?(.*)$"
2385+
},
23812386
"HumanTaskConfig":{
23822387
"type":"structure",
23832388
"required":[
@@ -2973,7 +2978,9 @@
29732978
"LastModifiedTimeAfter":{"shape":"LastModifiedTime"},
29742979
"LastModifiedTimeBefore":{"shape":"LastModifiedTime"},
29752980
"NameContains":{"shape":"NameContains"},
2976-
"StatusEquals":{"shape":"CompilationJobStatus"}
2981+
"StatusEquals":{"shape":"CompilationJobStatus"},
2982+
"SortBy":{"shape":"ListCompilationJobsSortBy"},
2983+
"SortOrder":{"shape":"SortOrder"}
29772984
}
29782985
},
29792986
"ListCompilationJobsResponse":{
@@ -2984,6 +2991,14 @@
29842991
"NextToken":{"shape":"NextToken"}
29852992
}
29862993
},
2994+
"ListCompilationJobsSortBy":{
2995+
"type":"string",
2996+
"enum":[
2997+
"Name",
2998+
"CreationTime",
2999+
"Status"
3000+
]
3001+
},
29873002
"ListEndpointConfigsInput":{
29883003
"type":"structure",
29893004
"members":{
@@ -4301,7 +4316,8 @@
43014316
"enum":[
43024317
"None",
43034318
"Line",
4304-
"RecordIO"
4319+
"RecordIO",
4320+
"TFRecord"
43054321
]
43064322
},
43074323
"StartNotebookInstanceInput":{

aws-sdk-core/apis/sagemaker/2017-07-24/docs-2.json

Lines changed: 82 additions & 69 deletions
Large diffs are not rendered by default.

aws-sdk-core/apis/waf-regional/2016-11-28/api-2.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1223,7 +1223,8 @@
12231223
"RuleId":{"shape":"ResourceId"},
12241224
"Action":{"shape":"WafAction"},
12251225
"OverrideAction":{"shape":"WafOverrideAction"},
1226-
"Type":{"shape":"WafRuleType"}
1226+
"Type":{"shape":"WafRuleType"},
1227+
"ExcludedRules":{"shape":"ExcludedRules"}
12271228
}
12281229
},
12291230
"ActivatedRules":{
@@ -1810,6 +1811,17 @@
18101811
"members":{
18111812
}
18121813
},
1814+
"ExcludedRule":{
1815+
"type":"structure",
1816+
"required":["RuleId"],
1817+
"members":{
1818+
"RuleId":{"shape":"ResourceId"}
1819+
}
1820+
},
1821+
"ExcludedRules":{
1822+
"type":"list",
1823+
"member":{"shape":"ExcludedRule"}
1824+
},
18131825
"FieldToMatch":{
18141826
"type":"structure",
18151827
"required":["Type"],
@@ -2782,7 +2794,8 @@
27822794
"GEO_MATCH_LOCATION_VALUE",
27832795
"RATE_KEY",
27842796
"RULE_TYPE",
2785-
"NEXT_MARKER"
2797+
"NEXT_MARKER",
2798+
"RESOURCE_ARN"
27862799
]
27872800
},
27882801
"ParameterExceptionParameter":{
@@ -2793,7 +2806,8 @@
27932806
"type":"string",
27942807
"enum":[
27952808
"INVALID_OPTION",
2796-
"ILLEGAL_COMBINATION"
2809+
"ILLEGAL_COMBINATION",
2810+
"ILLEGAL_ARGUMENT"
27972811
]
27982812
},
27992813
"PolicyString":{

aws-sdk-core/apis/waf-regional/2016-11-28/docs-2.json

Lines changed: 34 additions & 21 deletions
Large diffs are not rendered by default.

aws-sdk-core/apis/waf/2015-08-24/api-2.json

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,8 @@
894894
"errors":[
895895
{"shape":"WAFInternalErrorException"},
896896
{"shape":"WAFNonexistentItemException"},
897-
{"shape":"WAFStaleDataException"}
897+
{"shape":"WAFStaleDataException"},
898+
{"shape":"WAFServiceLinkedRoleErrorException"}
898899
]
899900
},
900901
"PutPermissionPolicy":{
@@ -1160,7 +1161,8 @@
11601161
"RuleId":{"shape":"ResourceId"},
11611162
"Action":{"shape":"WafAction"},
11621163
"OverrideAction":{"shape":"WafOverrideAction"},
1163-
"Type":{"shape":"WafRuleType"}
1164+
"Type":{"shape":"WafRuleType"},
1165+
"ExcludedRules":{"shape":"ExcludedRules"}
11641166
}
11651167
},
11661168
"ActivatedRules":{
@@ -1719,6 +1721,17 @@
17191721
"ChangeToken":{"shape":"ChangeToken"}
17201722
}
17211723
},
1724+
"ExcludedRule":{
1725+
"type":"structure",
1726+
"required":["RuleId"],
1727+
"members":{
1728+
"RuleId":{"shape":"ResourceId"}
1729+
}
1730+
},
1731+
"ExcludedRules":{
1732+
"type":"list",
1733+
"member":{"shape":"ExcludedRule"}
1734+
},
17221735
"FieldToMatch":{
17231736
"type":"structure",
17241737
"required":["Type"],
@@ -2664,7 +2677,8 @@
26642677
"GEO_MATCH_LOCATION_VALUE",
26652678
"RATE_KEY",
26662679
"RULE_TYPE",
2667-
"NEXT_MARKER"
2680+
"NEXT_MARKER",
2681+
"RESOURCE_ARN"
26682682
]
26692683
},
26702684
"ParameterExceptionParameter":{
@@ -2675,7 +2689,8 @@
26752689
"type":"string",
26762690
"enum":[
26772691
"INVALID_OPTION",
2678-
"ILLEGAL_COMBINATION"
2692+
"ILLEGAL_COMBINATION",
2693+
"ILLEGAL_ARGUMENT"
26792694
]
26802695
},
26812696
"PolicyString":{
@@ -3492,6 +3507,13 @@
34923507
},
34933508
"exception":true
34943509
},
3510+
"WAFServiceLinkedRoleErrorException":{
3511+
"type":"structure",
3512+
"members":{
3513+
"message":{"shape":"errorMessage"}
3514+
},
3515+
"exception":true
3516+
},
34953517
"WAFStaleDataException":{
34963518
"type":"structure",
34973519
"members":{
@@ -3555,7 +3577,8 @@
35553577
"Name":{"shape":"ResourceName"},
35563578
"MetricName":{"shape":"MetricName"},
35573579
"DefaultAction":{"shape":"WafAction"},
3558-
"Rules":{"shape":"ActivatedRules"}
3580+
"Rules":{"shape":"ActivatedRules"},
3581+
"WebACLArn":{"shape":"ResourceArn"}
35593582
}
35603583
},
35613584
"WebACLSummaries":{

0 commit comments

Comments
 (0)