Skip to content

Commit 224a0b6

Browse files
Add support for "warning" volume status.
1 parent ed7152e commit 224a0b6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

generator/ServiceModels/ec2/ec2-2016-11-15.api.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52157,7 +52157,8 @@
5215752157
"enum":[
5215852158
"ok",
5215952159
"impaired",
52160-
"insufficient-data"
52160+
"insufficient-data",
52161+
"warning"
5216152162
]
5216252163
},
5216352164
"VolumeStatusItem":{

generator/ServiceModels/ec2/ec2-2016-11-15.normal.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67488,7 +67488,8 @@
6748867488
"enum":[
6748967489
"ok",
6749067490
"impaired",
67491-
"insufficient-data"
67491+
"insufficient-data",
67492+
"warning"
6749267493
]
6749367494
},
6749467495
"VolumeStatusItem":{

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24846,6 +24846,10 @@ public class VolumeStatusInfoStatus : ConstantClass
2484624846
/// Constant Ok for VolumeStatusInfoStatus
2484724847
/// </summary>
2484824848
public static readonly VolumeStatusInfoStatus Ok = new VolumeStatusInfoStatus("ok");
24849+
/// <summary>
24850+
/// Constant Warning for VolumeStatusInfoStatus
24851+
/// </summary>
24852+
public static readonly VolumeStatusInfoStatus Warning = new VolumeStatusInfoStatus("warning");
2484924853

2485024854
/// <summary>
2485124855
/// This constant constructor does not need to be called if the constant

0 commit comments

Comments
 (0)