google-apis-dataplex_v1 0.65.0 → 0.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/dataplex_v1/classes.rb +240 -1
- data/lib/google/apis/dataplex_v1/gem_version.rb +2 -2
- data/lib/google/apis/dataplex_v1/representations.rb +114 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c616b1b93ee88308de604ce6481a50d3a76ee258bcdb955d9262a95d2369eb27
|
4
|
+
data.tar.gz: 3f566b8efc7edd32c4992dcb52adf0ecf306308a790bfabe1b124889321fec81
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d4a573813f8f328668617753b5967dda2d5d2a74af0f6cb3ee51c9b5efa4148ede2590c9dd2e66968536080449a9b31eebdb8ff0a8dd655b50883689148e92
|
7
|
+
data.tar.gz: dd022b25b676c0da69e735cfdcf33a6072dbda04cbaacbb56af5dadad21273d1c96138549f919e3b65244690f2075e8bfd7514b6fcaa5c3743605925838a336c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.67.0 (2024-11-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241027
|
6
|
+
|
7
|
+
### v0.66.0 (2024-11-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241019
|
10
|
+
|
3
11
|
### v0.65.0 (2024-10-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241001
|
@@ -1561,6 +1561,221 @@ module Google
|
|
1561
1561
|
end
|
1562
1562
|
end
|
1563
1563
|
|
1564
|
+
# The output of a data discovery scan.
|
1565
|
+
class GoogleCloudDataplexV1DataDiscoveryResult
|
1566
|
+
include Google::Apis::Core::Hashable
|
1567
|
+
|
1568
|
+
# Describes BigQuery publishing configurations.
|
1569
|
+
# Corresponds to the JSON property `bigqueryPublishing`
|
1570
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing]
|
1571
|
+
attr_accessor :bigquery_publishing
|
1572
|
+
|
1573
|
+
def initialize(**args)
|
1574
|
+
update!(**args)
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
# Update properties of this object
|
1578
|
+
def update!(**args)
|
1579
|
+
@bigquery_publishing = args[:bigquery_publishing] if args.key?(:bigquery_publishing)
|
1580
|
+
end
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
# Describes BigQuery publishing configurations.
|
1584
|
+
class GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
|
1585
|
+
include Google::Apis::Core::Hashable
|
1586
|
+
|
1587
|
+
# Output only. The BigQuery dataset to publish to. It takes the form projects/`
|
1588
|
+
# project_id`/datasets/`dataset_id`. If not set, the service creates a default
|
1589
|
+
# publishing dataset.
|
1590
|
+
# Corresponds to the JSON property `dataset`
|
1591
|
+
# @return [String]
|
1592
|
+
attr_accessor :dataset
|
1593
|
+
|
1594
|
+
def initialize(**args)
|
1595
|
+
update!(**args)
|
1596
|
+
end
|
1597
|
+
|
1598
|
+
# Update properties of this object
|
1599
|
+
def update!(**args)
|
1600
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
1601
|
+
end
|
1602
|
+
end
|
1603
|
+
|
1604
|
+
# Spec for a data discovery scan.
|
1605
|
+
class GoogleCloudDataplexV1DataDiscoverySpec
|
1606
|
+
include Google::Apis::Core::Hashable
|
1607
|
+
|
1608
|
+
# Describes BigQuery publishing configurations.
|
1609
|
+
# Corresponds to the JSON property `bigqueryPublishingConfig`
|
1610
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig]
|
1611
|
+
attr_accessor :bigquery_publishing_config
|
1612
|
+
|
1613
|
+
# Configurations related to Cloud Storage as the data source.
|
1614
|
+
# Corresponds to the JSON property `storageConfig`
|
1615
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfig]
|
1616
|
+
attr_accessor :storage_config
|
1617
|
+
|
1618
|
+
def initialize(**args)
|
1619
|
+
update!(**args)
|
1620
|
+
end
|
1621
|
+
|
1622
|
+
# Update properties of this object
|
1623
|
+
def update!(**args)
|
1624
|
+
@bigquery_publishing_config = args[:bigquery_publishing_config] if args.key?(:bigquery_publishing_config)
|
1625
|
+
@storage_config = args[:storage_config] if args.key?(:storage_config)
|
1626
|
+
end
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
# Describes BigQuery publishing configurations.
|
1630
|
+
class GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
|
1631
|
+
include Google::Apis::Core::Hashable
|
1632
|
+
|
1633
|
+
# Optional. The BigQuery connection used to create BigLake tables. Must be in
|
1634
|
+
# the form projects/`project_id`/locations/`location_id`/connections/`
|
1635
|
+
# connection_id`
|
1636
|
+
# Corresponds to the JSON property `connection`
|
1637
|
+
# @return [String]
|
1638
|
+
attr_accessor :connection
|
1639
|
+
|
1640
|
+
# Optional. Determines whether to publish discovered tables as BigLake external
|
1641
|
+
# tables or non-BigLake external tables.
|
1642
|
+
# Corresponds to the JSON property `tableType`
|
1643
|
+
# @return [String]
|
1644
|
+
attr_accessor :table_type
|
1645
|
+
|
1646
|
+
def initialize(**args)
|
1647
|
+
update!(**args)
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
# Update properties of this object
|
1651
|
+
def update!(**args)
|
1652
|
+
@connection = args[:connection] if args.key?(:connection)
|
1653
|
+
@table_type = args[:table_type] if args.key?(:table_type)
|
1654
|
+
end
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
# Configurations related to Cloud Storage as the data source.
|
1658
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfig
|
1659
|
+
include Google::Apis::Core::Hashable
|
1660
|
+
|
1661
|
+
# Describes CSV and similar semi-structured data formats.
|
1662
|
+
# Corresponds to the JSON property `csvOptions`
|
1663
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions]
|
1664
|
+
attr_accessor :csv_options
|
1665
|
+
|
1666
|
+
# Optional. Defines the data to exclude during discovery. Provide a list of
|
1667
|
+
# patterns that identify the data to exclude. For Cloud Storage bucket assets,
|
1668
|
+
# these patterns are interpreted as glob patterns used to match object names.
|
1669
|
+
# For BigQuery dataset assets, these patterns are interpreted as patterns to
|
1670
|
+
# match table names.
|
1671
|
+
# Corresponds to the JSON property `excludePatterns`
|
1672
|
+
# @return [Array<String>]
|
1673
|
+
attr_accessor :exclude_patterns
|
1674
|
+
|
1675
|
+
# Optional. Defines the data to include during discovery when only a subset of
|
1676
|
+
# the data should be considered. Provide a list of patterns that identify the
|
1677
|
+
# data to include. For Cloud Storage bucket assets, these patterns are
|
1678
|
+
# interpreted as glob patterns used to match object names. For BigQuery dataset
|
1679
|
+
# assets, these patterns are interpreted as patterns to match table names.
|
1680
|
+
# Corresponds to the JSON property `includePatterns`
|
1681
|
+
# @return [Array<String>]
|
1682
|
+
attr_accessor :include_patterns
|
1683
|
+
|
1684
|
+
# Describes JSON data format.
|
1685
|
+
# Corresponds to the JSON property `jsonOptions`
|
1686
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions]
|
1687
|
+
attr_accessor :json_options
|
1688
|
+
|
1689
|
+
def initialize(**args)
|
1690
|
+
update!(**args)
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
# Update properties of this object
|
1694
|
+
def update!(**args)
|
1695
|
+
@csv_options = args[:csv_options] if args.key?(:csv_options)
|
1696
|
+
@exclude_patterns = args[:exclude_patterns] if args.key?(:exclude_patterns)
|
1697
|
+
@include_patterns = args[:include_patterns] if args.key?(:include_patterns)
|
1698
|
+
@json_options = args[:json_options] if args.key?(:json_options)
|
1699
|
+
end
|
1700
|
+
end
|
1701
|
+
|
1702
|
+
# Describes CSV and similar semi-structured data formats.
|
1703
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
|
1704
|
+
include Google::Apis::Core::Hashable
|
1705
|
+
|
1706
|
+
# Optional. The delimiter that is used to separate values. The default is , (
|
1707
|
+
# comma).
|
1708
|
+
# Corresponds to the JSON property `delimiter`
|
1709
|
+
# @return [String]
|
1710
|
+
attr_accessor :delimiter
|
1711
|
+
|
1712
|
+
# Optional. The character encoding of the data. The default is UTF-8.
|
1713
|
+
# Corresponds to the JSON property `encoding`
|
1714
|
+
# @return [String]
|
1715
|
+
attr_accessor :encoding
|
1716
|
+
|
1717
|
+
# Optional. The number of rows to interpret as header rows that should be
|
1718
|
+
# skipped when reading data rows.
|
1719
|
+
# Corresponds to the JSON property `headerRows`
|
1720
|
+
# @return [Fixnum]
|
1721
|
+
attr_accessor :header_rows
|
1722
|
+
|
1723
|
+
# Optional. The character used to quote column values. Accepts " (double
|
1724
|
+
# quotation mark) or ' (single quotation mark). If unspecified, defaults to " (
|
1725
|
+
# double quotation mark).
|
1726
|
+
# Corresponds to the JSON property `quote`
|
1727
|
+
# @return [String]
|
1728
|
+
attr_accessor :quote
|
1729
|
+
|
1730
|
+
# Optional. Whether to disable the inference of data types for CSV data. If true,
|
1731
|
+
# all columns are registered as strings.
|
1732
|
+
# Corresponds to the JSON property `typeInferenceDisabled`
|
1733
|
+
# @return [Boolean]
|
1734
|
+
attr_accessor :type_inference_disabled
|
1735
|
+
alias_method :type_inference_disabled?, :type_inference_disabled
|
1736
|
+
|
1737
|
+
def initialize(**args)
|
1738
|
+
update!(**args)
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
# Update properties of this object
|
1742
|
+
def update!(**args)
|
1743
|
+
@delimiter = args[:delimiter] if args.key?(:delimiter)
|
1744
|
+
@encoding = args[:encoding] if args.key?(:encoding)
|
1745
|
+
@header_rows = args[:header_rows] if args.key?(:header_rows)
|
1746
|
+
@quote = args[:quote] if args.key?(:quote)
|
1747
|
+
@type_inference_disabled = args[:type_inference_disabled] if args.key?(:type_inference_disabled)
|
1748
|
+
end
|
1749
|
+
end
|
1750
|
+
|
1751
|
+
# Describes JSON data format.
|
1752
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions
|
1753
|
+
include Google::Apis::Core::Hashable
|
1754
|
+
|
1755
|
+
# Optional. The character encoding of the data. The default is UTF-8.
|
1756
|
+
# Corresponds to the JSON property `encoding`
|
1757
|
+
# @return [String]
|
1758
|
+
attr_accessor :encoding
|
1759
|
+
|
1760
|
+
# Optional. Whether to disable the inference of data types for JSON data. If
|
1761
|
+
# true, all columns are registered as their primitive types (strings, number, or
|
1762
|
+
# boolean).
|
1763
|
+
# Corresponds to the JSON property `typeInferenceDisabled`
|
1764
|
+
# @return [Boolean]
|
1765
|
+
attr_accessor :type_inference_disabled
|
1766
|
+
alias_method :type_inference_disabled?, :type_inference_disabled
|
1767
|
+
|
1768
|
+
def initialize(**args)
|
1769
|
+
update!(**args)
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
# Update properties of this object
|
1773
|
+
def update!(**args)
|
1774
|
+
@encoding = args[:encoding] if args.key?(:encoding)
|
1775
|
+
@type_inference_disabled = args[:type_inference_disabled] if args.key?(:type_inference_disabled)
|
1776
|
+
end
|
1777
|
+
end
|
1778
|
+
|
1564
1779
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
1565
1780
|
# table will have field type specific profile result.
|
1566
1781
|
class GoogleCloudDataplexV1DataProfileResult
|
@@ -2980,6 +3195,16 @@ module Google
|
|
2980
3195
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource]
|
2981
3196
|
attr_accessor :data
|
2982
3197
|
|
3198
|
+
# The output of a data discovery scan.
|
3199
|
+
# Corresponds to the JSON property `dataDiscoveryResult`
|
3200
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult]
|
3201
|
+
attr_accessor :data_discovery_result
|
3202
|
+
|
3203
|
+
# Spec for a data discovery scan.
|
3204
|
+
# Corresponds to the JSON property `dataDiscoverySpec`
|
3205
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec]
|
3206
|
+
attr_accessor :data_discovery_spec
|
3207
|
+
|
2983
3208
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
2984
3209
|
# table will have field type specific profile result.
|
2985
3210
|
# Corresponds to the JSON property `dataProfileResult`
|
@@ -3062,6 +3287,8 @@ module Google
|
|
3062
3287
|
def update!(**args)
|
3063
3288
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3064
3289
|
@data = args[:data] if args.key?(:data)
|
3290
|
+
@data_discovery_result = args[:data_discovery_result] if args.key?(:data_discovery_result)
|
3291
|
+
@data_discovery_spec = args[:data_discovery_spec] if args.key?(:data_discovery_spec)
|
3065
3292
|
@data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
|
3066
3293
|
@data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
|
3067
3294
|
@data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
|
@@ -3080,7 +3307,7 @@ module Google
|
|
3080
3307
|
end
|
3081
3308
|
|
3082
3309
|
# These messages contain information about the execution of a datascan. The
|
3083
|
-
# monitored resource is 'DataScan'
|
3310
|
+
# monitored resource is 'DataScan'
|
3084
3311
|
class GoogleCloudDataplexV1DataScanEvent
|
3085
3312
|
include Google::Apis::Core::Hashable
|
3086
3313
|
|
@@ -3439,6 +3666,16 @@ module Google
|
|
3439
3666
|
# @return [String]
|
3440
3667
|
attr_accessor :create_time
|
3441
3668
|
|
3669
|
+
# The output of a data discovery scan.
|
3670
|
+
# Corresponds to the JSON property `dataDiscoveryResult`
|
3671
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult]
|
3672
|
+
attr_accessor :data_discovery_result
|
3673
|
+
|
3674
|
+
# Spec for a data discovery scan.
|
3675
|
+
# Corresponds to the JSON property `dataDiscoverySpec`
|
3676
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec]
|
3677
|
+
attr_accessor :data_discovery_spec
|
3678
|
+
|
3442
3679
|
# DataProfileResult defines the output of DataProfileScan. Each field of the
|
3443
3680
|
# table will have field type specific profile result.
|
3444
3681
|
# Corresponds to the JSON property `dataProfileResult`
|
@@ -3505,6 +3742,8 @@ module Google
|
|
3505
3742
|
# Update properties of this object
|
3506
3743
|
def update!(**args)
|
3507
3744
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3745
|
+
@data_discovery_result = args[:data_discovery_result] if args.key?(:data_discovery_result)
|
3746
|
+
@data_discovery_spec = args[:data_discovery_spec] if args.key?(:data_discovery_spec)
|
3508
3747
|
@data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
|
3509
3748
|
@data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
|
3510
3749
|
@data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataplexV1
|
18
18
|
# Version of the google-apis-dataplex_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241027"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -244,6 +244,48 @@ module Google
|
|
244
244
|
include Google::Apis::Core::JsonObjectSupport
|
245
245
|
end
|
246
246
|
|
247
|
+
class GoogleCloudDataplexV1DataDiscoveryResult
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
253
|
+
class GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class GoogleCloudDataplexV1DataDiscoverySpec
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfig
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
247
289
|
class GoogleCloudDataplexV1DataProfileResult
|
248
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
291
|
|
@@ -1652,6 +1694,70 @@ module Google
|
|
1652
1694
|
end
|
1653
1695
|
end
|
1654
1696
|
|
1697
|
+
class GoogleCloudDataplexV1DataDiscoveryResult
|
1698
|
+
# @private
|
1699
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1700
|
+
property :bigquery_publishing, as: 'bigqueryPublishing', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing::Representation
|
1701
|
+
|
1702
|
+
end
|
1703
|
+
end
|
1704
|
+
|
1705
|
+
class GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
|
1706
|
+
# @private
|
1707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1708
|
+
property :dataset, as: 'dataset'
|
1709
|
+
end
|
1710
|
+
end
|
1711
|
+
|
1712
|
+
class GoogleCloudDataplexV1DataDiscoverySpec
|
1713
|
+
# @private
|
1714
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1715
|
+
property :bigquery_publishing_config, as: 'bigqueryPublishingConfig', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig::Representation
|
1716
|
+
|
1717
|
+
property :storage_config, as: 'storageConfig', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfig::Representation
|
1718
|
+
|
1719
|
+
end
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
class GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
|
1723
|
+
# @private
|
1724
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1725
|
+
property :connection, as: 'connection'
|
1726
|
+
property :table_type, as: 'tableType'
|
1727
|
+
end
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfig
|
1731
|
+
# @private
|
1732
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1733
|
+
property :csv_options, as: 'csvOptions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions::Representation
|
1734
|
+
|
1735
|
+
collection :exclude_patterns, as: 'excludePatterns'
|
1736
|
+
collection :include_patterns, as: 'includePatterns'
|
1737
|
+
property :json_options, as: 'jsonOptions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions::Representation
|
1738
|
+
|
1739
|
+
end
|
1740
|
+
end
|
1741
|
+
|
1742
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
|
1743
|
+
# @private
|
1744
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1745
|
+
property :delimiter, as: 'delimiter'
|
1746
|
+
property :encoding, as: 'encoding'
|
1747
|
+
property :header_rows, as: 'headerRows'
|
1748
|
+
property :quote, as: 'quote'
|
1749
|
+
property :type_inference_disabled, as: 'typeInferenceDisabled'
|
1750
|
+
end
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
class GoogleCloudDataplexV1DataDiscoverySpecStorageConfigJsonOptions
|
1754
|
+
# @private
|
1755
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1756
|
+
property :encoding, as: 'encoding'
|
1757
|
+
property :type_inference_disabled, as: 'typeInferenceDisabled'
|
1758
|
+
end
|
1759
|
+
end
|
1760
|
+
|
1655
1761
|
class GoogleCloudDataplexV1DataProfileResult
|
1656
1762
|
# @private
|
1657
1763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2060,6 +2166,10 @@ module Google
|
|
2060
2166
|
property :create_time, as: 'createTime'
|
2061
2167
|
property :data, as: 'data', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource::Representation
|
2062
2168
|
|
2169
|
+
property :data_discovery_result, as: 'dataDiscoveryResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult::Representation
|
2170
|
+
|
2171
|
+
property :data_discovery_spec, as: 'dataDiscoverySpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec::Representation
|
2172
|
+
|
2063
2173
|
property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
|
2064
2174
|
|
2065
2175
|
property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
|
@@ -2184,6 +2294,10 @@ module Google
|
|
2184
2294
|
# @private
|
2185
2295
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2186
2296
|
property :create_time, as: 'createTime'
|
2297
|
+
property :data_discovery_result, as: 'dataDiscoveryResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResult::Representation
|
2298
|
+
|
2299
|
+
property :data_discovery_spec, as: 'dataDiscoverySpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpec::Representation
|
2300
|
+
|
2187
2301
|
property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
|
2188
2302
|
|
2189
2303
|
property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataplex_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.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: 2024-
|
11
|
+
date: 2024-11-17 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-dataplex_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_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.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Dataplex API V1
|