16 lines
314 B
Python
16 lines
314 B
Python
from pydantic_xml import BaseXmlModel, element
|
|
|
|
|
|
class DetachVolumeResponse(
|
|
BaseXmlModel,
|
|
tag="DetachVolumeResponse",
|
|
nsmap={"": "http://ec2.amazonaws.com/doc/2016-11-15/"},
|
|
):
|
|
requestId: str = element()
|
|
|
|
volumeId: str = element()
|
|
|
|
instanceId: str = element()
|
|
|
|
status: str = element()
|