vpsfree-client 0.13.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f4645028b80904d5b4c26ff2f2b1aa34c83569dc43f0a0edec6ea2a7a0323f1
4
- data.tar.gz: 3ad0acaf7db2cfb7e22ba15b94196353e0219176e325d590a14bb2257bcc7a2f
3
+ metadata.gz: b6ad480e42c9b26e25919e959d286f8946fe718b1069767d649f72e547fcd597
4
+ data.tar.gz: 34a6ad57357c2795e8c6ddda1b5dd9f0a5f119321a3c14295d944380a50f749d
5
5
  SHA512:
6
- metadata.gz: a8ef44f284d0e3ae116c3b0a60b2db0c96e9dbf25f9e4d5ef1f4de838ab3bf4591703bcafb19c5e1a06b1e288431f39071dc52e19293d926139a0aff19ee0f56
7
- data.tar.gz: 24119771ea1b4e11ca3b92445a301ccd76c4b815cd0eb64146a7877260eacbaed6742da975dda9dafa17fc786b81cabefec83def896f2cb82ec8b9cbb5befd21
6
+ metadata.gz: 2cbbc8d4ffc69bce05afe0cf352c5f799c87adf494e7fd90956b6db9dd4c8747dbde9b722995212228b0b770b2daab274c21f4d7c4ab48e338919d296b765d5d
7
+ data.tar.gz: 65cb06981ca12d00806995bfed49ddbaf8f6f02d981a5c41a6c5da6ed88c267583393259bbe97396383f16d216afeb24436c3c52600701ad08be307adda2d895
data/CHANGELOG CHANGED
@@ -1,3 +1,12 @@
1
+ * Tue Aug 09 2022 - version 0.16.0
2
+ - Base on vpsadmin-client 3.0.0.master.20220809-0.4bb004b0
3
+
4
+ * Fri Jan 21 2022 - version 0.15.0
5
+ - Base on vpsadmin-client 3.0.0.master.20220121-0.b5a81113
6
+
7
+ * Fri Jan 07 2022 - version 0.14.0
8
+ - Base on vpsadmin-client 3.0.0.master.20220107-0.57b7b680
9
+
1
10
  * Thu Dec 09 2021 - version 0.13.0
2
11
  - Base on vpsadmin-client 3.0.0.master.20211209-0.34bce62b
3
12
 
data/README.md CHANGED
@@ -1,8 +1,13 @@
1
1
  vpsFree-Client
2
2
  ==============
3
- vpsFree-Client is a Ruby CLI and client library for vpsFree.cz API. It is based
4
- on vpsadmin-client, which is in turn based on haveapi-client. Check haveapi-client
5
- for more extensive documentation.
3
+ vpsFree-Client is a Ruby CLI and client library for
4
+ [vpsFree.cz API](https://api.vpsfree.cz). It is based on
5
+ [vpsadmin-client](https://github.com/vpsfreecz/vpsadmin/tree/master/client),
6
+ which is in turn based on
7
+ [haveapi-client](https://github.com/vpsfreecz/haveapi/tree/master/clients/ruby).
8
+
9
+ More information about vpsFree-Client can be found at vpsFree.cz's
10
+ [knowledge base](https://kb.vpsfree.org/manuals/vps/api).
6
11
 
7
12
  ## Installation
8
13
 
@@ -20,8 +25,7 @@ Or install it yourself as:
20
25
 
21
26
  ### Distributions
22
27
 
23
- If you are a Nix user, the `nixpkgs.vpsfree-client` is available in
24
- `nixos-unstable` and will become available in the next "20.09" release.
28
+ If you are a Nix user, you can use `nixpkgs.vpsfree-client`.
25
29
 
26
30
  ## Usage
27
31
  ### CLI
@@ -29,7 +33,7 @@ If you are a Nix user, the `nixpkgs.vpsfree-client` is available in
29
33
  Usage: vpsfreectl [options] <resource> <action> [objects ids] [-- [parameters]]
30
34
  -u, --api URL API URL
31
35
  -a, --auth METHOD Authentication method
32
- --list-versions List all available API versions
36
+ --list-versions List all available API versions
33
37
  --list-auth-methods [VERSION]
34
38
  List available authentication methods
35
39
  --list-resources [VERSION] List all resource in API version
@@ -47,6 +51,8 @@ If you are a Nix user, the `nixpkgs.vpsfree-client` is available in
47
51
  --utc Display Datetime parameters in UTC
48
52
  --localtime Display Datetime parameters in local timezone
49
53
  --date-format FORMAT Display Datetime in custom format
54
+ --[no-]block Toggle action blocking mode
55
+ --timeout SEC Fail when the action does not finish within the timeout
50
56
  -v, --[no-]verbose Run verbosely
51
57
  --client-version Show client version
52
58
  --protocol-version Show protocol version
@@ -54,7 +60,14 @@ If you are a Nix user, the `nixpkgs.vpsfree-client` is available in
54
60
  -h, --help Show this message
55
61
 
56
62
  Commands:
63
+ action_state wait <STATE ID> Block until the action is finished
57
64
  vps remote_console VPS_ID Open VPS remote console
65
+ vps migrate_many VPS_ID... Migrate multiple VPSes using a migration plan
66
+ snapshot download [SNAPSHOT_ID] Download a snapshot as an archive or a stream
67
+ snapshot send SNAPSHOT_ID Download a snapshot stream and write it on stdout
68
+ backup dataset [DATASET_ID] FILESYSTEM Backup dataset locally
69
+ backup vps [VPS_ID] FILESYSTEM Backup VPS locally
70
+ ip_traffic top Live IP traffic monitor
58
71
 
59
72
  #### Examples
60
73
  Authenticate using token and save it to config for later use:
@@ -1,5 +1,5 @@
1
1
  module VpsFree
2
2
  module Client
3
- VERSION = '0.13.0'
3
+ VERSION = '0.16.0'
4
4
  end
5
5
  end
@@ -21,5 +21,5 @@ Gem::Specification.new do |spec|
21
21
  spec.add_development_dependency 'bundler'
22
22
  spec.add_development_dependency 'rake'
23
23
 
24
- spec.add_runtime_dependency 'vpsadmin-client', '3.0.0.master.20211209-0.34bce62b'
24
+ spec.add_runtime_dependency 'vpsadmin-client', '3.0.0.master.20220809-0.4bb004b0'
25
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vpsfree-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Skokan
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 3.0.0.master.20211209.pre.0.34bce62b
47
+ version: 3.0.0.master.20220809.pre.0.4bb004b0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 3.0.0.master.20211209.pre.0.34bce62b
54
+ version: 3.0.0.master.20220809.pre.0.4bb004b0
55
55
  description: Ruby API and CLI for vpsFree.cz API
56
56
  email:
57
57
  - jakub.skokan@vpsfree.cz