google-apis-datacatalog_v1 0.40.0 → 0.42.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4363814e05dda2276bfdf4a438ab239b90e27888ce8f1b585e2202470ca0c2b8
|
4
|
+
data.tar.gz: 3433955bbde436921c7ff5bc69f6dd0a3ec51345037fbd280d773672e7ab5eb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 751443f9a385d7cb5578c79bc2d8548a0e009ba0a43dbbe0858514012ace1579c15074ff60a24296c3a9a45fdbff49cff8534ebda965fdc22f3ead35a975968d
|
7
|
+
data.tar.gz: 54ae54a875d7e0b3677a76bacb4828c0363bded2db45eba4ebc291273339b1e416554ce69e992e187f1162ee6f65faa71a0b1f9cf5caa9288e64959a6ad12242
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1
|
2
2
|
|
3
|
+
### v0.42.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230804
|
6
|
+
|
7
|
+
### v0.41.0 (2023-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230716
|
10
|
+
|
3
11
|
### v0.40.0 (2023-06-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230619
|
@@ -2258,6 +2258,16 @@ module Google
|
|
2258
2258
|
class GoogleCloudDatacatalogV1SearchCatalogRequest
|
2259
2259
|
include Google::Apis::Core::Hashable
|
2260
2260
|
|
2261
|
+
# Optional. If set, use searchAll permission granted on organizations from `
|
2262
|
+
# include_org_ids` and projects from `include_project_ids` instead of the fine
|
2263
|
+
# grained per resource permissions when filtering the search results. The only
|
2264
|
+
# allowed `order_by` criteria for admin_search mode is `default`. Using this
|
2265
|
+
# flags guarantees a full recall of the search results.
|
2266
|
+
# Corresponds to the JSON property `adminSearch`
|
2267
|
+
# @return [Boolean]
|
2268
|
+
attr_accessor :admin_search
|
2269
|
+
alias_method :admin_search?, :admin_search
|
2270
|
+
|
2261
2271
|
# Specifies the order of results. Currently supported case-sensitive values are:
|
2262
2272
|
# * `relevance` that can only be descending * `last_modified_timestamp [asc|desc]
|
2263
2273
|
# ` with descending (`desc`) as default * `default` that can only be descending
|
@@ -2307,6 +2317,7 @@ module Google
|
|
2307
2317
|
|
2308
2318
|
# Update properties of this object
|
2309
2319
|
def update!(**args)
|
2320
|
+
@admin_search = args[:admin_search] if args.key?(:admin_search)
|
2310
2321
|
@order_by = args[:order_by] if args.key?(:order_by)
|
2311
2322
|
@page_size = args[:page_size] if args.key?(:page_size)
|
2312
2323
|
@page_token = args[:page_token] if args.key?(:page_token)
|
@@ -3348,13 +3359,13 @@ module Google
|
|
3348
3359
|
# @return [String]
|
3349
3360
|
attr_accessor :name
|
3350
3361
|
|
3351
|
-
# The normal response of the operation
|
3352
|
-
#
|
3353
|
-
#
|
3354
|
-
#
|
3355
|
-
#
|
3356
|
-
#
|
3357
|
-
#
|
3362
|
+
# The normal, successful response of the operation. If the original method
|
3363
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
3364
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
3365
|
+
# response should be the resource. For other methods, the response should have
|
3366
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
3367
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
3368
|
+
# `TakeSnapshotResponse`.
|
3358
3369
|
# Corresponds to the JSON property `response`
|
3359
3370
|
# @return [Hash<String,Object>]
|
3360
3371
|
attr_accessor :response
|
@@ -3384,22 +3395,22 @@ module Google
|
|
3384
3395
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
3385
3396
|
# the request, the resource, or both. To learn which resources support
|
3386
3397
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
3387
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
3398
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
3388
3399
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
3389
3400
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
3390
3401
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
3391
3402
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
3392
3403
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
3393
3404
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
3394
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
3395
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
3396
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
3397
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
3398
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
3399
|
-
# access description: Does not grant access after Sep 2020
|
3400
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3401
|
-
# a description of IAM and its features, see the
|
3402
|
-
# cloud.google.com/iam/docs/).
|
3405
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
3406
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
3407
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
3408
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
3409
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
3410
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
3411
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3412
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
3413
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
3403
3414
|
class Policy
|
3404
3415
|
include Google::Apis::Core::Hashable
|
3405
3416
|
|
@@ -3477,22 +3488,22 @@ module Google
|
|
3477
3488
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
3478
3489
|
# the request, the resource, or both. To learn which resources support
|
3479
3490
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
3480
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
3491
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
3481
3492
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
3482
3493
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
3483
3494
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
3484
3495
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
3485
3496
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
3486
3497
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
3487
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
3488
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
3489
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
3490
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
3491
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
3492
|
-
# access description: Does not grant access after Sep 2020
|
3493
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3494
|
-
# a description of IAM and its features, see the
|
3495
|
-
# cloud.google.com/iam/docs/).
|
3498
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
3499
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
3500
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
3501
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
3502
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
3503
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
3504
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
3505
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
3506
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
3496
3507
|
# Corresponds to the JSON property `policy`
|
3497
3508
|
# @return [Google::Apis::DatacatalogV1::Policy]
|
3498
3509
|
attr_accessor :policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DatacatalogV1
|
18
18
|
# Version of the google-apis-datacatalog_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1322,6 +1322,7 @@ module Google
|
|
1322
1322
|
class GoogleCloudDatacatalogV1SearchCatalogRequest
|
1323
1323
|
# @private
|
1324
1324
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1325
|
+
property :admin_search, as: 'adminSearch'
|
1325
1326
|
property :order_by, as: 'orderBy'
|
1326
1327
|
property :page_size, as: 'pageSize'
|
1327
1328
|
property :page_token, as: 'pageToken'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datacatalog_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|