google-cloud-asset-v1 0.24.0 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/asset/v1/asset_service/client.rb +22 -7
- data/lib/google/cloud/asset/v1/asset_service/operations.rb +2 -2
- data/lib/google/cloud/asset/v1/asset_service/rest/client.rb +22 -7
- data/lib/google/cloud/asset/v1/asset_service/rest/operations.rb +2 -2
- data/lib/google/cloud/asset/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +57 -3
- data/proto_docs/google/cloud/asset/v1/asset_service.rb +15 -15
- data/proto_docs/google/cloud/asset/v1/assets.rb +1 -1
- data/proto_docs/google/iam/v1/policy.rb +8 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 046a9b4b26c2ea4f92d1103c79915c38cf197b52285a2628cd0bee5bf4a26686
|
4
|
+
data.tar.gz: 37d1ad62617d80d81b5e969645def56023bc6d7f3eed6904bcc2d30665264cc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be273b44d52abde9c72702554f2737abf272aad6081d4a26a32e6ebebd0ee836eb427f3baaa387be48a610d29f8b2a31e2cc6f64fda3c4e43cb40bff3a42d592
|
7
|
+
data.tar.gz: 62868ef7d558371ec83fd86186d2db743482b561d8d1b18557f0c66ed3b63b82c281376351f7bac9213215b3dacf7d07c1402d5b89676b9db0bcab732dbbef49
|
data/README.md
CHANGED
@@ -47,7 +47,7 @@ for general usage information.
|
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
49
|
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
50
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
53
53
|
|
@@ -141,6 +141,21 @@ module Google
|
|
141
141
|
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
|
142
142
|
}
|
143
143
|
|
144
|
+
default_config.rpcs.analyze_org_policies.timeout = 60.0
|
145
|
+
default_config.rpcs.analyze_org_policies.retry_policy = {
|
146
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
147
|
+
}
|
148
|
+
|
149
|
+
default_config.rpcs.analyze_org_policy_governed_containers.timeout = 60.0
|
150
|
+
default_config.rpcs.analyze_org_policy_governed_containers.retry_policy = {
|
151
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
152
|
+
}
|
153
|
+
|
154
|
+
default_config.rpcs.analyze_org_policy_governed_assets.timeout = 60.0
|
155
|
+
default_config.rpcs.analyze_org_policy_governed_assets.retry_policy = {
|
156
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
157
|
+
}
|
158
|
+
|
144
159
|
default_config
|
145
160
|
end
|
146
161
|
yield @configure if block_given?
|
@@ -684,7 +699,7 @@ module Google
|
|
684
699
|
# Required. The name of the project/folder/organization where this feed
|
685
700
|
# should be created in. It can only be an organization number (such as
|
686
701
|
# "organizations/123"), a folder number (such as "folders/123"), a project ID
|
687
|
-
# (such as "projects/my-project-id")
|
702
|
+
# (such as "projects/my-project-id"), or a project number (such as
|
688
703
|
# "projects/12345").
|
689
704
|
# @param feed_id [::String]
|
690
705
|
# Required. This is the client-assigned asset feed identifier and it needs to
|
@@ -2053,8 +2068,8 @@ module Google
|
|
2053
2068
|
# Required. The name of the project/folder/organization where this
|
2054
2069
|
# saved_query should be created in. It can only be an organization number
|
2055
2070
|
# (such as "organizations/123"), a folder number (such as "folders/123"), a
|
2056
|
-
# project ID (such as "projects/my-project-id")
|
2057
|
-
#
|
2071
|
+
# project ID (such as "projects/my-project-id"), or a project number (such as
|
2072
|
+
# "projects/12345").
|
2058
2073
|
# @param saved_query [::Google::Cloud::Asset::V1::SavedQuery, ::Hash]
|
2059
2074
|
# Required. The saved_query details. The `name` field must be empty as it
|
2060
2075
|
# will be generated based on the parent and saved_query_id.
|
@@ -2255,8 +2270,8 @@ module Google
|
|
2255
2270
|
# @param page_size [::Integer]
|
2256
2271
|
# Optional. The maximum number of saved queries to return per page. The
|
2257
2272
|
# service may return fewer than this value. If unspecified, at most 50 will
|
2258
|
-
# be returned.
|
2259
|
-
#
|
2273
|
+
# be returned. The maximum value is 1000; values above 1000 will be coerced
|
2274
|
+
# to 1000.
|
2260
2275
|
# @param page_token [::String]
|
2261
2276
|
# Optional. A page token, received from a previous `ListSavedQueries` call.
|
2262
2277
|
# Provide this to retrieve the subsequent page.
|
@@ -3018,9 +3033,9 @@ module Google
|
|
3018
3033
|
# * (`String`) The path to a service account key file in JSON format
|
3019
3034
|
# * (`Hash`) A service account key as a Hash
|
3020
3035
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
3021
|
-
# (see the [googleauth docs](https://
|
3036
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
3022
3037
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
3023
|
-
# (see the [signet docs](https://
|
3038
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
3024
3039
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
3025
3040
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
3026
3041
|
# * (`nil`) indicating no credentials
|
@@ -620,9 +620,9 @@ module Google
|
|
620
620
|
# * (`String`) The path to a service account key file in JSON format
|
621
621
|
# * (`Hash`) A service account key as a Hash
|
622
622
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
623
|
-
# (see the [googleauth docs](https://
|
623
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
624
624
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
625
|
-
# (see the [signet docs](https://
|
625
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
626
626
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
627
627
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
628
628
|
# * (`nil`) indicating no credentials
|
@@ -143,6 +143,21 @@ module Google
|
|
143
143
|
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
|
144
144
|
}
|
145
145
|
|
146
|
+
default_config.rpcs.analyze_org_policies.timeout = 60.0
|
147
|
+
default_config.rpcs.analyze_org_policies.retry_policy = {
|
148
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
149
|
+
}
|
150
|
+
|
151
|
+
default_config.rpcs.analyze_org_policy_governed_containers.timeout = 60.0
|
152
|
+
default_config.rpcs.analyze_org_policy_governed_containers.retry_policy = {
|
153
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
154
|
+
}
|
155
|
+
|
156
|
+
default_config.rpcs.analyze_org_policy_governed_assets.timeout = 60.0
|
157
|
+
default_config.rpcs.analyze_org_policy_governed_assets.retry_policy = {
|
158
|
+
initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
|
159
|
+
}
|
160
|
+
|
146
161
|
default_config
|
147
162
|
end
|
148
163
|
yield @configure if block_given?
|
@@ -595,7 +610,7 @@ module Google
|
|
595
610
|
# Required. The name of the project/folder/organization where this feed
|
596
611
|
# should be created in. It can only be an organization number (such as
|
597
612
|
# "organizations/123"), a folder number (such as "folders/123"), a project ID
|
598
|
-
# (such as "projects/my-project-id")
|
613
|
+
# (such as "projects/my-project-id"), or a project number (such as
|
599
614
|
# "projects/12345").
|
600
615
|
# @param feed_id [::String]
|
601
616
|
# Required. This is the client-assigned asset feed identifier and it needs to
|
@@ -1696,8 +1711,8 @@ module Google
|
|
1696
1711
|
# Required. The name of the project/folder/organization where this
|
1697
1712
|
# saved_query should be created in. It can only be an organization number
|
1698
1713
|
# (such as "organizations/123"), a folder number (such as "folders/123"), a
|
1699
|
-
# project ID (such as "projects/my-project-id")
|
1700
|
-
#
|
1714
|
+
# project ID (such as "projects/my-project-id"), or a project number (such as
|
1715
|
+
# "projects/12345").
|
1701
1716
|
# @param saved_query [::Google::Cloud::Asset::V1::SavedQuery, ::Hash]
|
1702
1717
|
# Required. The saved_query details. The `name` field must be empty as it
|
1703
1718
|
# will be generated based on the parent and saved_query_id.
|
@@ -1852,8 +1867,8 @@ module Google
|
|
1852
1867
|
# @param page_size [::Integer]
|
1853
1868
|
# Optional. The maximum number of saved queries to return per page. The
|
1854
1869
|
# service may return fewer than this value. If unspecified, at most 50 will
|
1855
|
-
# be returned.
|
1856
|
-
#
|
1870
|
+
# be returned. The maximum value is 1000; values above 1000 will be coerced
|
1871
|
+
# to 1000.
|
1857
1872
|
# @param page_token [::String]
|
1858
1873
|
# Optional. A page token, received from a previous `ListSavedQueries` call.
|
1859
1874
|
# Provide this to retrieve the subsequent page.
|
@@ -2438,9 +2453,9 @@ module Google
|
|
2438
2453
|
# * (`String`) The path to a service account key file in JSON format
|
2439
2454
|
# * (`Hash`) A service account key as a Hash
|
2440
2455
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
2441
|
-
# (see the [googleauth docs](https://
|
2456
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
2442
2457
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
2443
|
-
# (see the [signet docs](https://
|
2458
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
2444
2459
|
# * (`nil`) indicating no credentials
|
2445
2460
|
# @return [::Object]
|
2446
2461
|
# @!attribute [rw] scope
|
@@ -411,9 +411,9 @@ module Google
|
|
411
411
|
# * (`String`) The path to a service account key file in JSON format
|
412
412
|
# * (`Hash`) A service account key as a Hash
|
413
413
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
414
|
-
# (see the [googleauth docs](https://
|
414
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
415
415
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
416
|
-
# (see the [signet docs](https://
|
416
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
417
417
|
# * (`nil`) indicating no credentials
|
418
418
|
# @return [::Object]
|
419
419
|
# @!attribute [rw] scope
|
@@ -35,7 +35,9 @@ module Google
|
|
35
35
|
# Details about how and where to publish client libraries.
|
36
36
|
# @!attribute [rw] version
|
37
37
|
# @return [::String]
|
38
|
-
# Version of the API to apply these settings to.
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
39
|
+
# package for the API, ending in the version element.
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
39
41
|
# @!attribute [rw] launch_stage
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
41
43
|
# Launch stage of this version of the API.
|
@@ -111,6 +113,10 @@ module Google
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
113
115
|
# settings with the same version string are discarded.
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
117
|
+
# @return [::String]
|
118
|
+
# Optional link to proto reference documentation. Example:
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
114
120
|
class Publishing
|
115
121
|
include ::Google::Protobuf::MessageExts
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -203,9 +209,57 @@ module Google
|
|
203
209
|
# @!attribute [rw] common
|
204
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
205
211
|
# Some settings.
|
212
|
+
# @!attribute [rw] renamed_services
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
214
|
+
# Map from original service names to renamed versions.
|
215
|
+
# This is used when the default generated types
|
216
|
+
# would cause a naming conflict. (Neither name is
|
217
|
+
# fully-qualified.)
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
219
|
+
# @!attribute [rw] renamed_resources
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
221
|
+
# Map from full resource types to the effective short name
|
222
|
+
# for the resource. This is used when otherwise resource
|
223
|
+
# named from different services would cause naming collisions.
|
224
|
+
# Example entry:
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
226
|
+
# @!attribute [rw] ignored_resources
|
227
|
+
# @return [::Array<::String>]
|
228
|
+
# List of full resource types to ignore during generation.
|
229
|
+
# This is typically used for API-specific Location resources,
|
230
|
+
# which should be handled by the generator as if they were actually
|
231
|
+
# the common Location resources.
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
234
|
+
# @return [::Array<::String>]
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
238
|
+
# @return [::Array<::String>]
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
206
242
|
class DotnetSettings
|
207
243
|
include ::Google::Protobuf::MessageExts
|
208
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
|
246
|
+
# @!attribute [rw] key
|
247
|
+
# @return [::String]
|
248
|
+
# @!attribute [rw] value
|
249
|
+
# @return [::String]
|
250
|
+
class RenamedServicesEntry
|
251
|
+
include ::Google::Protobuf::MessageExts
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
253
|
+
end
|
254
|
+
|
255
|
+
# @!attribute [rw] key
|
256
|
+
# @return [::String]
|
257
|
+
# @!attribute [rw] value
|
258
|
+
# @return [::String]
|
259
|
+
class RenamedResourcesEntry
|
260
|
+
include ::Google::Protobuf::MessageExts
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
262
|
+
end
|
209
263
|
end
|
210
264
|
|
211
265
|
# Settings for Ruby client libraries.
|
@@ -240,8 +294,8 @@ module Google
|
|
240
294
|
# Example of a YAML configuration::
|
241
295
|
#
|
242
296
|
# publishing:
|
243
|
-
#
|
244
|
-
# - selector:
|
297
|
+
# method_settings:
|
298
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
245
299
|
# long_running:
|
246
300
|
# initial_poll_delay:
|
247
301
|
# seconds: 60 # 1 minute
|
@@ -270,7 +270,7 @@ module Google
|
|
270
270
|
# Required. The name of the project/folder/organization where this feed
|
271
271
|
# should be created in. It can only be an organization number (such as
|
272
272
|
# "organizations/123"), a folder number (such as "folders/123"), a project ID
|
273
|
-
# (such as "projects/my-project-id")
|
273
|
+
# (such as "projects/my-project-id"), or a project number (such as
|
274
274
|
# "projects/12345").
|
275
275
|
# @!attribute [rw] feed_id
|
276
276
|
# @return [::String]
|
@@ -1388,8 +1388,8 @@ module Google
|
|
1388
1388
|
# Required. The name of the project/folder/organization where this
|
1389
1389
|
# saved_query should be created in. It can only be an organization number
|
1390
1390
|
# (such as "organizations/123"), a folder number (such as "folders/123"), a
|
1391
|
-
# project ID (such as "projects/my-project-id")
|
1392
|
-
#
|
1391
|
+
# project ID (such as "projects/my-project-id"), or a project number (such as
|
1392
|
+
# "projects/12345").
|
1393
1393
|
# @!attribute [rw] saved_query
|
1394
1394
|
# @return [::Google::Cloud::Asset::V1::SavedQuery]
|
1395
1395
|
# Required. The saved_query details. The `name` field must be empty as it
|
@@ -1442,8 +1442,8 @@ module Google
|
|
1442
1442
|
# @return [::Integer]
|
1443
1443
|
# Optional. The maximum number of saved queries to return per page. The
|
1444
1444
|
# service may return fewer than this value. If unspecified, at most 50 will
|
1445
|
-
# be returned.
|
1446
|
-
#
|
1445
|
+
# be returned. The maximum value is 1000; values above 1000 will be coerced
|
1446
|
+
# to 1000.
|
1447
1447
|
# @!attribute [rw] page_token
|
1448
1448
|
# @return [::String]
|
1449
1449
|
# Optional. A page token, received from a previous `ListSavedQueries` call.
|
@@ -2356,19 +2356,19 @@ module Google
|
|
2356
2356
|
# {::Google::Cloud::Asset::V1::AnalyzeOrgPolicyGovernedAssetsResponse::GovernedResource#full_resource_name AnalyzeOrgPolicyGovernedAssetsResponse.GovernedResource.full_resource_name}.
|
2357
2357
|
# @!attribute [rw] project
|
2358
2358
|
# @return [::String]
|
2359
|
-
# The project that this resource belongs to, in the
|
2359
|
+
# The project that this resource belongs to, in the format of
|
2360
2360
|
# projects/\\{PROJECT_NUMBER}. This field is available when the resource
|
2361
2361
|
# belongs to a project.
|
2362
2362
|
# @!attribute [rw] folders
|
2363
2363
|
# @return [::Array<::String>]
|
2364
|
-
# The folder(s) that this resource belongs to, in the
|
2364
|
+
# The folder(s) that this resource belongs to, in the format of
|
2365
2365
|
# folders/\\{FOLDER_NUMBER}. This field is available when the resource
|
2366
|
-
# belongs(directly or cascadingly) to one or more folders.
|
2366
|
+
# belongs (directly or cascadingly) to one or more folders.
|
2367
2367
|
# @!attribute [rw] organization
|
2368
2368
|
# @return [::String]
|
2369
|
-
# The organization that this resource belongs to, in the
|
2369
|
+
# The organization that this resource belongs to, in the format of
|
2370
2370
|
# organizations/\\{ORGANIZATION_NUMBER}. This field is available when the
|
2371
|
-
# resource belongs(directly or cascadingly) to an organization.
|
2371
|
+
# resource belongs (directly or cascadingly) to an organization.
|
2372
2372
|
class GovernedResource
|
2373
2373
|
include ::Google::Protobuf::MessageExts
|
2374
2374
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -2389,19 +2389,19 @@ module Google
|
|
2389
2389
|
# The IAM policy directly set on the given resource.
|
2390
2390
|
# @!attribute [rw] project
|
2391
2391
|
# @return [::String]
|
2392
|
-
# The project that this IAM policy belongs to, in the
|
2392
|
+
# The project that this IAM policy belongs to, in the format of
|
2393
2393
|
# projects/\\{PROJECT_NUMBER}. This field is available when the IAM policy
|
2394
2394
|
# belongs to a project.
|
2395
2395
|
# @!attribute [rw] folders
|
2396
2396
|
# @return [::Array<::String>]
|
2397
|
-
# The folder(s) that this IAM policy belongs to, in the
|
2397
|
+
# The folder(s) that this IAM policy belongs to, in the format of
|
2398
2398
|
# folders/\\{FOLDER_NUMBER}. This field is available when the IAM policy
|
2399
|
-
# belongs(directly or cascadingly) to one or more folders.
|
2399
|
+
# belongs (directly or cascadingly) to one or more folders.
|
2400
2400
|
# @!attribute [rw] organization
|
2401
2401
|
# @return [::String]
|
2402
|
-
# The organization that this IAM policy belongs to, in the
|
2402
|
+
# The organization that this IAM policy belongs to, in the format of
|
2403
2403
|
# organizations/\\{ORGANIZATION_NUMBER}. This field is available when the
|
2404
|
-
# IAM policy belongs(directly or cascadingly) to an organization.
|
2404
|
+
# IAM policy belongs (directly or cascadingly) to an organization.
|
2405
2405
|
class GovernedIamPolicy
|
2406
2406
|
include ::Google::Protobuf::MessageExts
|
2407
2407
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -35,7 +35,8 @@ module Google
|
|
35
35
|
# only if the expression evaluates to `true`. A condition can add constraints
|
36
36
|
# based on attributes of the request, the resource, or both. To learn which
|
37
37
|
# resources support conditions in their IAM policies, see the
|
38
|
-
# [IAM
|
38
|
+
# [IAM
|
39
|
+
# documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
39
40
|
#
|
40
41
|
# **JSON example:**
|
41
42
|
#
|
@@ -58,7 +59,8 @@ module Google
|
|
58
59
|
# "condition": {
|
59
60
|
# "title": "expirable access",
|
60
61
|
# "description": "Does not grant access after Sep 2020",
|
61
|
-
# "expression": "request.time <
|
62
|
+
# "expression": "request.time <
|
63
|
+
# timestamp('2020-10-01T00:00:00.000Z')",
|
62
64
|
# }
|
63
65
|
# }
|
64
66
|
# ],
|
@@ -112,7 +114,8 @@ module Google
|
|
112
114
|
# specify any valid version or leave the field unset.
|
113
115
|
#
|
114
116
|
# To learn which resources support conditions in their IAM policies, see the
|
115
|
-
# [IAM
|
117
|
+
# [IAM
|
118
|
+
# documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
|
116
119
|
# @!attribute [rw] bindings
|
117
120
|
# @return [::Array<::Google::Iam::V1::Binding>]
|
118
121
|
# Associates a list of `members`, or principals, with a `role`. Optionally,
|
@@ -305,7 +308,8 @@ module Google
|
|
305
308
|
# @return [::Array<::String>]
|
306
309
|
# Specifies the identities that do not cause logging for this type of
|
307
310
|
# permission.
|
308
|
-
# Follows the same format of
|
311
|
+
# Follows the same format of
|
312
|
+
# {::Google::Iam::V1::Binding#members Binding.members}.
|
309
313
|
class AuditLogConfig
|
310
314
|
include ::Google::Protobuf::MessageExts
|
311
315
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
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.
|
4
|
+
version: 0.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|