google-apis-datacatalog_v1 0.12.0 → 0.15.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: 1b82c0aa97feacaca0fae27c918a507fcb05130994b0fcb585ed16b6caf52353
4
- data.tar.gz: f13d32a8c1e07b6880c5bb590d835ed8137b7fcd8bd91746e4d46beb8fc4c61a
3
+ metadata.gz: 52d0b21d51851b998ddd8133f0e0a4a8f6235369703490cbfa7dd1343373a14c
4
+ data.tar.gz: 00b5814a96815baefca176646ec959446f1a4f49f3ac10cff892c34fcb5593ec
5
5
  SHA512:
6
- metadata.gz: 1b7bc44dc55e0b71f0b00fd412b692ca0d94eee91614607a62a713add15429abfc698973cf2926ac6cbf45278ba6a728dd9506aadf91db9658a3bad1ea829d27
7
- data.tar.gz: be3f974fcd0a2dd651cb2eda9333f787c795da5c6b57b665f6e32509d36b77197bda5c9b013746dc286d56edc3431cbfd975f7eeeaa7c244690ebc4537008586
6
+ metadata.gz: e95076e2b32547df01e42fb88e54d80950e399b32b66d6871df26207e68296e2752de8765ec858073d03dfa3a934b348c91ef42fcafccbd73fb4221693eb0425
7
+ data.tar.gz: 06f619ba60958da55d8c56867f1fe9c1648ccf73670a4a815e0a33232402099a9f06f3a2d9f2d025571f54c04890ca48e1f1dc2f48d69a84eb4d4fa3b37e27f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.15.0 (2022-03-03)
4
+
5
+ * Regenerated from discovery document revision 20220224
6
+
7
+ ### v0.14.0 (2022-02-12)
8
+
9
+ * Regenerated from discovery document revision 20220209
10
+
11
+ ### v0.13.0 (2022-02-04)
12
+
13
+ * Regenerated from discovery document revision 20220201
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.12.0 (2022-01-05)
4
17
 
5
18
  * Regenerated from discovery document revision 20211230
@@ -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.
@@ -1557,11 +1884,8 @@ module Google
1557
1884
  # @return [Array<String>]
1558
1885
  attr_accessor :include_project_ids
1559
1886
 
1560
- # Optional. If `true`, include public tag templates in the search results. By
1561
- # default, they are included only if you have explicit permissions on them to
1562
- # view them. For example, if you are the owner. Other scope fields, for example,
1563
- # `include_org_ids`, still restrict the returned public tag templates and at
1564
- # least one of them is required.
1887
+ # Optional. This field is deprecated. The search mechanism for public and
1888
+ # private tag templates is the same.
1565
1889
  # Corresponds to the JSON property `includePublicTagTemplates`
1566
1890
  # @return [Boolean]
1567
1891
  attr_accessor :include_public_tag_templates
@@ -1830,6 +2154,42 @@ module Google
1830
2154
  end
1831
2155
  end
1832
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
+
1833
2193
  # Timestamps associated with this resource in a particular system.
1834
2194
  class GoogleCloudDatacatalogV1SystemTimestamps
1835
2195
  include Google::Apis::Core::Hashable
@@ -2059,22 +2419,10 @@ module Google
2059
2419
  # @return [Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagTemplateField>]
2060
2420
  attr_accessor :fields
2061
2421
 
2062
- # Indicates whether this is a public tag template. Every user has view access to
2063
- # a *public* tag template by default. This means that: * Every user can use this
2064
- # tag template to tag an entry. * If an entry is tagged using the tag template,
2065
- # the tag is always shown in the response to ``ListTags`` called on the entry. *
2066
- # To get the template using the GetTagTemplate method, you need view access
2067
- # either on the project or the organization the tag template resides in but no
2068
- # other permission is needed. * Operations on the tag template other than
2069
- # viewing (for example, editing IAM policies) follow standard IAM structures.
2070
- # Tags created with a public tag template are referred to as public tags. You
2071
- # can search for a public tag by value with a simple search query instead of
2072
- # using a ``tag:`` predicate. Public tag templates may not appear in search
2073
- # results depending on scope, see: include_public_tag_templates Note: If an [IAM
2074
- # domain restriction](https://cloud.google.com/resource-manager/docs/
2075
- # organization-policy/restricting-domains) is configured in the tag template's
2076
- # location, the public access will not be enabled but the simple search for tag
2077
- # values will still work.
2422
+ # Indicates whether tags created with this template are public. Public tags do
2423
+ # not require tag template access to appear in ListTags API response.
2424
+ # Additionally, you can search for a public tag by value with a simple search
2425
+ # query in addition to using a ``tag:`` predicate.
2078
2426
  # Corresponds to the JSON property `isPubliclyReadable`
2079
2427
  # @return [Boolean]
2080
2428
  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.12.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211230"
25
+ REVISION = "20220224"
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
@@ -1367,8 +1367,7 @@ module Google
1367
1367
  # is absent or empty, all modifiable fields are overwritten. If such fields are
1368
1368
  # non-required and omitted in the request body, their values are emptied. Note:
1369
1369
  # Updating the `is_publicly_readable` field may require up to 12 hours to take
1370
- # effect in search results. Additionally, it also requires the `tagTemplates.
1371
- # getIamPolicy` and `tagTemplates.setIamPolicy` permissions.
1370
+ # effect in search results.
1372
1371
  # @param [String] fields
1373
1372
  # Selector specifying which fields to include in a partial response.
1374
1373
  # @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.12.0
4
+ version: 0.15.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.15.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.3.4
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