fog-aliyun 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +23 -10
  3. data/.rubocop.yml +31 -4
  4. data/.rubocop_todo.yml +83 -55
  5. data/Gemfile +2 -0
  6. data/Rakefile +2 -0
  7. data/bin/console +4 -3
  8. data/fog-aliyun.gemspec +19 -18
  9. data/lib/fog/aliyun.rb +4 -2
  10. data/lib/fog/aliyun/compute.rb +45 -43
  11. data/lib/fog/aliyun/models/compute/eip_address.rb +10 -8
  12. data/lib/fog/aliyun/models/compute/eip_addresses.rb +3 -3
  13. data/lib/fog/aliyun/models/compute/image.rb +23 -21
  14. data/lib/fog/aliyun/models/compute/images.rb +2 -0
  15. data/lib/fog/aliyun/models/compute/route_entry.rb +7 -5
  16. data/lib/fog/aliyun/models/compute/route_entrys.rb +2 -0
  17. data/lib/fog/aliyun/models/compute/route_table.rb +6 -4
  18. data/lib/fog/aliyun/models/compute/route_tables.rb +3 -3
  19. data/lib/fog/aliyun/models/compute/security_group.rb +7 -5
  20. data/lib/fog/aliyun/models/compute/security_group_rule.rb +15 -13
  21. data/lib/fog/aliyun/models/compute/security_group_rules.rb +2 -0
  22. data/lib/fog/aliyun/models/compute/security_groups.rb +2 -0
  23. data/lib/fog/aliyun/models/compute/server.rb +28 -26
  24. data/lib/fog/aliyun/models/compute/servers.rb +3 -3
  25. data/lib/fog/aliyun/models/compute/snapshot.rb +12 -10
  26. data/lib/fog/aliyun/models/compute/snapshots.rb +2 -0
  27. data/lib/fog/aliyun/models/compute/volume.rb +27 -25
  28. data/lib/fog/aliyun/models/compute/volumes.rb +2 -0
  29. data/lib/fog/aliyun/models/compute/vpc.rb +12 -10
  30. data/lib/fog/aliyun/models/compute/vpcs.rb +3 -3
  31. data/lib/fog/aliyun/models/compute/vrouter.rb +8 -6
  32. data/lib/fog/aliyun/models/compute/vrouters.rb +3 -3
  33. data/lib/fog/aliyun/models/compute/vswitch.rb +11 -9
  34. data/lib/fog/aliyun/models/compute/vswitches.rb +3 -3
  35. data/lib/fog/aliyun/models/storage/directories.rb +3 -1
  36. data/lib/fog/aliyun/models/storage/directory.rb +2 -0
  37. data/lib/fog/aliyun/models/storage/file.rb +18 -16
  38. data/lib/fog/aliyun/models/storage/files.rb +13 -19
  39. data/lib/fog/aliyun/requests/compute/allocate_eip_address.rb +5 -3
  40. data/lib/fog/aliyun/requests/compute/allocate_public_ip_address.rb +4 -2
  41. data/lib/fog/aliyun/requests/compute/associate_eip_address.rb +4 -2
  42. data/lib/fog/aliyun/requests/compute/attach_disk.rb +7 -5
  43. data/lib/fog/aliyun/requests/compute/create_disk.rb +15 -13
  44. data/lib/fog/aliyun/requests/compute/create_image.rb +3 -1
  45. data/lib/fog/aliyun/requests/compute/create_security_group.rb +11 -9
  46. data/lib/fog/aliyun/requests/compute/create_security_group_egress_ip_rule.rb +13 -11
  47. data/lib/fog/aliyun/requests/compute/create_security_group_egress_sg_rule.rb +12 -10
  48. data/lib/fog/aliyun/requests/compute/create_security_group_ip_rule.rb +13 -11
  49. data/lib/fog/aliyun/requests/compute/create_security_group_sg_rule.rb +12 -10
  50. data/lib/fog/aliyun/requests/compute/create_server.rb +11 -9
  51. data/lib/fog/aliyun/requests/compute/create_snapshot.rb +3 -1
  52. data/lib/fog/aliyun/requests/compute/create_vpc.rb +6 -4
  53. data/lib/fog/aliyun/requests/compute/create_vpn_connection.rb +8 -6
  54. data/lib/fog/aliyun/requests/compute/create_vpn_customergateway.rb +6 -6
  55. data/lib/fog/aliyun/requests/compute/create_vswitch.rb +6 -4
  56. data/lib/fog/aliyun/requests/compute/delete_disk.rb +8 -6
  57. data/lib/fog/aliyun/requests/compute/delete_image.rb +3 -1
  58. data/lib/fog/aliyun/requests/compute/delete_security_group.rb +7 -5
  59. data/lib/fog/aliyun/requests/compute/delete_security_group_egress_ip_rule.rb +13 -11
  60. data/lib/fog/aliyun/requests/compute/delete_security_group_egress_sg_rule.rb +12 -10
  61. data/lib/fog/aliyun/requests/compute/delete_security_group_ip_rule.rb +13 -11
  62. data/lib/fog/aliyun/requests/compute/delete_security_group_sg_rule.rb +12 -10
  63. data/lib/fog/aliyun/requests/compute/delete_server.rb +2 -0
  64. data/lib/fog/aliyun/requests/compute/delete_snapshot.rb +3 -1
  65. data/lib/fog/aliyun/requests/compute/delete_vpc.rb +6 -4
  66. data/lib/fog/aliyun/requests/compute/delete_vpn_connection.rb +6 -4
  67. data/lib/fog/aliyun/requests/compute/delete_vpn_customergateway.rb +6 -4
  68. data/lib/fog/aliyun/requests/compute/delete_vswitch.rb +6 -4
  69. data/lib/fog/aliyun/requests/compute/detach_disk.rb +6 -4
  70. data/lib/fog/aliyun/requests/compute/join_security_group.rb +2 -0
  71. data/lib/fog/aliyun/requests/compute/leave_security_group.rb +2 -0
  72. data/lib/fog/aliyun/requests/compute/list_disks.rb +5 -3
  73. data/lib/fog/aliyun/requests/compute/list_eip_addresses.rb +5 -3
  74. data/lib/fog/aliyun/requests/compute/list_images.rb +5 -3
  75. data/lib/fog/aliyun/requests/compute/list_route_tables.rb +6 -4
  76. data/lib/fog/aliyun/requests/compute/list_security_group_rules.rb +7 -5
  77. data/lib/fog/aliyun/requests/compute/list_security_groups.rb +10 -8
  78. data/lib/fog/aliyun/requests/compute/list_server_types.rb +8 -6
  79. data/lib/fog/aliyun/requests/compute/list_servers.rb +4 -2
  80. data/lib/fog/aliyun/requests/compute/list_snapshots.rb +4 -2
  81. data/lib/fog/aliyun/requests/compute/list_vpcs.rb +5 -3
  82. data/lib/fog/aliyun/requests/compute/list_vpn_connections.rb +49 -49
  83. data/lib/fog/aliyun/requests/compute/list_vpn_customergateways.rb +42 -43
  84. data/lib/fog/aliyun/requests/compute/list_vpn_gateways.rb +49 -49
  85. data/lib/fog/aliyun/requests/compute/list_vrouters.rb +6 -4
  86. data/lib/fog/aliyun/requests/compute/list_vswitchs.rb +6 -4
  87. data/lib/fog/aliyun/requests/compute/list_zones.rb +3 -1
  88. data/lib/fog/aliyun/requests/compute/modify_vpc.rb +7 -5
  89. data/lib/fog/aliyun/requests/compute/modify_vswitch.rb +6 -4
  90. data/lib/fog/aliyun/requests/compute/reboot_server.rb +2 -0
  91. data/lib/fog/aliyun/requests/compute/release_eip_address.rb +4 -2
  92. data/lib/fog/aliyun/requests/compute/start_server.rb +9 -7
  93. data/lib/fog/aliyun/requests/compute/stop_server.rb +9 -7
  94. data/lib/fog/aliyun/requests/compute/unassociate_eip_address.rb +4 -2
  95. data/lib/fog/aliyun/requests/storage/copy_object.rb +3 -2
  96. data/lib/fog/aliyun/requests/storage/delete_bucket.rb +3 -2
  97. data/lib/fog/aliyun/requests/storage/delete_container.rb +3 -2
  98. data/lib/fog/aliyun/requests/storage/delete_object.rb +4 -3
  99. data/lib/fog/aliyun/requests/storage/get_bucket.rb +6 -11
  100. data/lib/fog/aliyun/requests/storage/get_container.rb +3 -2
  101. data/lib/fog/aliyun/requests/storage/get_containers.rb +3 -2
  102. data/lib/fog/aliyun/requests/storage/get_object.rb +4 -3
  103. data/lib/fog/aliyun/requests/storage/get_object_http_url.rb +5 -4
  104. data/lib/fog/aliyun/requests/storage/get_object_https_url.rb +5 -4
  105. data/lib/fog/aliyun/requests/storage/head_object.rb +3 -2
  106. data/lib/fog/aliyun/requests/storage/list_buckets.rb +3 -2
  107. data/lib/fog/aliyun/requests/storage/list_objects.rb +5 -4
  108. data/lib/fog/aliyun/requests/storage/put_bucket.rb +3 -2
  109. data/lib/fog/aliyun/requests/storage/put_container.rb +3 -2
  110. data/lib/fog/aliyun/requests/storage/put_object.rb +12 -17
  111. data/lib/fog/aliyun/storage.rb +41 -52
  112. data/lib/fog/aliyun/version.rb +3 -1
  113. data/lib/fog/bin/aliyun.rb +10 -7
  114. metadata +37 -37
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
@@ -9,7 +11,7 @@ module Fog
9
11
  time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['SnapshotId'] = snapshotId
15
17
  pathUrl += '&SnapshotId='
@@ -1,18 +1,20 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
7
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.201.106.DGkmH7#/pub/ecs/open-api/securitygroup&createsecuritygroup]
6
8
  def create_security_group(options = {})
7
- action = 'CreateSecurityGroup'
9
+ action = 'CreateSecurityGroup'
8
10
  sigNonce = randonStr
9
- time = Time.new.utc
11
+ time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
- name = options[:name]
15
- desc = options[:description]
16
+ name = options[:name]
17
+ desc = options[:description]
16
18
  vpcid = options[:vpcId]
17
19
 
18
20
  if name
@@ -71,7 +73,7 @@ module Fog
71
73
  }
72
74
  response
73
75
  end
74
- end # mock
75
- end # aliyun
76
- end # compute
77
- end # fog
76
+ end
77
+ end
78
+ end
79
+ end
@@ -1,15 +1,17 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
7
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/securitygroup&authorizesecuritygroup]
6
8
  def create_security_group_egress_ip_rule(securitygroup_id, destCidrIp, nicType, option = {})
7
- action = 'AuthorizeSecurityGroupEgress'
9
+ action = 'AuthorizeSecurityGroupEgress'
8
10
  sigNonce = randonStr
9
- time = Time.new.utc
11
+ time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['SecurityGroupId'] = securitygroup_id
15
17
  pathUrl += '&SecurityGroupId='
@@ -18,31 +20,31 @@ module Fog
18
20
  parameters['DestCidrIp'] = destCidrIp
19
21
  pathUrl += '&DestCidrIp='
20
22
  pathUrl += URI.encode(destCidrIp, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
21
- nicType = 'intranet' unless nicType
23
+ nicType ||= 'intranet'
22
24
  parameters['NicType'] = nicType
23
25
  pathUrl += '&NicType='
24
26
  pathUrl += nicType
25
27
 
26
28
  portRange = option[:portRange]
27
- portRange = '-1/-1' unless portRange
29
+ portRange ||= '-1/-1'
28
30
  parameters['PortRange'] = portRange
29
31
  pathUrl += '&PortRange='
30
32
  pathUrl += URI.encode(portRange, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
31
33
 
32
34
  protocol = option[:protocol]
33
- protocol = 'all' unless protocol
35
+ protocol ||= 'all'
34
36
  parameters['IpProtocol'] = protocol
35
37
  pathUrl += '&IpProtocol='
36
38
  pathUrl += protocol
37
39
 
38
40
  policy = option[:policy]
39
- policy = 'accept' unless policy
41
+ policy ||= 'accept'
40
42
  parameters['Policy'] = policy
41
43
  pathUrl += '&Policy='
42
44
  pathUrl += policy
43
45
 
44
46
  priority = option[:priority]
45
- priority = '1' unless priority
47
+ priority ||= '1'
46
48
  parameters['Priority'] = priority
47
49
  pathUrl += '&Priority='
48
50
  pathUrl += priority
@@ -58,6 +60,6 @@ module Fog
58
60
  )
59
61
  end
60
62
  end
61
- end # aliyun
62
- end # compute
63
- end # fog
63
+ end
64
+ end
65
+ end
@@ -1,15 +1,17 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
7
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/securitygroup&authorizesecuritygroup]
6
8
  def create_security_group_egress_sg_rule(securitygroup_id, dest_group_id, option = {})
7
- action = 'AuthorizeSecurityGroupEgress'
9
+ action = 'AuthorizeSecurityGroupEgress'
8
10
  sigNonce = randonStr
9
- time = Time.new.utc
11
+ time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['SecurityGroupId'] = securitygroup_id
15
17
  pathUrl += '&SecurityGroupId='
@@ -25,13 +27,13 @@ module Fog
25
27
  pathUrl += nicType
26
28
 
27
29
  portRange = option[:portRange]
28
- portRange = '-1/-1' unless portRange
30
+ portRange ||= '-1/-1'
29
31
  parameters['PortRange'] = portRange
30
32
  pathUrl += '&PortRange='
31
33
  pathUrl += URI.encode(portRange, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
32
34
 
33
35
  protocol = option[:protocol]
34
- protocol = 'all' unless protocol
36
+ protocol ||= 'all'
35
37
  parameters['IpProtocol'] = protocol
36
38
  pathUrl += '&IpProtocol='
37
39
  pathUrl += protocol
@@ -44,13 +46,13 @@ module Fog
44
46
  end
45
47
 
46
48
  policy = option[:policy]
47
- policy = 'accept' unless policy
49
+ policy ||= 'accept'
48
50
  parameters['Policy'] = policy
49
51
  pathUrl += '&Policy='
50
52
  pathUrl += policy
51
53
 
52
54
  priority = option[:priority]
53
- priority = '1' unless priority
55
+ priority ||= '1'
54
56
  parameters['Priority'] = priority
55
57
  pathUrl += '&Priority='
56
58
  pathUrl += priority
@@ -66,6 +68,6 @@ module Fog
66
68
  )
67
69
  end
68
70
  end
69
- end # aliyun
70
- end # compute
71
- end # fog
71
+ end
72
+ end
73
+ end
@@ -1,15 +1,17 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
7
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/securitygroup&authorizesecuritygroup]
6
8
  def create_security_group_ip_rule(securitygroup_id, sourceCidrIp, nicType, option = {})
7
- action = 'AuthorizeSecurityGroup'
9
+ action = 'AuthorizeSecurityGroup'
8
10
  sigNonce = randonStr
9
- time = Time.new.utc
11
+ time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['SecurityGroupId'] = securitygroup_id
15
17
  pathUrl += '&SecurityGroupId='
@@ -18,31 +20,31 @@ module Fog
18
20
  parameters['SourceCidrIp'] = sourceCidrIp
19
21
  pathUrl += '&SourceCidrIp='
20
22
  pathUrl += URI.encode(sourceCidrIp, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
21
- nicType = 'intranet' unless nicType
23
+ nicType ||= 'intranet'
22
24
  parameters['NicType'] = nicType
23
25
  pathUrl += '&NicType='
24
26
  pathUrl += nicType
25
27
 
26
28
  portRange = option[:portRange]
27
- portRange = '-1/-1' unless portRange
29
+ portRange ||= '-1/-1'
28
30
  parameters['PortRange'] = portRange
29
31
  pathUrl += '&PortRange='
30
32
  pathUrl += URI.encode(portRange, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
31
33
 
32
34
  protocol = option[:protocol]
33
- protocol = 'all' unless protocol
35
+ protocol ||= 'all'
34
36
  parameters['IpProtocol'] = protocol
35
37
  pathUrl += '&IpProtocol='
36
38
  pathUrl += protocol
37
39
 
38
40
  policy = option[:policy]
39
- policy = 'accept' unless policy
41
+ policy ||= 'accept'
40
42
  parameters['Policy'] = policy
41
43
  pathUrl += '&Policy='
42
44
  pathUrl += policy
43
45
 
44
46
  priority = option[:priority]
45
- priority = '1' unless priority
47
+ priority ||= '1'
46
48
  parameters['Priority'] = priority
47
49
  pathUrl += '&Priority='
48
50
  pathUrl += priority
@@ -58,6 +60,6 @@ module Fog
58
60
  )
59
61
  end
60
62
  end
61
- end # aliyun
62
- end # compute
63
- end # fog
63
+ end
64
+ end
65
+ end
@@ -1,15 +1,17 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
7
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/securitygroup&authorizesecuritygroup]
6
8
  def create_security_group_sg_rule(securitygroup_id, source_securitygroup_id, option = {})
7
- action = 'AuthorizeSecurityGroup'
9
+ action = 'AuthorizeSecurityGroup'
8
10
  sigNonce = randonStr
9
- time = Time.new.utc
11
+ time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['SecurityGroupId'] = securitygroup_id
15
17
  pathUrl += '&SecurityGroupId='
@@ -25,13 +27,13 @@ module Fog
25
27
  pathUrl += nicType
26
28
 
27
29
  portRange = option[:portRange]
28
- portRange = '-1/-1' unless portRange
30
+ portRange ||= '-1/-1'
29
31
  parameters['PortRange'] = portRange
30
32
  pathUrl += '&PortRange='
31
33
  pathUrl += URI.encode(portRange, '/[^!*\'()\;?:@#&%=+$,{}[]<>`" ')
32
34
 
33
35
  protocol = option[:protocol]
34
- protocol = 'all' unless protocol
36
+ protocol ||= 'all'
35
37
  parameters['IpProtocol'] = protocol
36
38
  pathUrl += '&IpProtocol='
37
39
  pathUrl += protocol
@@ -44,13 +46,13 @@ module Fog
44
46
  end
45
47
 
46
48
  policy = option[:policy]
47
- policy = 'accept' unless policy
49
+ policy ||= 'accept'
48
50
  parameters['Policy'] = policy
49
51
  pathUrl += '&Policy='
50
52
  pathUrl += policy
51
53
 
52
54
  priority = option[:priority]
53
- priority = '1' unless priority
55
+ priority ||= '1'
54
56
  parameters['Priority'] = priority
55
57
  pathUrl += '&Priority='
56
58
  pathUrl += priority
@@ -66,6 +68,6 @@ module Fog
66
68
  )
67
69
  end
68
70
  end
69
- end # aliyun
70
- end # compute
71
- end # fog
71
+ end
72
+ end
73
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
@@ -140,15 +142,15 @@ module Fog
140
142
  end
141
143
 
142
144
  response_data = {}
143
- if options['return_reservation_id'] == 'True'
144
- response_data = { 'reservation_id' => "r-#{Fog::Mock.random_numbers(6)}" }
145
- else
146
- response_data = {
147
- 'adminPass' => 'password',
148
- 'id' => server_id,
149
- 'links' => mock_data['links']
150
- }
151
- end
145
+ response_data = if options['return_reservation_id'] == 'True'
146
+ { 'reservation_id' => "r-#{Fog::Mock.random_numbers(6)}" }
147
+ else
148
+ {
149
+ 'adminPass' => 'password',
150
+ 'id' => server_id,
151
+ 'links' => mock_data['links']
152
+ }
153
+ end
152
154
 
153
155
  if block_devices = options['block_device_mapping_v2']
154
156
  block_devices.each { |bd| compute.volumes.get(bd[:uuid]).attach(server_id, bd[:device_name]) }
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
@@ -9,7 +11,7 @@ module Fog
9
11
  time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['DiskId'] = diskId
15
17
  pathUrl += '&DiskId='
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
@@ -9,7 +11,7 @@ module Fog
9
11
  time = Time.new.utc
10
12
 
11
13
  parameters = defalutParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunUri(action, sigNonce, time)
13
15
 
14
16
  parameters['CidrBlock'] = cidrBlock
15
17
  pathUrl += '&CidrBlock='
@@ -41,6 +43,6 @@ module Fog
41
43
  )
42
44
  end
43
45
  end
44
- end # aliyun
45
- end # compute
46
- end # fog
46
+ end
47
+ end
48
+ end
@@ -1,15 +1,17 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
4
6
  class Real
5
- def create_vpn_connection(customergatewayId, vpngatewayId, localsubnet, remotesubnet,options = {})
7
+ def create_vpn_connection(customergatewayId, vpngatewayId, localsubnet, remotesubnet, options = {})
6
8
  # {Aliyun API Reference}[https://docs.aliyun.com/?spm=5176.100054.3.1.DGkmH7#/pub/ecs/open-api/vswitch&createvswitch]
7
9
  action = 'CreateVpnConnection'
8
10
  sigNonce = randonStr
9
11
  time = Time.new.utc
10
12
 
11
13
  parameters = defalutVPCParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunVPCUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunVPCUri(action, sigNonce, time)
13
15
 
14
16
  parameters['CustomerGatewayId'] = customergatewayId
15
17
  pathUrl += '&CustomerGatewayId='
@@ -22,7 +24,7 @@ module Fog
22
24
  parameters['LocalSubnet'] = localsubnet
23
25
  pathUrl += '&LocalSubnet='
24
26
  pathUrl += localsubnet
25
-
27
+
26
28
  parameters['RemoteSubnet'] = remotesubnet
27
29
  pathUrl += '&RemoteSubnet='
28
30
  pathUrl += remotesubnet
@@ -53,6 +55,6 @@ module Fog
53
55
  )
54
56
  end
55
57
  end
56
- end # aliyun
57
- end # compute
58
- end # fog
58
+ end
59
+ end
60
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Fog
2
4
  module Compute
3
5
  class Aliyun
@@ -9,14 +11,12 @@ module Fog
9
11
  time = Time.new.utc
10
12
 
11
13
  parameters = defalutVPCParameters(action, sigNonce, time)
12
- pathUrl = defaultAliyunVPCUri(action, sigNonce, time)
14
+ pathUrl = defaultAliyunVPCUri(action, sigNonce, time)
13
15
 
14
16
  parameters['IpAddress'] = ipaddress
15
17
  pathUrl += '&IpAddress='
16
18
  pathUrl += ipaddress
17
19
 
18
-
19
-
20
20
  name = options[:name]
21
21
  desc = options[:description]
22
22
 
@@ -43,6 +43,6 @@ module Fog
43
43
  )
44
44
  end
45
45
  end
46
- end # aliyun
47
- end # compute
48
- end # fog
46
+ end
47
+ end
48
+ end