gcloud 0.0.2 → 0.0.4
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.tar.gz.sig +2 -3
- data/CHANGELOG +4 -0
- data/LICENSE +674 -0
- data/Manifest +111 -0
- data/README.md +4 -3
- data/bin/gcutil +53 -0
- data/gcloud.gemspec +4 -3
- data/packages/gcutil-1.7.1/CHANGELOG +197 -0
- data/packages/gcutil-1.7.1/LICENSE +202 -0
- data/packages/gcutil-1.7.1/VERSION +1 -0
- data/packages/gcutil-1.7.1/gcutil +53 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/LICENSE +23 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.py +1 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.py +743 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.py +123 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/ext/__init__.py +0 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.py +1443 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.py +172 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.py +385 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.py +303 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.py +1 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.py +32 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/appengine.py +528 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.py +1139 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.py +105 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.py +244 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/django_orm.py +124 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/file.py +107 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.py +343 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.py +379 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.py +174 -0
- data/packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.py +147 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/LICENSE +202 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/__init__.py +3 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.py +3 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.py +356 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.py +783 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/basetest.py +1260 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/datelib.py +421 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/debug.py +60 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/file_util.py +181 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/resources.py +67 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/run_script_module.py +217 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/setup_command.py +159 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/shellutil.py +49 -0
- data/packages/gcutil-1.7.1/lib/google_apputils/google/apputils/stopwatch.py +204 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.py +0 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.py +140 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper_test.py +149 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.py +130 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth_test.py +75 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.py +128 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds_test.py +111 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.py +1808 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base_test.py +1651 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta13.json +2851 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta14.json +3361 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.py +342 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds_test.py +474 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.py +344 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds_test.py +231 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.py +274 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil +89 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.py +69 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.py +262 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds_test.py +172 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.py +1506 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds_test.py +1904 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.py +91 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds_test.py +56 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.py +106 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds_test.py +59 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.py +96 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.py +357 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_test.py +84 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_api.py +420 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_metadata.py +58 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.py +824 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds_test.py +307 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.py +178 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds_test.py +133 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.py +181 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds_test.py +196 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.py +38 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.py +173 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds_test.py +111 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.py +61 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes_test.py +50 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.py +276 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds_test.py +260 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.py +266 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys_test.py +128 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.py +563 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.py +188 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool_test.py +88 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.py +208 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils_test.py +193 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.py +17 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.py +246 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker_test.py +271 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.py +151 -0
- data/packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds_test.py +60 -0
- data/packages/gcutil-1.7.1/lib/httplib2/LICENSE +21 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.py +1630 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/cacerts.txt +714 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.py +110 -0
- data/packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.py +438 -0
- data/packages/gcutil-1.7.1/lib/iso8601/LICENSE +20 -0
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.py +1 -0
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.py +102 -0
- data/packages/gcutil-1.7.1/lib/iso8601/iso8601/test_iso8601.py +111 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/AUTHORS +2 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/LICENSE +28 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags.py +2862 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags2man.py +544 -0
- data/packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.py +187 -0
- metadata +118 -5
- metadata.gz.sig +0 -0
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
# Copyright (c) 2010, Google Inc.
|
|
4
|
+
# All rights reserved.
|
|
5
|
+
#
|
|
6
|
+
# Redistribution and use in source and binary forms, with or without
|
|
7
|
+
# modification, are permitted provided that the following conditions are
|
|
8
|
+
# met:
|
|
9
|
+
#
|
|
10
|
+
# * Redistributions of source code must retain the above copyright
|
|
11
|
+
# notice, this list of conditions and the following disclaimer.
|
|
12
|
+
# * Redistributions in binary form must reproduce the above
|
|
13
|
+
# copyright notice, this list of conditions and the following disclaimer
|
|
14
|
+
# in the documentation and/or other materials provided with the
|
|
15
|
+
# distribution.
|
|
16
|
+
# * Neither the name of Google Inc. nor the names of its
|
|
17
|
+
# contributors may be used to endorse or promote products derived from
|
|
18
|
+
# this software without specific prior written permission.
|
|
19
|
+
#
|
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
21
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
22
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
23
|
+
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
24
|
+
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
25
|
+
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
26
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
27
|
+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
28
|
+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
29
|
+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
30
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
31
|
+
|
|
32
|
+
"""Module to enforce different constraints on flags.
|
|
33
|
+
|
|
34
|
+
A validator represents an invariant, enforced over a one or more flags.
|
|
35
|
+
See 'FLAGS VALIDATORS' in gflags.py's docstring for a usage manual.
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
class Error(Exception):
|
|
42
|
+
"""Thrown If validator constraint is not satisfied."""
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class Validator(object):
|
|
46
|
+
"""Base class for flags validators.
|
|
47
|
+
|
|
48
|
+
Users should NOT overload these classes, and use gflags.Register...
|
|
49
|
+
methods instead.
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
# Used to assign each validator an unique insertion_index
|
|
53
|
+
validators_count = 0
|
|
54
|
+
|
|
55
|
+
def __init__(self, checker, message):
|
|
56
|
+
"""Constructor to create all validators.
|
|
57
|
+
|
|
58
|
+
Args:
|
|
59
|
+
checker: function to verify the constraint.
|
|
60
|
+
Input of this method varies, see SimpleValidator and
|
|
61
|
+
DictionaryValidator for a detailed description.
|
|
62
|
+
message: string, error message to be shown to the user
|
|
63
|
+
"""
|
|
64
|
+
self.checker = checker
|
|
65
|
+
self.message = message
|
|
66
|
+
Validator.validators_count += 1
|
|
67
|
+
# Used to assert validators in the order they were registered (CL/18694236)
|
|
68
|
+
self.insertion_index = Validator.validators_count
|
|
69
|
+
|
|
70
|
+
def Verify(self, flag_values):
|
|
71
|
+
"""Verify that constraint is satisfied.
|
|
72
|
+
|
|
73
|
+
flags library calls this method to verify Validator's constraint.
|
|
74
|
+
Args:
|
|
75
|
+
flag_values: gflags.FlagValues, containing all flags
|
|
76
|
+
Raises:
|
|
77
|
+
Error: if constraint is not satisfied.
|
|
78
|
+
"""
|
|
79
|
+
param = self._GetInputToCheckerFunction(flag_values)
|
|
80
|
+
if not self.checker(param):
|
|
81
|
+
raise Error(self.message)
|
|
82
|
+
|
|
83
|
+
def GetFlagsNames(self):
|
|
84
|
+
"""Return the names of the flags checked by this validator.
|
|
85
|
+
|
|
86
|
+
Returns:
|
|
87
|
+
[string], names of the flags
|
|
88
|
+
"""
|
|
89
|
+
raise NotImplementedError('This method should be overloaded')
|
|
90
|
+
|
|
91
|
+
def PrintFlagsWithValues(self, flag_values):
|
|
92
|
+
raise NotImplementedError('This method should be overloaded')
|
|
93
|
+
|
|
94
|
+
def _GetInputToCheckerFunction(self, flag_values):
|
|
95
|
+
"""Given flag values, construct the input to be given to checker.
|
|
96
|
+
|
|
97
|
+
Args:
|
|
98
|
+
flag_values: gflags.FlagValues, containing all flags.
|
|
99
|
+
Returns:
|
|
100
|
+
Return type depends on the specific validator.
|
|
101
|
+
"""
|
|
102
|
+
raise NotImplementedError('This method should be overloaded')
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class SimpleValidator(Validator):
|
|
106
|
+
"""Validator behind RegisterValidator() method.
|
|
107
|
+
|
|
108
|
+
Validates that a single flag passes its checker function. The checker function
|
|
109
|
+
takes the flag value and returns True (if value looks fine) or, if flag value
|
|
110
|
+
is not valid, either returns False or raises an Exception."""
|
|
111
|
+
def __init__(self, flag_name, checker, message):
|
|
112
|
+
"""Constructor.
|
|
113
|
+
|
|
114
|
+
Args:
|
|
115
|
+
flag_name: string, name of the flag.
|
|
116
|
+
checker: function to verify the validator.
|
|
117
|
+
input - value of the corresponding flag (string, boolean, etc).
|
|
118
|
+
output - Boolean. Must return True if validator constraint is satisfied.
|
|
119
|
+
If constraint is not satisfied, it should either return False or
|
|
120
|
+
raise Error.
|
|
121
|
+
message: string, error message to be shown to the user if validator's
|
|
122
|
+
condition is not satisfied
|
|
123
|
+
"""
|
|
124
|
+
super(SimpleValidator, self).__init__(checker, message)
|
|
125
|
+
self.flag_name = flag_name
|
|
126
|
+
|
|
127
|
+
def GetFlagsNames(self):
|
|
128
|
+
return [self.flag_name]
|
|
129
|
+
|
|
130
|
+
def PrintFlagsWithValues(self, flag_values):
|
|
131
|
+
return 'flag --%s=%s' % (self.flag_name, flag_values[self.flag_name].value)
|
|
132
|
+
|
|
133
|
+
def _GetInputToCheckerFunction(self, flag_values):
|
|
134
|
+
"""Given flag values, construct the input to be given to checker.
|
|
135
|
+
|
|
136
|
+
Args:
|
|
137
|
+
flag_values: gflags.FlagValues
|
|
138
|
+
Returns:
|
|
139
|
+
value of the corresponding flag.
|
|
140
|
+
"""
|
|
141
|
+
return flag_values[self.flag_name].value
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
class DictionaryValidator(Validator):
|
|
145
|
+
"""Validator behind RegisterDictionaryValidator method.
|
|
146
|
+
|
|
147
|
+
Validates that flag values pass their common checker function. The checker
|
|
148
|
+
function takes flag values and returns True (if values look fine) or,
|
|
149
|
+
if values are not valid, either returns False or raises an Exception.
|
|
150
|
+
"""
|
|
151
|
+
def __init__(self, flag_names, checker, message):
|
|
152
|
+
"""Constructor.
|
|
153
|
+
|
|
154
|
+
Args:
|
|
155
|
+
flag_names: [string], containing names of the flags used by checker.
|
|
156
|
+
checker: function to verify the validator.
|
|
157
|
+
input - dictionary, with keys() being flag_names, and value for each
|
|
158
|
+
key being the value of the corresponding flag (string, boolean, etc).
|
|
159
|
+
output - Boolean. Must return True if validator constraint is satisfied.
|
|
160
|
+
If constraint is not satisfied, it should either return False or
|
|
161
|
+
raise Error.
|
|
162
|
+
message: string, error message to be shown to the user if validator's
|
|
163
|
+
condition is not satisfied
|
|
164
|
+
"""
|
|
165
|
+
super(DictionaryValidator, self).__init__(checker, message)
|
|
166
|
+
self.flag_names = flag_names
|
|
167
|
+
|
|
168
|
+
def _GetInputToCheckerFunction(self, flag_values):
|
|
169
|
+
"""Given flag values, construct the input to be given to checker.
|
|
170
|
+
|
|
171
|
+
Args:
|
|
172
|
+
flag_values: gflags.FlagValues
|
|
173
|
+
Returns:
|
|
174
|
+
dictionary, with keys() being self.lag_names, and value for each key
|
|
175
|
+
being the value of the corresponding flag (string, boolean, etc).
|
|
176
|
+
"""
|
|
177
|
+
return dict([key, flag_values[key].value] for key in self.flag_names)
|
|
178
|
+
|
|
179
|
+
def PrintFlagsWithValues(self, flag_values):
|
|
180
|
+
prefix = 'flags '
|
|
181
|
+
flags_with_values = []
|
|
182
|
+
for key in self.flag_names:
|
|
183
|
+
flags_with_values.append('%s=%s' % (key, flag_values[key].value))
|
|
184
|
+
return prefix + ', '.join(flags_with_values)
|
|
185
|
+
|
|
186
|
+
def GetFlagsNames(self):
|
|
187
|
+
return self.flag_names
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gcloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.0.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Riccardo Carlesso
|
|
@@ -41,23 +41,136 @@ dependencies: []
|
|
|
41
41
|
|
|
42
42
|
description: "My Google Cloud gem ('gcloud') with various utilities. \n \n It deploys gcutil, gsutil, and more.\n "
|
|
43
43
|
email: palladiusbonton AT gmail DOT com
|
|
44
|
-
executables:
|
|
45
|
-
|
|
44
|
+
executables:
|
|
45
|
+
- gcutil
|
|
46
46
|
extensions: []
|
|
47
47
|
|
|
48
48
|
extra_rdoc_files:
|
|
49
49
|
- CHANGELOG
|
|
50
|
+
- LICENSE
|
|
50
51
|
- README.md
|
|
52
|
+
- bin/gcutil
|
|
51
53
|
- tasks/rubygem.rake
|
|
52
54
|
files:
|
|
53
55
|
- CHANGELOG
|
|
56
|
+
- LICENSE
|
|
54
57
|
- Makefile
|
|
55
58
|
- Manifest
|
|
56
59
|
- README.md
|
|
57
60
|
- Rakefile
|
|
61
|
+
- bin/gcutil
|
|
58
62
|
- init.rb
|
|
59
63
|
- packages/README
|
|
60
64
|
- packages/gcutil-1.7.1.tar.gz
|
|
65
|
+
- packages/gcutil-1.7.1/CHANGELOG
|
|
66
|
+
- packages/gcutil-1.7.1/LICENSE
|
|
67
|
+
- packages/gcutil-1.7.1/VERSION
|
|
68
|
+
- packages/gcutil-1.7.1/gcutil
|
|
69
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/LICENSE
|
|
70
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/__init__.py
|
|
71
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/discovery.py
|
|
72
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/errors.py
|
|
73
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/ext/__init__.py
|
|
74
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/http.py
|
|
75
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/mimeparse.py
|
|
76
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/model.py
|
|
77
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/apiclient/schema.py
|
|
78
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/__init__.py
|
|
79
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/anyjson.py
|
|
80
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/appengine.py
|
|
81
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/client.py
|
|
82
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/clientsecrets.py
|
|
83
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/crypt.py
|
|
84
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/django_orm.py
|
|
85
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/file.py
|
|
86
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/locked_file.py
|
|
87
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/multistore_file.py
|
|
88
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/oauth2client/tools.py
|
|
89
|
+
- packages/gcutil-1.7.1/lib/google_api_python_client/uritemplate/__init__.py
|
|
90
|
+
- packages/gcutil-1.7.1/lib/google_apputils/LICENSE
|
|
91
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/__init__.py
|
|
92
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/__init__.py
|
|
93
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/app.py
|
|
94
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/appcommands.py
|
|
95
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/basetest.py
|
|
96
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/datelib.py
|
|
97
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/debug.py
|
|
98
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/file_util.py
|
|
99
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/resources.py
|
|
100
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/run_script_module.py
|
|
101
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/setup_command.py
|
|
102
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/shellutil.py
|
|
103
|
+
- packages/gcutil-1.7.1/lib/google_apputils/google/apputils/stopwatch.py
|
|
104
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/__init__.py
|
|
105
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper.py
|
|
106
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auth_helper_test.py
|
|
107
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth.py
|
|
108
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/auto_auth_test.py
|
|
109
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds.py
|
|
110
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/basic_cmds_test.py
|
|
111
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base.py
|
|
112
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/command_base_test.py
|
|
113
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta13.json
|
|
114
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/compute/v1beta14.json
|
|
115
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds.py
|
|
116
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/disk_cmds_test.py
|
|
117
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds.py
|
|
118
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/firewall_cmds_test.py
|
|
119
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/flags_cache.py
|
|
120
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil
|
|
121
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/gcutil_logging.py
|
|
122
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds.py
|
|
123
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/image_cmds_test.py
|
|
124
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds.py
|
|
125
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/instance_cmds_test.py
|
|
126
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds.py
|
|
127
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/kernel_cmds_test.py
|
|
128
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds.py
|
|
129
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/machine_type_cmds_test.py
|
|
130
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata.py
|
|
131
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_lib.py
|
|
132
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/metadata_test.py
|
|
133
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_api.py
|
|
134
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/mock_metadata.py
|
|
135
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds.py
|
|
136
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/move_cmds_test.py
|
|
137
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds.py
|
|
138
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/network_cmds_test.py
|
|
139
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds.py
|
|
140
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/operation_cmds_test.py
|
|
141
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/path_initializer.py
|
|
142
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds.py
|
|
143
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/project_cmds_test.py
|
|
144
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes.py
|
|
145
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/scopes_test.py
|
|
146
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds.py
|
|
147
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/snapshot_cmds_test.py
|
|
148
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys.py
|
|
149
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/ssh_keys_test.py
|
|
150
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/table_formatter.py
|
|
151
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool.py
|
|
152
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/thread_pool_test.py
|
|
153
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils.py
|
|
154
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/utils_test.py
|
|
155
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version.py
|
|
156
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker.py
|
|
157
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/version_checker_test.py
|
|
158
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds.py
|
|
159
|
+
- packages/gcutil-1.7.1/lib/google_compute_engine/gcutil/zone_cmds_test.py
|
|
160
|
+
- packages/gcutil-1.7.1/lib/httplib2/LICENSE
|
|
161
|
+
- packages/gcutil-1.7.1/lib/httplib2/httplib2/__init__.py
|
|
162
|
+
- packages/gcutil-1.7.1/lib/httplib2/httplib2/cacerts.txt
|
|
163
|
+
- packages/gcutil-1.7.1/lib/httplib2/httplib2/iri2uri.py
|
|
164
|
+
- packages/gcutil-1.7.1/lib/httplib2/httplib2/socks.py
|
|
165
|
+
- packages/gcutil-1.7.1/lib/iso8601/LICENSE
|
|
166
|
+
- packages/gcutil-1.7.1/lib/iso8601/iso8601/__init__.py
|
|
167
|
+
- packages/gcutil-1.7.1/lib/iso8601/iso8601/iso8601.py
|
|
168
|
+
- packages/gcutil-1.7.1/lib/iso8601/iso8601/test_iso8601.py
|
|
169
|
+
- packages/gcutil-1.7.1/lib/python_gflags/AUTHORS
|
|
170
|
+
- packages/gcutil-1.7.1/lib/python_gflags/LICENSE
|
|
171
|
+
- packages/gcutil-1.7.1/lib/python_gflags/gflags.py
|
|
172
|
+
- packages/gcutil-1.7.1/lib/python_gflags/gflags2man.py
|
|
173
|
+
- packages/gcutil-1.7.1/lib/python_gflags/gflags_validators.py
|
|
61
174
|
- packages/gsutil.tar.gz
|
|
62
175
|
- tasks/rubygem.rake
|
|
63
176
|
- gcloud.gemspec
|
metadata.gz.sig
CHANGED
|
Binary file
|