google-apis-datacatalog_v1 0.13.0 → 0.14.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: 62135932d2e123b4073699be6e2dbac58e1635a25883c66c1057d647171c75fe
4
- data.tar.gz: a9fb72f3e9f8b1eadb77b13229ba9144e2b550d8aace787d834e142f5815cb94
3
+ metadata.gz: 4dbe4ee01686dfe746cd6050991ab1d79e254222128c1aab713944dc061078b2
4
+ data.tar.gz: 1d7271f9a7edc44f1f72f7a4db97580c88b751a9be8b647f99f53ba18bde0f5c
5
5
  SHA512:
6
- metadata.gz: 997b8ba92fb02131d211ec7c413a7247b3c7c81d4dd5c64c41b10b0dd61f841c8282c7bc436f70d32094ac87346c58ec0276b84fa70faa3a90df678140570483
7
- data.tar.gz: f2cfbf0e739c951419361c33491a598c5736f95e57cd6b28ab21c2ca66007fa0924acacef03a5f45723918905c861f66ea1b80c3289849f5d5d81789ae9c590a
6
+ metadata.gz: 1a35e7411e92393a71e8de8a1429ec46b9387e5d26e628ab6d6e986ee747718a62fe35f2620f154b9dbdff82a898091836548cd285668611a9e5d7008ce2b5d0
7
+ data.tar.gz: 1460da6fe807e52c4d65edb67d8fb7bcd45182d2b9c63bc5750b8119693bb71172dfa401508971721ca342a55d8a432688d22e8808b4d2a01763387a1ddd875e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.14.0 (2022-02-12)
4
+
5
+ * Regenerated from discovery document revision 20220209
6
+
3
7
  ### v0.13.0 (2022-02-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20220201
@@ -522,6 +522,16 @@ module Google
522
522
  # @return [String]
523
523
  attr_accessor :service
524
524
 
525
+ # Output only. Data Catalog entry name, if applicable.
526
+ # Corresponds to the JSON property `sourceEntry`
527
+ # @return [String]
528
+ attr_accessor :source_entry
529
+
530
+ # Details the properties of the underlying storage.
531
+ # Corresponds to the JSON property `storageProperties`
532
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StorageProperties]
533
+ attr_accessor :storage_properties
534
+
525
535
  def initialize(**args)
526
536
  update!(**args)
527
537
  end
@@ -530,6 +540,8 @@ module Google
530
540
  def update!(**args)
531
541
  @resource = args[:resource] if args.key?(:resource)
532
542
  @service = args[:service] if args.key?(:service)
543
+ @source_entry = args[:source_entry] if args.key?(:source_entry)
544
+ @storage_properties = args[:storage_properties] if args.key?(:storage_properties)
533
545
  end
534
546
  end
535
547
 
@@ -558,6 +570,11 @@ module Google
558
570
  class GoogleCloudDatacatalogV1DatabaseTableSpec
559
571
  include Google::Apis::Core::Hashable
560
572
 
573
+ # Entry specification for a Dataplex table.
574
+ # Corresponds to the JSON property `dataplexTable`
575
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexTableSpec]
576
+ attr_accessor :dataplex_table
577
+
561
578
  # Type of this table.
562
579
  # Corresponds to the JSON property `type`
563
580
  # @return [String]
@@ -569,10 +586,147 @@ module Google
569
586
 
570
587
  # Update properties of this object
571
588
  def update!(**args)
589
+ @dataplex_table = args[:dataplex_table] if args.key?(:dataplex_table)
572
590
  @type = args[:type] if args.key?(:type)
573
591
  end
574
592
  end
575
593
 
594
+ # External table registered by Dataplex. Dataplex publishes data discovered from
595
+ # an asset into multiple other systems (BigQuery, DPMS) in form of tables. We
596
+ # call them "external tables". External tables are also synced into the Data
597
+ # Catalog. This message contains pointers to those external tables (fully
598
+ # qualified name, resource name et cetera) within the Data Catalog.
599
+ class GoogleCloudDatacatalogV1DataplexExternalTable
600
+ include Google::Apis::Core::Hashable
601
+
602
+ # Name of the Data Catalog entry representing the external table.
603
+ # Corresponds to the JSON property `dataCatalogEntry`
604
+ # @return [String]
605
+ attr_accessor :data_catalog_entry
606
+
607
+ # Fully qualified name (FQN) of the external table.
608
+ # Corresponds to the JSON property `fullyQualifiedName`
609
+ # @return [String]
610
+ attr_accessor :fully_qualified_name
611
+
612
+ # Google Cloud resource name of the external table.
613
+ # Corresponds to the JSON property `googleCloudResource`
614
+ # @return [String]
615
+ attr_accessor :google_cloud_resource
616
+
617
+ # Service in which the external table is registered.
618
+ # Corresponds to the JSON property `system`
619
+ # @return [String]
620
+ attr_accessor :system
621
+
622
+ def initialize(**args)
623
+ update!(**args)
624
+ end
625
+
626
+ # Update properties of this object
627
+ def update!(**args)
628
+ @data_catalog_entry = args[:data_catalog_entry] if args.key?(:data_catalog_entry)
629
+ @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
630
+ @google_cloud_resource = args[:google_cloud_resource] if args.key?(:google_cloud_resource)
631
+ @system = args[:system] if args.key?(:system)
632
+ end
633
+ end
634
+
635
+ # Entry specyfication for a Dataplex fileset.
636
+ class GoogleCloudDatacatalogV1DataplexFilesetSpec
637
+ include Google::Apis::Core::Hashable
638
+
639
+ # Common Dataplex fields.
640
+ # Corresponds to the JSON property `dataplexSpec`
641
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec]
642
+ attr_accessor :dataplex_spec
643
+
644
+ def initialize(**args)
645
+ update!(**args)
646
+ end
647
+
648
+ # Update properties of this object
649
+ def update!(**args)
650
+ @dataplex_spec = args[:dataplex_spec] if args.key?(:dataplex_spec)
651
+ end
652
+ end
653
+
654
+ # Common Dataplex fields.
655
+ class GoogleCloudDatacatalogV1DataplexSpec
656
+ include Google::Apis::Core::Hashable
657
+
658
+ # Fully qualified resource name of an asset in Dataplex, to which the underlying
659
+ # data source (Cloud Storage bucket or BigQuery dataset) of the entity is
660
+ # attached.
661
+ # Corresponds to the JSON property `asset`
662
+ # @return [String]
663
+ attr_accessor :asset
664
+
665
+ # Compression format of the data, e.g., zip, gzip etc.
666
+ # Corresponds to the JSON property `compressionFormat`
667
+ # @return [String]
668
+ attr_accessor :compression_format
669
+
670
+ # Native schema used by a resource represented as an entry. Used by query
671
+ # engines for deserializing and parsing source data.
672
+ # Corresponds to the JSON property `dataFormat`
673
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchema]
674
+ attr_accessor :data_format
675
+
676
+ # Project ID of the underlying Cloud Storage or BigQuery data. Note that this
677
+ # may not be the same project as the correspondingly Dataplex lake / zone /
678
+ # asset.
679
+ # Corresponds to the JSON property `projectId`
680
+ # @return [String]
681
+ attr_accessor :project_id
682
+
683
+ def initialize(**args)
684
+ update!(**args)
685
+ end
686
+
687
+ # Update properties of this object
688
+ def update!(**args)
689
+ @asset = args[:asset] if args.key?(:asset)
690
+ @compression_format = args[:compression_format] if args.key?(:compression_format)
691
+ @data_format = args[:data_format] if args.key?(:data_format)
692
+ @project_id = args[:project_id] if args.key?(:project_id)
693
+ end
694
+ end
695
+
696
+ # Entry specification for a Dataplex table.
697
+ class GoogleCloudDatacatalogV1DataplexTableSpec
698
+ include Google::Apis::Core::Hashable
699
+
700
+ # Common Dataplex fields.
701
+ # Corresponds to the JSON property `dataplexSpec`
702
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec]
703
+ attr_accessor :dataplex_spec
704
+
705
+ # List of external tables registered by Dataplex in other systems based on the
706
+ # same underlying data. External tables allow to query this data in those
707
+ # systems.
708
+ # Corresponds to the JSON property `externalTables`
709
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexExternalTable>]
710
+ attr_accessor :external_tables
711
+
712
+ # Indicates if the table schema is managed by the user or not.
713
+ # Corresponds to the JSON property `userManaged`
714
+ # @return [Boolean]
715
+ attr_accessor :user_managed
716
+ alias_method :user_managed?, :user_managed
717
+
718
+ def initialize(**args)
719
+ update!(**args)
720
+ end
721
+
722
+ # Update properties of this object
723
+ def update!(**args)
724
+ @dataplex_spec = args[:dataplex_spec] if args.key?(:dataplex_spec)
725
+ @external_tables = args[:external_tables] if args.key?(:external_tables)
726
+ @user_managed = args[:user_managed] if args.key?(:user_managed)
727
+ end
728
+ end
729
+
576
730
  # Entry metadata. A Data Catalog entry represents another resource in Google
577
731
  # Cloud Platform (such as a BigQuery dataset or a Pub/Sub topic) or outside of
578
732
  # it. You can use the `linked_resource` field in the entry resource to refer to
@@ -634,6 +788,12 @@ module Google
634
788
  # @return [String]
635
789
  attr_accessor :display_name
636
790
 
791
+ # Specification that applies to a fileset. Valid only for entries with the '
792
+ # FILESET' type.
793
+ # Corresponds to the JSON property `filesetSpec`
794
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec]
795
+ attr_accessor :fileset_spec
796
+
637
797
  # Fully qualified name (FQN) of the resource. Set automatically for entries
638
798
  # representing resources from synced systems. Settable only during creation and
639
799
  # read-only afterwards. Can be used for search and lookup of the entries. FQNs
@@ -755,6 +915,7 @@ module Google
755
915
  @database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
756
916
  @description = args[:description] if args.key?(:description)
757
917
  @display_name = args[:display_name] if args.key?(:display_name)
918
+ @fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
758
919
  @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
759
920
  @gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
760
921
  @integrated_system = args[:integrated_system] if args.key?(:integrated_system)
@@ -926,6 +1087,26 @@ module Google
926
1087
  end
927
1088
  end
928
1089
 
1090
+ # Specification that applies to a fileset. Valid only for entries with the '
1091
+ # FILESET' type.
1092
+ class GoogleCloudDatacatalogV1FilesetSpec
1093
+ include Google::Apis::Core::Hashable
1094
+
1095
+ # Entry specyfication for a Dataplex fileset.
1096
+ # Corresponds to the JSON property `dataplexFileset`
1097
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexFilesetSpec]
1098
+ attr_accessor :dataplex_fileset
1099
+
1100
+ def initialize(**args)
1101
+ update!(**args)
1102
+ end
1103
+
1104
+ # Update properties of this object
1105
+ def update!(**args)
1106
+ @dataplex_fileset = args[:dataplex_fileset] if args.key?(:dataplex_fileset)
1107
+ end
1108
+ end
1109
+
929
1110
  # Specification of a single file in Cloud Storage.
930
1111
  class GoogleCloudDatacatalogV1GcsFileSpec
931
1112
  include Google::Apis::Core::Hashable
@@ -1256,6 +1437,152 @@ module Google
1256
1437
  end
1257
1438
  end
1258
1439
 
1440
+ # Native schema used by a resource represented as an entry. Used by query
1441
+ # engines for deserializing and parsing source data.
1442
+ class GoogleCloudDatacatalogV1PhysicalSchema
1443
+ include Google::Apis::Core::Hashable
1444
+
1445
+ # Schema in Avro JSON format.
1446
+ # Corresponds to the JSON property `avro`
1447
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema]
1448
+ attr_accessor :avro
1449
+
1450
+ # Marks a CSV-encoded data source.
1451
+ # Corresponds to the JSON property `csv`
1452
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema]
1453
+ attr_accessor :csv
1454
+
1455
+ # Marks an ORC-encoded data source.
1456
+ # Corresponds to the JSON property `orc`
1457
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema]
1458
+ attr_accessor :orc
1459
+
1460
+ # Marks a Parquet-encoded data source.
1461
+ # Corresponds to the JSON property `parquet`
1462
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema]
1463
+ attr_accessor :parquet
1464
+
1465
+ # Schema in protocol buffer format.
1466
+ # Corresponds to the JSON property `protobuf`
1467
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema]
1468
+ attr_accessor :protobuf
1469
+
1470
+ # Schema in Thrift format.
1471
+ # Corresponds to the JSON property `thrift`
1472
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema]
1473
+ attr_accessor :thrift
1474
+
1475
+ def initialize(**args)
1476
+ update!(**args)
1477
+ end
1478
+
1479
+ # Update properties of this object
1480
+ def update!(**args)
1481
+ @avro = args[:avro] if args.key?(:avro)
1482
+ @csv = args[:csv] if args.key?(:csv)
1483
+ @orc = args[:orc] if args.key?(:orc)
1484
+ @parquet = args[:parquet] if args.key?(:parquet)
1485
+ @protobuf = args[:protobuf] if args.key?(:protobuf)
1486
+ @thrift = args[:thrift] if args.key?(:thrift)
1487
+ end
1488
+ end
1489
+
1490
+ # Schema in Avro JSON format.
1491
+ class GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema
1492
+ include Google::Apis::Core::Hashable
1493
+
1494
+ # JSON source of the Avro schema.
1495
+ # Corresponds to the JSON property `text`
1496
+ # @return [String]
1497
+ attr_accessor :text
1498
+
1499
+ def initialize(**args)
1500
+ update!(**args)
1501
+ end
1502
+
1503
+ # Update properties of this object
1504
+ def update!(**args)
1505
+ @text = args[:text] if args.key?(:text)
1506
+ end
1507
+ end
1508
+
1509
+ # Marks a CSV-encoded data source.
1510
+ class GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema
1511
+ include Google::Apis::Core::Hashable
1512
+
1513
+ def initialize(**args)
1514
+ update!(**args)
1515
+ end
1516
+
1517
+ # Update properties of this object
1518
+ def update!(**args)
1519
+ end
1520
+ end
1521
+
1522
+ # Marks an ORC-encoded data source.
1523
+ class GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema
1524
+ include Google::Apis::Core::Hashable
1525
+
1526
+ def initialize(**args)
1527
+ update!(**args)
1528
+ end
1529
+
1530
+ # Update properties of this object
1531
+ def update!(**args)
1532
+ end
1533
+ end
1534
+
1535
+ # Marks a Parquet-encoded data source.
1536
+ class GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema
1537
+ include Google::Apis::Core::Hashable
1538
+
1539
+ def initialize(**args)
1540
+ update!(**args)
1541
+ end
1542
+
1543
+ # Update properties of this object
1544
+ def update!(**args)
1545
+ end
1546
+ end
1547
+
1548
+ # Schema in protocol buffer format.
1549
+ class GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema
1550
+ include Google::Apis::Core::Hashable
1551
+
1552
+ # Protocol buffer source of the schema.
1553
+ # Corresponds to the JSON property `text`
1554
+ # @return [String]
1555
+ attr_accessor :text
1556
+
1557
+ def initialize(**args)
1558
+ update!(**args)
1559
+ end
1560
+
1561
+ # Update properties of this object
1562
+ def update!(**args)
1563
+ @text = args[:text] if args.key?(:text)
1564
+ end
1565
+ end
1566
+
1567
+ # Schema in Thrift format.
1568
+ class GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema
1569
+ include Google::Apis::Core::Hashable
1570
+
1571
+ # Thrift IDL source of the schema.
1572
+ # Corresponds to the JSON property `text`
1573
+ # @return [String]
1574
+ attr_accessor :text
1575
+
1576
+ def initialize(**args)
1577
+ update!(**args)
1578
+ end
1579
+
1580
+ # Update properties of this object
1581
+ def update!(**args)
1582
+ @text = args[:text] if args.key?(:text)
1583
+ end
1584
+ end
1585
+
1259
1586
  # Denotes one policy tag in a taxonomy, for example, SSN. Policy tags can be
1260
1587
  # defined in a hierarchy. For example: ``` + Geolocation + LatLong + City +
1261
1588
  # ZipCode ``` Where the "Geolocation" policy tag contains three children.
@@ -1827,6 +2154,42 @@ module Google
1827
2154
  end
1828
2155
  end
1829
2156
 
2157
+ # Details the properties of the underlying storage.
2158
+ class GoogleCloudDatacatalogV1StorageProperties
2159
+ include Google::Apis::Core::Hashable
2160
+
2161
+ # Patterns to identify a set of files for this fileset. Examples of a valid `
2162
+ # file_pattern`: * `gs://bucket_name/dir/*`: matches all files in the `
2163
+ # bucket_name/dir` directory * `gs://bucket_name/dir/**`: matches all files in
2164
+ # the `bucket_name/dir` and all subdirectories recursively * `gs://bucket_name/
2165
+ # file*`: matches files prefixed by `file` in `bucket_name` * `gs://bucket_name/?
2166
+ # ?.txt`: matches files with two characters followed by `.txt` in `bucket_name` *
2167
+ # `gs://bucket_name/[aeiou].txt`: matches files that contain a single vowel
2168
+ # character followed by `.txt` in `bucket_name` * `gs://bucket_name/[a-m].txt`:
2169
+ # matches files that contain `a`, `b`, ... or `m` followed by `.txt` in `
2170
+ # bucket_name` * `gs://bucket_name/a/*/b`: matches all files in `bucket_name`
2171
+ # that match the `a/*/b` pattern, such as `a/c/b`, `a/d/b` * `gs://
2172
+ # another_bucket/a.txt`: matches `gs://another_bucket/a.txt`
2173
+ # Corresponds to the JSON property `filePattern`
2174
+ # @return [Array<String>]
2175
+ attr_accessor :file_pattern
2176
+
2177
+ # File type in MIME format, for example, `text/plain`.
2178
+ # Corresponds to the JSON property `fileType`
2179
+ # @return [String]
2180
+ attr_accessor :file_type
2181
+
2182
+ def initialize(**args)
2183
+ update!(**args)
2184
+ end
2185
+
2186
+ # Update properties of this object
2187
+ def update!(**args)
2188
+ @file_pattern = args[:file_pattern] if args.key?(:file_pattern)
2189
+ @file_type = args[:file_type] if args.key?(:file_type)
2190
+ end
2191
+ end
2192
+
1830
2193
  # Timestamps associated with this resource in a particular system.
1831
2194
  class GoogleCloudDatacatalogV1SystemTimestamps
1832
2195
  include Google::Apis::Core::Hashable
@@ -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.13.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220201"
25
+ REVISION = "20220209"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,30 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class GoogleCloudDatacatalogV1DataplexExternalTable
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
139
+ class GoogleCloudDatacatalogV1DataplexFilesetSpec
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
145
+ class GoogleCloudDatacatalogV1DataplexSpec
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
151
+ class GoogleCloudDatacatalogV1DataplexTableSpec
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
133
157
  class GoogleCloudDatacatalogV1Entry
134
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
159
 
@@ -172,6 +196,12 @@ module Google
172
196
  include Google::Apis::Core::JsonObjectSupport
173
197
  end
174
198
 
199
+ class GoogleCloudDatacatalogV1FilesetSpec
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
175
205
  class GoogleCloudDatacatalogV1GcsFileSpec
176
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
207
 
@@ -250,6 +280,48 @@ module Google
250
280
  include Google::Apis::Core::JsonObjectSupport
251
281
  end
252
282
 
283
+ class GoogleCloudDatacatalogV1PhysicalSchema
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
295
+ class GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
301
+ class GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
313
+ class GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
319
+ class GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
253
325
  class GoogleCloudDatacatalogV1PolicyTag
254
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
327
 
@@ -340,6 +412,12 @@ module Google
340
412
  include Google::Apis::Core::JsonObjectSupport
341
413
  end
342
414
 
415
+ class GoogleCloudDatacatalogV1StorageProperties
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
343
421
  class GoogleCloudDatacatalogV1SystemTimestamps
344
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
423
 
@@ -580,6 +658,9 @@ module Google
580
658
  class Representation < Google::Apis::Core::JsonRepresentation
581
659
  property :resource, as: 'resource'
582
660
  property :service, as: 'service'
661
+ property :source_entry, as: 'sourceEntry'
662
+ property :storage_properties, as: 'storageProperties', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StorageProperties, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StorageProperties::Representation
663
+
583
664
  end
584
665
  end
585
666
 
@@ -594,10 +675,52 @@ module Google
594
675
  class GoogleCloudDatacatalogV1DatabaseTableSpec
595
676
  # @private
596
677
  class Representation < Google::Apis::Core::JsonRepresentation
678
+ property :dataplex_table, as: 'dataplexTable', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexTableSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexTableSpec::Representation
679
+
597
680
  property :type, as: 'type'
598
681
  end
599
682
  end
600
683
 
684
+ class GoogleCloudDatacatalogV1DataplexExternalTable
685
+ # @private
686
+ class Representation < Google::Apis::Core::JsonRepresentation
687
+ property :data_catalog_entry, as: 'dataCatalogEntry'
688
+ property :fully_qualified_name, as: 'fullyQualifiedName'
689
+ property :google_cloud_resource, as: 'googleCloudResource'
690
+ property :system, as: 'system'
691
+ end
692
+ end
693
+
694
+ class GoogleCloudDatacatalogV1DataplexFilesetSpec
695
+ # @private
696
+ class Representation < Google::Apis::Core::JsonRepresentation
697
+ property :dataplex_spec, as: 'dataplexSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec::Representation
698
+
699
+ end
700
+ end
701
+
702
+ class GoogleCloudDatacatalogV1DataplexSpec
703
+ # @private
704
+ class Representation < Google::Apis::Core::JsonRepresentation
705
+ property :asset, as: 'asset'
706
+ property :compression_format, as: 'compressionFormat'
707
+ property :data_format, as: 'dataFormat', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchema::Representation
708
+
709
+ property :project_id, as: 'projectId'
710
+ end
711
+ end
712
+
713
+ class GoogleCloudDatacatalogV1DataplexTableSpec
714
+ # @private
715
+ class Representation < Google::Apis::Core::JsonRepresentation
716
+ property :dataplex_spec, as: 'dataplexSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec::Representation
717
+
718
+ collection :external_tables, as: 'externalTables', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexExternalTable, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexExternalTable::Representation
719
+
720
+ property :user_managed, as: 'userManaged'
721
+ end
722
+ end
723
+
601
724
  class GoogleCloudDatacatalogV1Entry
602
725
  # @private
603
726
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -615,6 +738,8 @@ module Google
615
738
 
616
739
  property :description, as: 'description'
617
740
  property :display_name, as: 'displayName'
741
+ property :fileset_spec, as: 'filesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec::Representation
742
+
618
743
  property :fully_qualified_name, as: 'fullyQualifiedName'
619
744
  property :gcs_fileset_spec, as: 'gcsFilesetSpec', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1GcsFilesetSpec::Representation
620
745
 
@@ -688,6 +813,14 @@ module Google
688
813
  end
689
814
  end
690
815
 
816
+ class GoogleCloudDatacatalogV1FilesetSpec
817
+ # @private
818
+ class Representation < Google::Apis::Core::JsonRepresentation
819
+ property :dataplex_fileset, as: 'dataplexFileset', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexFilesetSpec, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexFilesetSpec::Representation
820
+
821
+ end
822
+ end
823
+
691
824
  class GoogleCloudDatacatalogV1GcsFileSpec
692
825
  # @private
693
826
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -802,6 +935,63 @@ module Google
802
935
  end
803
936
  end
804
937
 
938
+ class GoogleCloudDatacatalogV1PhysicalSchema
939
+ # @private
940
+ class Representation < Google::Apis::Core::JsonRepresentation
941
+ property :avro, as: 'avro', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema::Representation
942
+
943
+ property :csv, as: 'csv', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema::Representation
944
+
945
+ property :orc, as: 'orc', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema::Representation
946
+
947
+ property :parquet, as: 'parquet', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema::Representation
948
+
949
+ property :protobuf, as: 'protobuf', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema::Representation
950
+
951
+ property :thrift, as: 'thrift', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema::Representation
952
+
953
+ end
954
+ end
955
+
956
+ class GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema
957
+ # @private
958
+ class Representation < Google::Apis::Core::JsonRepresentation
959
+ property :text, as: 'text'
960
+ end
961
+ end
962
+
963
+ class GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema
964
+ # @private
965
+ class Representation < Google::Apis::Core::JsonRepresentation
966
+ end
967
+ end
968
+
969
+ class GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema
970
+ # @private
971
+ class Representation < Google::Apis::Core::JsonRepresentation
972
+ end
973
+ end
974
+
975
+ class GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema
976
+ # @private
977
+ class Representation < Google::Apis::Core::JsonRepresentation
978
+ end
979
+ end
980
+
981
+ class GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema
982
+ # @private
983
+ class Representation < Google::Apis::Core::JsonRepresentation
984
+ property :text, as: 'text'
985
+ end
986
+ end
987
+
988
+ class GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema
989
+ # @private
990
+ class Representation < Google::Apis::Core::JsonRepresentation
991
+ property :text, as: 'text'
992
+ end
993
+ end
994
+
805
995
  class GoogleCloudDatacatalogV1PolicyTag
806
996
  # @private
807
997
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -950,6 +1140,14 @@ module Google
950
1140
  end
951
1141
  end
952
1142
 
1143
+ class GoogleCloudDatacatalogV1StorageProperties
1144
+ # @private
1145
+ class Representation < Google::Apis::Core::JsonRepresentation
1146
+ collection :file_pattern, as: 'filePattern'
1147
+ property :file_type, as: 'fileType'
1148
+ end
1149
+ end
1150
+
953
1151
  class GoogleCloudDatacatalogV1SystemTimestamps
954
1152
  # @private
955
1153
  class Representation < Google::Apis::Core::JsonRepresentation
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.13.0
4
+ version: 0.14.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: 2022-02-07 00:00:00.000000000 Z
11
+ date: 2022-02-14 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.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.14.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: []