Skip to content

Commit 28a50ff

Browse files
You can now purchase AWS Outposts rack or server capacity for a 5-year term with one of the following payment options: All Upfront, Partial Upfront, and No Upfront.
1 parent e9b1287 commit 28a50ff

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/outposts/outposts-2019-12-03.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1967,7 +1967,8 @@
19671967
"type":"string",
19681968
"enum":[
19691969
"THREE_YEARS",
1970-
"ONE_YEAR"
1970+
"ONE_YEAR",
1971+
"FIVE_YEARS"
19711972
]
19721973
},
19731974
"PostalCode":{

generator/ServiceModels/outposts/outposts-2019-12-03.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2474,7 +2474,8 @@
24742474
"type":"string",
24752475
"enum":[
24762476
"THREE_YEARS",
2477-
"ONE_YEAR"
2477+
"ONE_YEAR",
2478+
"FIVE_YEARS"
24782479
]
24792480
},
24802481
"PostalCode":{

sdk/src/Services/Outposts/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,10 @@ public static implicit operator PaymentOption(string value)
10061006
public class PaymentTerm : ConstantClass
10071007
{
10081008

1009+
/// <summary>
1010+
/// Constant FIVE_YEARS for PaymentTerm
1011+
/// </summary>
1012+
public static readonly PaymentTerm FIVE_YEARS = new PaymentTerm("FIVE_YEARS");
10091013
/// <summary>
10101014
/// Constant ONE_YEAR for PaymentTerm
10111015
/// </summary>

0 commit comments

Comments
 (0)