idcfcloud 1.1.7 → 1.1.8

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: '07987aa4fc031d644c8b54e09ffd12c1d77e0ffb8620e35f3fbfdb907773c534'
4
- data.tar.gz: ea31ccf324f5117e27b367af76a12bfb82bcb9387ed7e9b2b1ab73050d1c829a
3
+ metadata.gz: 1bc580754ca67d64fe22b1f76a182e9a3e2385093be0702882be78062b561530
4
+ data.tar.gz: 46e672e9153698b7728c10f7559318ce1ba206fec90acff0d365f084446f00cb
5
5
  SHA512:
6
- metadata.gz: 35296b91a7a22076556706a583b3e2fd97be1833620569e2e9b80259f1ef2387e7a299b68adfbdd2271031c7ba6e5a51ca86834d42ac8e4ac11619e0a829138f
7
- data.tar.gz: 2a9481c9c52f7781c8f115b4d77a6b225149f15455882b8a099e39cc08faf412fec72383cb6ab992d103cf61fc51e0046a3bb0ccf94fe8d4d5a03ca1441e8eab
6
+ metadata.gz: d35ab54d52e1edd999de6f5d7e350be01e2a36fe63434c9531ff140830b777e2862029949d8388b43b434d0a8adc981d62cdc6b384ea614fbf9519fd96366897
7
+ data.tar.gz: 35d16a3b7bff0700d08826848895118f4fac374752d5be2e704385e32a263e60fc23572ae595809d363bc999ed8965e1b7ef3ee48550a214a91911d64462d39c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.8
4
+
5
+ * Add autoscale service
6
+
3
7
  ## 1.1.7
4
8
 
5
9
  * Change some output logic
data/README.md CHANGED
@@ -74,6 +74,8 @@ idcfcloud your list_billing_history --json-path '$.data[?(@.month=="2017-10")]'
74
74
 
75
75
  [Your](#your)
76
76
 
77
+ [Autoscale](#autoscale)
78
+
77
79
  ### Common Features
78
80
 
79
81
  versions
@@ -132,6 +134,10 @@ http://docs.idcf.jp/cloud/dns/#s_fid=4FEB16B56007BA5C-0BFB42ABA668ADA8
132
134
 
133
135
  http://docs.idcf.jp/cloud/billing/
134
136
 
137
+ ### Autoscale<a name="autoscale"></a>
138
+
139
+ https://idcf.jp/api-docs/apis/?id=docs_compute-autoscale_reference
140
+
135
141
  ## Development && Test
136
142
 
137
143
  Running the following test code is possible, but not recommended nor supported. Run only a code of a target.
@@ -42,3 +42,9 @@ compute:
42
42
  jp-west:
43
43
  schema: https://compute.jp-west.idcfcloud.com/api/v1/schema
44
44
  host: compute.jp-west.idcfcloud.com
45
+ autoscale:
46
+ v1:
47
+ region:
48
+ default:
49
+ schema: https://compute.idcfcloud.com/api/v1/autoscale/schema
50
+ host: compute.idcfcloud.com
@@ -0,0 +1,18 @@
1
+ require_relative './base'
2
+
3
+ module Idcf
4
+ module Cli
5
+ module Controller
6
+ # autoscale
7
+ class Autoscale < Base
8
+ default_command :help
9
+
10
+ class << self
11
+ def description
12
+ 'Autoscale Service'
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -1,5 +1,5 @@
1
1
  module Idcf
2
2
  module Cli
3
- VERSION = '1.1.7'.freeze
3
+ VERSION = '1.1.8'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: idcfcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - IDC Frontier Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-11 00:00:00.000000000 Z
11
+ date: 2024-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -280,6 +280,7 @@ files:
280
280
  - lib/idcf/cli/command/morio.rb
281
281
  - lib/idcf/cli/conf/conf.yml
282
282
  - lib/idcf/cli/conf/const.rb
283
+ - lib/idcf/cli/controller/autoscale.rb
283
284
  - lib/idcf/cli/controller/base.rb
284
285
  - lib/idcf/cli/controller/compute.rb
285
286
  - lib/idcf/cli/controller/dns.rb