civo 1.2.9 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1673a916997fce6a7ac35a39eb850f8f53ab311323ad1efbfe9d13ef2f6edfcf
4
- data.tar.gz: c8b6a0bc93f36a1567c06edc1ebb5ae706a80a701feca96612bd781b7e7a89da
3
+ metadata.gz: 1b85f6bc21c791ff5f2f336a94a02e6b05283f7ae808dccb250c9120d9e3df3c
4
+ data.tar.gz: 922937e6ea56c51c1795e79f0116c4e336d5ab658dd472ce5685820668f0f386
5
5
  SHA512:
6
- metadata.gz: 94b38bbbe555fc4518947fd56a9026a67db95ac205e7931aef7c007fa71219cb7f5476bff888e02bcedd68f32799c9e3b91f07ecee1b037eebc11e01b060ccff
7
- data.tar.gz: 8b239dae7e402b622f2f5528574ef5d2e364354c5be2331fd44c024e8ce6158f6d75c8bd1c82b0e74acc4b1218fd3afacbdf80403d42c2049bdee70676956093
6
+ metadata.gz: '089415e51137ad218a441c3b85ea013353ac4b8c5706f72ca7ad1308e5bc55e628fad5bcab8c8eb9c51144e311fc487bfccf23bc24f8e01deed77f3e4464d39e'
7
+ data.tar.gz: 9fa91ca102cd6eed5458d01745284363ccb27c184dfb0264c644c744e1dab79b63c2a3aaa336a0bbec73f53829001e1df17d152a7ec2a61afee76d595c3128f4
@@ -0,0 +1,12 @@
1
+ module Civo
2
+ class DiskImage < Base
3
+ get :all, "/v#{ENV["CIVO_API_VERSION"] || "2"}/disk_images"
4
+ get :find, "/v#{ENV["CIVO_API_VERSION"] || "2"}/disk_images/:id"
5
+
6
+ def to_partial_path
7
+ "civo/disk_image"
8
+ end
9
+ end
10
+
11
+ class DiskImage < DiskImage ; end
12
+ end
@@ -9,4 +9,6 @@ module Civo
9
9
  "civo/dns_domain"
10
10
  end
11
11
  end
12
+
13
+ class DNSDomain < DnsDomain ; end
12
14
  end
@@ -9,4 +9,6 @@ module Civo
9
9
  "civo/dns_domain"
10
10
  end
11
11
  end
12
+
13
+ class DNSRecord < DnsRecord ; end
12
14
  end
@@ -8,4 +8,6 @@ module Civo
8
8
  "civo/ip"
9
9
  end
10
10
  end
11
+
12
+ class IP < Ip ; end
11
13
  end
@@ -9,4 +9,6 @@ module Civo
9
9
  "civo/ssh_key"
10
10
  end
11
11
  end
12
+
13
+ class SSHKey < SshKey ; end
12
14
  end
data/lib/civo.rb CHANGED
@@ -8,33 +8,30 @@ ENV["CIVO_API_VERSION"] ||= "2"
8
8
 
9
9
  CIVO_ENGINE_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../")
10
10
 
11
- module Civo
12
- unless defined?(Rails)
13
- autoload :Account, "#{CIVO_ENGINE_ROOT}/app/models/civo/account"
14
- autoload :Action, "#{CIVO_ENGINE_ROOT}/app/models/civo/action"
15
- autoload :AuditLog, "#{CIVO_ENGINE_ROOT}/app/models/civo/audit_log"
16
- autoload :Base, "#{CIVO_ENGINE_ROOT}/app/models/civo/base"
17
- autoload :Blueprint, "#{CIVO_ENGINE_ROOT}/app/models/civo/blueprint"
18
- autoload :Charge, "#{CIVO_ENGINE_ROOT}/app/models/civo/charge"
19
- autoload :DnsDomain, "#{CIVO_ENGINE_ROOT}/app/models/civo/dns_domain"
20
- autoload :DnsRecord, "#{CIVO_ENGINE_ROOT}/app/models/civo/dns_record"
21
- autoload :Firewall, "#{CIVO_ENGINE_ROOT}/app/models/civo/firewall"
22
- autoload :FirewallRule, "#{CIVO_ENGINE_ROOT}/app/models/civo/firewall_rule"
23
- autoload :Instance, "#{CIVO_ENGINE_ROOT}/app/models/civo/instance"
24
- autoload :Kubernetes, "#{CIVO_ENGINE_ROOT}/app/models/civo/kubernetes"
25
- autoload :Ip, "#{CIVO_ENGINE_ROOT}/app/models/civo/ip"
26
- autoload :KPI, "#{CIVO_ENGINE_ROOT}/app/models/civo/kpi"
27
- autoload :LoadBalancer, "#{CIVO_ENGINE_ROOT}/app/models/civo/load_balancer"
28
- autoload :Network, "#{CIVO_ENGINE_ROOT}/app/models/civo/network"
29
- autoload :Quota, "#{CIVO_ENGINE_ROOT}/app/models/civo/quota"
30
- autoload :Region, "#{CIVO_ENGINE_ROOT}/app/models/civo/region"
31
- autoload :Size, "#{CIVO_ENGINE_ROOT}/app/models/civo/size"
32
- autoload :Snapshot, "#{CIVO_ENGINE_ROOT}/app/models/civo/snapshot"
33
- autoload :SshKey, "#{CIVO_ENGINE_ROOT}/app/models/civo/ssh_key"
34
- autoload :System, "#{CIVO_ENGINE_ROOT}/app/models/civo/system"
35
- autoload :Team, "#{CIVO_ENGINE_ROOT}/app/models/civo/team"
36
- autoload :Template, "#{CIVO_ENGINE_ROOT}/app/models/civo/template"
37
- autoload :User, "#{CIVO_ENGINE_ROOT}/app/models/civo/user"
38
- autoload :Volume, "#{CIVO_ENGINE_ROOT}/app/models/civo/volume"
39
- end
40
- end
11
+ require_relative "../app/models/civo/base"
12
+ require_relative "../app/models/civo/account"
13
+ require_relative "../app/models/civo/action"
14
+ require_relative "../app/models/civo/audit_log"
15
+ require_relative "../app/models/civo/blueprint"
16
+ require_relative "../app/models/civo/charge"
17
+ require_relative "../app/models/civo/disk_image"
18
+ require_relative "../app/models/civo/dns_domain"
19
+ require_relative "../app/models/civo/dns_record"
20
+ require_relative "../app/models/civo/firewall"
21
+ require_relative "../app/models/civo/firewall_rule"
22
+ require_relative "../app/models/civo/instance"
23
+ require_relative "../app/models/civo/kubernetes"
24
+ require_relative "../app/models/civo/ip"
25
+ require_relative "../app/models/civo/kpi"
26
+ require_relative "../app/models/civo/load_balancer"
27
+ require_relative "../app/models/civo/network"
28
+ require_relative "../app/models/civo/quota"
29
+ require_relative "../app/models/civo/region"
30
+ require_relative "../app/models/civo/size"
31
+ require_relative "../app/models/civo/snapshot"
32
+ require_relative "../app/models/civo/ssh_key"
33
+ require_relative "../app/models/civo/system"
34
+ require_relative "../app/models/civo/team"
35
+ require_relative "../app/models/civo/template"
36
+ require_relative "../app/models/civo/user"
37
+ require_relative "../app/models/civo/volume"
data/lib/civo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Civo
2
- VERSION = "1.2.9"
2
+ VERSION = "1.3.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: civo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.9
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-17 00:00:00.000000000 Z
11
+ date: 2021-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: flexirest
@@ -81,6 +81,7 @@ files:
81
81
  - app/models/civo/base.rb
82
82
  - app/models/civo/blueprint.rb
83
83
  - app/models/civo/charge.rb
84
+ - app/models/civo/disk_image.rb
84
85
  - app/models/civo/dns_domain.rb
85
86
  - app/models/civo/dns_record.rb
86
87
  - app/models/civo/firewall.rb
@@ -129,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
130
  - !ruby/object:Gem::Version
130
131
  version: '0'
131
132
  requirements: []
132
- rubygems_version: 3.0.3
133
+ rubygems_version: 3.1.2
133
134
  signing_key:
134
135
  specification_version: 4
135
136
  summary: Civo CLI AND API