google-cloud-asset 0.3.0 → 0.3.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 +4 -4
- data/README.md +4 -4
- data/lib/google/cloud/asset.rb +3 -3
- data/lib/google/cloud/asset/v1.rb +3 -3
- data/lib/google/cloud/asset/v1/doc/google/iam/v1/policy.rb +2 -2
- data/lib/google/cloud/asset/v1beta1.rb +3 -3
- data/lib/google/cloud/asset/v1beta1/doc/google/iam/v1/policy.rb +2 -2
- data/lib/google/cloud/asset/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1dc2f80652f91b1e2089659c6c098439710a09167438c805c26533c3b1fc5d17
|
|
4
|
+
data.tar.gz: 34d12d2f713bf575dd4af6d6eeaed6a8be65db8a638b790cd02a725aa7b31845
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7821f92b35f5920e79a6b3d74b073000bf9420da0c747b1aad9d381bb57cc516cb5d9a921b9fd4b0aa7faa263ea6d31fc999709ef5f746e12d037659ba823243
|
|
7
|
+
data.tar.gz: 9c5e9217dbc80214d6598989891fd41457806db41710f95844e36cfd16d4f73c081aff68429a97ed91f6bdb4c9de0d2205094daf9e70b94326df9d59ab983008
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ steps:
|
|
|
12
12
|
1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
13
13
|
2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
14
14
|
3. [Enable the Cloud Asset API.](https://console.cloud.google.com/apis/library/asset.googleapis.com)
|
|
15
|
-
4. [Setup Authentication.](https://googleapis.
|
|
15
|
+
4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-asset/latest/file.AUTHENTICATION.html)
|
|
16
16
|
|
|
17
17
|
### Installation
|
|
18
18
|
```
|
|
@@ -27,14 +27,14 @@ $ gem install google-cloud-asset
|
|
|
27
27
|
- View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
28
28
|
to see the full list of Cloud APIs that we cover.
|
|
29
29
|
|
|
30
|
-
[Client Library Documentation]: https://googleapis.
|
|
31
|
-
[Product Documentation]: https://cloud.google.com/
|
|
30
|
+
[Client Library Documentation]: https://googleapis.dev/ruby/google-cloud-asset/latest
|
|
31
|
+
[Product Documentation]: https://cloud.google.com/resource-manager
|
|
32
32
|
|
|
33
33
|
## Enabling Logging
|
|
34
34
|
|
|
35
35
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
36
36
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
37
|
-
or a [`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
37
|
+
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
38
38
|
that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
39
39
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
40
40
|
|
data/lib/google/cloud/asset.rb
CHANGED
|
@@ -34,7 +34,7 @@ module Google
|
|
|
34
34
|
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
35
35
|
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
36
36
|
# 3. [Enable the Cloud Asset API.](https://console.cloud.google.com/apis/library/asset.googleapis.com)
|
|
37
|
-
# 4. [Setup Authentication.](https://googleapis.
|
|
37
|
+
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-asset/latest/file.AUTHENTICATION.html)
|
|
38
38
|
#
|
|
39
39
|
# ### Installation
|
|
40
40
|
# ```
|
|
@@ -47,13 +47,13 @@ module Google
|
|
|
47
47
|
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
48
48
|
# to see the full list of Cloud APIs that we cover.
|
|
49
49
|
#
|
|
50
|
-
# [Product Documentation]: https://cloud.google.com/
|
|
50
|
+
# [Product Documentation]: https://cloud.google.com/resource-manager
|
|
51
51
|
#
|
|
52
52
|
# ## Enabling Logging
|
|
53
53
|
#
|
|
54
54
|
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
55
55
|
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
56
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
56
|
+
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
57
57
|
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
58
58
|
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
59
59
|
#
|
|
@@ -35,7 +35,7 @@ module Google
|
|
|
35
35
|
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
36
36
|
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
37
37
|
# 3. [Enable the Cloud Asset API.](https://console.cloud.google.com/apis/library/asset.googleapis.com)
|
|
38
|
-
# 4. [Setup Authentication.](https://googleapis.
|
|
38
|
+
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-asset/latest/file.AUTHENTICATION.html)
|
|
39
39
|
#
|
|
40
40
|
# ### Installation
|
|
41
41
|
# ```
|
|
@@ -48,13 +48,13 @@ module Google
|
|
|
48
48
|
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
49
49
|
# to see the full list of Cloud APIs that we cover.
|
|
50
50
|
#
|
|
51
|
-
# [Product Documentation]: https://cloud.google.com/
|
|
51
|
+
# [Product Documentation]: https://cloud.google.com/resource-manager
|
|
52
52
|
#
|
|
53
53
|
# ## Enabling Logging
|
|
54
54
|
#
|
|
55
55
|
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
56
56
|
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
57
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
57
|
+
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
58
58
|
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
59
59
|
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
60
60
|
#
|
|
@@ -79,7 +79,7 @@ module Google
|
|
|
79
79
|
# ensure that their change will be applied to the same version of the policy.
|
|
80
80
|
#
|
|
81
81
|
# If no `etag` is provided in the call to `setIamPolicy`, then the existing
|
|
82
|
-
# policy is overwritten
|
|
82
|
+
# policy is overwritten.
|
|
83
83
|
class Policy; end
|
|
84
84
|
|
|
85
85
|
# Associates `members` with a `role`.
|
|
@@ -99,7 +99,7 @@ module Google
|
|
|
99
99
|
# who is authenticated with a Google account or a service account.
|
|
100
100
|
#
|
|
101
101
|
# * `user:{emailid}`: An email address that represents a specific Google
|
|
102
|
-
# account. For example, `alice@
|
|
102
|
+
# account. For example, `alice@example.com` .
|
|
103
103
|
#
|
|
104
104
|
#
|
|
105
105
|
# * `serviceAccount:{emailid}`: An email address that represents a service
|
|
@@ -35,7 +35,7 @@ module Google
|
|
|
35
35
|
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
36
36
|
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
37
37
|
# 3. [Enable the Cloud Asset API.](https://console.cloud.google.com/apis/library/asset.googleapis.com)
|
|
38
|
-
# 4. [Setup Authentication.](https://googleapis.
|
|
38
|
+
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-asset/latest/file.AUTHENTICATION.html)
|
|
39
39
|
#
|
|
40
40
|
# ### Installation
|
|
41
41
|
# ```
|
|
@@ -48,13 +48,13 @@ module Google
|
|
|
48
48
|
# - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
|
|
49
49
|
# to see the full list of Cloud APIs that we cover.
|
|
50
50
|
#
|
|
51
|
-
# [Product Documentation]: https://cloud.google.com/
|
|
51
|
+
# [Product Documentation]: https://cloud.google.com/resource-manager
|
|
52
52
|
#
|
|
53
53
|
# ## Enabling Logging
|
|
54
54
|
#
|
|
55
55
|
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
56
56
|
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
57
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
57
|
+
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
58
58
|
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
59
59
|
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
60
60
|
#
|
|
@@ -79,7 +79,7 @@ module Google
|
|
|
79
79
|
# ensure that their change will be applied to the same version of the policy.
|
|
80
80
|
#
|
|
81
81
|
# If no `etag` is provided in the call to `setIamPolicy`, then the existing
|
|
82
|
-
# policy is overwritten
|
|
82
|
+
# policy is overwritten.
|
|
83
83
|
class Policy; end
|
|
84
84
|
|
|
85
85
|
# Associates `members` with a `role`.
|
|
@@ -99,7 +99,7 @@ module Google
|
|
|
99
99
|
# who is authenticated with a Google account or a service account.
|
|
100
100
|
#
|
|
101
101
|
# * `user:{emailid}`: An email address that represents a specific Google
|
|
102
|
-
# account. For example, `alice@
|
|
102
|
+
# account. For example, `alice@example.com` .
|
|
103
103
|
#
|
|
104
104
|
#
|
|
105
105
|
# * `serviceAccount:{emailid}`: An email address that represents a service
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-asset
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|
|
@@ -173,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
173
173
|
- !ruby/object:Gem::Version
|
|
174
174
|
version: '0'
|
|
175
175
|
requirements: []
|
|
176
|
-
rubygems_version: 3.0.
|
|
176
|
+
rubygems_version: 3.0.4
|
|
177
177
|
signing_key:
|
|
178
178
|
specification_version: 4
|
|
179
179
|
summary: API Client library for Cloud Asset API
|