google-apis-datacatalog_v1 0.9.0 → 0.13.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/CHANGELOG.md +18 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/datacatalog_v1/classes.rb +250 -34
- data/lib/google/apis/datacatalog_v1/gem_version.rb +3 -3
- data/lib/google/apis/datacatalog_v1/representations.rb +152 -0
- data/lib/google/apis/datacatalog_v1/service.rb +159 -22
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62135932d2e123b4073699be6e2dbac58e1635a25883c66c1057d647171c75fe
|
4
|
+
data.tar.gz: a9fb72f3e9f8b1eadb77b13229ba9144e2b550d8aace787d834e142f5815cb94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 997b8ba92fb02131d211ec7c413a7247b3c7c81d4dd5c64c41b10b0dd61f841c8282c7bc436f70d32094ac87346c58ec0276b84fa70faa3a90df678140570483
|
7
|
+
data.tar.gz: f2cfbf0e739c951419361c33491a598c5736f95e57cd6b28ab21c2ca66007fa0924acacef03a5f45723918905c861f66ea1b80c3289849f5d5d81789ae9c590a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2022-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220201
|
6
|
+
* Regenerated using generator version 0.4.1
|
7
|
+
|
8
|
+
### v0.12.0 (2022-01-05)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20211230
|
11
|
+
* Unspecified changes
|
12
|
+
|
13
|
+
### v0.11.0 (2021-12-07)
|
14
|
+
|
15
|
+
* Regenerated from discovery document revision 20211201
|
16
|
+
|
17
|
+
### v0.10.0 (2021-11-12)
|
18
|
+
|
19
|
+
* Regenerated from discovery document revision 20211110
|
20
|
+
|
3
21
|
### v0.9.0 (2021-10-20)
|
4
22
|
|
5
23
|
* Regenerated from discovery document revision 20211014
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/datacatalog_v1"
|
|
51
51
|
client = Google::Apis::DatacatalogV1::DataCatalogService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -187,13 +187,16 @@ module Google
|
|
187
187
|
class GetPolicyOptions
|
188
188
|
include Google::Apis::Core::Hashable
|
189
189
|
|
190
|
-
# Optional. The policy
|
191
|
-
# 3. Requests specifying an invalid value will be
|
192
|
-
# policies with any conditional bindings must
|
193
|
-
#
|
194
|
-
# field unset.
|
195
|
-
#
|
196
|
-
#
|
190
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
191
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
192
|
+
# rejected. Requests for policies with any conditional role bindings must
|
193
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
194
|
+
# valid value or leave the field unset. The policy in the response might use the
|
195
|
+
# policy version that you specified, or it might use a lower policy version. For
|
196
|
+
# example, if you specify version 3, but the policy has no conditional role
|
197
|
+
# bindings, the response uses version 1. To learn which resources support
|
198
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
199
|
+
# google.com/iam/help/conditions/resource-policies).
|
197
200
|
# Corresponds to the JSON property `requestedPolicyVersion`
|
198
201
|
# @return [Fixnum]
|
199
202
|
attr_accessor :requested_policy_version
|
@@ -335,6 +338,31 @@ module Google
|
|
335
338
|
end
|
336
339
|
end
|
337
340
|
|
341
|
+
# Business Context of the entry.
|
342
|
+
class GoogleCloudDatacatalogV1BusinessContext
|
343
|
+
include Google::Apis::Core::Hashable
|
344
|
+
|
345
|
+
# Contact people for the entry.
|
346
|
+
# Corresponds to the JSON property `contacts`
|
347
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
|
348
|
+
attr_accessor :contacts
|
349
|
+
|
350
|
+
# Entry overview fields for rich text descriptions of entries.
|
351
|
+
# Corresponds to the JSON property `entryOverview`
|
352
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
|
353
|
+
attr_accessor :entry_overview
|
354
|
+
|
355
|
+
def initialize(**args)
|
356
|
+
update!(**args)
|
357
|
+
end
|
358
|
+
|
359
|
+
# Update properties of this object
|
360
|
+
def update!(**args)
|
361
|
+
@contacts = args[:contacts] if args.key?(:contacts)
|
362
|
+
@entry_overview = args[:entry_overview] if args.key?(:entry_overview)
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
338
366
|
# Specification for the BigQuery connection to a Cloud SQL instance.
|
339
367
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
340
368
|
include Google::Apis::Core::Hashable
|
@@ -414,6 +442,50 @@ module Google
|
|
414
442
|
end
|
415
443
|
end
|
416
444
|
|
445
|
+
# Contact people for the entry.
|
446
|
+
class GoogleCloudDatacatalogV1Contacts
|
447
|
+
include Google::Apis::Core::Hashable
|
448
|
+
|
449
|
+
# The list of contact people for the entry.
|
450
|
+
# Corresponds to the JSON property `people`
|
451
|
+
# @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson>]
|
452
|
+
attr_accessor :people
|
453
|
+
|
454
|
+
def initialize(**args)
|
455
|
+
update!(**args)
|
456
|
+
end
|
457
|
+
|
458
|
+
# Update properties of this object
|
459
|
+
def update!(**args)
|
460
|
+
@people = args[:people] if args.key?(:people)
|
461
|
+
end
|
462
|
+
end
|
463
|
+
|
464
|
+
# A contact person for the entry.
|
465
|
+
class GoogleCloudDatacatalogV1ContactsPerson
|
466
|
+
include Google::Apis::Core::Hashable
|
467
|
+
|
468
|
+
# Designation of the person, for example, Data Steward.
|
469
|
+
# Corresponds to the JSON property `designation`
|
470
|
+
# @return [String]
|
471
|
+
attr_accessor :designation
|
472
|
+
|
473
|
+
# Email of the person in the format of `john.doe@xyz`, ``, or `John Doe`.
|
474
|
+
# Corresponds to the JSON property `email`
|
475
|
+
# @return [String]
|
476
|
+
attr_accessor :email
|
477
|
+
|
478
|
+
def initialize(**args)
|
479
|
+
update!(**args)
|
480
|
+
end
|
481
|
+
|
482
|
+
# Update properties of this object
|
483
|
+
def update!(**args)
|
484
|
+
@designation = args[:designation] if args.key?(:designation)
|
485
|
+
@email = args[:email] if args.key?(:email)
|
486
|
+
end
|
487
|
+
end
|
488
|
+
|
417
489
|
# Cross-regional source used to import an existing taxonomy into a different
|
418
490
|
# region.
|
419
491
|
class GoogleCloudDatacatalogV1CrossRegionalSource
|
@@ -523,6 +595,11 @@ module Google
|
|
523
595
|
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec]
|
524
596
|
attr_accessor :bigquery_table_spec
|
525
597
|
|
598
|
+
# Business Context of the entry.
|
599
|
+
# Corresponds to the JSON property `businessContext`
|
600
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext]
|
601
|
+
attr_accessor :business_context
|
602
|
+
|
526
603
|
# Physical location of an entry.
|
527
604
|
# Corresponds to the JSON property `dataSource`
|
528
605
|
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource]
|
@@ -608,6 +685,11 @@ module Google
|
|
608
685
|
# @return [String]
|
609
686
|
attr_accessor :name
|
610
687
|
|
688
|
+
# Entry metadata relevant only to the user and private to them.
|
689
|
+
# Corresponds to the JSON property `personalDetails`
|
690
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PersonalDetails]
|
691
|
+
attr_accessor :personal_details
|
692
|
+
|
611
693
|
# Specification that applies to a routine. Valid only for entries with the `
|
612
694
|
# ROUTINE` type.
|
613
695
|
# Corresponds to the JSON property `routineSpec`
|
@@ -667,6 +749,7 @@ module Google
|
|
667
749
|
def update!(**args)
|
668
750
|
@bigquery_date_sharded_spec = args[:bigquery_date_sharded_spec] if args.key?(:bigquery_date_sharded_spec)
|
669
751
|
@bigquery_table_spec = args[:bigquery_table_spec] if args.key?(:bigquery_table_spec)
|
752
|
+
@business_context = args[:business_context] if args.key?(:business_context)
|
670
753
|
@data_source = args[:data_source] if args.key?(:data_source)
|
671
754
|
@data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
|
672
755
|
@database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
|
@@ -678,6 +761,7 @@ module Google
|
|
678
761
|
@labels = args[:labels] if args.key?(:labels)
|
679
762
|
@linked_resource = args[:linked_resource] if args.key?(:linked_resource)
|
680
763
|
@name = args[:name] if args.key?(:name)
|
764
|
+
@personal_details = args[:personal_details] if args.key?(:personal_details)
|
681
765
|
@routine_spec = args[:routine_spec] if args.key?(:routine_spec)
|
682
766
|
@schema = args[:schema] if args.key?(:schema)
|
683
767
|
@source_system_timestamps = args[:source_system_timestamps] if args.key?(:source_system_timestamps)
|
@@ -730,6 +814,28 @@ module Google
|
|
730
814
|
end
|
731
815
|
end
|
732
816
|
|
817
|
+
# Entry overview fields for rich text descriptions of entries.
|
818
|
+
class GoogleCloudDatacatalogV1EntryOverview
|
819
|
+
include Google::Apis::Core::Hashable
|
820
|
+
|
821
|
+
# Entry overview with support for rich text. The overview must only contain
|
822
|
+
# Unicode characters, and should be formatted using HTML. The maximum length is
|
823
|
+
# 10 MiB as this value holds HTML descriptions including encoded images. The
|
824
|
+
# maximum length of the text without images is 100 KiB.
|
825
|
+
# Corresponds to the JSON property `overview`
|
826
|
+
# @return [String]
|
827
|
+
attr_accessor :overview
|
828
|
+
|
829
|
+
def initialize(**args)
|
830
|
+
update!(**args)
|
831
|
+
end
|
832
|
+
|
833
|
+
# Update properties of this object
|
834
|
+
def update!(**args)
|
835
|
+
@overview = args[:overview] if args.key?(:overview)
|
836
|
+
end
|
837
|
+
end
|
838
|
+
|
733
839
|
# Response message for ExportTaxonomies.
|
734
840
|
class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
|
735
841
|
include Google::Apis::Core::Hashable
|
@@ -1086,6 +1192,70 @@ module Google
|
|
1086
1192
|
end
|
1087
1193
|
end
|
1088
1194
|
|
1195
|
+
# Request message for ModifyEntryContacts.
|
1196
|
+
class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
|
1197
|
+
include Google::Apis::Core::Hashable
|
1198
|
+
|
1199
|
+
# Contact people for the entry.
|
1200
|
+
# Corresponds to the JSON property `contacts`
|
1201
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
|
1202
|
+
attr_accessor :contacts
|
1203
|
+
|
1204
|
+
def initialize(**args)
|
1205
|
+
update!(**args)
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
# Update properties of this object
|
1209
|
+
def update!(**args)
|
1210
|
+
@contacts = args[:contacts] if args.key?(:contacts)
|
1211
|
+
end
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Request message for ModifyEntryOverview.
|
1215
|
+
class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
|
1216
|
+
include Google::Apis::Core::Hashable
|
1217
|
+
|
1218
|
+
# Entry overview fields for rich text descriptions of entries.
|
1219
|
+
# Corresponds to the JSON property `entryOverview`
|
1220
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
|
1221
|
+
attr_accessor :entry_overview
|
1222
|
+
|
1223
|
+
def initialize(**args)
|
1224
|
+
update!(**args)
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# Update properties of this object
|
1228
|
+
def update!(**args)
|
1229
|
+
@entry_overview = args[:entry_overview] if args.key?(:entry_overview)
|
1230
|
+
end
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
# Entry metadata relevant only to the user and private to them.
|
1234
|
+
class GoogleCloudDatacatalogV1PersonalDetails
|
1235
|
+
include Google::Apis::Core::Hashable
|
1236
|
+
|
1237
|
+
# Set if the entry is starred; unset otherwise.
|
1238
|
+
# Corresponds to the JSON property `starTime`
|
1239
|
+
# @return [String]
|
1240
|
+
attr_accessor :star_time
|
1241
|
+
|
1242
|
+
# True if the entry is starred by the user; false otherwise.
|
1243
|
+
# Corresponds to the JSON property `starred`
|
1244
|
+
# @return [Boolean]
|
1245
|
+
attr_accessor :starred
|
1246
|
+
alias_method :starred?, :starred
|
1247
|
+
|
1248
|
+
def initialize(**args)
|
1249
|
+
update!(**args)
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
# Update properties of this object
|
1253
|
+
def update!(**args)
|
1254
|
+
@star_time = args[:star_time] if args.key?(:star_time)
|
1255
|
+
@starred = args[:starred] if args.key?(:starred)
|
1256
|
+
end
|
1257
|
+
end
|
1258
|
+
|
1089
1259
|
# Denotes one policy tag in a taxonomy, for example, SSN. Policy tags can be
|
1090
1260
|
# defined in a hierarchy. For example: ``` + Geolocation + LatLong + City +
|
1091
1261
|
# ZipCode ``` Where the "Geolocation" policy tag contains three children.
|
@@ -1311,8 +1481,8 @@ module Google
|
|
1311
1481
|
|
1312
1482
|
# Specifies the order of results. Currently supported case-sensitive values are:
|
1313
1483
|
# * `relevance` that can only be descending * `last_modified_timestamp [asc|desc]
|
1314
|
-
# ` with descending (`desc`) as default
|
1315
|
-
# defaults to the descending `relevance`.
|
1484
|
+
# ` with descending (`desc`) as default * `default` that can only be descending
|
1485
|
+
# If this parameter is omitted, it defaults to the descending `relevance`.
|
1316
1486
|
# Corresponds to the JSON property `orderBy`
|
1317
1487
|
# @return [String]
|
1318
1488
|
attr_accessor :order_by
|
@@ -1333,10 +1503,11 @@ module Google
|
|
1333
1503
|
attr_accessor :page_token
|
1334
1504
|
|
1335
1505
|
# Optional. The query string with a minimum of 3 characters and specific syntax.
|
1336
|
-
# For more information, see [Data Catalog search syntax](
|
1337
|
-
# to/search-reference). An empty query string returns
|
1338
|
-
# specified scope) that you have access to. A query
|
1339
|
-
# or qualified by predicates: * `name:x` * `column:
|
1506
|
+
# For more information, see [Data Catalog search syntax](https://cloud.google.
|
1507
|
+
# com/data-catalog/docs/how-to/search-reference). An empty query string returns
|
1508
|
+
# all data assets (in the specified scope) that you have access to. A query
|
1509
|
+
# string can be a simple `xyz` or qualified by predicates: * `name:x` * `column:
|
1510
|
+
# y` * `description:z`
|
1340
1511
|
# Corresponds to the JSON property `query`
|
1341
1512
|
# @return [String]
|
1342
1513
|
attr_accessor :query
|
@@ -1386,11 +1557,8 @@ module Google
|
|
1386
1557
|
# @return [Array<String>]
|
1387
1558
|
attr_accessor :include_project_ids
|
1388
1559
|
|
1389
|
-
# Optional.
|
1390
|
-
#
|
1391
|
-
# view them. For example, if you are the owner. Other scope fields, for example,
|
1392
|
-
# ``include_org_ids``, still restrict the returned public tag templates and at
|
1393
|
-
# least one of them is required.
|
1560
|
+
# Optional. This field is deprecated. The search mechanism for public and
|
1561
|
+
# private tag templates is the same.
|
1394
1562
|
# Corresponds to the JSON property `includePublicTagTemplates`
|
1395
1563
|
# @return [Boolean]
|
1396
1564
|
attr_accessor :include_public_tag_templates
|
@@ -1407,6 +1575,13 @@ module Google
|
|
1407
1575
|
# @return [Array<String>]
|
1408
1576
|
attr_accessor :restricted_locations
|
1409
1577
|
|
1578
|
+
# Optional. If `true`, search only among starred entries. By default, all
|
1579
|
+
# results are returned, starred or not.
|
1580
|
+
# Corresponds to the JSON property `starredOnly`
|
1581
|
+
# @return [Boolean]
|
1582
|
+
attr_accessor :starred_only
|
1583
|
+
alias_method :starred_only?, :starred_only
|
1584
|
+
|
1410
1585
|
def initialize(**args)
|
1411
1586
|
update!(**args)
|
1412
1587
|
end
|
@@ -1418,6 +1593,7 @@ module Google
|
|
1418
1593
|
@include_project_ids = args[:include_project_ids] if args.key?(:include_project_ids)
|
1419
1594
|
@include_public_tag_templates = args[:include_public_tag_templates] if args.key?(:include_public_tag_templates)
|
1420
1595
|
@restricted_locations = args[:restricted_locations] if args.key?(:restricted_locations)
|
1596
|
+
@starred_only = args[:starred_only] if args.key?(:starred_only)
|
1421
1597
|
end
|
1422
1598
|
end
|
1423
1599
|
|
@@ -1625,6 +1801,32 @@ module Google
|
|
1625
1801
|
end
|
1626
1802
|
end
|
1627
1803
|
|
1804
|
+
# Request message for StarEntry.
|
1805
|
+
class GoogleCloudDatacatalogV1StarEntryRequest
|
1806
|
+
include Google::Apis::Core::Hashable
|
1807
|
+
|
1808
|
+
def initialize(**args)
|
1809
|
+
update!(**args)
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
# Update properties of this object
|
1813
|
+
def update!(**args)
|
1814
|
+
end
|
1815
|
+
end
|
1816
|
+
|
1817
|
+
# Response message for StarEntry. Empty for now
|
1818
|
+
class GoogleCloudDatacatalogV1StarEntryResponse
|
1819
|
+
include Google::Apis::Core::Hashable
|
1820
|
+
|
1821
|
+
def initialize(**args)
|
1822
|
+
update!(**args)
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
# Update properties of this object
|
1826
|
+
def update!(**args)
|
1827
|
+
end
|
1828
|
+
end
|
1829
|
+
|
1628
1830
|
# Timestamps associated with this resource in a particular system.
|
1629
1831
|
class GoogleCloudDatacatalogV1SystemTimestamps
|
1630
1832
|
include Google::Apis::Core::Hashable
|
@@ -1854,22 +2056,10 @@ module Google
|
|
1854
2056
|
# @return [Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagTemplateField>]
|
1855
2057
|
attr_accessor :fields
|
1856
2058
|
|
1857
|
-
# Indicates whether
|
1858
|
-
#
|
1859
|
-
#
|
1860
|
-
#
|
1861
|
-
# To get the template using the GetTagTemplate method, you need view access
|
1862
|
-
# either on the project or the organization the tag template resides in but no
|
1863
|
-
# other permission is needed. * Operations on the tag template other than
|
1864
|
-
# viewing (for example, editing IAM policies) follow standard IAM structures.
|
1865
|
-
# Tags created with a public tag template are referred to as public tags. You
|
1866
|
-
# can search for a public tag by value with a simple search query instead of
|
1867
|
-
# using a ``tag:`` predicate. Public tag templates may not appear in search
|
1868
|
-
# results depending on scope, see: include_public_tag_templates Note: If an [IAM
|
1869
|
-
# domain restriction](https://cloud.google.com/resource-manager/docs/
|
1870
|
-
# organization-policy/restricting-domains) is configured in the tag template's
|
1871
|
-
# location, the public access will not be enabled but the simple search for tag
|
1872
|
-
# values will still work.
|
2059
|
+
# Indicates whether tags created with this template are public. Public tags do
|
2060
|
+
# not require tag template access to appear in ListTags API response.
|
2061
|
+
# Additionally, you can search for a public tag by value with a simple search
|
2062
|
+
# query instead of using a ``tag:`` predicate.
|
1873
2063
|
# Corresponds to the JSON property `isPubliclyReadable`
|
1874
2064
|
# @return [Boolean]
|
1875
2065
|
attr_accessor :is_publicly_readable
|
@@ -2015,6 +2205,32 @@ module Google
|
|
2015
2205
|
end
|
2016
2206
|
end
|
2017
2207
|
|
2208
|
+
# Request message for UnstarEntry.
|
2209
|
+
class GoogleCloudDatacatalogV1UnstarEntryRequest
|
2210
|
+
include Google::Apis::Core::Hashable
|
2211
|
+
|
2212
|
+
def initialize(**args)
|
2213
|
+
update!(**args)
|
2214
|
+
end
|
2215
|
+
|
2216
|
+
# Update properties of this object
|
2217
|
+
def update!(**args)
|
2218
|
+
end
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
# Response message for UnstarEntry. Empty for now
|
2222
|
+
class GoogleCloudDatacatalogV1UnstarEntryResponse
|
2223
|
+
include Google::Apis::Core::Hashable
|
2224
|
+
|
2225
|
+
def initialize(**args)
|
2226
|
+
update!(**args)
|
2227
|
+
end
|
2228
|
+
|
2229
|
+
# Update properties of this object
|
2230
|
+
def update!(**args)
|
2231
|
+
end
|
2232
|
+
end
|
2233
|
+
|
2018
2234
|
# The set of all usage signals that Data Catalog stores. Note: Usually, these
|
2019
2235
|
# signals are updated daily. In rare cases, an update may fail but will be
|
2020
2236
|
# performed again on the next day.
|
@@ -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.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220201"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,12 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class GoogleCloudDatacatalogV1BusinessContext
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
79
85
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
80
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
87
|
|
@@ -88,6 +94,18 @@ module Google
|
|
88
94
|
include Google::Apis::Core::JsonObjectSupport
|
89
95
|
end
|
90
96
|
|
97
|
+
class GoogleCloudDatacatalogV1Contacts
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
103
|
+
class GoogleCloudDatacatalogV1ContactsPerson
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
91
109
|
class GoogleCloudDatacatalogV1CrossRegionalSource
|
92
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
111
|
|
@@ -124,6 +142,12 @@ module Google
|
|
124
142
|
include Google::Apis::Core::JsonObjectSupport
|
125
143
|
end
|
126
144
|
|
145
|
+
class GoogleCloudDatacatalogV1EntryOverview
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
127
151
|
class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
|
128
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
153
|
|
@@ -208,6 +232,24 @@ module Google
|
|
208
232
|
include Google::Apis::Core::JsonObjectSupport
|
209
233
|
end
|
210
234
|
|
235
|
+
class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
241
|
+
class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class GoogleCloudDatacatalogV1PersonalDetails
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
211
253
|
class GoogleCloudDatacatalogV1PolicyTag
|
212
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
255
|
|
@@ -286,6 +328,18 @@ module Google
|
|
286
328
|
include Google::Apis::Core::JsonObjectSupport
|
287
329
|
end
|
288
330
|
|
331
|
+
class GoogleCloudDatacatalogV1StarEntryRequest
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class GoogleCloudDatacatalogV1StarEntryResponse
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
289
343
|
class GoogleCloudDatacatalogV1SystemTimestamps
|
290
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
345
|
|
@@ -334,6 +388,18 @@ module Google
|
|
334
388
|
include Google::Apis::Core::JsonObjectSupport
|
335
389
|
end
|
336
390
|
|
391
|
+
class GoogleCloudDatacatalogV1UnstarEntryRequest
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
397
|
+
class GoogleCloudDatacatalogV1UnstarEntryResponse
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
337
403
|
class GoogleCloudDatacatalogV1UsageSignal
|
338
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
405
|
|
@@ -455,6 +521,16 @@ module Google
|
|
455
521
|
end
|
456
522
|
end
|
457
523
|
|
524
|
+
class GoogleCloudDatacatalogV1BusinessContext
|
525
|
+
# @private
|
526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
527
|
+
property :contacts, as: 'contacts', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
|
528
|
+
|
529
|
+
property :entry_overview, as: 'entryOverview', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
|
530
|
+
|
531
|
+
end
|
532
|
+
end
|
533
|
+
|
458
534
|
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
459
535
|
# @private
|
460
536
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -476,6 +552,22 @@ module Google
|
|
476
552
|
end
|
477
553
|
end
|
478
554
|
|
555
|
+
class GoogleCloudDatacatalogV1Contacts
|
556
|
+
# @private
|
557
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
558
|
+
collection :people, as: 'people', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ContactsPerson::Representation
|
559
|
+
|
560
|
+
end
|
561
|
+
end
|
562
|
+
|
563
|
+
class GoogleCloudDatacatalogV1ContactsPerson
|
564
|
+
# @private
|
565
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
566
|
+
property :designation, as: 'designation'
|
567
|
+
property :email, as: 'email'
|
568
|
+
end
|
569
|
+
end
|
570
|
+
|
479
571
|
class GoogleCloudDatacatalogV1CrossRegionalSource
|
480
572
|
# @private
|
481
573
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -513,6 +605,8 @@ module Google
|
|
513
605
|
|
514
606
|
property :bigquery_table_spec, as: 'bigqueryTableSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryTableSpec::Representation
|
515
607
|
|
608
|
+
property :business_context, as: 'businessContext', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BusinessContext::Representation
|
609
|
+
|
516
610
|
property :data_source, as: 'dataSource', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource::Representation
|
517
611
|
|
518
612
|
property :data_source_connection_spec, as: 'dataSourceConnectionSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec::Representation
|
@@ -528,6 +622,8 @@ module Google
|
|
528
622
|
hash :labels, as: 'labels'
|
529
623
|
property :linked_resource, as: 'linkedResource'
|
530
624
|
property :name, as: 'name'
|
625
|
+
property :personal_details, as: 'personalDetails', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PersonalDetails, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PersonalDetails::Representation
|
626
|
+
|
531
627
|
property :routine_spec, as: 'routineSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpec::Representation
|
532
628
|
|
533
629
|
property :schema, as: 'schema', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Schema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Schema::Representation
|
@@ -553,6 +649,13 @@ module Google
|
|
553
649
|
end
|
554
650
|
end
|
555
651
|
|
652
|
+
class GoogleCloudDatacatalogV1EntryOverview
|
653
|
+
# @private
|
654
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
655
|
+
property :overview, as: 'overview'
|
656
|
+
end
|
657
|
+
end
|
658
|
+
|
556
659
|
class GoogleCloudDatacatalogV1ExportTaxonomiesResponse
|
557
660
|
# @private
|
558
661
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -675,6 +778,30 @@ module Google
|
|
675
778
|
end
|
676
779
|
end
|
677
780
|
|
781
|
+
class GoogleCloudDatacatalogV1ModifyEntryContactsRequest
|
782
|
+
# @private
|
783
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
784
|
+
property :contacts, as: 'contacts', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
|
785
|
+
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
class GoogleCloudDatacatalogV1ModifyEntryOverviewRequest
|
790
|
+
# @private
|
791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
792
|
+
property :entry_overview, as: 'entryOverview', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
|
793
|
+
|
794
|
+
end
|
795
|
+
end
|
796
|
+
|
797
|
+
class GoogleCloudDatacatalogV1PersonalDetails
|
798
|
+
# @private
|
799
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
800
|
+
property :star_time, as: 'starTime'
|
801
|
+
property :starred, as: 'starred'
|
802
|
+
end
|
803
|
+
end
|
804
|
+
|
678
805
|
class GoogleCloudDatacatalogV1PolicyTag
|
679
806
|
# @private
|
680
807
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -759,6 +886,7 @@ module Google
|
|
759
886
|
collection :include_project_ids, as: 'includeProjectIds'
|
760
887
|
property :include_public_tag_templates, as: 'includePublicTagTemplates'
|
761
888
|
collection :restricted_locations, as: 'restrictedLocations'
|
889
|
+
property :starred_only, as: 'starredOnly'
|
762
890
|
end
|
763
891
|
end
|
764
892
|
|
@@ -810,6 +938,18 @@ module Google
|
|
810
938
|
end
|
811
939
|
end
|
812
940
|
|
941
|
+
class GoogleCloudDatacatalogV1StarEntryRequest
|
942
|
+
# @private
|
943
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
944
|
+
end
|
945
|
+
end
|
946
|
+
|
947
|
+
class GoogleCloudDatacatalogV1StarEntryResponse
|
948
|
+
# @private
|
949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
950
|
+
end
|
951
|
+
end
|
952
|
+
|
813
953
|
class GoogleCloudDatacatalogV1SystemTimestamps
|
814
954
|
# @private
|
815
955
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -897,6 +1037,18 @@ module Google
|
|
897
1037
|
end
|
898
1038
|
end
|
899
1039
|
|
1040
|
+
class GoogleCloudDatacatalogV1UnstarEntryRequest
|
1041
|
+
# @private
|
1042
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1043
|
+
end
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
class GoogleCloudDatacatalogV1UnstarEntryResponse
|
1047
|
+
# @private
|
1048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1049
|
+
end
|
1050
|
+
end
|
1051
|
+
|
900
1052
|
class GoogleCloudDatacatalogV1UsageSignal
|
901
1053
|
# @private
|
902
1054
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -666,6 +666,76 @@ module Google
|
|
666
666
|
execute_or_queue_command(command, &block)
|
667
667
|
end
|
668
668
|
|
669
|
+
# Modifies contacts, part of the business context of an Entry. To call this
|
670
|
+
# method, you must have the `datacatalog.entries.updateContacts` IAM permission
|
671
|
+
# on the corresponding project.
|
672
|
+
# @param [String] name
|
673
|
+
# Required. The full resource name of the entry.
|
674
|
+
# @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryContactsRequest] google_cloud_datacatalog_v1_modify_entry_contacts_request_object
|
675
|
+
# @param [String] fields
|
676
|
+
# Selector specifying which fields to include in a partial response.
|
677
|
+
# @param [String] quota_user
|
678
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
679
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
680
|
+
# @param [Google::Apis::RequestOptions] options
|
681
|
+
# Request-specific options
|
682
|
+
#
|
683
|
+
# @yield [result, err] Result & error if block supplied
|
684
|
+
# @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts] parsed result object
|
685
|
+
# @yieldparam err [StandardError] error object if request failed
|
686
|
+
#
|
687
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts]
|
688
|
+
#
|
689
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
690
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
691
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
692
|
+
def modify_project_location_entry_group_entry_entry_contacts(name, google_cloud_datacatalog_v1_modify_entry_contacts_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
693
|
+
command = make_simple_command(:post, 'v1/{+name}:modifyEntryContacts', options)
|
694
|
+
command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryContactsRequest::Representation
|
695
|
+
command.request_object = google_cloud_datacatalog_v1_modify_entry_contacts_request_object
|
696
|
+
command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts::Representation
|
697
|
+
command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1Contacts
|
698
|
+
command.params['name'] = name unless name.nil?
|
699
|
+
command.query['fields'] = fields unless fields.nil?
|
700
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
701
|
+
execute_or_queue_command(command, &block)
|
702
|
+
end
|
703
|
+
|
704
|
+
# Modifies entry overview, part of the business context of an Entry. To call
|
705
|
+
# this method, you must have the `datacatalog.entries.updateOverview` IAM
|
706
|
+
# permission on the corresponding project.
|
707
|
+
# @param [String] name
|
708
|
+
# Required. The full resource name of the entry.
|
709
|
+
# @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryOverviewRequest] google_cloud_datacatalog_v1_modify_entry_overview_request_object
|
710
|
+
# @param [String] fields
|
711
|
+
# Selector specifying which fields to include in a partial response.
|
712
|
+
# @param [String] quota_user
|
713
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
714
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
715
|
+
# @param [Google::Apis::RequestOptions] options
|
716
|
+
# Request-specific options
|
717
|
+
#
|
718
|
+
# @yield [result, err] Result & error if block supplied
|
719
|
+
# @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview] parsed result object
|
720
|
+
# @yieldparam err [StandardError] error object if request failed
|
721
|
+
#
|
722
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview]
|
723
|
+
#
|
724
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
725
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
726
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
727
|
+
def modify_project_location_entry_group_entry_entry_overview(name, google_cloud_datacatalog_v1_modify_entry_overview_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
728
|
+
command = make_simple_command(:post, 'v1/{+name}:modifyEntryOverview', options)
|
729
|
+
command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ModifyEntryOverviewRequest::Representation
|
730
|
+
command.request_object = google_cloud_datacatalog_v1_modify_entry_overview_request_object
|
731
|
+
command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview::Representation
|
732
|
+
command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1EntryOverview
|
733
|
+
command.params['name'] = name unless name.nil?
|
734
|
+
command.query['fields'] = fields unless fields.nil?
|
735
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
736
|
+
execute_or_queue_command(command, &block)
|
737
|
+
end
|
738
|
+
|
669
739
|
# Updates an existing entry. You must enable the Data Catalog API in the project
|
670
740
|
# identified by the `entry.name` parameter. For more information, see [Data
|
671
741
|
# Catalog resource project](https://cloud.google.com/data-catalog/docs/concepts/
|
@@ -715,6 +785,40 @@ module Google
|
|
715
785
|
execute_or_queue_command(command, &block)
|
716
786
|
end
|
717
787
|
|
788
|
+
# Marks an Entry as starred by the current user. Starring information is private
|
789
|
+
# to each user.
|
790
|
+
# @param [String] name
|
791
|
+
# Required. The name of the entry to mark as starred.
|
792
|
+
# @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryRequest] google_cloud_datacatalog_v1_star_entry_request_object
|
793
|
+
# @param [String] fields
|
794
|
+
# Selector specifying which fields to include in a partial response.
|
795
|
+
# @param [String] quota_user
|
796
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
797
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
798
|
+
# @param [Google::Apis::RequestOptions] options
|
799
|
+
# Request-specific options
|
800
|
+
#
|
801
|
+
# @yield [result, err] Result & error if block supplied
|
802
|
+
# @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryResponse] parsed result object
|
803
|
+
# @yieldparam err [StandardError] error object if request failed
|
804
|
+
#
|
805
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryResponse]
|
806
|
+
#
|
807
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
808
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
809
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
810
|
+
def star_project_location_entry_group_entry(name, google_cloud_datacatalog_v1_star_entry_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
811
|
+
command = make_simple_command(:post, 'v1/{+name}:star', options)
|
812
|
+
command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryRequest::Representation
|
813
|
+
command.request_object = google_cloud_datacatalog_v1_star_entry_request_object
|
814
|
+
command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryResponse::Representation
|
815
|
+
command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StarEntryResponse
|
816
|
+
command.params['name'] = name unless name.nil?
|
817
|
+
command.query['fields'] = fields unless fields.nil?
|
818
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
819
|
+
execute_or_queue_command(command, &block)
|
820
|
+
end
|
821
|
+
|
718
822
|
# Gets your permissions on a resource. Returns an empty set of permissions if
|
719
823
|
# the resource doesn't exist. Supported resources are: - Tag templates - Entry
|
720
824
|
# groups Note: This method gets policies only within Data Catalog and can't be
|
@@ -754,14 +858,48 @@ module Google
|
|
754
858
|
execute_or_queue_command(command, &block)
|
755
859
|
end
|
756
860
|
|
757
|
-
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
761
|
-
#
|
762
|
-
#
|
763
|
-
#
|
764
|
-
#
|
861
|
+
# Marks an Entry as NOT starred by the current user. Starring information is
|
862
|
+
# private to each user.
|
863
|
+
# @param [String] name
|
864
|
+
# Required. The name of the entry to mark as **not** starred.
|
865
|
+
# @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryRequest] google_cloud_datacatalog_v1_unstar_entry_request_object
|
866
|
+
# @param [String] fields
|
867
|
+
# Selector specifying which fields to include in a partial response.
|
868
|
+
# @param [String] quota_user
|
869
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
870
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
871
|
+
# @param [Google::Apis::RequestOptions] options
|
872
|
+
# Request-specific options
|
873
|
+
#
|
874
|
+
# @yield [result, err] Result & error if block supplied
|
875
|
+
# @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryResponse] parsed result object
|
876
|
+
# @yieldparam err [StandardError] error object if request failed
|
877
|
+
#
|
878
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryResponse]
|
879
|
+
#
|
880
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
881
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
882
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
883
|
+
def unstar_project_location_entry_group_entry(name, google_cloud_datacatalog_v1_unstar_entry_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
884
|
+
command = make_simple_command(:post, 'v1/{+name}:unstar', options)
|
885
|
+
command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryRequest::Representation
|
886
|
+
command.request_object = google_cloud_datacatalog_v1_unstar_entry_request_object
|
887
|
+
command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryResponse::Representation
|
888
|
+
command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1UnstarEntryResponse
|
889
|
+
command.params['name'] = name unless name.nil?
|
890
|
+
command.query['fields'] = fields unless fields.nil?
|
891
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
892
|
+
execute_or_queue_command(command, &block)
|
893
|
+
end
|
894
|
+
|
895
|
+
# Creates a tag and assigns it to: * An Entry if the method name is `projects.
|
896
|
+
# locations.entryGroups.entries.tags.create`. * Or EntryGroupif the method name
|
897
|
+
# is `projects.locations.entryGroups.tags.create`. Note: The project identified
|
898
|
+
# by the `parent` parameter for the [tag] (https://cloud.google.com/data-catalog/
|
899
|
+
# docs/reference/rest/v1/projects.locations.entryGroups.entries.tags/create#path-
|
900
|
+
# parameters) and the [tag template] (https://cloud.google.com/data-catalog/docs/
|
901
|
+
# reference/rest/v1/projects.locations.tagTemplates/create#path-parameters) used
|
902
|
+
# to create the tag must be in the same organization.
|
765
903
|
# @param [String] parent
|
766
904
|
# Required. The name of the resource to attach this tag to. Tags can be attached
|
767
905
|
# to entries or entry groups. An entry can have up to 1000 attached tags. Note:
|
@@ -827,7 +965,7 @@ module Google
|
|
827
965
|
execute_or_queue_command(command, &block)
|
828
966
|
end
|
829
967
|
|
830
|
-
# Lists tags assigned to an Entry.
|
968
|
+
# Lists tags assigned to an Entry. The columns in the response are lowercased.
|
831
969
|
# @param [String] parent
|
832
970
|
# Required. The name of the Data Catalog resource to list the tags of. The
|
833
971
|
# resource can be an Entry or an EntryGroup (without `/entries/`entries`` at the
|
@@ -907,14 +1045,14 @@ module Google
|
|
907
1045
|
execute_or_queue_command(command, &block)
|
908
1046
|
end
|
909
1047
|
|
910
|
-
# Creates a tag and assigns it to: * An Entry if the method name is
|
911
|
-
# locations.entryGroups.entries.tags.create
|
912
|
-
# is
|
913
|
-
#
|
914
|
-
#
|
915
|
-
#
|
916
|
-
#
|
917
|
-
#
|
1048
|
+
# Creates a tag and assigns it to: * An Entry if the method name is `projects.
|
1049
|
+
# locations.entryGroups.entries.tags.create`. * Or EntryGroupif the method name
|
1050
|
+
# is `projects.locations.entryGroups.tags.create`. Note: The project identified
|
1051
|
+
# by the `parent` parameter for the [tag] (https://cloud.google.com/data-catalog/
|
1052
|
+
# docs/reference/rest/v1/projects.locations.entryGroups.entries.tags/create#path-
|
1053
|
+
# parameters) and the [tag template] (https://cloud.google.com/data-catalog/docs/
|
1054
|
+
# reference/rest/v1/projects.locations.tagTemplates/create#path-parameters) used
|
1055
|
+
# to create the tag must be in the same organization.
|
918
1056
|
# @param [String] parent
|
919
1057
|
# Required. The name of the resource to attach this tag to. Tags can be attached
|
920
1058
|
# to entries or entry groups. An entry can have up to 1000 attached tags. Note:
|
@@ -980,7 +1118,7 @@ module Google
|
|
980
1118
|
execute_or_queue_command(command, &block)
|
981
1119
|
end
|
982
1120
|
|
983
|
-
# Lists tags assigned to an Entry.
|
1121
|
+
# Lists tags assigned to an Entry. The columns in the response are lowercased.
|
984
1122
|
# @param [String] parent
|
985
1123
|
# Required. The name of the Data Catalog resource to list the tags of. The
|
986
1124
|
# resource can be an Entry or an EntryGroup (without `/entries/`entries`` at the
|
@@ -1228,9 +1366,8 @@ module Google
|
|
1228
1366
|
# display_name` and `is_publicly_readable` can be overwritten. If this parameter
|
1229
1367
|
# is absent or empty, all modifiable fields are overwritten. If such fields are
|
1230
1368
|
# non-required and omitted in the request body, their values are emptied. Note:
|
1231
|
-
# Updating the
|
1232
|
-
# effect in search results.
|
1233
|
-
# getIamPolicy`` and ``tagTemplates.setIamPolicy`` permissions.
|
1369
|
+
# Updating the `is_publicly_readable` field may require up to 12 hours to take
|
1370
|
+
# effect in search results.
|
1234
1371
|
# @param [String] fields
|
1235
1372
|
# Selector specifying which fields to include in a partial response.
|
1236
1373
|
# @param [String] quota_user
|
@@ -1475,7 +1612,7 @@ module Google
|
|
1475
1612
|
# Catalog resource project] (https://cloud.google.com/data-catalog/docs/concepts/
|
1476
1613
|
# resource-project).
|
1477
1614
|
# @param [String] name
|
1478
|
-
# Required. The name of the tag template.
|
1615
|
+
# Required. The name of the tag template field.
|
1479
1616
|
# @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RenameTagTemplateFieldRequest] google_cloud_datacatalog_v1_rename_tag_template_field_request_object
|
1480
1617
|
# @param [String] fields
|
1481
1618
|
# Selector specifying which fields to include in a partial response.
|
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.13.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:
|
11
|
+
date: 2022-02-07 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.13.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Cloud Data Catalog API V1
|