toInstanceMetadataEndpointState method
Implementation
InstanceMetadataEndpointState toInstanceMetadataEndpointState() {
switch (this) {
case 'disabled':
return InstanceMetadataEndpointState.disabled;
case 'enabled':
return InstanceMetadataEndpointState.enabled;
}
throw Exception('$this is not known in enum InstanceMetadataEndpointState');
}