Skip to content

Commit c88ac8b

Browse files
author
AWS
committed
Elastic Disaster Recovery Service Update: Added volume status to DescribeSourceServer replicated volumes.
1 parent 65f7554 commit c88ac8b

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
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": "Elastic Disaster Recovery Service",
4+
"contributor": "",
5+
"description": "Added volume status to DescribeSourceServer replicated volumes."
6+
}

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

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,6 +1096,10 @@
10961096
"shape":"VolumeToConversionMap",
10971097
"documentation":"<p>A mapping between the volumes being converted and the converted snapshot ids</p>"
10981098
},
1099+
"volumeToProductCodes":{
1100+
"shape":"VolumeToProductCodes",
1101+
"documentation":"<p>A mapping between the volumes being converted and the product codes associated with them</p>"
1102+
},
10991103
"volumeToVolumeSize":{
11001104
"shape":"VolumeToSizeMap",
11011105
"documentation":"<p>A mapping between the volumes and their sizes</p>"
@@ -1385,6 +1389,10 @@
13851389
"totalStorageBytes":{
13861390
"shape":"PositiveInteger",
13871391
"documentation":"<p>The total amount of data to be replicated in bytes.</p>"
1392+
},
1393+
"volumeStatus":{
1394+
"shape":"VolumeStatus",
1395+
"documentation":"<p>The status of the volume.</p>"
13881396
}
13891397
},
13901398
"documentation":"<p>A disk that should be replicated.</p>"
@@ -3095,6 +3103,37 @@
30953103
"type":"long",
30963104
"min":0
30973105
},
3106+
"ProductCode":{
3107+
"type":"structure",
3108+
"members":{
3109+
"productCodeId":{
3110+
"shape":"ProductCodeId",
3111+
"documentation":"<p>Id of a product code associated with a volume.</p>"
3112+
},
3113+
"productCodeMode":{
3114+
"shape":"ProductCodeMode",
3115+
"documentation":"<p>Mode of a product code associated with a volume.</p>"
3116+
}
3117+
},
3118+
"documentation":"<p>Properties of a product code associated with a volume.</p>"
3119+
},
3120+
"ProductCodeId":{
3121+
"type":"string",
3122+
"max":25,
3123+
"min":25,
3124+
"pattern":"^([A-Za-z0-9])+$"
3125+
},
3126+
"ProductCodeMode":{
3127+
"type":"string",
3128+
"enum":[
3129+
"ENABLED",
3130+
"DISABLED"
3131+
]
3132+
},
3133+
"ProductCodes":{
3134+
"type":"list",
3135+
"member":{"shape":"ProductCode"}
3136+
},
30983137
"PutLaunchActionRequest":{
30993138
"type":"structure",
31003139
"required":[
@@ -4879,11 +4918,25 @@
48794918
"other"
48804919
]
48814920
},
4921+
"VolumeStatus":{
4922+
"type":"string",
4923+
"enum":[
4924+
"REGULAR",
4925+
"CONTAINS_MARKETPLACE_PRODUCT_CODES",
4926+
"MISSING_VOLUME_ATTRIBUTES",
4927+
"MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE"
4928+
]
4929+
},
48824930
"VolumeToConversionMap":{
48834931
"type":"map",
48844932
"key":{"shape":"LargeBoundedString"},
48854933
"value":{"shape":"ConversionMap"}
48864934
},
4935+
"VolumeToProductCodes":{
4936+
"type":"map",
4937+
"key":{"shape":"LargeBoundedString"},
4938+
"value":{"shape":"ProductCodes"}
4939+
},
48874940
"VolumeToSizeMap":{
48884941
"type":"map",
48894942
"key":{"shape":"LargeBoundedString"},

0 commit comments

Comments
 (0)