Skip to content

Commit

Permalink
size and count in json format
Browse files Browse the repository at this point in the history
  • Loading branch information
tahsin352 committed Oct 6, 2021
1 parent 88f3051 commit 821d9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/civo/kubernetes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Kubernetes < Base
get :find, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters/:id", requires: [:id]
post :create, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters", requires: [:name]
post :recycle, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters/:id/recycle", requires: [:id, :hostname]
put :update, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters/:id"
put :update, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters/:id", request_body_type: :json
delete :remove, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/clusters/:id", requires: [:id], send_delete_body: true

get :applications, "/v#{ENV["CIVO_API_VERSION"] || "2"}/kubernetes/applications"
Expand Down

0 comments on commit 821d9d8

Please sign in to comment.