cloudstack-cli 0.9.0 → 0.9.1
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adb750b12b978a9aa9be4830641cab865210831f
|
4
|
+
data.tar.gz: 4cc4dcd31c03783a0c84a2d5880ec50892285258
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 389c7b74def6fcdbbe23587cc86e3757989d4fcc421485c6b06521db227e52819a2b441c7b6760aad6af2148fc0eaed8f83b30bac7cf47594df51bda2e81c007
|
7
|
+
data.tar.gz: c29b8aec1e9f62cf0c1156a0ea4c73a2767ae37ebb125ac4da611cff8ebd2944ee6fc97a0581cc8a6dc844459a774c307456eac075b4e09a9761c852316045f5
|
data/cloudstack-cli.gemspec
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
class PortRule < CloudstackCli::Base
|
2
2
|
|
3
|
-
desc "create SERVER", "create portforwarding rules"
|
3
|
+
desc "create SERVER", "create portforwarding rules for a given server"
|
4
4
|
option :rules, type: :array,
|
5
5
|
required: true,
|
6
6
|
desc: "Port Forwarding Rules [public_ip]:port ...",
|
7
7
|
aliases: '-r'
|
8
8
|
option :network, required: true, aliases: '-n'
|
9
9
|
option :project
|
10
|
+
option :keyword, desc: "list by keyword"
|
10
11
|
def create(server_name)
|
11
12
|
projectid = find_project['id'] if options[:project]
|
12
13
|
unless server = client.get_server(server_name, projectid)
|
@@ -7,6 +7,7 @@ class Server < CloudstackCli::Base
|
|
7
7
|
option :command, desc: "command to execute for each server: START, STOP or RESTART"
|
8
8
|
option :state
|
9
9
|
option :listall
|
10
|
+
option :keyword, desc: "filter by keyword"
|
10
11
|
def list
|
11
12
|
if options[:project]
|
12
13
|
project_id = find_project['id']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudstack-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nik Wolfgramm
|
@@ -58,20 +58,20 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '0.
|
61
|
+
version: '0.6'
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
|
-
version: 0.
|
64
|
+
version: 0.6.0
|
65
65
|
type: :runtime
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
68
68
|
requirements:
|
69
69
|
- - "~>"
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '0.
|
71
|
+
version: '0.6'
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: 0.
|
74
|
+
version: 0.6.0
|
75
75
|
description: cloudstack-cli is a CloudStack API command line client written in Ruby.
|
76
76
|
email:
|
77
77
|
- nik.wolfgramm@gmail.com
|