google-apis-datacatalog_v1 0.13.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62135932d2e123b4073699be6e2dbac58e1635a25883c66c1057d647171c75fe
4
- data.tar.gz: a9fb72f3e9f8b1eadb77b13229ba9144e2b550d8aace787d834e142f5815cb94
3
+ metadata.gz: b24b070b2d6f33c19c7f72dd651cade26c0f33f99c6975ff0fd6d18b46760d5c
4
+ data.tar.gz: 2aab1d6310bef4c31281402cfd12c522d86123083abc18bf4a4f58fd226f819a
5
5
  SHA512:
6
- metadata.gz: 997b8ba92fb02131d211ec7c413a7247b3c7c81d4dd5c64c41b10b0dd61f841c8282c7bc436f70d32094ac87346c58ec0276b84fa70faa3a90df678140570483
7
- data.tar.gz: f2cfbf0e739c951419361c33491a598c5736f95e57cd6b28ab21c2ca66007fa0924acacef03a5f45723918905c861f66ea1b80c3289849f5d5d81789ae9c590a
6
+ metadata.gz: 0dbe29ff3ee9934ef1cc640d973cce2fe3479c8cd8539aa8053ee6fb954130af6e716d23c230fe29f8433786ed227df2886268a758d1569e494fa38f51fe837f
7
+ data.tar.gz: 021dc2b877c1f80db751e358fce7a28a6969c9566e3172d943d75ad02fffd08a5f6b4ea9f42fcf00286ad413f516ffb2b780cd9ffc2f05fd0454d2864642e78d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.16.0 (2022-03-25)
4
+
5
+ * Regenerated from discovery document revision 20220321
6
+
7
+ ### v0.15.0 (2022-03-03)
8
+
9
+ * Regenerated from discovery document revision 20220224
10
+
11
+ ### v0.14.0 (2022-02-12)
12
+
13
+ * Regenerated from discovery document revision 20220209
14
+
3
15
  ### v0.13.0 (2022-02-04)
4
16
 
5
17
  * Regenerated from discovery document revision 20220201
@@ -96,8 +96,7 @@ module Google
96
96
  # A generic empty message that you can re-use to avoid defining duplicated empty
97
97
  # messages in your APIs. A typical example is to use it as the request or the
98
98
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
99
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
100
- # `Empty` is empty JSON object ````.
99
+ # protobuf.Empty) returns (google.protobuf.Empty); `
101
100
  class Empty
102
101
  include Google::Apis::Core::Hashable
103
102
 
@@ -522,6 +521,16 @@ module Google
522
521
  # @return [String]
523
522
  attr_accessor :service
524
523
 
524
+ # Output only. Data Catalog entry name, if applicable.
525
+ # Corresponds to the JSON property `sourceEntry`
526
+ # @return [String]
527
+ attr_accessor :source_entry
528
+
529
+ # Details the properties of the underlying storage.
530
+ # Corresponds to the JSON property `storageProperties`
531
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1StorageProperties]
532
+ attr_accessor :storage_properties
533
+
525
534
  def initialize(**args)
526
535
  update!(**args)
527
536
  end
@@ -530,6 +539,8 @@ module Google
530
539
  def update!(**args)
531
540
  @resource = args[:resource] if args.key?(:resource)
532
541
  @service = args[:service] if args.key?(:service)
542
+ @source_entry = args[:source_entry] if args.key?(:source_entry)
543
+ @storage_properties = args[:storage_properties] if args.key?(:storage_properties)
533
544
  end
534
545
  end
535
546
 
@@ -558,6 +569,11 @@ module Google
558
569
  class GoogleCloudDatacatalogV1DatabaseTableSpec
559
570
  include Google::Apis::Core::Hashable
560
571
 
572
+ # Entry specification for a Dataplex table.
573
+ # Corresponds to the JSON property `dataplexTable`
574
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexTableSpec]
575
+ attr_accessor :dataplex_table
576
+
561
577
  # Type of this table.
562
578
  # Corresponds to the JSON property `type`
563
579
  # @return [String]
@@ -569,10 +585,147 @@ module Google
569
585
 
570
586
  # Update properties of this object
571
587
  def update!(**args)
588
+ @dataplex_table = args[:dataplex_table] if args.key?(:dataplex_table)
572
589
  @type = args[:type] if args.key?(:type)
573
590
  end
574
591
  end
575
592
 
593
+ # External table registered by Dataplex. Dataplex publishes data discovered from
594
+ # an asset into multiple other systems (BigQuery, DPMS) in form of tables. We
595
+ # call them "external tables". External tables are also synced into the Data
596
+ # Catalog. This message contains pointers to those external tables (fully
597
+ # qualified name, resource name et cetera) within the Data Catalog.
598
+ class GoogleCloudDatacatalogV1DataplexExternalTable
599
+ include Google::Apis::Core::Hashable
600
+
601
+ # Name of the Data Catalog entry representing the external table.
602
+ # Corresponds to the JSON property `dataCatalogEntry`
603
+ # @return [String]
604
+ attr_accessor :data_catalog_entry
605
+
606
+ # Fully qualified name (FQN) of the external table.
607
+ # Corresponds to the JSON property `fullyQualifiedName`
608
+ # @return [String]
609
+ attr_accessor :fully_qualified_name
610
+
611
+ # Google Cloud resource name of the external table.
612
+ # Corresponds to the JSON property `googleCloudResource`
613
+ # @return [String]
614
+ attr_accessor :google_cloud_resource
615
+
616
+ # Service in which the external table is registered.
617
+ # Corresponds to the JSON property `system`
618
+ # @return [String]
619
+ attr_accessor :system
620
+
621
+ def initialize(**args)
622
+ update!(**args)
623
+ end
624
+
625
+ # Update properties of this object
626
+ def update!(**args)
627
+ @data_catalog_entry = args[:data_catalog_entry] if args.key?(:data_catalog_entry)
628
+ @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
629
+ @google_cloud_resource = args[:google_cloud_resource] if args.key?(:google_cloud_resource)
630
+ @system = args[:system] if args.key?(:system)
631
+ end
632
+ end
633
+
634
+ # Entry specyfication for a Dataplex fileset.
635
+ class GoogleCloudDatacatalogV1DataplexFilesetSpec
636
+ include Google::Apis::Core::Hashable
637
+
638
+ # Common Dataplex fields.
639
+ # Corresponds to the JSON property `dataplexSpec`
640
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec]
641
+ attr_accessor :dataplex_spec
642
+
643
+ def initialize(**args)
644
+ update!(**args)
645
+ end
646
+
647
+ # Update properties of this object
648
+ def update!(**args)
649
+ @dataplex_spec = args[:dataplex_spec] if args.key?(:dataplex_spec)
650
+ end
651
+ end
652
+
653
+ # Common Dataplex fields.
654
+ class GoogleCloudDatacatalogV1DataplexSpec
655
+ include Google::Apis::Core::Hashable
656
+
657
+ # Fully qualified resource name of an asset in Dataplex, to which the underlying
658
+ # data source (Cloud Storage bucket or BigQuery dataset) of the entity is
659
+ # attached.
660
+ # Corresponds to the JSON property `asset`
661
+ # @return [String]
662
+ attr_accessor :asset
663
+
664
+ # Compression format of the data, e.g., zip, gzip etc.
665
+ # Corresponds to the JSON property `compressionFormat`
666
+ # @return [String]
667
+ attr_accessor :compression_format
668
+
669
+ # Native schema used by a resource represented as an entry. Used by query
670
+ # engines for deserializing and parsing source data.
671
+ # Corresponds to the JSON property `dataFormat`
672
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchema]
673
+ attr_accessor :data_format
674
+
675
+ # Project ID of the underlying Cloud Storage or BigQuery data. Note that this
676
+ # may not be the same project as the correspondingly Dataplex lake / zone /
677
+ # asset.
678
+ # Corresponds to the JSON property `projectId`
679
+ # @return [String]
680
+ attr_accessor :project_id
681
+
682
+ def initialize(**args)
683
+ update!(**args)
684
+ end
685
+
686
+ # Update properties of this object
687
+ def update!(**args)
688
+ @asset = args[:asset] if args.key?(:asset)
689
+ @compression_format = args[:compression_format] if args.key?(:compression_format)
690
+ @data_format = args[:data_format] if args.key?(:data_format)
691
+ @project_id = args[:project_id] if args.key?(:project_id)
692
+ end
693
+ end
694
+
695
+ # Entry specification for a Dataplex table.
696
+ class GoogleCloudDatacatalogV1DataplexTableSpec
697
+ include Google::Apis::Core::Hashable
698
+
699
+ # Common Dataplex fields.
700
+ # Corresponds to the JSON property `dataplexSpec`
701
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexSpec]
702
+ attr_accessor :dataplex_spec
703
+
704
+ # List of external tables registered by Dataplex in other systems based on the
705
+ # same underlying data. External tables allow to query this data in those
706
+ # systems.
707
+ # Corresponds to the JSON property `externalTables`
708
+ # @return [Array<Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexExternalTable>]
709
+ attr_accessor :external_tables
710
+
711
+ # Indicates if the table schema is managed by the user or not.
712
+ # Corresponds to the JSON property `userManaged`
713
+ # @return [Boolean]
714
+ attr_accessor :user_managed
715
+ alias_method :user_managed?, :user_managed
716
+
717
+ def initialize(**args)
718
+ update!(**args)
719
+ end
720
+
721
+ # Update properties of this object
722
+ def update!(**args)
723
+ @dataplex_spec = args[:dataplex_spec] if args.key?(:dataplex_spec)
724
+ @external_tables = args[:external_tables] if args.key?(:external_tables)
725
+ @user_managed = args[:user_managed] if args.key?(:user_managed)
726
+ end
727
+ end
728
+
576
729
  # Entry metadata. A Data Catalog entry represents another resource in Google
577
730
  # Cloud Platform (such as a BigQuery dataset or a Pub/Sub topic) or outside of
578
731
  # it. You can use the `linked_resource` field in the entry resource to refer to
@@ -634,6 +787,12 @@ module Google
634
787
  # @return [String]
635
788
  attr_accessor :display_name
636
789
 
790
+ # Specification that applies to a fileset. Valid only for entries with the '
791
+ # FILESET' type.
792
+ # Corresponds to the JSON property `filesetSpec`
793
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1FilesetSpec]
794
+ attr_accessor :fileset_spec
795
+
637
796
  # Fully qualified name (FQN) of the resource. Set automatically for entries
638
797
  # representing resources from synced systems. Settable only during creation and
639
798
  # read-only afterwards. Can be used for search and lookup of the entries. FQNs
@@ -755,6 +914,7 @@ module Google
755
914
  @database_table_spec = args[:database_table_spec] if args.key?(:database_table_spec)
756
915
  @description = args[:description] if args.key?(:description)
757
916
  @display_name = args[:display_name] if args.key?(:display_name)
917
+ @fileset_spec = args[:fileset_spec] if args.key?(:fileset_spec)
758
918
  @fully_qualified_name = args[:fully_qualified_name] if args.key?(:fully_qualified_name)
759
919
  @gcs_fileset_spec = args[:gcs_fileset_spec] if args.key?(:gcs_fileset_spec)
760
920
  @integrated_system = args[:integrated_system] if args.key?(:integrated_system)
@@ -926,6 +1086,26 @@ module Google
926
1086
  end
927
1087
  end
928
1088
 
1089
+ # Specification that applies to a fileset. Valid only for entries with the '
1090
+ # FILESET' type.
1091
+ class GoogleCloudDatacatalogV1FilesetSpec
1092
+ include Google::Apis::Core::Hashable
1093
+
1094
+ # Entry specyfication for a Dataplex fileset.
1095
+ # Corresponds to the JSON property `dataplexFileset`
1096
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1DataplexFilesetSpec]
1097
+ attr_accessor :dataplex_fileset
1098
+
1099
+ def initialize(**args)
1100
+ update!(**args)
1101
+ end
1102
+
1103
+ # Update properties of this object
1104
+ def update!(**args)
1105
+ @dataplex_fileset = args[:dataplex_fileset] if args.key?(:dataplex_fileset)
1106
+ end
1107
+ end
1108
+
929
1109
  # Specification of a single file in Cloud Storage.
930
1110
  class GoogleCloudDatacatalogV1GcsFileSpec
931
1111
  include Google::Apis::Core::Hashable
@@ -1256,6 +1436,152 @@ module Google
1256
1436
  end
1257
1437
  end
1258
1438
 
1439
+ # Native schema used by a resource represented as an entry. Used by query
1440
+ # engines for deserializing and parsing source data.
1441
+ class GoogleCloudDatacatalogV1PhysicalSchema
1442
+ include Google::Apis::Core::Hashable
1443
+
1444
+ # Schema in Avro JSON format.
1445
+ # Corresponds to the JSON property `avro`
1446
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema]
1447
+ attr_accessor :avro
1448
+
1449
+ # Marks a CSV-encoded data source.
1450
+ # Corresponds to the JSON property `csv`
1451
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema]
1452
+ attr_accessor :csv
1453
+
1454
+ # Marks an ORC-encoded data source.
1455
+ # Corresponds to the JSON property `orc`
1456
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema]
1457
+ attr_accessor :orc
1458
+
1459
+ # Marks a Parquet-encoded data source.
1460
+ # Corresponds to the JSON property `parquet`
1461
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema]
1462
+ attr_accessor :parquet
1463
+
1464
+ # Schema in protocol buffer format.
1465
+ # Corresponds to the JSON property `protobuf`
1466
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema]
1467
+ attr_accessor :protobuf
1468
+
1469
+ # Schema in Thrift format.
1470
+ # Corresponds to the JSON property `thrift`
1471
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema]
1472
+ attr_accessor :thrift
1473
+
1474
+ def initialize(**args)
1475
+ update!(**args)
1476
+ end
1477
+
1478
+ # Update properties of this object
1479
+ def update!(**args)
1480
+ @avro = args[:avro] if args.key?(:avro)
1481
+ @csv = args[:csv] if args.key?(:csv)
1482
+ @orc = args[:orc] if args.key?(:orc)
1483
+ @parquet = args[:parquet] if args.key?(:parquet)
1484
+ @protobuf = args[:protobuf] if args.key?(:protobuf)
1485
+ @thrift = args[:thrift] if args.key?(:thrift)
1486
+ end
1487
+ end
1488
+
1489
+ # Schema in Avro JSON format.
1490
+ class GoogleCloudDatacatalogV1PhysicalSchemaAvroSchema
1491
+ include Google::Apis::Core::Hashable
1492
+
1493
+ # JSON source of the Avro schema.
1494
+ # Corresponds to the JSON property `text`
1495
+ # @return [String]
1496
+ attr_accessor :text
1497
+
1498
+ def initialize(**args)
1499
+ update!(**args)
1500
+ end
1501
+
1502
+ # Update properties of this object
1503
+ def update!(**args)
1504
+ @text = args[:text] if args.key?(:text)
1505
+ end
1506
+ end
1507
+
1508
+ # Marks a CSV-encoded data source.
1509
+ class GoogleCloudDatacatalogV1PhysicalSchemaCsvSchema
1510
+ include Google::Apis::Core::Hashable
1511
+
1512
+ def initialize(**args)
1513
+ update!(**args)
1514
+ end
1515
+
1516
+ # Update properties of this object
1517
+ def update!(**args)
1518
+ end
1519
+ end
1520
+
1521
+ # Marks an ORC-encoded data source.
1522
+ class GoogleCloudDatacatalogV1PhysicalSchemaOrcSchema
1523
+ include Google::Apis::Core::Hashable
1524
+
1525
+ def initialize(**args)
1526
+ update!(**args)
1527
+ end
1528
+
1529
+ # Update properties of this object
1530
+ def update!(**args)
1531
+ end
1532
+ end
1533
+
1534
+ # Marks a Parquet-encoded data source.
1535
+ class GoogleCloudDatacatalogV1PhysicalSchemaParquetSchema
1536
+ include Google::Apis::Core::Hashable
1537
+
1538
+ def initialize(**args)
1539
+ update!(**args)
1540
+ end
1541
+
1542
+ # Update properties of this object
1543
+ def update!(**args)
1544
+ end
1545
+ end
1546
+
1547
+ # Schema in protocol buffer format.
1548
+ class GoogleCloudDatacatalogV1PhysicalSchemaProtobufSchema
1549
+ include Google::Apis::Core::Hashable
1550
+
1551
+ # Protocol buffer source of the schema.
1552
+ # Corresponds to the JSON property `text`
1553
+ # @return [String]
1554
+ attr_accessor :text
1555
+
1556
+ def initialize(**args)
1557
+ update!(**args)
1558
+ end
1559
+
1560
+ # Update properties of this object
1561
+ def update!(**args)
1562
+ @text = args[:text] if args.key?(:text)
1563
+ end
1564
+ end
1565
+
1566
+ # Schema in Thrift format.
1567
+ class GoogleCloudDatacatalogV1PhysicalSchemaThriftSchema
1568
+ include Google::Apis::Core::Hashable
1569
+
1570
+ # Thrift IDL source of the schema.
1571
+ # Corresponds to the JSON property `text`
1572
+ # @return [String]
1573
+ attr_accessor :text
1574
+
1575
+ def initialize(**args)
1576
+ update!(**args)
1577
+ end
1578
+
1579
+ # Update properties of this object
1580
+ def update!(**args)
1581
+ @text = args[:text] if args.key?(:text)
1582
+ end
1583
+ end
1584
+
1259
1585
  # Denotes one policy tag in a taxonomy, for example, SSN. Policy tags can be
1260
1586
  # defined in a hierarchy. For example: ``` + Geolocation + LatLong + City +
1261
1587
  # ZipCode ``` Where the "Geolocation" policy tag contains three children.
@@ -1827,6 +2153,42 @@ module Google
1827
2153
  end
1828
2154
  end
1829
2155
 
2156
+ # Details the properties of the underlying storage.
2157
+ class GoogleCloudDatacatalogV1StorageProperties
2158
+ include Google::Apis::Core::Hashable
2159
+
2160
+ # Patterns to identify a set of files for this fileset. Examples of a valid `
2161
+ # file_pattern`: * `gs://bucket_name/dir/*`: matches all files in the `
2162
+ # bucket_name/dir` directory * `gs://bucket_name/dir/**`: matches all files in
2163
+ # the `bucket_name/dir` and all subdirectories recursively * `gs://bucket_name/
2164
+ # file*`: matches files prefixed by `file` in `bucket_name` * `gs://bucket_name/?
2165
+ # ?.txt`: matches files with two characters followed by `.txt` in `bucket_name` *
2166
+ # `gs://bucket_name/[aeiou].txt`: matches files that contain a single vowel
2167
+ # character followed by `.txt` in `bucket_name` * `gs://bucket_name/[a-m].txt`:
2168
+ # matches files that contain `a`, `b`, ... or `m` followed by `.txt` in `
2169
+ # bucket_name` * `gs://bucket_name/a/*/b`: matches all files in `bucket_name`
2170
+ # that match the `a/*/b` pattern, such as `a/c/b`, `a/d/b` * `gs://
2171
+ # another_bucket/a.txt`: matches `gs://another_bucket/a.txt`
2172
+ # Corresponds to the JSON property `filePattern`
2173
+ # @return [Array<String>]
2174
+ attr_accessor :file_pattern
2175
+
2176
+ # File type in MIME format, for example, `text/plain`.
2177
+ # Corresponds to the JSON property `fileType`
2178
+ # @return [String]
2179
+ attr_accessor :file_type
2180
+
2181
+ def initialize(**args)
2182
+ update!(**args)
2183
+ end
2184
+
2185
+ # Update properties of this object
2186
+ def update!(**args)
2187
+ @file_pattern = args[:file_pattern] if args.key?(:file_pattern)
2188
+ @file_type = args[:file_type] if args.key?(:file_type)
2189
+ end
2190
+ end
2191
+
1830
2192
  # Timestamps associated with this resource in a particular system.
1831
2193
  class GoogleCloudDatacatalogV1SystemTimestamps
1832
2194
  include Google::Apis::Core::Hashable
@@ -2059,7 +2421,7 @@ module Google
2059
2421
  # Indicates whether tags created with this template are public. Public tags do
2060
2422
  # not require tag template access to appear in ListTags API response.
2061
2423
  # Additionally, you can search for a public tag by value with a simple search
2062
- # query instead of using a ``tag:`` predicate.
2424
+ # query in addition to using a ``tag:`` predicate.
2063
2425
  # Corresponds to the JSON property `isPubliclyReadable`
2064
2426
  # @return [Boolean]
2065
2427
  attr_accessor :is_publicly_readable
@@ -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.16.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 = "20220321"
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.16.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-03-28 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.16.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: []