google-cloud-resource_manager 0.32.0 → 0.33.0
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/AUTHENTICATION.md +3 -1
- data/CHANGELOG.md +8 -0
- data/CONTRIBUTING.md +1 -1
- data/OVERVIEW.md +5 -5
- data/lib/google/cloud/resource_manager/version.rb +1 -1
- metadata +23 -29
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d2b920f2f383a687a4c446081acc2ba69babd09ed1ea3c1c5e6fe67f5af9015
|
|
4
|
+
data.tar.gz: bbeb05a7808eb428fa1565f5ed7b83491e9457723f280f2274893cbe425730b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbf01b3d884e9ff9a0542ee9a952bd8e4c76fce8a4f36abb588e6bafb207345872481a52979194affaa856dc7a3c001a36eb76e8223fbabd85179dc0597ff4fb
|
|
7
|
+
data.tar.gz: 15f506199e41a85a6fee9ed125173aa0564b9e10feec7476d9bc4e640bcc37545e902acd36b6aa46a559d010bfa7b1fdec495f1df165eb77fa72a8e3d4c50783
|
data/AUTHENTICATION.md
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
In general, the google-cloud-resource_manager library uses [Service
|
|
4
4
|
Account](https://cloud.google.com/iam/docs/creating-managing-service-accounts)
|
|
5
|
-
credentials to connect to Google Cloud services. When running on
|
|
5
|
+
credentials to connect to Google Cloud services. When running on Google Cloud
|
|
6
|
+
Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
|
|
7
|
+
(GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run,
|
|
6
8
|
the credentials will be discovered automatically. When running on other
|
|
7
9
|
environments, the Service Account credentials can be specified by providing the
|
|
8
10
|
path to the [JSON
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
|
@@ -24,7 +24,7 @@ be able to accept your pull requests.
|
|
|
24
24
|
In order to use the google-cloud-resource_manager console and run the project's
|
|
25
25
|
tests, there is a small amount of setup:
|
|
26
26
|
|
|
27
|
-
1. Install Ruby. google-cloud-resource_manager requires Ruby 2.
|
|
27
|
+
1. Install Ruby. google-cloud-resource_manager requires Ruby 2.4+. You may
|
|
28
28
|
choose to manage your Ruby and gem installations with [RVM](https://rvm.io/),
|
|
29
29
|
[rbenv](https://github.com/rbenv/rbenv), or
|
|
30
30
|
[chruby](https://github.com/postmodern/chruby).
|
data/OVERVIEW.md
CHANGED
|
@@ -14,11 +14,11 @@ do the following:
|
|
|
14
14
|
|
|
15
15
|
The goal of google-cloud is to provide an API that is comfortable to Rubyists.
|
|
16
16
|
Your authentication credentials are detected automatically in Google Cloud
|
|
17
|
-
Platform
|
|
18
|
-
Google
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Guide}.
|
|
17
|
+
Platform (GCP), including Google Compute Engine (GCE), Google Kubernetes Engine
|
|
18
|
+
(GKE), Google App Engine (GAE), Google Cloud Functions (GCF) and Cloud Run. In
|
|
19
|
+
other environments you can configure authentication easily, either directly in
|
|
20
|
+
your code or via environment variables. Read more about the options for
|
|
21
|
+
connecting in the {file:AUTHENTICATION.md Authentication Guide}.
|
|
22
22
|
|
|
23
23
|
## Listing Projects
|
|
24
24
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-resource_manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.33.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-10-
|
|
12
|
+
date: 2019-10-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-core
|
|
@@ -31,34 +31,42 @@ dependencies:
|
|
|
31
31
|
requirements:
|
|
32
32
|
- - "~>"
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: '0.
|
|
34
|
+
version: '0.33'
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - "~>"
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: '0.
|
|
41
|
+
version: '0.33'
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: googleauth
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
|
-
- - "
|
|
47
|
-
- !ruby/object:Gem::Version
|
|
48
|
-
version: 0.6.2
|
|
49
|
-
- - "<"
|
|
46
|
+
- - "~>"
|
|
50
47
|
- !ruby/object:Gem::Version
|
|
51
|
-
version: 0.
|
|
48
|
+
version: '0.9'
|
|
52
49
|
type: :runtime
|
|
53
50
|
prerelease: false
|
|
54
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
55
52
|
requirements:
|
|
56
|
-
- - "
|
|
53
|
+
- - "~>"
|
|
57
54
|
- !ruby/object:Gem::Version
|
|
58
|
-
version: 0.
|
|
59
|
-
|
|
55
|
+
version: '0.9'
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: google-style
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - "~>"
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 1.24.0
|
|
63
|
+
type: :development
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - "~>"
|
|
60
68
|
- !ruby/object:Gem::Version
|
|
61
|
-
version:
|
|
69
|
+
version: 1.24.0
|
|
62
70
|
- !ruby/object:Gem::Dependency
|
|
63
71
|
name: minitest
|
|
64
72
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -143,20 +151,6 @@ dependencies:
|
|
|
143
151
|
- - "~>"
|
|
144
152
|
- !ruby/object:Gem::Version
|
|
145
153
|
version: '3.0'
|
|
146
|
-
- !ruby/object:Gem::Dependency
|
|
147
|
-
name: rubocop
|
|
148
|
-
requirement: !ruby/object:Gem::Requirement
|
|
149
|
-
requirements:
|
|
150
|
-
- - "~>"
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: 0.64.0
|
|
153
|
-
type: :development
|
|
154
|
-
prerelease: false
|
|
155
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
156
|
-
requirements:
|
|
157
|
-
- - "~>"
|
|
158
|
-
- !ruby/object:Gem::Version
|
|
159
|
-
version: 0.64.0
|
|
160
154
|
- !ruby/object:Gem::Dependency
|
|
161
155
|
name: simplecov
|
|
162
156
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -240,14 +234,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
240
234
|
requirements:
|
|
241
235
|
- - ">="
|
|
242
236
|
- !ruby/object:Gem::Version
|
|
243
|
-
version: 2.
|
|
237
|
+
version: '2.4'
|
|
244
238
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
245
239
|
requirements:
|
|
246
240
|
- - ">="
|
|
247
241
|
- !ruby/object:Gem::Version
|
|
248
242
|
version: '0'
|
|
249
243
|
requirements: []
|
|
250
|
-
rubygems_version: 3.0.
|
|
244
|
+
rubygems_version: 3.0.6
|
|
251
245
|
signing_key:
|
|
252
246
|
specification_version: 4
|
|
253
247
|
summary: API Client library for Google Cloud Resource Manager
|