idcfcloud 1.1.1 → 1.1.2
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/idcf/cli/conf/conf.yml +6 -0
- data/lib/idcf/cli/conf/const.rb +1 -1
- data/lib/idcf/cli/controller/compute.rb +1 -1
- data/lib/idcf/cli/controller/ilb.rb +1 -1
- data/lib/idcf/cli/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c426a591993dc4f91689733ed42dd7b74fa318997b7bd10e2aed2e79419de34b
|
4
|
+
data.tar.gz: cbb9b32e9562df3117435d076667ca8900c07f1916f6d68fb970f8f48ca44696
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8cc9e4688089eba3db58999522f1d1020b3c95ef42ae202f2633b263dd2b7b44ebff927c27a761f721d569e4abfa7951f19cdaf9f3ba0958d5739a349b59c66e
|
7
|
+
data.tar.gz: 9f7265ea8993df575d658e336ae13dab0afebf02fd092e048f2deb5eae370f9a50896edb10aa3013ca037d3543def691b7f23ed458dc9fae018547dba86ea06e
|
data/CHANGELOG.md
ADDED
data/lib/idcf/cli/conf/conf.yml
CHANGED
@@ -9,6 +9,9 @@ ilb:
|
|
9
9
|
jp-east-2:
|
10
10
|
schema: https://ilb.jp-east-2.idcfcloud.com/api/v1/schema
|
11
11
|
host: ilb.jp-east-2.idcfcloud.com
|
12
|
+
jp-east-3:
|
13
|
+
schema: https://ilb.jp-east-3.idcfcloud.com/api/v1/schema
|
14
|
+
host: ilb.jp-east-3.idcfcloud.com
|
12
15
|
jp-west:
|
13
16
|
schema: https://ilb.jp-west.idcfcloud.com/api/v1/schema
|
14
17
|
host: ilb.jp-west.idcfcloud.com
|
@@ -33,6 +36,9 @@ compute:
|
|
33
36
|
jp-east-2:
|
34
37
|
schema: https://compute.jp-east-2.idcfcloud.com/api/v1/schema
|
35
38
|
host: compute.jp-east-2.idcfcloud.com
|
39
|
+
jp-east-3:
|
40
|
+
schema: https://compute.jp-east-3.idcfcloud.com/api/v1/schema
|
41
|
+
host: compute.jp-east-3.idcfcloud.com
|
36
42
|
jp-west:
|
37
43
|
schema: https://compute.jp-west.idcfcloud.com/api/v1/schema
|
38
44
|
host: compute.jp-west.idcfcloud.com
|
data/lib/idcf/cli/conf/const.rb
CHANGED
@@ -23,7 +23,7 @@ module Idcf
|
|
23
23
|
CODE_CONF_PATH = "#{BASE_PATH}/idcf/cli/conf/conf.yml".freeze
|
24
24
|
USER_CONF_PATH = "#{USER_DIR_PATH}/config.ini".freeze
|
25
25
|
USER_CONF_GLOBAL = "#{BASE_PATH}/../config/config.ini".freeze
|
26
|
-
REGIONS = %w[jp-east jp-east-2 jp-west].freeze
|
26
|
+
REGIONS = %w[jp-east jp-east-2 jp-east-3 jp-west].freeze
|
27
27
|
GLOBAL_CONF_ITEMS =
|
28
28
|
{
|
29
29
|
output_log: {
|
data/lib/idcf/cli/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- IDC Frontier Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -268,6 +268,7 @@ files:
|
|
268
268
|
- ".codeclimate.yml"
|
269
269
|
- ".gitignore"
|
270
270
|
- ".rubocop.yml"
|
271
|
+
- CHANGELOG.md
|
271
272
|
- Gemfile
|
272
273
|
- LICENSE.txt
|
273
274
|
- README.md
|
@@ -359,7 +360,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
359
360
|
version: '0'
|
360
361
|
requirements: []
|
361
362
|
rubygems_version: 3.1.4
|
362
|
-
signing_key:
|
363
|
+
signing_key:
|
363
364
|
specification_version: 4
|
364
365
|
summary: IDCF Cli tools
|
365
366
|
test_files: []
|