rs-api-tools 0.0.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.
- data/bin/.DS_Store +0 -0
- data/bin/rs-clone-deployment +58 -0
- data/bin/rs-clone-rightscript +79 -0
- data/bin/rs-clone-server +2 -0
- data/bin/rs-describe-alerts +42 -0
- data/bin/rs-describe-attached-vols +83 -0
- data/bin/rs-describe-deployment +85 -0
- data/bin/rs-describe-deployments +42 -0
- data/bin/rs-describe-ec2-ebs-snapshots +41 -0
- data/bin/rs-describe-ec2-ebs-volumes +42 -0
- data/bin/rs-describe-ec2-security-groups +42 -0
- data/bin/rs-describe-keys +42 -0
- data/bin/rs-describe-multi-cloud-images +42 -0
- data/bin/rs-describe-rightscript +81 -0
- data/bin/rs-describe-rightscripts +42 -0
- data/bin/rs-describe-server +97 -0
- data/bin/rs-describe-server-array +80 -0
- data/bin/rs-describe-server-arrays +42 -0
- data/bin/rs-describe-server-self +67 -0
- data/bin/rs-describe-server-templates +42 -0
- data/bin/rs-describe-servers +42 -0
- data/bin/rs-fetch-rightscripts +126 -0
- data/bin/rs-get-array-instances +64 -0
- data/bin/rs-get-server-input +2 -0
- data/bin/rs-get-server-monitoring +64 -0
- data/bin/rs-get-server-sketchy-data +42 -0
- data/bin/rs-launch-deployment +2 -0
- data/bin/rs-launch-server +2 -0
- data/bin/rs-ping-active-servers +44 -0
- data/bin/rs-reboot-deployment +2 -0
- data/bin/rs-reboot-server +75 -0
- data/bin/rs-relaunch-deployment +2 -0
- data/bin/rs-relaunch-server +74 -0
- data/bin/rs-run-all-boot-executables +94 -0
- data/bin/rs-run-rightscript +98 -0
- data/bin/rs-search-tags +69 -0
- data/bin/rs-start-deployment +2 -0
- data/bin/rs-start-server +75 -0
- data/bin/rs-stop-deployment +2 -0
- data/bin/rs-stop-server +2 -0
- data/bin/rs-terminate-all +2 -0
- data/bin/rs-terminate-deployment +2 -0
- data/bin/rs-terminate-self +70 -0
- data/bin/rs-terminate-server +90 -0
- data/bin/rs-update-input +71 -0
- data/bin/rs-update-inputs +71 -0
- data/bin/rs-update-server-array +63 -0
- metadata +194 -0
metadata
ADDED
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rs-api-tools
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Chris Fordham
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2012-06-06 00:00:00 Z
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: json
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 15
|
|
29
|
+
segments:
|
|
30
|
+
- 1
|
|
31
|
+
- 4
|
|
32
|
+
- 4
|
|
33
|
+
version: 1.4.4
|
|
34
|
+
- - <=
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
hash: 13
|
|
37
|
+
segments:
|
|
38
|
+
- 1
|
|
39
|
+
- 6
|
|
40
|
+
- 1
|
|
41
|
+
version: 1.6.1
|
|
42
|
+
type: :runtime
|
|
43
|
+
version_requirements: *id001
|
|
44
|
+
- !ruby/object:Gem::Dependency
|
|
45
|
+
name: rest_connection
|
|
46
|
+
prerelease: false
|
|
47
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
48
|
+
none: false
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
hash: 3
|
|
53
|
+
segments:
|
|
54
|
+
- 0
|
|
55
|
+
version: "0"
|
|
56
|
+
type: :runtime
|
|
57
|
+
version_requirements: *id002
|
|
58
|
+
description: RightScale API Command Line Tools.
|
|
59
|
+
email: chris@xhost.com.au
|
|
60
|
+
executables:
|
|
61
|
+
- .DS_Store
|
|
62
|
+
- rs-clone-deployment
|
|
63
|
+
- rs-clone-rightscript
|
|
64
|
+
- rs-clone-server
|
|
65
|
+
- rs-describe-alerts
|
|
66
|
+
- rs-describe-attached-vols
|
|
67
|
+
- rs-describe-deployment
|
|
68
|
+
- rs-describe-deployments
|
|
69
|
+
- rs-describe-ec2-ebs-snapshots
|
|
70
|
+
- rs-describe-ec2-ebs-volumes
|
|
71
|
+
- rs-describe-ec2-security-groups
|
|
72
|
+
- rs-describe-keys
|
|
73
|
+
- rs-describe-multi-cloud-images
|
|
74
|
+
- rs-describe-rightscript
|
|
75
|
+
- rs-describe-rightscripts
|
|
76
|
+
- rs-describe-server
|
|
77
|
+
- rs-describe-server-array
|
|
78
|
+
- rs-describe-server-arrays
|
|
79
|
+
- rs-describe-server-self
|
|
80
|
+
- rs-describe-server-templates
|
|
81
|
+
- rs-describe-servers
|
|
82
|
+
- rs-fetch-rightscripts
|
|
83
|
+
- rs-get-array-instances
|
|
84
|
+
- rs-get-server-input
|
|
85
|
+
- rs-get-server-monitoring
|
|
86
|
+
- rs-get-server-sketchy-data
|
|
87
|
+
- rs-launch-deployment
|
|
88
|
+
- rs-launch-server
|
|
89
|
+
- rs-ping-active-servers
|
|
90
|
+
- rs-reboot-deployment
|
|
91
|
+
- rs-reboot-server
|
|
92
|
+
- rs-relaunch-deployment
|
|
93
|
+
- rs-relaunch-server
|
|
94
|
+
- rs-run-all-boot-executables
|
|
95
|
+
- rs-run-rightscript
|
|
96
|
+
- rs-search-tags
|
|
97
|
+
- rs-start-deployment
|
|
98
|
+
- rs-start-server
|
|
99
|
+
- rs-stop-deployment
|
|
100
|
+
- rs-stop-server
|
|
101
|
+
- rs-terminate-all
|
|
102
|
+
- rs-terminate-deployment
|
|
103
|
+
- rs-terminate-self
|
|
104
|
+
- rs-terminate-server
|
|
105
|
+
- rs-update-input
|
|
106
|
+
- rs-update-inputs
|
|
107
|
+
- rs-update-server-array
|
|
108
|
+
extensions: []
|
|
109
|
+
|
|
110
|
+
extra_rdoc_files: []
|
|
111
|
+
|
|
112
|
+
files:
|
|
113
|
+
- bin/.DS_Store
|
|
114
|
+
- bin/rs-clone-deployment
|
|
115
|
+
- bin/rs-clone-rightscript
|
|
116
|
+
- bin/rs-clone-server
|
|
117
|
+
- bin/rs-describe-alerts
|
|
118
|
+
- bin/rs-describe-attached-vols
|
|
119
|
+
- bin/rs-describe-deployment
|
|
120
|
+
- bin/rs-describe-deployments
|
|
121
|
+
- bin/rs-describe-ec2-ebs-snapshots
|
|
122
|
+
- bin/rs-describe-ec2-ebs-volumes
|
|
123
|
+
- bin/rs-describe-ec2-security-groups
|
|
124
|
+
- bin/rs-describe-keys
|
|
125
|
+
- bin/rs-describe-multi-cloud-images
|
|
126
|
+
- bin/rs-describe-rightscript
|
|
127
|
+
- bin/rs-describe-rightscripts
|
|
128
|
+
- bin/rs-describe-server
|
|
129
|
+
- bin/rs-describe-server-array
|
|
130
|
+
- bin/rs-describe-server-arrays
|
|
131
|
+
- bin/rs-describe-server-self
|
|
132
|
+
- bin/rs-describe-server-templates
|
|
133
|
+
- bin/rs-describe-servers
|
|
134
|
+
- bin/rs-fetch-rightscripts
|
|
135
|
+
- bin/rs-get-array-instances
|
|
136
|
+
- bin/rs-get-server-input
|
|
137
|
+
- bin/rs-get-server-monitoring
|
|
138
|
+
- bin/rs-get-server-sketchy-data
|
|
139
|
+
- bin/rs-launch-deployment
|
|
140
|
+
- bin/rs-launch-server
|
|
141
|
+
- bin/rs-ping-active-servers
|
|
142
|
+
- bin/rs-reboot-deployment
|
|
143
|
+
- bin/rs-reboot-server
|
|
144
|
+
- bin/rs-relaunch-deployment
|
|
145
|
+
- bin/rs-relaunch-server
|
|
146
|
+
- bin/rs-run-all-boot-executables
|
|
147
|
+
- bin/rs-run-rightscript
|
|
148
|
+
- bin/rs-search-tags
|
|
149
|
+
- bin/rs-start-deployment
|
|
150
|
+
- bin/rs-start-server
|
|
151
|
+
- bin/rs-stop-deployment
|
|
152
|
+
- bin/rs-stop-server
|
|
153
|
+
- bin/rs-terminate-all
|
|
154
|
+
- bin/rs-terminate-deployment
|
|
155
|
+
- bin/rs-terminate-self
|
|
156
|
+
- bin/rs-terminate-server
|
|
157
|
+
- bin/rs-update-input
|
|
158
|
+
- bin/rs-update-inputs
|
|
159
|
+
- bin/rs-update-server-array
|
|
160
|
+
homepage: https://github.com/flaccid/rs-api-tools
|
|
161
|
+
licenses: []
|
|
162
|
+
|
|
163
|
+
post_install_message:
|
|
164
|
+
rdoc_options: []
|
|
165
|
+
|
|
166
|
+
require_paths:
|
|
167
|
+
- lib
|
|
168
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
169
|
+
none: false
|
|
170
|
+
requirements:
|
|
171
|
+
- - ">="
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
hash: 3
|
|
174
|
+
segments:
|
|
175
|
+
- 0
|
|
176
|
+
version: "0"
|
|
177
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
|
+
none: false
|
|
179
|
+
requirements:
|
|
180
|
+
- - ">="
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
hash: 3
|
|
183
|
+
segments:
|
|
184
|
+
- 0
|
|
185
|
+
version: "0"
|
|
186
|
+
requirements: []
|
|
187
|
+
|
|
188
|
+
rubyforge_project:
|
|
189
|
+
rubygems_version: 1.8.10
|
|
190
|
+
signing_key:
|
|
191
|
+
specification_version: 3
|
|
192
|
+
summary: rs-api-tools
|
|
193
|
+
test_files: []
|
|
194
|
+
|