google-apis-dataplex_v1 0.35.0 → 0.36.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/dataplex_v1/classes.rb +213 -17
- data/lib/google/apis/dataplex_v1/gem_version.rb +2 -2
- data/lib/google/apis/dataplex_v1/representations.rb +119 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b76982c570e891e114fe7dd8381d78f14ba6360ffddf6327d7fcf432dfb5d2e
|
4
|
+
data.tar.gz: a0b95172b5987bf1064f11be0629285511a7acc36b0d2f09d86f27b707461efa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a2f4463d9705f3ad6454707c79e9ed297709a534c219a68ebff56cb6c1a3f44f376376225cd5b0971eabcb1ea3934e66e66edc173084d1e4239f23205834432
|
7
|
+
data.tar.gz: bada8642ca1db8185ca7a4c678928da63b41e00de41788c4cc23fd18eb71d4f7b6c6ecdd7141ba46d58ba569d4d017572d4ccd548ce5f8578fae7120b2d5bca3
|
data/CHANGELOG.md
CHANGED
@@ -1165,6 +1165,11 @@ module Google
|
|
1165
1165
|
class GoogleCloudDataplexV1DataProfileResult
|
1166
1166
|
include Google::Apis::Core::Hashable
|
1167
1167
|
|
1168
|
+
# The result of post scan actions of DataProfileScan job.
|
1169
|
+
# Corresponds to the JSON property `postScanActionsResult`
|
1170
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResult]
|
1171
|
+
attr_accessor :post_scan_actions_result
|
1172
|
+
|
1168
1173
|
# Contains name, type, mode and field type specific profile information.
|
1169
1174
|
# Corresponds to the JSON property `profile`
|
1170
1175
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfile]
|
@@ -1186,12 +1191,57 @@ module Google
|
|
1186
1191
|
|
1187
1192
|
# Update properties of this object
|
1188
1193
|
def update!(**args)
|
1194
|
+
@post_scan_actions_result = args[:post_scan_actions_result] if args.key?(:post_scan_actions_result)
|
1189
1195
|
@profile = args[:profile] if args.key?(:profile)
|
1190
1196
|
@row_count = args[:row_count] if args.key?(:row_count)
|
1191
1197
|
@scanned_data = args[:scanned_data] if args.key?(:scanned_data)
|
1192
1198
|
end
|
1193
1199
|
end
|
1194
1200
|
|
1201
|
+
# The result of post scan actions of DataProfileScan job.
|
1202
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResult
|
1203
|
+
include Google::Apis::Core::Hashable
|
1204
|
+
|
1205
|
+
# The result of BigQuery export post scan action.
|
1206
|
+
# Corresponds to the JSON property `bigqueryExportResult`
|
1207
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult]
|
1208
|
+
attr_accessor :bigquery_export_result
|
1209
|
+
|
1210
|
+
def initialize(**args)
|
1211
|
+
update!(**args)
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
# Update properties of this object
|
1215
|
+
def update!(**args)
|
1216
|
+
@bigquery_export_result = args[:bigquery_export_result] if args.key?(:bigquery_export_result)
|
1217
|
+
end
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
# The result of BigQuery export post scan action.
|
1221
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult
|
1222
|
+
include Google::Apis::Core::Hashable
|
1223
|
+
|
1224
|
+
# Output only. Additional information about the BigQuery exporting.
|
1225
|
+
# Corresponds to the JSON property `message`
|
1226
|
+
# @return [String]
|
1227
|
+
attr_accessor :message
|
1228
|
+
|
1229
|
+
# Output only. Execution state for the BigQuery exporting.
|
1230
|
+
# Corresponds to the JSON property `state`
|
1231
|
+
# @return [String]
|
1232
|
+
attr_accessor :state
|
1233
|
+
|
1234
|
+
def initialize(**args)
|
1235
|
+
update!(**args)
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# Update properties of this object
|
1239
|
+
def update!(**args)
|
1240
|
+
@message = args[:message] if args.key?(:message)
|
1241
|
+
@state = args[:state] if args.key?(:state)
|
1242
|
+
end
|
1243
|
+
end
|
1244
|
+
|
1195
1245
|
# Contains name, type, mode and field type specific profile information.
|
1196
1246
|
class GoogleCloudDataplexV1DataProfileResultProfile
|
1197
1247
|
include Google::Apis::Core::Hashable
|
@@ -1490,6 +1540,11 @@ module Google
|
|
1490
1540
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecSelectedFields]
|
1491
1541
|
attr_accessor :include_fields
|
1492
1542
|
|
1543
|
+
# The configuration of post scan actions of DataProfileScan job.
|
1544
|
+
# Corresponds to the JSON property `postScanActions`
|
1545
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActions]
|
1546
|
+
attr_accessor :post_scan_actions
|
1547
|
+
|
1493
1548
|
# Optional. A filter applied to all rows in a single DataScan job. The filter
|
1494
1549
|
# needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL
|
1495
1550
|
# syntax. Example: col1 >= 0 AND col2 < 10
|
@@ -1513,11 +1568,51 @@ module Google
|
|
1513
1568
|
def update!(**args)
|
1514
1569
|
@exclude_fields = args[:exclude_fields] if args.key?(:exclude_fields)
|
1515
1570
|
@include_fields = args[:include_fields] if args.key?(:include_fields)
|
1571
|
+
@post_scan_actions = args[:post_scan_actions] if args.key?(:post_scan_actions)
|
1516
1572
|
@row_filter = args[:row_filter] if args.key?(:row_filter)
|
1517
1573
|
@sampling_percent = args[:sampling_percent] if args.key?(:sampling_percent)
|
1518
1574
|
end
|
1519
1575
|
end
|
1520
1576
|
|
1577
|
+
# The configuration of post scan actions of DataProfileScan job.
|
1578
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActions
|
1579
|
+
include Google::Apis::Core::Hashable
|
1580
|
+
|
1581
|
+
# The configuration of BigQuery export post scan action.
|
1582
|
+
# Corresponds to the JSON property `bigqueryExport`
|
1583
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport]
|
1584
|
+
attr_accessor :bigquery_export
|
1585
|
+
|
1586
|
+
def initialize(**args)
|
1587
|
+
update!(**args)
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
# Update properties of this object
|
1591
|
+
def update!(**args)
|
1592
|
+
@bigquery_export = args[:bigquery_export] if args.key?(:bigquery_export)
|
1593
|
+
end
|
1594
|
+
end
|
1595
|
+
|
1596
|
+
# The configuration of BigQuery export post scan action.
|
1597
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport
|
1598
|
+
include Google::Apis::Core::Hashable
|
1599
|
+
|
1600
|
+
# Optional. The BigQuery table to export DataProfileScan results to. Format:
|
1601
|
+
# projects/`project`/datasets/`dataset`/tables/`table`
|
1602
|
+
# Corresponds to the JSON property `resultsTable`
|
1603
|
+
# @return [String]
|
1604
|
+
attr_accessor :results_table
|
1605
|
+
|
1606
|
+
def initialize(**args)
|
1607
|
+
update!(**args)
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
# Update properties of this object
|
1611
|
+
def update!(**args)
|
1612
|
+
@results_table = args[:results_table] if args.key?(:results_table)
|
1613
|
+
end
|
1614
|
+
end
|
1615
|
+
|
1521
1616
|
# The specification for fields to include or exclude in data profile scan.
|
1522
1617
|
class GoogleCloudDataplexV1DataProfileSpecSelectedFields
|
1523
1618
|
include Google::Apis::Core::Hashable
|
@@ -1576,6 +1671,11 @@ module Google
|
|
1576
1671
|
attr_accessor :passed
|
1577
1672
|
alias_method :passed?, :passed
|
1578
1673
|
|
1674
|
+
# The result of post scan actions of DataQualityScan job.
|
1675
|
+
# Corresponds to the JSON property `postScanActionsResult`
|
1676
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult]
|
1677
|
+
attr_accessor :post_scan_actions_result
|
1678
|
+
|
1579
1679
|
# The count of rows processed.
|
1580
1680
|
# Corresponds to the JSON property `rowCount`
|
1581
1681
|
# @return [Fixnum]
|
@@ -1599,12 +1699,57 @@ module Google
|
|
1599
1699
|
def update!(**args)
|
1600
1700
|
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1601
1701
|
@passed = args[:passed] if args.key?(:passed)
|
1702
|
+
@post_scan_actions_result = args[:post_scan_actions_result] if args.key?(:post_scan_actions_result)
|
1602
1703
|
@row_count = args[:row_count] if args.key?(:row_count)
|
1603
1704
|
@rules = args[:rules] if args.key?(:rules)
|
1604
1705
|
@scanned_data = args[:scanned_data] if args.key?(:scanned_data)
|
1605
1706
|
end
|
1606
1707
|
end
|
1607
1708
|
|
1709
|
+
# The result of post scan actions of DataQualityScan job.
|
1710
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
1711
|
+
include Google::Apis::Core::Hashable
|
1712
|
+
|
1713
|
+
# The result of BigQuery export post scan action.
|
1714
|
+
# Corresponds to the JSON property `bigqueryExportResult`
|
1715
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult]
|
1716
|
+
attr_accessor :bigquery_export_result
|
1717
|
+
|
1718
|
+
def initialize(**args)
|
1719
|
+
update!(**args)
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
# Update properties of this object
|
1723
|
+
def update!(**args)
|
1724
|
+
@bigquery_export_result = args[:bigquery_export_result] if args.key?(:bigquery_export_result)
|
1725
|
+
end
|
1726
|
+
end
|
1727
|
+
|
1728
|
+
# The result of BigQuery export post scan action.
|
1729
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult
|
1730
|
+
include Google::Apis::Core::Hashable
|
1731
|
+
|
1732
|
+
# Output only. Additional information about the BigQuery exporting.
|
1733
|
+
# Corresponds to the JSON property `message`
|
1734
|
+
# @return [String]
|
1735
|
+
attr_accessor :message
|
1736
|
+
|
1737
|
+
# Output only. Execution state for the BigQuery exporting.
|
1738
|
+
# Corresponds to the JSON property `state`
|
1739
|
+
# @return [String]
|
1740
|
+
attr_accessor :state
|
1741
|
+
|
1742
|
+
def initialize(**args)
|
1743
|
+
update!(**args)
|
1744
|
+
end
|
1745
|
+
|
1746
|
+
# Update properties of this object
|
1747
|
+
def update!(**args)
|
1748
|
+
@message = args[:message] if args.key?(:message)
|
1749
|
+
@state = args[:state] if args.key?(:state)
|
1750
|
+
end
|
1751
|
+
end
|
1752
|
+
|
1608
1753
|
# A rule captures data quality intent about a data source.
|
1609
1754
|
class GoogleCloudDataplexV1DataQualityRule
|
1610
1755
|
include Google::Apis::Core::Hashable
|
@@ -1778,7 +1923,7 @@ module Google
|
|
1778
1923
|
class GoogleCloudDataplexV1DataQualityRuleRegexExpectation
|
1779
1924
|
include Google::Apis::Core::Hashable
|
1780
1925
|
|
1781
|
-
# A regular expression the column value is expected to match.
|
1926
|
+
# Optional. A regular expression the column value is expected to match.
|
1782
1927
|
# Corresponds to the JSON property `regex`
|
1783
1928
|
# @return [String]
|
1784
1929
|
attr_accessor :regex
|
@@ -1861,7 +2006,7 @@ module Google
|
|
1861
2006
|
class GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation
|
1862
2007
|
include Google::Apis::Core::Hashable
|
1863
2008
|
|
1864
|
-
# The SQL expression.
|
2009
|
+
# Optional. The SQL expression.
|
1865
2010
|
# Corresponds to the JSON property `sqlExpression`
|
1866
2011
|
# @return [String]
|
1867
2012
|
attr_accessor :sql_expression
|
@@ -1880,7 +2025,7 @@ module Google
|
|
1880
2025
|
class GoogleCloudDataplexV1DataQualityRuleSetExpectation
|
1881
2026
|
include Google::Apis::Core::Hashable
|
1882
2027
|
|
1883
|
-
# Expected values for the column value.
|
2028
|
+
# Optional. Expected values for the column value.
|
1884
2029
|
# Corresponds to the JSON property `values`
|
1885
2030
|
# @return [Array<String>]
|
1886
2031
|
attr_accessor :values
|
@@ -1900,34 +2045,34 @@ module Google
|
|
1900
2045
|
class GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectation
|
1901
2046
|
include Google::Apis::Core::Hashable
|
1902
2047
|
|
1903
|
-
# The maximum column statistic value allowed for a row to pass this
|
1904
|
-
# At least one of min_value and max_value need to be provided.
|
2048
|
+
# Optional. The maximum column statistic value allowed for a row to pass this
|
2049
|
+
# validation.At least one of min_value and max_value need to be provided.
|
1905
2050
|
# Corresponds to the JSON property `maxValue`
|
1906
2051
|
# @return [String]
|
1907
2052
|
attr_accessor :max_value
|
1908
2053
|
|
1909
|
-
# The minimum column statistic value allowed for a row to pass this
|
1910
|
-
# At least one of min_value and max_value need to be provided.
|
2054
|
+
# Optional. The minimum column statistic value allowed for a row to pass this
|
2055
|
+
# validation.At least one of min_value and max_value need to be provided.
|
1911
2056
|
# Corresponds to the JSON property `minValue`
|
1912
2057
|
# @return [String]
|
1913
2058
|
attr_accessor :min_value
|
1914
2059
|
|
1915
|
-
# The aggregate metric to evaluate.
|
2060
|
+
# Optional. The aggregate metric to evaluate.
|
1916
2061
|
# Corresponds to the JSON property `statistic`
|
1917
2062
|
# @return [String]
|
1918
2063
|
attr_accessor :statistic
|
1919
2064
|
|
1920
|
-
# Whether column statistic needs to be strictly lesser than ('<') the
|
1921
|
-
# or if equality is allowed.Only relevant if a max_value has been
|
1922
|
-
# Default = false.
|
2065
|
+
# Optional. Whether column statistic needs to be strictly lesser than ('<') the
|
2066
|
+
# maximum, or if equality is allowed.Only relevant if a max_value has been
|
2067
|
+
# defined. Default = false.
|
1923
2068
|
# Corresponds to the JSON property `strictMaxEnabled`
|
1924
2069
|
# @return [Boolean]
|
1925
2070
|
attr_accessor :strict_max_enabled
|
1926
2071
|
alias_method :strict_max_enabled?, :strict_max_enabled
|
1927
2072
|
|
1928
|
-
# Whether column statistic needs to be strictly greater than ('>') the
|
1929
|
-
# or if equality is allowed.Only relevant if a min_value has been
|
1930
|
-
# Default = false.
|
2073
|
+
# Optional. Whether column statistic needs to be strictly greater than ('>') the
|
2074
|
+
# minimum, or if equality is allowed.Only relevant if a min_value has been
|
2075
|
+
# defined. Default = false.
|
1931
2076
|
# Corresponds to the JSON property `strictMinEnabled`
|
1932
2077
|
# @return [Boolean]
|
1933
2078
|
attr_accessor :strict_min_enabled
|
@@ -1953,7 +2098,7 @@ module Google
|
|
1953
2098
|
class GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
|
1954
2099
|
include Google::Apis::Core::Hashable
|
1955
2100
|
|
1956
|
-
# The SQL expression.
|
2101
|
+
# Optional. The SQL expression.
|
1957
2102
|
# Corresponds to the JSON property `sqlExpression`
|
1958
2103
|
# @return [String]
|
1959
2104
|
attr_accessor :sql_expression
|
@@ -2073,6 +2218,11 @@ module Google
|
|
2073
2218
|
class GoogleCloudDataplexV1DataQualitySpec
|
2074
2219
|
include Google::Apis::Core::Hashable
|
2075
2220
|
|
2221
|
+
# The configuration of post scan actions of DataQualityScan.
|
2222
|
+
# Corresponds to the JSON property `postScanActions`
|
2223
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions]
|
2224
|
+
attr_accessor :post_scan_actions
|
2225
|
+
|
2076
2226
|
# Optional. A filter applied to all rows in a single DataScan job. The filter
|
2077
2227
|
# needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL
|
2078
2228
|
# syntax. Example: col1 >= 0 AND col2 < 10
|
@@ -2080,8 +2230,8 @@ module Google
|
|
2080
2230
|
# @return [String]
|
2081
2231
|
attr_accessor :row_filter
|
2082
2232
|
|
2083
|
-
# The list of rules to evaluate against a data source. At least one
|
2084
|
-
# required.
|
2233
|
+
# Required. The list of rules to evaluate against a data source. At least one
|
2234
|
+
# rule is required.
|
2085
2235
|
# Corresponds to the JSON property `rules`
|
2086
2236
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule>]
|
2087
2237
|
attr_accessor :rules
|
@@ -2100,12 +2250,52 @@ module Google
|
|
2100
2250
|
|
2101
2251
|
# Update properties of this object
|
2102
2252
|
def update!(**args)
|
2253
|
+
@post_scan_actions = args[:post_scan_actions] if args.key?(:post_scan_actions)
|
2103
2254
|
@row_filter = args[:row_filter] if args.key?(:row_filter)
|
2104
2255
|
@rules = args[:rules] if args.key?(:rules)
|
2105
2256
|
@sampling_percent = args[:sampling_percent] if args.key?(:sampling_percent)
|
2106
2257
|
end
|
2107
2258
|
end
|
2108
2259
|
|
2260
|
+
# The configuration of post scan actions of DataQualityScan.
|
2261
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActions
|
2262
|
+
include Google::Apis::Core::Hashable
|
2263
|
+
|
2264
|
+
# The configuration of BigQuery export post scan action.
|
2265
|
+
# Corresponds to the JSON property `bigqueryExport`
|
2266
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport]
|
2267
|
+
attr_accessor :bigquery_export
|
2268
|
+
|
2269
|
+
def initialize(**args)
|
2270
|
+
update!(**args)
|
2271
|
+
end
|
2272
|
+
|
2273
|
+
# Update properties of this object
|
2274
|
+
def update!(**args)
|
2275
|
+
@bigquery_export = args[:bigquery_export] if args.key?(:bigquery_export)
|
2276
|
+
end
|
2277
|
+
end
|
2278
|
+
|
2279
|
+
# The configuration of BigQuery export post scan action.
|
2280
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport
|
2281
|
+
include Google::Apis::Core::Hashable
|
2282
|
+
|
2283
|
+
# Optional. The BigQuery table to export DataQualityScan results to. Format:
|
2284
|
+
# projects/`project`/datasets/`dataset`/tables/`table`
|
2285
|
+
# Corresponds to the JSON property `resultsTable`
|
2286
|
+
# @return [String]
|
2287
|
+
attr_accessor :results_table
|
2288
|
+
|
2289
|
+
def initialize(**args)
|
2290
|
+
update!(**args)
|
2291
|
+
end
|
2292
|
+
|
2293
|
+
# Update properties of this object
|
2294
|
+
def update!(**args)
|
2295
|
+
@results_table = args[:results_table] if args.key?(:results_table)
|
2296
|
+
end
|
2297
|
+
end
|
2298
|
+
|
2109
2299
|
# Represents a user-visible job which provides the insights for the related data
|
2110
2300
|
# source.For example: Data Quality: generates queries based on the rules and
|
2111
2301
|
# runs against the data to get data quality check results. Data Profile:
|
@@ -2670,6 +2860,11 @@ module Google
|
|
2670
2860
|
# @return [Fixnum]
|
2671
2861
|
attr_accessor :attribute_count
|
2672
2862
|
|
2863
|
+
# Output only. The number of classes in the DataTaxonomy.
|
2864
|
+
# Corresponds to the JSON property `classCount`
|
2865
|
+
# @return [Fixnum]
|
2866
|
+
attr_accessor :class_count
|
2867
|
+
|
2673
2868
|
# Output only. The time when the DataTaxonomy was created.
|
2674
2869
|
# Corresponds to the JSON property `createTime`
|
2675
2870
|
# @return [String]
|
@@ -2723,6 +2918,7 @@ module Google
|
|
2723
2918
|
# Update properties of this object
|
2724
2919
|
def update!(**args)
|
2725
2920
|
@attribute_count = args[:attribute_count] if args.key?(:attribute_count)
|
2921
|
+
@class_count = args[:class_count] if args.key?(:class_count)
|
2726
2922
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2727
2923
|
@description = args[:description] if args.key?(:description)
|
2728
2924
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230801"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,18 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResult
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
199
211
|
class GoogleCloudDataplexV1DataProfileResultProfile
|
200
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
213
|
|
@@ -244,6 +256,18 @@ module Google
|
|
244
256
|
include Google::Apis::Core::JsonObjectSupport
|
245
257
|
end
|
246
258
|
|
259
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActions
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
247
271
|
class GoogleCloudDataplexV1DataProfileSpecSelectedFields
|
248
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
273
|
|
@@ -262,6 +286,18 @@ module Google
|
|
262
286
|
include Google::Apis::Core::JsonObjectSupport
|
263
287
|
end
|
264
288
|
|
289
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
295
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
265
301
|
class GoogleCloudDataplexV1DataQualityRule
|
266
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
303
|
|
@@ -334,6 +370,18 @@ module Google
|
|
334
370
|
include Google::Apis::Core::JsonObjectSupport
|
335
371
|
end
|
336
372
|
|
373
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActions
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
379
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
337
385
|
class GoogleCloudDataplexV1DataScan
|
338
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
387
|
|
@@ -1244,6 +1292,8 @@ module Google
|
|
1244
1292
|
class GoogleCloudDataplexV1DataProfileResult
|
1245
1293
|
# @private
|
1246
1294
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1295
|
+
property :post_scan_actions_result, as: 'postScanActionsResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResult::Representation
|
1296
|
+
|
1247
1297
|
property :profile, as: 'profile', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfile, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfile::Representation
|
1248
1298
|
|
1249
1299
|
property :row_count, :numeric_string => true, as: 'rowCount'
|
@@ -1252,6 +1302,22 @@ module Google
|
|
1252
1302
|
end
|
1253
1303
|
end
|
1254
1304
|
|
1305
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResult
|
1306
|
+
# @private
|
1307
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1308
|
+
property :bigquery_export_result, as: 'bigqueryExportResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult::Representation
|
1309
|
+
|
1310
|
+
end
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult
|
1314
|
+
# @private
|
1315
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1316
|
+
property :message, as: 'message'
|
1317
|
+
property :state, as: 'state'
|
1318
|
+
end
|
1319
|
+
end
|
1320
|
+
|
1255
1321
|
class GoogleCloudDataplexV1DataProfileResultProfile
|
1256
1322
|
# @private
|
1257
1323
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1334,11 +1400,28 @@ module Google
|
|
1334
1400
|
|
1335
1401
|
property :include_fields, as: 'includeFields', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecSelectedFields, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecSelectedFields::Representation
|
1336
1402
|
|
1403
|
+
property :post_scan_actions, as: 'postScanActions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActions, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActions::Representation
|
1404
|
+
|
1337
1405
|
property :row_filter, as: 'rowFilter'
|
1338
1406
|
property :sampling_percent, as: 'samplingPercent'
|
1339
1407
|
end
|
1340
1408
|
end
|
1341
1409
|
|
1410
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActions
|
1411
|
+
# @private
|
1412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1413
|
+
property :bigquery_export, as: 'bigqueryExport', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport::Representation
|
1414
|
+
|
1415
|
+
end
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
class GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport
|
1419
|
+
# @private
|
1420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1421
|
+
property :results_table, as: 'resultsTable'
|
1422
|
+
end
|
1423
|
+
end
|
1424
|
+
|
1342
1425
|
class GoogleCloudDataplexV1DataProfileSpecSelectedFields
|
1343
1426
|
# @private
|
1344
1427
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1359,6 +1442,8 @@ module Google
|
|
1359
1442
|
collection :dimensions, as: 'dimensions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityDimensionResult::Representation
|
1360
1443
|
|
1361
1444
|
property :passed, as: 'passed'
|
1445
|
+
property :post_scan_actions_result, as: 'postScanActionsResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResult::Representation
|
1446
|
+
|
1362
1447
|
property :row_count, :numeric_string => true, as: 'rowCount'
|
1363
1448
|
collection :rules, as: 'rules', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleResult::Representation
|
1364
1449
|
|
@@ -1367,6 +1452,22 @@ module Google
|
|
1367
1452
|
end
|
1368
1453
|
end
|
1369
1454
|
|
1455
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResult
|
1456
|
+
# @private
|
1457
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1458
|
+
property :bigquery_export_result, as: 'bigqueryExportResult', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult::Representation
|
1459
|
+
|
1460
|
+
end
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class GoogleCloudDataplexV1DataQualityResultPostScanActionsResultBigQueryExportResult
|
1464
|
+
# @private
|
1465
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1466
|
+
property :message, as: 'message'
|
1467
|
+
property :state, as: 'state'
|
1468
|
+
end
|
1469
|
+
end
|
1470
|
+
|
1370
1471
|
class GoogleCloudDataplexV1DataQualityRule
|
1371
1472
|
# @private
|
1372
1473
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1491,6 +1592,8 @@ module Google
|
|
1491
1592
|
class GoogleCloudDataplexV1DataQualitySpec
|
1492
1593
|
# @private
|
1493
1594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1595
|
+
property :post_scan_actions, as: 'postScanActions', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActions::Representation
|
1596
|
+
|
1494
1597
|
property :row_filter, as: 'rowFilter'
|
1495
1598
|
collection :rules, as: 'rules', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule::Representation
|
1496
1599
|
|
@@ -1498,6 +1601,21 @@ module Google
|
|
1498
1601
|
end
|
1499
1602
|
end
|
1500
1603
|
|
1604
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActions
|
1605
|
+
# @private
|
1606
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1607
|
+
property :bigquery_export, as: 'bigqueryExport', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport::Representation
|
1608
|
+
|
1609
|
+
end
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport
|
1613
|
+
# @private
|
1614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1615
|
+
property :results_table, as: 'resultsTable'
|
1616
|
+
end
|
1617
|
+
end
|
1618
|
+
|
1501
1619
|
class GoogleCloudDataplexV1DataScan
|
1502
1620
|
# @private
|
1503
1621
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1653,6 +1771,7 @@ module Google
|
|
1653
1771
|
# @private
|
1654
1772
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1655
1773
|
property :attribute_count, as: 'attributeCount'
|
1774
|
+
property :class_count, as: 'classCount'
|
1656
1775
|
property :create_time, as: 'createTime'
|
1657
1776
|
property :description, as: 'description'
|
1658
1777
|
property :display_name, as: 'displayName'
|
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.36.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: 2023-
|
11
|
+
date: 2023-08-06 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.36.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: []
|