1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
# frozen_string_literal: true
module Fog
module Compute
class Aliyun
class Real
# Create a disk with assigned size.
#
# ==== Parameters
# * size<~String> - the size of the disk (GB).--cloud:5~2000GB,cloud_efficiency: 20~2048GB,cloud_ssd:20~1024GB
# * options<~hash>
# * :name - The name of the disk,default nil. If not nil, it must start with english or chinise character.
# The length should be within [2,128]. It can contain digits,'.','_' or '-'.It shouldn't start with 'http://' or 'https://'
# * :description - The name of the disk,default nil. If not nil, the length should be within [2,255].It shouldn't start with 'http://' or 'https://'
# * :category - Default 'cloud'. can be set to 'cloud','cloud_efficiency' or 'cloud_ssd'
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
# * 'DiskId'<~String> - Id of the created disk
#
# {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.201.106.DGkmH7#/pub/ecs/open-api/disk&createdisk]
def create_disk(size, options = {})
action = 'CreateDisk'
sigNonce = randonStr
time = Time.new.utc
parameters = defaultParameters(action, sigNonce, time)
pathUrl = defaultAliyunUri(action, sigNonce, time)
parameters['ZoneId'] = @aliyun_zone_id
pathUrl += '&ZoneId='
pathUrl += @aliyun_zone_id
parameters['Size'] = size
pathUrl += '&Size='
pathUrl += size
name = options[:name]
desc = options[:description]
category = options[:category]
if name
parameters['DiskName'] = name
pathUrl += '&DiskName='
pathUrl += name
end
if desc
parameters['Description'] = desc
pathUrl += '&Description='
pathUrl += desc
end
if category
parameters['DiskCategory'] = category
pathUrl += 'DiskCategory'
pathUrl += category
end
signature = sign(@aliyun_accesskey_secret, parameters)
pathUrl += '&Signature='
pathUrl += signature
request(
expects: [200, 203],
method: 'GET',
path: pathUrl
).merge(options)
end
# Create a disk By the snapshot with given snapshot_id.
#
# ==== Parameters
# * snapshotId<~String> - the snapshot_id
# * options<~hash>
# * :name - The name of the disk,default nil. If not nil, it must start with english or chinise character.
# The length should be within [2,128]. It can contain digits,'.','_' or '-'.It shouldn't start with 'http://' or 'https://'
# * :description - The name of the disk,default nil. If not nil, the length should be within [2,255].It shouldn't start with 'http://' or 'https://'
# * :category - Default 'cloud'. can be set to 'cloud','cloud_efficiency' or 'cloud_ssd'
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'RequestId'<~String> - Id of the request
# * 'DiskId'<~String> - Id of the created disk
#
# {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.201.106.DGkmH7#/pub/ecs/open-api/disk&createdisk]
def create_disk_by_snapshot(snapshotId, options = {})
action = 'CreateDisk'
sigNonce = randonStr
time = Time.new.utc
parameters = defaultParameters(action, sigNonce, time)
pathUrl = defaultAliyunUri(action, sigNonce, time)
parameters['ZoneId'] = @aliyun_zone_id
pathUrl += '&ZoneId='
pathUrl += @aliyun_zone_id
parameters['SnapshotId'] = snapshotId
pathUrl += '&SnapshotId='
pathUrl += snapshotId
name = options[:name]
desc = options[:description]
category = options[:category]
if name
parameters['DiskName'] = name
pathUrl += '&DiskName='
pathUrl += name
end
if desc
parameters['Description'] = desc
pathUrl += '&Description='
pathUrl += desc
end
if category
parameters['DiskCategory'] = category
pathUrl += 'DiskCategory'
pathUrl += category
end
signature = sign(@aliyun_accesskey_secret, parameters)
pathUrl += '&Signature='
pathUrl += signature
request(
expects: [200, 203],
method: 'GET',
path: pathUrl
)
end
end
end
end
end
|