civo 1.5.31 → 1.5.32

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: '0895d2c1cf7db75c9116310f4c6ba1b5aeee9cc26bc0d9d01c96e0b090cf65b8'
4
- data.tar.gz: e7d9ddb8d0170af62a87b361a425731eb4f54eff4655a38c40a54056bfa0317b
3
+ metadata.gz: 8f0416720f70ec31ea6e66a04c074dd0f35c5391da2cbd62c53ddb4963107cf6
4
+ data.tar.gz: 53ec652019e3cbe744b9b911418e98445fae300c810ae84f84c5679a70d9154e
5
5
  SHA512:
6
- metadata.gz: 885ceb5afba43f8ebac64fb4cc1be29951cbb7889cd34db367679af9a05ca033a8d22aab8e8336c7194547aad22b1a39dc6bb56f7bd1c14df8c1e5daedb2644f
7
- data.tar.gz: c8d740a5344bb485e4492c0af1ef3d29d7aed0305746caac288be37a2c14891e4d4cb4fbaa28fbcc382512344372de5f07d3b2d53d05943c54e2319e9a720059
6
+ metadata.gz: e402ca7db1e251a81f1c36962328137dd0ddf4be9a6c852fac1cd3f91617f337a8dc08620762307dc2b452ca4172528ba7e3f244031830db4d323081b024d835
7
+ data.tar.gz: 54b735bdf1e71c10d98928256308b79a45f9ed409c7ac9a7972ac7e94bd2cae0af9a9813e4a57dfdb005bcc6f10aee37790e7b6279d662430e5b940970b638ea
@@ -1,69 +1,13 @@
1
1
  module Civo
2
2
  class LoadBalancer < Base
3
3
  get :all, "/v2/loadbalancers"
4
- get :find, "/v2/loadbalancers/:id"
5
- post :create, "/v2/loadbalancers", required: [:hostname], fake: :get_loadbalancer
6
- put :update, "/v2/loadbalancers/:id", fake: :get_loadbalancer
7
- delete :remove, "/v2/loadbalancers/:id", required: [:id], fake: :delete_loadbalancer
4
+ get :find, "/v2/loadbalancers/:id", requires: [:id]
5
+ post :create, "/v2/loadbalancers", required: [:name], request_body_type: :json
6
+ put :update, "/v2/loadbalancers/:id", required: [:id, :name], request_body_type: :json
7
+ delete :remove, "/v2/loadbalancers/:id", required: [:id]
8
8
 
9
9
  def to_partial_path
10
10
  "civo/loadbalancer"
11
11
  end
12
-
13
- def loadbalancers
14
- [
15
- {
16
- id: 23,
17
- name: "Johnny",
18
- algorithm: "round_robin",
19
- state: "available",
20
- public_ipv4: "192.168.1.10",
21
- private_ipv4: "10.10.10.10",
22
- firewall_id: "86E2749F-8FA1-4D49-8833-299D02E585B8",
23
- cluster_id: "96E2749F-8FA1-4D49-8833-299D02E585B8"
24
- },
25
- {
26
- id: 223,
27
- name: "Dep",
28
- algorithm: "weighted_fixed",
29
- state: "available",
30
- public_ipv4: "192.168.1.30",
31
- private_ipv4: "10.10.10.12",
32
- firewall_id: "36E2749F-8FA1-4D49-8833-299D02E585B8",
33
- cluster_id: "46E2749F-8FA1-4D49-8833-299D02E585B8"
34
- }
35
- ].to_json
36
- end
37
-
38
- def get_loadbalancer
39
- {
40
- id: 23,
41
- name: "Johnny",
42
- algorithm: "round_robin",
43
- state: "available",
44
- public_ipv4: "192.168.1.10",
45
- private_ipv4: "10.10.10.10",
46
- firewall_id: "86E2749F-8FA1-4D49-8833-299D02E585B8",
47
- cluster_id: "96E2749F-8FA1-4D49-8833-299D02E585B8",
48
- endpoints: [
49
- {
50
- ip: "192.168.1.4",
51
- protocol: "TCP",
52
- source_port: 80,
53
- target_port: 31579
54
- },
55
- {
56
- ip: "192.168.1.5",
57
- protocol: "TCP",
58
- source_port: 80,
59
- target_port: 31579
60
- }
61
- ]
62
- }.to_json
63
- end
64
-
65
- def delete_loadbalancer
66
- { result: "Success" }.to_json
67
- end
68
12
  end
69
13
  end
data/lib/civo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Civo
2
- VERSION = "1.5.31"
2
+ VERSION = "1.5.32"
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.5.31
4
+ version: 1.5.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Jeffries
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: flexirest
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
142
  - !ruby/object:Gem::Version
143
143
  version: '0'
144
144
  requirements: []
145
- rubygems_version: 3.5.14
145
+ rubygems_version: 3.0.8
146
146
  signing_key:
147
147
  specification_version: 4
148
148
  summary: Civo CLI AND API