google-apis-dataplex_v1 0.64.0 → 0.66.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: 93514a103b896018ceea31a7c3fa9d5ca63500ecd1b2eed7e7f4b8d495ae5067
4
- data.tar.gz: e4fd66ec1bc12e7a8d066d403d05cbc1466ea8f3b27915540d2cbcdea29ed86d
3
+ metadata.gz: 80f9fb625e8cf8532166d7f0d9eae15d18fbf752725381dfb7997b5810582310
4
+ data.tar.gz: 8b28b4ed7996df9f043d0ceb9bdaa4232deb7afbb0e488bdc3bb4488ead9b6fa
5
5
  SHA512:
6
- metadata.gz: f7e699af29181a18b65dd16235ad2ab2c8acc50607ae4240258d3a92187ce160c4a90018b0b97dc79e8927f97dadafb3460ac564718d9524cb0bc680d8314059
7
- data.tar.gz: d3a6a81648dfac6411ebc3371ee2d715ae6f328ad6cc7dda5a5caba85c290455a21533fd687ea4705b017f338b6dcbd6b738f04add326577cbb63dc3d3eba038
6
+ metadata.gz: 6521eec3bbf0cbf14966fe6fc487afebd5e06d0367b294e34a7b7d33d144f1bff3a8b3dddafe67caa88859f1071c429bc54c73544f78f2564dd8ae357874a936
7
+ data.tar.gz: a96a546cf60fc68cd85d6ef0ca5a3c8b55d3ee9135d14d105ea3c82247bf088357bd2b548528b42f8f375b7322c4529b436a74dbd86743986209a79031466f5c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.66.0 (2024-11-03)
4
+
5
+ * Regenerated from discovery document revision 20241019
6
+
7
+ ### v0.65.0 (2024-10-20)
8
+
9
+ * Regenerated from discovery document revision 20241001
10
+
3
11
  ### v0.64.0 (2024-10-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20240925
@@ -392,6 +392,13 @@ module Google
392
392
  # @return [String]
393
393
  attr_accessor :create_time
394
394
 
395
+ # The version of the data format used to produce this data. This field is used
396
+ # to indicated when the underlying data format changes (e.g., schema
397
+ # modifications, changes to the source URL format definition, etc).
398
+ # Corresponds to the JSON property `dataVersion`
399
+ # @return [String]
400
+ attr_accessor :data_version
401
+
395
402
  # The time the aspect was last updated in the source system.
396
403
  # Corresponds to the JSON property `updateTime`
397
404
  # @return [String]
@@ -404,6 +411,7 @@ module Google
404
411
  # Update properties of this object
405
412
  def update!(**args)
406
413
  @create_time = args[:create_time] if args.key?(:create_time)
414
+ @data_version = args[:data_version] if args.key?(:data_version)
407
415
  @update_time = args[:update_time] if args.key?(:update_time)
408
416
  end
409
417
  end
@@ -1553,6 +1561,221 @@ module Google
1553
1561
  end
1554
1562
  end
1555
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
+
1556
1779
  # DataProfileResult defines the output of DataProfileScan. Each field of the
1557
1780
  # table will have field type specific profile result.
1558
1781
  class GoogleCloudDataplexV1DataProfileResult
@@ -2065,7 +2288,7 @@ module Google
2065
2288
  include Google::Apis::Core::Hashable
2066
2289
 
2067
2290
  # The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS",
2068
- # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2291
+ # "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
2069
2292
  # Corresponds to the JSON property `name`
2070
2293
  # @return [String]
2071
2294
  attr_accessor :name
@@ -2243,7 +2466,7 @@ module Google
2243
2466
 
2244
2467
  # Required. The dimension a rule belongs to. Results are also aggregated at the
2245
2468
  # dimension level. Supported dimensions are "COMPLETENESS", "ACCURACY", "
2246
- # CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY"
2469
+ # CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS", "VOLUME"
2247
2470
  # Corresponds to the JSON property `dimension`
2248
2471
  # @return [String]
2249
2472
  attr_accessor :dimension
@@ -2972,6 +3195,16 @@ module Google
2972
3195
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource]
2973
3196
  attr_accessor :data
2974
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
+
2975
3208
  # DataProfileResult defines the output of DataProfileScan. Each field of the
2976
3209
  # table will have field type specific profile result.
2977
3210
  # Corresponds to the JSON property `dataProfileResult`
@@ -3054,6 +3287,8 @@ module Google
3054
3287
  def update!(**args)
3055
3288
  @create_time = args[:create_time] if args.key?(:create_time)
3056
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)
3057
3292
  @data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
3058
3293
  @data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
3059
3294
  @data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
@@ -3431,6 +3666,16 @@ module Google
3431
3666
  # @return [String]
3432
3667
  attr_accessor :create_time
3433
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
+
3434
3679
  # DataProfileResult defines the output of DataProfileScan. Each field of the
3435
3680
  # table will have field type specific profile result.
3436
3681
  # Corresponds to the JSON property `dataProfileResult`
@@ -3497,6 +3742,8 @@ module Google
3497
3742
  # Update properties of this object
3498
3743
  def update!(**args)
3499
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)
3500
3747
  @data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
3501
3748
  @data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
3502
3749
  @data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
@@ -3711,6 +3958,11 @@ module Google
3711
3958
  class GoogleCloudDataplexV1DiscoveryEventActionDetails
3712
3959
  include Google::Apis::Core::Hashable
3713
3960
 
3961
+ # The human readable issue associated with the action.
3962
+ # Corresponds to the JSON property `issue`
3963
+ # @return [String]
3964
+ attr_accessor :issue
3965
+
3714
3966
  # The type of action. Eg. IncompatibleDataSchema, InvalidDataFormat
3715
3967
  # Corresponds to the JSON property `type`
3716
3968
  # @return [String]
@@ -3722,6 +3974,7 @@ module Google
3722
3974
 
3723
3975
  # Update properties of this object
3724
3976
  def update!(**args)
3977
+ @issue = args[:issue] if args.key?(:issue)
3725
3978
  @type = args[:type] if args.key?(:type)
3726
3979
  end
3727
3980
  end
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.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 = "20240925"
25
+ REVISION = "20241019"
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
 
@@ -1357,6 +1399,7 @@ module Google
1357
1399
  # @private
1358
1400
  class Representation < Google::Apis::Core::JsonRepresentation
1359
1401
  property :create_time, as: 'createTime'
1402
+ property :data_version, as: 'dataVersion'
1360
1403
  property :update_time, as: 'updateTime'
1361
1404
  end
1362
1405
  end
@@ -1651,6 +1694,70 @@ module Google
1651
1694
  end
1652
1695
  end
1653
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
+
1654
1761
  class GoogleCloudDataplexV1DataProfileResult
1655
1762
  # @private
1656
1763
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2059,6 +2166,10 @@ module Google
2059
2166
  property :create_time, as: 'createTime'
2060
2167
  property :data, as: 'data', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataSource::Representation
2061
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
+
2062
2173
  property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
2063
2174
 
2064
2175
  property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
@@ -2183,6 +2294,10 @@ module Google
2183
2294
  # @private
2184
2295
  class Representation < Google::Apis::Core::JsonRepresentation
2185
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
+
2186
2301
  property :data_profile_result, as: 'dataProfileResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult::Representation
2187
2302
 
2188
2303
  property :data_profile_spec, as: 'dataProfileSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec::Representation
@@ -2251,6 +2366,7 @@ module Google
2251
2366
  class GoogleCloudDataplexV1DiscoveryEventActionDetails
2252
2367
  # @private
2253
2368
  class Representation < Google::Apis::Core::JsonRepresentation
2369
+ property :issue, as: 'issue'
2254
2370
  property :type, as: 'type'
2255
2371
  end
2256
2372
  end
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.64.0
4
+ version: 0.66.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-10-06 00:00:00.000000000 Z
11
+ date: 2024-11-03 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.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.66.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.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Dataplex API V1