google-cloud-asset-v1 0.13.0 → 0.13.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b84592591b3ac9622dfb899c9c7afbd201810a2443909fb638a33bfb3111c773
|
4
|
+
data.tar.gz: 2607739a8324d78c2ae8dd23248d59c7ae7b8113301e728877a4247c1f827ca8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa3b83337df9b54623a37e5902c73e2a6558f4d58f40c59247df7c3194313f343d846c3bd8f7060bb2c97623e08f14be096204148fe0782c8aff6074adfb92fa
|
7
|
+
data.tar.gz: 4eee1f606949f044829b1bd742195dab427650abc2743995fd12f2d25e2775e87e9709f1779eb766aedc4fa76f74af08a017873c75009c0918bcd9286e443d04
|
data/AUTHENTICATION.md
CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-asset-v1
|
|
66
66
|
checks for credentials are configured on the service Credentials class (such as
|
67
67
|
{::Google::Cloud::Asset::V1::AssetService::Credentials}):
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
* `ASSET_CREDENTIALS` - Path to JSON file, or JSON contents
|
70
|
+
* `ASSET_KEYFILE` - Path to JSON file, or JSON contents
|
71
|
+
* `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
|
72
|
+
* `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
|
73
|
+
* `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
|
74
74
|
|
75
75
|
```ruby
|
76
76
|
require "google/cloud/asset/v1"
|
@@ -82,8 +82,8 @@ client = ::Google::Cloud::Asset::V1::AssetService::Client.new
|
|
82
82
|
|
83
83
|
### Configuration
|
84
84
|
|
85
|
-
The **Credentials JSON** can be configured instead of
|
86
|
-
environment
|
85
|
+
The path to the **Credentials JSON** file can be configured instead of storing
|
86
|
+
it in an environment variable. Either on an individual client initialization:
|
87
87
|
|
88
88
|
```ruby
|
89
89
|
require "google/cloud/asset/v1"
|
@@ -93,7 +93,7 @@ client = ::Google::Cloud::Asset::V1::AssetService::Client.new do |config|
|
|
93
93
|
end
|
94
94
|
```
|
95
95
|
|
96
|
-
Or
|
96
|
+
Or globally for all clients:
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
require "google/cloud/asset/v1"
|
data/README.md
CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
|
|
33
33
|
require "google/cloud/asset/v1"
|
34
34
|
|
35
35
|
client = ::Google::Cloud::Asset::V1::AssetService::Client.new
|
36
|
-
request =
|
36
|
+
request = ::Google::Cloud::Asset::V1::ExportAssetsRequest.new # (request fields as keyword arguments...)
|
37
37
|
response = client.export_assets request
|
38
38
|
```
|
39
39
|
|
@@ -69,70 +69,46 @@ module Google
|
|
69
69
|
|
70
70
|
default_config.rpcs.list_assets.timeout = 60.0
|
71
71
|
default_config.rpcs.list_assets.retry_policy = {
|
72
|
-
initial_delay: 0.1,
|
73
|
-
max_delay: 60.0,
|
74
|
-
multiplier: 1.3,
|
75
|
-
retry_codes: [4, 14]
|
72
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
76
73
|
}
|
77
74
|
|
78
75
|
default_config.rpcs.batch_get_assets_history.timeout = 60.0
|
79
76
|
default_config.rpcs.batch_get_assets_history.retry_policy = {
|
80
|
-
initial_delay: 0.1,
|
81
|
-
max_delay: 60.0,
|
82
|
-
multiplier: 1.3,
|
83
|
-
retry_codes: [4, 14]
|
77
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
84
78
|
}
|
85
79
|
|
86
80
|
default_config.rpcs.create_feed.timeout = 60.0
|
87
81
|
|
88
82
|
default_config.rpcs.get_feed.timeout = 60.0
|
89
83
|
default_config.rpcs.get_feed.retry_policy = {
|
90
|
-
initial_delay: 0.1,
|
91
|
-
max_delay: 60.0,
|
92
|
-
multiplier: 1.3,
|
93
|
-
retry_codes: [4, 14]
|
84
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
94
85
|
}
|
95
86
|
|
96
87
|
default_config.rpcs.list_feeds.timeout = 60.0
|
97
88
|
default_config.rpcs.list_feeds.retry_policy = {
|
98
|
-
initial_delay: 0.1,
|
99
|
-
max_delay: 60.0,
|
100
|
-
multiplier: 1.3,
|
101
|
-
retry_codes: [4, 14]
|
89
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
102
90
|
}
|
103
91
|
|
104
92
|
default_config.rpcs.update_feed.timeout = 60.0
|
105
93
|
|
106
94
|
default_config.rpcs.delete_feed.timeout = 60.0
|
107
95
|
default_config.rpcs.delete_feed.retry_policy = {
|
108
|
-
initial_delay: 0.1,
|
109
|
-
max_delay: 60.0,
|
110
|
-
multiplier: 1.3,
|
111
|
-
retry_codes: [4, 14]
|
96
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
112
97
|
}
|
113
98
|
|
114
99
|
default_config.rpcs.search_all_resources.timeout = 30.0
|
115
100
|
default_config.rpcs.search_all_resources.retry_policy = {
|
116
|
-
initial_delay: 0.1,
|
117
|
-
max_delay: 60.0,
|
118
|
-
multiplier: 1.3,
|
119
|
-
retry_codes: [14]
|
101
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
|
120
102
|
}
|
121
103
|
|
122
104
|
default_config.rpcs.search_all_iam_policies.timeout = 30.0
|
123
105
|
default_config.rpcs.search_all_iam_policies.retry_policy = {
|
124
|
-
initial_delay: 0.1,
|
125
|
-
max_delay: 60.0,
|
126
|
-
multiplier: 1.3,
|
127
|
-
retry_codes: [14]
|
106
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
|
128
107
|
}
|
129
108
|
|
130
109
|
default_config.rpcs.analyze_iam_policy.timeout = 300.0
|
131
110
|
default_config.rpcs.analyze_iam_policy.retry_policy = {
|
132
|
-
initial_delay: 0.1,
|
133
|
-
max_delay: 60.0,
|
134
|
-
multiplier: 1.3,
|
135
|
-
retry_codes: [14]
|
111
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
|
136
112
|
}
|
137
113
|
|
138
114
|
default_config.rpcs.analyze_iam_policy_longrunning.timeout = 60.0
|
@@ -205,7 +181,7 @@ module Google
|
|
205
181
|
!@config.endpoint.split(".").first.include?("-")
|
206
182
|
credentials ||= Credentials.default scope: @config.scope,
|
207
183
|
enable_self_signed_jwt: enable_self_signed_jwt
|
208
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
184
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
209
185
|
credentials = Credentials.new credentials, scope: @config.scope
|
210
186
|
end
|
211
187
|
@quota_project_id = @config.quota_project
|
@@ -82,7 +82,7 @@ module Google
|
|
82
82
|
# Create credentials
|
83
83
|
credentials = @config.credentials
|
84
84
|
credentials ||= Credentials.default scope: @config.scope
|
85
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
85
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
86
86
|
credentials = Credentials.new credentials, scope: @config.scope
|
87
87
|
end
|
88
88
|
@quota_project_id = @config.quota_project
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-asset-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.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: 2021-
|
11
|
+
date: 2021-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|