ConoHaNet.OpenStackMember.AttachVolume C# (CSharp) Method

AttachVolume() public method

public AttachVolume ( string serverId, string volumeId, string devicePath = null ) : ServerVolume
serverId string
volumeId string
devicePath string
return ServerVolume
        public ServerVolume AttachVolume(string serverId, string volumeId, string devicePath = null)
        {
            Server s = this.GetServer(serverId);
            return s.AttachVolume(volumeId, devicePath);
        }
OpenStackMember