google-apis-datacatalog_v1 0.2.0 → 0.6.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 +16 -0
- data/lib/google/apis/datacatalog_v1.rb +1 -1
- data/lib/google/apis/datacatalog_v1/classes.rb +142 -2
- data/lib/google/apis/datacatalog_v1/gem_version.rb +2 -2
- data/lib/google/apis/datacatalog_v1/representations.rb +51 -0
- data/lib/google/apis/datacatalog_v1/service.rb +7 -7
- 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: 419ca416e183948b1218e8d300104cd3c478444616a19af378fa00fd1891adb1
|
4
|
+
data.tar.gz: cc5adf78f6693af7546a606e01495975c0948a9bd912ffb365de0fa0ca9dff7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4aac5203c1d3b2d594e15cc0135b227656a01fe6b0a4c890e319875a6d74c0bf27412c6479d61047055a66f56b22454e1386a8ef884c319154eacb7fa80d7162
|
7
|
+
data.tar.gz: 8addf3f6d0da794c21ddf5e0192fbc05f62db59c44a99b2181758cf17742232a608cfaeeae830d846aa321ea65371cd31886fde949aaa37db10b19f3abb70fdd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-datacatalog_v1
|
2
2
|
|
3
|
+
### v0.6.0 (2021-08-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210811
|
6
|
+
|
7
|
+
### v0.5.0 (2021-07-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210721
|
10
|
+
|
11
|
+
### v0.4.0 (2021-07-16)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210712
|
14
|
+
|
15
|
+
### v0.3.0 (2021-07-09)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210702
|
18
|
+
|
3
19
|
### v0.2.0 (2021-06-29)
|
4
20
|
|
5
21
|
* Regenerated using generator version 0.4.0
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
# See, edit, configure, and delete your Google Cloud
|
33
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -208,6 +208,39 @@ module Google
|
|
208
208
|
end
|
209
209
|
end
|
210
210
|
|
211
|
+
# Specification for the BigQuery connection.
|
212
|
+
class GoogleCloudDatacatalogV1BigQueryConnectionSpec
|
213
|
+
include Google::Apis::Core::Hashable
|
214
|
+
|
215
|
+
# Specification for the BigQuery connection to a Cloud SQL instance.
|
216
|
+
# Corresponds to the JSON property `cloudSql`
|
217
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec]
|
218
|
+
attr_accessor :cloud_sql
|
219
|
+
|
220
|
+
# The type of the BigQuery connection.
|
221
|
+
# Corresponds to the JSON property `connectionType`
|
222
|
+
# @return [String]
|
223
|
+
attr_accessor :connection_type
|
224
|
+
|
225
|
+
# True if there are credentials attached to the BigQuery connection; false
|
226
|
+
# otherwise.
|
227
|
+
# Corresponds to the JSON property `hasCredential`
|
228
|
+
# @return [Boolean]
|
229
|
+
attr_accessor :has_credential
|
230
|
+
alias_method :has_credential?, :has_credential
|
231
|
+
|
232
|
+
def initialize(**args)
|
233
|
+
update!(**args)
|
234
|
+
end
|
235
|
+
|
236
|
+
# Update properties of this object
|
237
|
+
def update!(**args)
|
238
|
+
@cloud_sql = args[:cloud_sql] if args.key?(:cloud_sql)
|
239
|
+
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
240
|
+
@has_credential = args[:has_credential] if args.key?(:has_credential)
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
211
244
|
# Specification for a group of BigQuery tables with the `[prefix]YYYYMMDD` name
|
212
245
|
# pattern. For more information, see [Introduction to partitioned tables] (https:
|
213
246
|
# //cloud.google.com/bigquery/docs/partitioned-tables#
|
@@ -296,6 +329,37 @@ module Google
|
|
296
329
|
end
|
297
330
|
end
|
298
331
|
|
332
|
+
# Specification for the BigQuery connection to a Cloud SQL instance.
|
333
|
+
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
334
|
+
include Google::Apis::Core::Hashable
|
335
|
+
|
336
|
+
# Database name.
|
337
|
+
# Corresponds to the JSON property `database`
|
338
|
+
# @return [String]
|
339
|
+
attr_accessor :database
|
340
|
+
|
341
|
+
# Cloud SQL instance ID in the format of `project:location:instance`.
|
342
|
+
# Corresponds to the JSON property `instanceId`
|
343
|
+
# @return [String]
|
344
|
+
attr_accessor :instance_id
|
345
|
+
|
346
|
+
# Type of the Cloud SQL database.
|
347
|
+
# Corresponds to the JSON property `type`
|
348
|
+
# @return [String]
|
349
|
+
attr_accessor :type
|
350
|
+
|
351
|
+
def initialize(**args)
|
352
|
+
update!(**args)
|
353
|
+
end
|
354
|
+
|
355
|
+
# Update properties of this object
|
356
|
+
def update!(**args)
|
357
|
+
@database = args[:database] if args.key?(:database)
|
358
|
+
@instance_id = args[:instance_id] if args.key?(:instance_id)
|
359
|
+
@type = args[:type] if args.key?(:type)
|
360
|
+
end
|
361
|
+
end
|
362
|
+
|
299
363
|
# A column within a schema. Columns can be nested inside other columns.
|
300
364
|
class GoogleCloudDatacatalogV1ColumnSchema
|
301
365
|
include Google::Apis::Core::Hashable
|
@@ -391,6 +455,26 @@ module Google
|
|
391
455
|
end
|
392
456
|
end
|
393
457
|
|
458
|
+
# Specification that applies to a data source connection. Valid only for entries
|
459
|
+
# with the `DATA_SOURCE_CONNECTION` type.
|
460
|
+
class GoogleCloudDatacatalogV1DataSourceConnectionSpec
|
461
|
+
include Google::Apis::Core::Hashable
|
462
|
+
|
463
|
+
# Specification for the BigQuery connection.
|
464
|
+
# Corresponds to the JSON property `bigqueryConnectionSpec`
|
465
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryConnectionSpec]
|
466
|
+
attr_accessor :bigquery_connection_spec
|
467
|
+
|
468
|
+
def initialize(**args)
|
469
|
+
update!(**args)
|
470
|
+
end
|
471
|
+
|
472
|
+
# Update properties of this object
|
473
|
+
def update!(**args)
|
474
|
+
@bigquery_connection_spec = args[:bigquery_connection_spec] if args.key?(:bigquery_connection_spec)
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
394
478
|
# Specification that applies to a table resource. Valid only for entries with
|
395
479
|
# the `TABLE` type.
|
396
480
|
class GoogleCloudDatacatalogV1DatabaseTableSpec
|
@@ -438,6 +522,12 @@ module Google
|
|
438
522
|
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource]
|
439
523
|
attr_accessor :data_source
|
440
524
|
|
525
|
+
# Specification that applies to a data source connection. Valid only for entries
|
526
|
+
# with the `DATA_SOURCE_CONNECTION` type.
|
527
|
+
# Corresponds to the JSON property `dataSourceConnectionSpec`
|
528
|
+
# @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec]
|
529
|
+
attr_accessor :data_source_connection_spec
|
530
|
+
|
441
531
|
# Specification that applies to a table resource. Valid only for entries with
|
442
532
|
# the `TABLE` type.
|
443
533
|
# Corresponds to the JSON property `databaseTableSpec`
|
@@ -484,6 +574,13 @@ module Google
|
|
484
574
|
# @return [String]
|
485
575
|
attr_accessor :integrated_system
|
486
576
|
|
577
|
+
# Cloud labels attached to the entry. In Data Catalog, you can create and modify
|
578
|
+
# labels attached only to custom entries. Synced entries have unmodifiable
|
579
|
+
# labels that come from the source system.
|
580
|
+
# Corresponds to the JSON property `labels`
|
581
|
+
# @return [Hash<String,String>]
|
582
|
+
attr_accessor :labels
|
583
|
+
|
487
584
|
# The resource this metadata entry refers to. For Google Cloud Platform
|
488
585
|
# resources, `linked_resource` is the [Full Resource Name] (https://cloud.google.
|
489
586
|
# com/apis/design/resource_names#full_resource_name). For example, the `
|
@@ -565,12 +662,14 @@ module Google
|
|
565
662
|
@bigquery_date_sharded_spec = args[:bigquery_date_sharded_spec] if args.key?(:bigquery_date_sharded_spec)
|
566
663
|
@bigquery_table_spec = args[:bigquery_table_spec] if args.key?(:bigquery_table_spec)
|
567
664
|
@data_source = args[:data_source] if args.key?(:data_source)
|
665
|
+
@data_source_connection_spec = args[:data_source_connection_spec] if args.key?(:data_source_connection_spec)
|
568
666
|
@database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
|
569
667
|
@description = args[:description] if args.key?(:description)
|
570
668
|
@display_name = args[:display_name] if args.key?(:display_name)
|
571
669
|
@fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
|
572
670
|
@gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
|
573
671
|
@integrated_system = args[:integrated_system] if args.key?(:integrated_system)
|
672
|
+
@labels = args[:labels] if args.key?(:labels)
|
574
673
|
@linked_resource = args[:linked_resource] if args.key?(:linked_resource)
|
575
674
|
@name = args[:name] if args.key?(:name)
|
576
675
|
@routine_spec = args[:routine_spec] if args.key?(:routine_spec)
|
@@ -1281,6 +1380,16 @@ module Google
|
|
1281
1380
|
# @return [Array<String>]
|
1282
1381
|
attr_accessor :include_project_ids
|
1283
1382
|
|
1383
|
+
# Optional. If `true`, include public tag templates in the search results. By
|
1384
|
+
# default, they are included only if you have explicit permissions on them to
|
1385
|
+
# view them. For example, if you are the owner. Other scope fields, for example,
|
1386
|
+
# ``include_org_ids``, still restrict the returned public tag templates and at
|
1387
|
+
# least one of them is required.
|
1388
|
+
# Corresponds to the JSON property `includePublicTagTemplates`
|
1389
|
+
# @return [Boolean]
|
1390
|
+
attr_accessor :include_public_tag_templates
|
1391
|
+
alias_method :include_public_tag_templates?, :include_public_tag_templates
|
1392
|
+
|
1284
1393
|
# Optional. The list of locations to search within. If empty, all locations are
|
1285
1394
|
# searched. Returns an error if any location in the list isn't one of the [
|
1286
1395
|
# Supported regions](https://cloud.google.com/data-catalog/docs/concepts/regions#
|
@@ -1301,6 +1410,7 @@ module Google
|
|
1301
1410
|
@include_gcp_public_datasets = args[:include_gcp_public_datasets] if args.key?(:include_gcp_public_datasets)
|
1302
1411
|
@include_org_ids = args[:include_org_ids] if args.key?(:include_org_ids)
|
1303
1412
|
@include_project_ids = args[:include_project_ids] if args.key?(:include_project_ids)
|
1413
|
+
@include_public_tag_templates = args[:include_public_tag_templates] if args.key?(:include_public_tag_templates)
|
1304
1414
|
@restricted_locations = args[:restricted_locations] if args.key?(:restricted_locations)
|
1305
1415
|
end
|
1306
1416
|
end
|
@@ -1642,6 +1752,13 @@ module Google
|
|
1642
1752
|
# @return [Fixnum]
|
1643
1753
|
attr_accessor :order
|
1644
1754
|
|
1755
|
+
# The value of a tag field with a rich text type. The maximum length is 10 MiB
|
1756
|
+
# as this value holds HTML descriptions including encoded images. The maximum
|
1757
|
+
# length of the text without images is 100 KiB.
|
1758
|
+
# Corresponds to the JSON property `richtextValue`
|
1759
|
+
# @return [String]
|
1760
|
+
attr_accessor :richtext_value
|
1761
|
+
|
1645
1762
|
# The value of a tag field with a string type. The maximum length is 2000 UTF-8
|
1646
1763
|
# characters.
|
1647
1764
|
# Corresponds to the JSON property `stringValue`
|
@@ -1664,6 +1781,7 @@ module Google
|
|
1664
1781
|
@double_value = args[:double_value] if args.key?(:double_value)
|
1665
1782
|
@enum_value = args[:enum_value] if args.key?(:enum_value)
|
1666
1783
|
@order = args[:order] if args.key?(:order)
|
1784
|
+
@richtext_value = args[:richtext_value] if args.key?(:richtext_value)
|
1667
1785
|
@string_value = args[:string_value] if args.key?(:string_value)
|
1668
1786
|
@timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
|
1669
1787
|
end
|
@@ -1717,6 +1835,27 @@ module Google
|
|
1717
1835
|
# @return [Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagTemplateField>]
|
1718
1836
|
attr_accessor :fields
|
1719
1837
|
|
1838
|
+
# Indicates whether this is a public tag template. Every user has view access to
|
1839
|
+
# a *public* tag template by default. This means that: * Every user can use this
|
1840
|
+
# tag template to tag an entry. * If an entry is tagged using the tag template,
|
1841
|
+
# the tag is always shown in the response to ``ListTags`` called on the entry. *
|
1842
|
+
# To get the template using the GetTagTemplate method, you need view access
|
1843
|
+
# either on the project or the organization the tag template resides in but no
|
1844
|
+
# other permission is needed. * Operations on the tag template other than
|
1845
|
+
# viewing (for example, editing IAM policies) follow standard IAM structures.
|
1846
|
+
# Tags created with a public tag template are referred to as public tags. You
|
1847
|
+
# can search for a public tag by value with a simple search query instead of
|
1848
|
+
# using a ``tag:`` predicate. Public tag templates may not appear in search
|
1849
|
+
# results depending on scope, see: include_public_tag_templates Note: If an [IAM
|
1850
|
+
# domain restriction](https://cloud.google.com/resource-manager/docs/
|
1851
|
+
# organization-policy/restricting-domains) is configured in the tag template's
|
1852
|
+
# location, the public access will not be enabled but the simple search for tag
|
1853
|
+
# values will still work.
|
1854
|
+
# Corresponds to the JSON property `isPubliclyReadable`
|
1855
|
+
# @return [Boolean]
|
1856
|
+
attr_accessor :is_publicly_readable
|
1857
|
+
alias_method :is_publicly_readable?, :is_publicly_readable
|
1858
|
+
|
1720
1859
|
# The resource name of the tag template in URL format. Note: The tag template
|
1721
1860
|
# itself and its child resources might not be stored in the location specified
|
1722
1861
|
# in its name.
|
@@ -1732,6 +1871,7 @@ module Google
|
|
1732
1871
|
def update!(**args)
|
1733
1872
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1734
1873
|
@fields = args[:fields] if args.key?(:fields)
|
1874
|
+
@is_publicly_readable = args[:is_publicly_readable] if args.key?(:is_publicly_readable)
|
1735
1875
|
@name = args[:name] if args.key?(:name)
|
1736
1876
|
end
|
1737
1877
|
end
|
@@ -1969,7 +2109,7 @@ module Google
|
|
1969
2109
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
1970
2110
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
1971
2111
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
1972
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
2112
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
1973
2113
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
1974
2114
|
# google.com/iam/docs/).
|
1975
2115
|
class Policy
|
@@ -2057,7 +2197,7 @@ module Google
|
|
2057
2197
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
2058
2198
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
2059
2199
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
2060
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
2200
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
2061
2201
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
2062
2202
|
# google.com/iam/docs/).
|
2063
2203
|
# Corresponds to the JSON property `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.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class GoogleCloudDatacatalogV1BigQueryConnectionSpec
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class GoogleCloudDatacatalogV1BigQueryDateShardedSpec
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -70,6 +76,12 @@ module Google
|
|
70
76
|
include Google::Apis::Core::JsonObjectSupport
|
71
77
|
end
|
72
78
|
|
79
|
+
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
73
85
|
class GoogleCloudDatacatalogV1ColumnSchema
|
74
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
87
|
|
@@ -88,6 +100,12 @@ module Google
|
|
88
100
|
include Google::Apis::Core::JsonObjectSupport
|
89
101
|
end
|
90
102
|
|
103
|
+
class GoogleCloudDatacatalogV1DataSourceConnectionSpec
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
91
109
|
class GoogleCloudDatacatalogV1DatabaseTableSpec
|
92
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
111
|
|
@@ -399,6 +417,16 @@ module Google
|
|
399
417
|
end
|
400
418
|
end
|
401
419
|
|
420
|
+
class GoogleCloudDatacatalogV1BigQueryConnectionSpec
|
421
|
+
# @private
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
423
|
+
property :cloud_sql, as: 'cloudSql', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec::Representation
|
424
|
+
|
425
|
+
property :connection_type, as: 'connectionType'
|
426
|
+
property :has_credential, as: 'hasCredential'
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
402
430
|
class GoogleCloudDatacatalogV1BigQueryDateShardedSpec
|
403
431
|
# @private
|
404
432
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -426,6 +454,15 @@ module Google
|
|
426
454
|
end
|
427
455
|
end
|
428
456
|
|
457
|
+
class GoogleCloudDatacatalogV1CloudSqlBigQueryConnectionSpec
|
458
|
+
# @private
|
459
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
460
|
+
property :database, as: 'database'
|
461
|
+
property :instance_id, as: 'instanceId'
|
462
|
+
property :type, as: 'type'
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
429
466
|
class GoogleCloudDatacatalogV1ColumnSchema
|
430
467
|
# @private
|
431
468
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -453,6 +490,14 @@ module Google
|
|
453
490
|
end
|
454
491
|
end
|
455
492
|
|
493
|
+
class GoogleCloudDatacatalogV1DataSourceConnectionSpec
|
494
|
+
# @private
|
495
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
496
|
+
property :bigquery_connection_spec, as: 'bigqueryConnectionSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1BigQueryConnectionSpec::Representation
|
497
|
+
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
456
501
|
class GoogleCloudDatacatalogV1DatabaseTableSpec
|
457
502
|
# @private
|
458
503
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -469,6 +514,8 @@ module Google
|
|
469
514
|
|
470
515
|
property :data_source, as: 'dataSource', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSource::Representation
|
471
516
|
|
517
|
+
property :data_source_connection_spec, as: 'dataSourceConnectionSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataSourceConnectionSpec::Representation
|
518
|
+
|
472
519
|
property :database_table_spec, as: 'databaseTableSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DatabaseTableSpec::Representation
|
473
520
|
|
474
521
|
property :description, as: 'description'
|
@@ -477,6 +524,7 @@ module Google
|
|
477
524
|
property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
|
478
525
|
|
479
526
|
property :integrated_system, as: 'integratedSystem'
|
527
|
+
hash :labels, as: 'labels'
|
480
528
|
property :linked_resource, as: 'linkedResource'
|
481
529
|
property :name, as: 'name'
|
482
530
|
property :routine_spec, as: 'routineSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpec::Representation
|
@@ -708,6 +756,7 @@ module Google
|
|
708
756
|
property :include_gcp_public_datasets, as: 'includeGcpPublicDatasets'
|
709
757
|
collection :include_org_ids, as: 'includeOrgIds'
|
710
758
|
collection :include_project_ids, as: 'includeProjectIds'
|
759
|
+
property :include_public_tag_templates, as: 'includePublicTagTemplates'
|
711
760
|
collection :restricted_locations, as: 'restrictedLocations'
|
712
761
|
end
|
713
762
|
end
|
@@ -795,6 +844,7 @@ module Google
|
|
795
844
|
property :enum_value, as: 'enumValue', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagFieldEnumValue, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagFieldEnumValue::Representation
|
796
845
|
|
797
846
|
property :order, as: 'order'
|
847
|
+
property :richtext_value, as: 'richtextValue'
|
798
848
|
property :string_value, as: 'stringValue'
|
799
849
|
property :timestamp_value, as: 'timestampValue'
|
800
850
|
end
|
@@ -813,6 +863,7 @@ module Google
|
|
813
863
|
property :display_name, as: 'displayName'
|
814
864
|
hash :fields, as: 'fields', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagTemplateField, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagTemplateField::Representation
|
815
865
|
|
866
|
+
property :is_publicly_readable, as: 'isPubliclyReadable'
|
816
867
|
property :name, as: 'name'
|
817
868
|
end
|
818
869
|
end
|
@@ -106,13 +106,13 @@ module Google
|
|
106
106
|
# datasets/`DATASET_ID`/tables/`TABLE_ID`` * `//pubsub.googleapis.com/projects/`
|
107
107
|
# PROJECT_ID`/topics/`TOPIC_ID``
|
108
108
|
# @param [String] sql_resource
|
109
|
-
# The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub
|
110
|
-
# PROJECT_ID`.`TOPIC_ID`` * `pubsub.`PROJECT_ID
|
111
|
-
# * `bigquery.table.`PROJECT_ID`.`DATASET_ID`.`TABLE_ID``
|
112
|
-
# PROJECT_ID`.`DATASET_ID`` * `datacatalog.entry.`
|
113
|
-
# ENTRY_GROUP_ID`.`ENTRY_ID`` Identifiers (`*_ID`)
|
114
|
-
# Lexical structure in Standard SQL] (https://cloud.
|
115
|
-
# reference/standard-sql/lexical).
|
109
|
+
# The SQL name of the entry. SQL names are case-sensitive. Examples: * `pubsub.
|
110
|
+
# topic.`PROJECT_ID`.`TOPIC_ID`` * `pubsub.topic.`PROJECT_ID`.`\```TOPIC.ID.
|
111
|
+
# SEPARATED.WITH.DOTS``\` * `bigquery.table.`PROJECT_ID`.`DATASET_ID`.`TABLE_ID``
|
112
|
+
# * `bigquery.dataset.`PROJECT_ID`.`DATASET_ID`` * `datacatalog.entry.`
|
113
|
+
# PROJECT_ID`.`LOCATION_ID`.`ENTRY_GROUP_ID`.`ENTRY_ID`` Identifiers (`*_ID`)
|
114
|
+
# should comply with the [Lexical structure in Standard SQL] (https://cloud.
|
115
|
+
# google.com/bigquery/docs/reference/standard-sql/lexical).
|
116
116
|
# @param [String] fields
|
117
117
|
# Selector specifying which fields to include in a partial response.
|
118
118
|
# @param [String] quota_user
|
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.6.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: 2021-
|
11
|
+
date: 2021-08-23 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/master/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.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-datacatalog_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|