Skip to content

Commit 7c33870

Browse files
author
AWS
committed
Amazon Route 53 Domains Update: This release includes the following API updates: added the enumeration type RESTORE_DOMAIN to the OperationType; constrained the Price attribute to non-negative values; updated the LangCode to allow 2 or 3 alphabetical characters.
1 parent aef401c commit 7c33870

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Route 53 Domains",
4+
"contributor": "",
5+
"description": "This release includes the following API updates: added the enumeration type RESTORE_DOMAIN to the OperationType; constrained the Price attribute to non-negative values; updated the LangCode to allow 2 or 3 alphabetical characters."
6+
}

services/route53domains/src/main/resources/codegen-resources/paginators-1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
"pagination": {
33
"ListDomains": {
44
"input_token": "Marker",
5-
"limit_key": "MaxItems",
65
"output_token": "NextPageMarker",
6+
"limit_key": "MaxItems",
77
"result_key": "Domains"
88
},
99
"ListOperations": {
1010
"input_token": "Marker",
11-
"limit_key": "MaxItems",
1211
"output_token": "NextPageMarker",
12+
"limit_key": "MaxItems",
1313
"result_key": "Operations"
1414
},
1515
"ListPrices": {
1616
"input_token": "Marker",
17-
"limit_key": "MaxItems",
1817
"output_token": "NextPageMarker",
18+
"limit_key": "MaxItems",
1919
"result_key": "Prices"
2020
},
2121
"ViewBilling": {
2222
"input_token": "Marker",
23-
"limit_key": "MaxItems",
2423
"output_token": "NextPageMarker",
24+
"limit_key": "MaxItems",
2525
"result_key": "BillingRecords"
2626
}
2727
}
28-
}
28+
}

services/route53domains/src/main/resources/codegen-resources/service-2.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1782,7 +1782,7 @@
17821782
},
17831783
"LangCode":{
17841784
"type":"string",
1785-
"max":3
1785+
"pattern":"|[A-Za-z]{2,3}"
17861786
},
17871787
"ListDomainsAttributeName":{
17881788
"type":"string",
@@ -2049,13 +2049,14 @@
20492049
"INTERNAL_TRANSFER_OUT_DOMAIN",
20502050
"INTERNAL_TRANSFER_IN_DOMAIN",
20512051
"RELEASE_TO_GANDI",
2052-
"TRANSFER_ON_RENEW"
2052+
"TRANSFER_ON_RENEW",
2053+
"RESTORE_DOMAIN"
20532054
]
20542055
},
20552056
"OperationTypeList":{
20562057
"type":"list",
20572058
"member":{"shape":"OperationType"},
2058-
"max":20
2059+
"max":21
20592060
},
20602061
"Operator":{
20612062
"type":"string",
@@ -2077,7 +2078,10 @@
20772078
"type":"string",
20782079
"sensitive":true
20792080
},
2080-
"Price":{"type":"double"},
2081+
"Price":{
2082+
"type":"double",
2083+
"min":0.0
2084+
},
20812085
"PriceWithCurrency":{
20822086
"type":"structure",
20832087
"required":[

0 commit comments

Comments
 (0)