google-apis-dataplex_v1 0.81.0 → 0.83.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 +8 -0
- data/lib/google/apis/dataplex_v1/classes.rb +123 -109
- data/lib/google/apis/dataplex_v1/gem_version.rb +2 -2
- data/lib/google/apis/dataplex_v1/service.rb +5 -5
- data/lib/google/apis/dataplex_v1.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 675de78efe0255f17d229477c753fc05ffa21d777ca796e964f6ecf386759c25
|
4
|
+
data.tar.gz: 10838699ca0d15473e23f71964d28fc852c168b45601c1aca4ea5af296be5d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3383bcf15be565570e1c5454cfc5ebca88c4c3fe2af291b0af892cf20fc35cd7616260dfcfa97c861db042a74b5325ace53799b00fea7982c6d12f58846be6f
|
7
|
+
data.tar.gz: 8b03a325d8322d277466dbf8c36a6b6e09eb67580e7a17c422c24572367c0c57b32f1b12cc2fb10e67c10de4e5860b09ad72ea19e09a96be39b5afd69c55c7ba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.83.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250808
|
6
|
+
|
7
|
+
### v0.82.0 (2025-08-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250805
|
10
|
+
|
3
11
|
### v0.81.0 (2025-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250729
|
@@ -506,8 +506,8 @@ module Google
|
|
506
506
|
include Google::Apis::Core::Hashable
|
507
507
|
|
508
508
|
# Immutable. The IAM permission grantable on the EntryGroup to allow access to
|
509
|
-
# instantiate Aspects of Dataplex owned AspectTypes, only
|
510
|
-
# owned Types.
|
509
|
+
# instantiate Aspects of Dataplex Universal Catalog owned AspectTypes, only
|
510
|
+
# settable for Dataplex Universal Catalog owned Types.
|
511
511
|
# Corresponds to the JSON property `alternateUsePermission`
|
512
512
|
# @return [String]
|
513
513
|
attr_accessor :alternate_use_permission
|
@@ -1928,7 +1928,7 @@ module Google
|
|
1928
1928
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfile]
|
1929
1929
|
attr_accessor :profile
|
1930
1930
|
|
1931
|
-
# The count of rows scanned.
|
1931
|
+
# Output only. The count of rows scanned.
|
1932
1932
|
# Corresponds to the JSON property `rowCount`
|
1933
1933
|
# @return [Fixnum]
|
1934
1934
|
attr_accessor :row_count
|
@@ -1999,7 +1999,8 @@ module Google
|
|
1999
1999
|
class GoogleCloudDataplexV1DataProfileResultProfile
|
2000
2000
|
include Google::Apis::Core::Hashable
|
2001
2001
|
|
2002
|
-
# List of fields with structural and profile information for each
|
2002
|
+
# Output only. List of fields with structural and profile information for each
|
2003
|
+
# field.
|
2003
2004
|
# Corresponds to the JSON property `fields`
|
2004
2005
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileField>]
|
2005
2006
|
attr_accessor :fields
|
@@ -2018,14 +2019,14 @@ module Google
|
|
2018
2019
|
class GoogleCloudDataplexV1DataProfileResultProfileField
|
2019
2020
|
include Google::Apis::Core::Hashable
|
2020
2021
|
|
2021
|
-
# The mode of the field. Possible values include: REQUIRED, if it
|
2022
|
-
# field. NULLABLE, if it is an optional field. REPEATED, if it is
|
2023
|
-
# field.
|
2022
|
+
# Output only. The mode of the field. Possible values include: REQUIRED, if it
|
2023
|
+
# is a required field. NULLABLE, if it is an optional field. REPEATED, if it is
|
2024
|
+
# a repeated field.
|
2024
2025
|
# Corresponds to the JSON property `mode`
|
2025
2026
|
# @return [String]
|
2026
2027
|
attr_accessor :mode
|
2027
2028
|
|
2028
|
-
# The name of the field.
|
2029
|
+
# Output only. The name of the field.
|
2029
2030
|
# Corresponds to the JSON property `name`
|
2030
2031
|
# @return [String]
|
2031
2032
|
attr_accessor :name
|
@@ -2035,11 +2036,11 @@ module Google
|
|
2035
2036
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo]
|
2036
2037
|
attr_accessor :profile
|
2037
2038
|
|
2038
|
-
# The data type retrieved from the schema of the data source. For
|
2039
|
-
# a BigQuery native table, it is the BigQuery Table Schema (https
|
2040
|
-
# com/bigquery/docs/reference/rest/v2/tables#tablefieldschema).
|
2041
|
-
# Entity, it is the Entity Schema (https://
|
2042
|
-
# reference/rpc/google.cloud.dataplex.v1#type_3).
|
2039
|
+
# Output only. The data type retrieved from the schema of the data source. For
|
2040
|
+
# instance, for a BigQuery native table, it is the BigQuery Table Schema (https:/
|
2041
|
+
# /cloud.google.com/bigquery/docs/reference/rest/v2/tables#tablefieldschema).
|
2042
|
+
# For a Dataplex Universal Catalog Entity, it is the Entity Schema (https://
|
2043
|
+
# cloud.google.com/dataplex/docs/reference/rpc/google.cloud.dataplex.v1#type_3).
|
2043
2044
|
# Corresponds to the JSON property `type`
|
2044
2045
|
# @return [String]
|
2045
2046
|
attr_accessor :type
|
@@ -2061,9 +2062,9 @@ module Google
|
|
2061
2062
|
class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo
|
2062
2063
|
include Google::Apis::Core::Hashable
|
2063
2064
|
|
2064
|
-
# Ratio of rows with distinct values against total scanned rows.
|
2065
|
-
# for complex non-groupable field type, including RECORD, ARRAY,
|
2066
|
-
# JSON, as well as fields with REPEATABLE mode.
|
2065
|
+
# Output only. Ratio of rows with distinct values against total scanned rows.
|
2066
|
+
# Not available for complex non-groupable field type, including RECORD, ARRAY,
|
2067
|
+
# GEOGRAPHY, and JSON, as well as fields with REPEATABLE mode.
|
2067
2068
|
# Corresponds to the JSON property `distinctRatio`
|
2068
2069
|
# @return [Float]
|
2069
2070
|
attr_accessor :distinct_ratio
|
@@ -2078,7 +2079,7 @@ module Google
|
|
2078
2079
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo]
|
2079
2080
|
attr_accessor :integer_profile
|
2080
2081
|
|
2081
|
-
# Ratio of rows with null value against total scanned rows.
|
2082
|
+
# Output only. Ratio of rows with null value against total scanned rows.
|
2082
2083
|
# Corresponds to the JSON property `nullRatio`
|
2083
2084
|
# @return [Float]
|
2084
2085
|
attr_accessor :null_ratio
|
@@ -2088,11 +2089,11 @@ module Google
|
|
2088
2089
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo]
|
2089
2090
|
attr_accessor :string_profile
|
2090
2091
|
|
2091
|
-
# The list of top N non-null values, frequency and ratio with which
|
2092
|
-
# in the scanned data. N is 10 or equal to the number of distinct
|
2093
|
-
# field, whichever is smaller. Not available for complex non-
|
2094
|
-
# type, including RECORD, ARRAY, GEOGRAPHY, and JSON, as well as
|
2095
|
-
# REPEATABLE mode.
|
2092
|
+
# Output only. The list of top N non-null values, frequency and ratio with which
|
2093
|
+
# they occur in the scanned data. N is 10 or equal to the number of distinct
|
2094
|
+
# values in the field, whichever is smaller. Not available for complex non-
|
2095
|
+
# groupable field type, including RECORD, ARRAY, GEOGRAPHY, and JSON, as well as
|
2096
|
+
# fields with REPEATABLE mode.
|
2096
2097
|
# Corresponds to the JSON property `topNValues`
|
2097
2098
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue>]
|
2098
2099
|
attr_accessor :top_n_values
|
@@ -2116,37 +2117,40 @@ module Google
|
|
2116
2117
|
class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoDoubleFieldInfo
|
2117
2118
|
include Google::Apis::Core::Hashable
|
2118
2119
|
|
2119
|
-
# Average of non-null values in the scanned data. NaN, if the field
|
2120
|
+
# Output only. Average of non-null values in the scanned data. NaN, if the field
|
2121
|
+
# has a NaN.
|
2120
2122
|
# Corresponds to the JSON property `average`
|
2121
2123
|
# @return [Float]
|
2122
2124
|
attr_accessor :average
|
2123
2125
|
|
2124
|
-
# Maximum of non-null values in the scanned data. NaN, if the field
|
2126
|
+
# Output only. Maximum of non-null values in the scanned data. NaN, if the field
|
2127
|
+
# has a NaN.
|
2125
2128
|
# Corresponds to the JSON property `max`
|
2126
2129
|
# @return [Float]
|
2127
2130
|
attr_accessor :max
|
2128
2131
|
|
2129
|
-
# Minimum of non-null values in the scanned data. NaN, if the field
|
2132
|
+
# Output only. Minimum of non-null values in the scanned data. NaN, if the field
|
2133
|
+
# has a NaN.
|
2130
2134
|
# Corresponds to the JSON property `min`
|
2131
2135
|
# @return [Float]
|
2132
2136
|
attr_accessor :min
|
2133
2137
|
|
2134
|
-
# A quartile divides the number of data points into four parts, or
|
2135
|
-
# more-or-less equal size. Three main quartiles used are: The first
|
2136
|
-
# splits off the lowest 25% of data from the highest 75%. It is
|
2137
|
-
# the lower or 25th empirical quartile, as 25% of the data is
|
2138
|
-
# The second quartile (Q2) is the median of a data set. So, 50%
|
2139
|
-
# below this point. The third quartile (Q3) splits off the
|
2140
|
-
# from the lowest 75%. It is known as the upper or 75th
|
2141
|
-
# 75% of the data lies below this point. Here, the
|
2142
|
-
# ordered list of quartile values for the scanned
|
2143
|
-
# median, Q3.
|
2138
|
+
# Output only. A quartile divides the number of data points into four parts, or
|
2139
|
+
# quarters, of more-or-less equal size. Three main quartiles used are: The first
|
2140
|
+
# quartile (Q1) splits off the lowest 25% of data from the highest 75%. It is
|
2141
|
+
# also known as the lower or 25th empirical quartile, as 25% of the data is
|
2142
|
+
# below this point. The second quartile (Q2) is the median of a data set. So, 50%
|
2143
|
+
# of the data lies below this point. The third quartile (Q3) splits off the
|
2144
|
+
# highest 25% of data from the lowest 75%. It is known as the upper or 75th
|
2145
|
+
# empirical quartile, as 75% of the data lies below this point. Here, the
|
2146
|
+
# quartiles is provided as an ordered list of quartile values for the scanned
|
2147
|
+
# data, occurring in order Q1, median, Q3.
|
2144
2148
|
# Corresponds to the JSON property `quartiles`
|
2145
2149
|
# @return [Array<Float>]
|
2146
2150
|
attr_accessor :quartiles
|
2147
2151
|
|
2148
|
-
# Standard deviation of non-null values in the scanned data. NaN,
|
2149
|
-
# has a NaN.
|
2152
|
+
# Output only. Standard deviation of non-null values in the scanned data. NaN,
|
2153
|
+
# if the field has a NaN.
|
2150
2154
|
# Corresponds to the JSON property `standardDeviation`
|
2151
2155
|
# @return [Float]
|
2152
2156
|
attr_accessor :standard_deviation
|
@@ -2169,37 +2173,40 @@ module Google
|
|
2169
2173
|
class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoIntegerFieldInfo
|
2170
2174
|
include Google::Apis::Core::Hashable
|
2171
2175
|
|
2172
|
-
# Average of non-null values in the scanned data. NaN, if the field
|
2176
|
+
# Output only. Average of non-null values in the scanned data. NaN, if the field
|
2177
|
+
# has a NaN.
|
2173
2178
|
# Corresponds to the JSON property `average`
|
2174
2179
|
# @return [Float]
|
2175
2180
|
attr_accessor :average
|
2176
2181
|
|
2177
|
-
# Maximum of non-null values in the scanned data. NaN, if the field
|
2182
|
+
# Output only. Maximum of non-null values in the scanned data. NaN, if the field
|
2183
|
+
# has a NaN.
|
2178
2184
|
# Corresponds to the JSON property `max`
|
2179
2185
|
# @return [Fixnum]
|
2180
2186
|
attr_accessor :max
|
2181
2187
|
|
2182
|
-
# Minimum of non-null values in the scanned data. NaN, if the field
|
2188
|
+
# Output only. Minimum of non-null values in the scanned data. NaN, if the field
|
2189
|
+
# has a NaN.
|
2183
2190
|
# Corresponds to the JSON property `min`
|
2184
2191
|
# @return [Fixnum]
|
2185
2192
|
attr_accessor :min
|
2186
2193
|
|
2187
|
-
# A quartile divides the number of data points into four parts, or
|
2188
|
-
# more-or-less equal size. Three main quartiles used are: The first
|
2189
|
-
# splits off the lowest 25% of data from the highest 75%. It is
|
2190
|
-
# the lower or 25th empirical quartile, as 25% of the data is
|
2191
|
-
# The second quartile (Q2) is the median of a data set. So, 50%
|
2192
|
-
# below this point. The third quartile (Q3) splits off the
|
2193
|
-
# from the lowest 75%. It is known as the upper or 75th
|
2194
|
-
# 75% of the data lies below this point. Here, the
|
2195
|
-
# ordered list of approximate quartile values for
|
2196
|
-
# order Q1, median, Q3.
|
2194
|
+
# Output only. A quartile divides the number of data points into four parts, or
|
2195
|
+
# quarters, of more-or-less equal size. Three main quartiles used are: The first
|
2196
|
+
# quartile (Q1) splits off the lowest 25% of data from the highest 75%. It is
|
2197
|
+
# also known as the lower or 25th empirical quartile, as 25% of the data is
|
2198
|
+
# below this point. The second quartile (Q2) is the median of a data set. So, 50%
|
2199
|
+
# of the data lies below this point. The third quartile (Q3) splits off the
|
2200
|
+
# highest 25% of data from the lowest 75%. It is known as the upper or 75th
|
2201
|
+
# empirical quartile, as 75% of the data lies below this point. Here, the
|
2202
|
+
# quartiles is provided as an ordered list of approximate quartile values for
|
2203
|
+
# the scanned data, occurring in order Q1, median, Q3.
|
2197
2204
|
# Corresponds to the JSON property `quartiles`
|
2198
2205
|
# @return [Array<Fixnum>]
|
2199
2206
|
attr_accessor :quartiles
|
2200
2207
|
|
2201
|
-
# Standard deviation of non-null values in the scanned data. NaN,
|
2202
|
-
# has a NaN.
|
2208
|
+
# Output only. Standard deviation of non-null values in the scanned data. NaN,
|
2209
|
+
# if the field has a NaN.
|
2203
2210
|
# Corresponds to the JSON property `standardDeviation`
|
2204
2211
|
# @return [Float]
|
2205
2212
|
attr_accessor :standard_deviation
|
@@ -2222,17 +2229,17 @@ module Google
|
|
2222
2229
|
class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoStringFieldInfo
|
2223
2230
|
include Google::Apis::Core::Hashable
|
2224
2231
|
|
2225
|
-
# Average length of non-null values in the scanned data.
|
2232
|
+
# Output only. Average length of non-null values in the scanned data.
|
2226
2233
|
# Corresponds to the JSON property `averageLength`
|
2227
2234
|
# @return [Float]
|
2228
2235
|
attr_accessor :average_length
|
2229
2236
|
|
2230
|
-
# Maximum length of non-null values in the scanned data.
|
2237
|
+
# Output only. Maximum length of non-null values in the scanned data.
|
2231
2238
|
# Corresponds to the JSON property `maxLength`
|
2232
2239
|
# @return [Fixnum]
|
2233
2240
|
attr_accessor :max_length
|
2234
2241
|
|
2235
|
-
# Minimum length of non-null values in the scanned data.
|
2242
|
+
# Output only. Minimum length of non-null values in the scanned data.
|
2236
2243
|
# Corresponds to the JSON property `minLength`
|
2237
2244
|
# @return [Fixnum]
|
2238
2245
|
attr_accessor :min_length
|
@@ -2253,18 +2260,18 @@ module Google
|
|
2253
2260
|
class GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfoTopNValue
|
2254
2261
|
include Google::Apis::Core::Hashable
|
2255
2262
|
|
2256
|
-
# Count of the corresponding value in the scanned data.
|
2263
|
+
# Output only. Count of the corresponding value in the scanned data.
|
2257
2264
|
# Corresponds to the JSON property `count`
|
2258
2265
|
# @return [Fixnum]
|
2259
2266
|
attr_accessor :count
|
2260
2267
|
|
2261
|
-
# Ratio of the corresponding value in the field against the total
|
2262
|
-
# in the scanned data.
|
2268
|
+
# Output only. Ratio of the corresponding value in the field against the total
|
2269
|
+
# number of rows in the scanned data.
|
2263
2270
|
# Corresponds to the JSON property `ratio`
|
2264
2271
|
# @return [Float]
|
2265
2272
|
attr_accessor :ratio
|
2266
2273
|
|
2267
|
-
# String value of a top N non-null value.
|
2274
|
+
# Output only. String value of a top N non-null value.
|
2268
2275
|
# Corresponds to the JSON property `value`
|
2269
2276
|
# @return [String]
|
2270
2277
|
attr_accessor :value
|
@@ -2301,9 +2308,8 @@ module Google
|
|
2301
2308
|
attr_accessor :post_scan_actions
|
2302
2309
|
|
2303
2310
|
# Optional. A filter applied to all rows in a single DataScan job. The filter
|
2304
|
-
# needs to be a valid SQL expression for a WHERE clause in
|
2305
|
-
#
|
2306
|
-
# where_clause).Example: col1 >= 0 AND col2 < 10
|
2311
|
+
# needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL
|
2312
|
+
# syntax. Example: col1 >= 0 AND col2 < 10
|
2307
2313
|
# Corresponds to the JSON property `rowFilter`
|
2308
2314
|
# @return [String]
|
2309
2315
|
attr_accessor :row_filter
|
@@ -2355,7 +2361,7 @@ module Google
|
|
2355
2361
|
|
2356
2362
|
# Optional. The BigQuery table to export DataProfileScan results to. Format: //
|
2357
2363
|
# bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
2358
|
-
# TABLE_ID
|
2364
|
+
# TABLE_ID
|
2359
2365
|
# Corresponds to the JSON property `resultsTable`
|
2360
2366
|
# @return [String]
|
2361
2367
|
attr_accessor :results_table
|
@@ -2438,7 +2444,7 @@ module Google
|
|
2438
2444
|
class GoogleCloudDataplexV1DataQualityDimension
|
2439
2445
|
include Google::Apis::Core::Hashable
|
2440
2446
|
|
2441
|
-
#
|
2447
|
+
# Output only. The dimension name a rule belongs to. Custom dimension name is
|
2442
2448
|
# supported with all uppercase letters and maximum length of 30 characters.
|
2443
2449
|
# Corresponds to the JSON property `name`
|
2444
2450
|
# @return [String]
|
@@ -2494,7 +2500,8 @@ module Google
|
|
2494
2500
|
class GoogleCloudDataplexV1DataQualityResult
|
2495
2501
|
include Google::Apis::Core::Hashable
|
2496
2502
|
|
2497
|
-
# The status of publishing the data scan result
|
2503
|
+
# The status of publishing the data scan result as Dataplex Universal Catalog
|
2504
|
+
# metadata.
|
2498
2505
|
# Corresponds to the JSON property `catalogPublishingStatus`
|
2499
2506
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus]
|
2500
2507
|
attr_accessor :catalog_publishing_status
|
@@ -3146,8 +3153,8 @@ module Google
|
|
3146
3153
|
class GoogleCloudDataplexV1DataQualitySpec
|
3147
3154
|
include Google::Apis::Core::Hashable
|
3148
3155
|
|
3149
|
-
# Optional. If set, the latest DataScan job result will be published
|
3150
|
-
# Catalog.
|
3156
|
+
# Optional. If set, the latest DataScan job result will be published as Dataplex
|
3157
|
+
# Universal Catalog metadata.
|
3151
3158
|
# Corresponds to the JSON property `catalogPublishingEnabled`
|
3152
3159
|
# @return [Boolean]
|
3153
3160
|
attr_accessor :catalog_publishing_enabled
|
@@ -3486,7 +3493,8 @@ module Google
|
|
3486
3493
|
end
|
3487
3494
|
end
|
3488
3495
|
|
3489
|
-
# The status of publishing the data scan result
|
3496
|
+
# The status of publishing the data scan result as Dataplex Universal Catalog
|
3497
|
+
# metadata.
|
3490
3498
|
class GoogleCloudDataplexV1DataScanCatalogPublishingStatus
|
3491
3499
|
include Google::Apis::Core::Hashable
|
3492
3500
|
|
@@ -3510,7 +3518,8 @@ module Google
|
|
3510
3518
|
class GoogleCloudDataplexV1DataScanEvent
|
3511
3519
|
include Google::Apis::Core::Hashable
|
3512
3520
|
|
3513
|
-
# The status of publishing the data scan result
|
3521
|
+
# The status of publishing the data scan result as Dataplex Universal Catalog
|
3522
|
+
# metadata.
|
3514
3523
|
# Corresponds to the JSON property `catalogPublishingStatus`
|
3515
3524
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanCatalogPublishingStatus]
|
3516
3525
|
attr_accessor :catalog_publishing_status
|
@@ -3967,9 +3976,10 @@ module Google
|
|
3967
3976
|
class GoogleCloudDataplexV1DataSource
|
3968
3977
|
include Google::Apis::Core::Hashable
|
3969
3978
|
|
3970
|
-
# Immutable. The Dataplex entity that represents the data
|
3971
|
-
# table) for DataScan, of the form: projects/`
|
3972
|
-
# location_id`/lakes/`lake_id`/zones/`zone_id`/
|
3979
|
+
# Immutable. The Dataplex Universal Catalog entity that represents the data
|
3980
|
+
# source (e.g. BigQuery table) for DataScan, of the form: projects/`
|
3981
|
+
# project_number`/locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/
|
3982
|
+
# entities/`entity_id`.
|
3973
3983
|
# Corresponds to the JSON property `entity`
|
3974
3984
|
# @return [String]
|
3975
3985
|
attr_accessor :entity
|
@@ -4586,7 +4596,7 @@ module Google
|
|
4586
4596
|
# @return [Hash<String,Google::Apis::DataplexV1::GoogleCloudDataplexV1Aspect>]
|
4587
4597
|
attr_accessor :aspects
|
4588
4598
|
|
4589
|
-
# Output only. The time when the entry was created in Dataplex.
|
4599
|
+
# Output only. The time when the entry was created in Dataplex Universal Catalog.
|
4590
4600
|
# Corresponds to the JSON property `createTime`
|
4591
4601
|
# @return [String]
|
4592
4602
|
attr_accessor :create_time
|
@@ -4626,7 +4636,8 @@ module Google
|
|
4626
4636
|
# @return [String]
|
4627
4637
|
attr_accessor :parent_entry
|
4628
4638
|
|
4629
|
-
# Output only. The time when the entry was last updated in Dataplex
|
4639
|
+
# Output only. The time when the entry was last updated in Dataplex Universal
|
4640
|
+
# Catalog.
|
4630
4641
|
# Corresponds to the JSON property `updateTime`
|
4631
4642
|
# @return [String]
|
4632
4643
|
attr_accessor :update_time
|
@@ -5069,8 +5080,8 @@ module Google
|
|
5069
5080
|
include Google::Apis::Core::Hashable
|
5070
5081
|
|
5071
5082
|
# Immutable. The IAM permission grantable on the Entry Group to allow access to
|
5072
|
-
# instantiate Entries of Dataplex owned Entry Types, only
|
5073
|
-
# owned Types.
|
5083
|
+
# instantiate Entries of Dataplex Universal Catalog owned Entry Types, only
|
5084
|
+
# settable for Dataplex Universal Catalog owned Types.
|
5074
5085
|
# Corresponds to the JSON property `alternateUsePermission`
|
5075
5086
|
# @return [String]
|
5076
5087
|
attr_accessor :alternate_use_permission
|
@@ -5261,7 +5272,7 @@ module Google
|
|
5261
5272
|
class GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
|
5262
5273
|
include Google::Apis::Core::Hashable
|
5263
5274
|
|
5264
|
-
# Required. Dataplex Image version.
|
5275
|
+
# Required. Dataplex Universal Catalog Image version.
|
5265
5276
|
# Corresponds to the JSON property `imageVersion`
|
5266
5277
|
# @return [String]
|
5267
5278
|
attr_accessor :image_version
|
@@ -5369,8 +5380,8 @@ module Google
|
|
5369
5380
|
class GoogleCloudDataplexV1GenerateDataQualityRulesResponse
|
5370
5381
|
include Google::Apis::Core::Hashable
|
5371
5382
|
|
5372
|
-
# The data quality rules that Dataplex generates based on the
|
5373
|
-
# profiling scan.
|
5383
|
+
# The data quality rules that Dataplex Universal Catalog generates based on the
|
5384
|
+
# results of a data profiling scan.
|
5374
5385
|
# Corresponds to the JSON property `rule`
|
5375
5386
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule>]
|
5376
5387
|
attr_accessor :rule
|
@@ -5683,8 +5694,8 @@ module Google
|
|
5683
5694
|
# to the aspect type, in the format `project_id_or_number`.`location_id`.`
|
5684
5695
|
# aspect_type_id`.In FULL entry sync mode, if you leave this field empty, it is
|
5685
5696
|
# treated as specifying exactly those aspects that are present within the
|
5686
|
-
# specified entry. Dataplex implicitly adds the keys for all
|
5687
|
-
# aspects of an entry.
|
5697
|
+
# specified entry. Dataplex Universal Catalog implicitly adds the keys for all
|
5698
|
+
# of the required aspects of an entry.
|
5688
5699
|
# Corresponds to the JSON property `aspectKeys`
|
5689
5700
|
# @return [Array<String>]
|
5690
5701
|
attr_accessor :aspect_keys
|
@@ -5701,18 +5712,19 @@ module Google
|
|
5701
5712
|
attr_accessor :entry_link
|
5702
5713
|
|
5703
5714
|
# The fields to update, in paths that are relative to the Entry resource.
|
5704
|
-
# Separate each field with a comma.In FULL entry sync mode, Dataplex
|
5705
|
-
# the paths of all of the fields for an entry that can be
|
5706
|
-
# aspects. This means that Dataplex
|
5707
|
-
# in the metadata import file. All
|
5708
|
-
#
|
5709
|
-
# field is present in the entry object.
|
5710
|
-
# entry is created or re-created.In an
|
5711
|
-
# mode is NONE), set this value to
|
5712
|
-
#
|
5713
|
-
#
|
5714
|
-
#
|
5715
|
-
# google.com/dataplex/
|
5715
|
+
# Separate each field with a comma.In FULL entry sync mode, Dataplex Universal
|
5716
|
+
# Catalog includes the paths of all of the fields for an entry that can be
|
5717
|
+
# modified, including aspects. This means that Dataplex Universal Catalog
|
5718
|
+
# replaces the existing entry with the entry in the metadata import file. All
|
5719
|
+
# modifiable fields are updated, regardless of the fields that are listed in the
|
5720
|
+
# update mask, and regardless of whether a field is present in the entry object.
|
5721
|
+
# The update_mask field is ignored when an entry is created or re-created.In an
|
5722
|
+
# aspect-only metadata job (when entry sync mode is NONE), set this value to
|
5723
|
+
# aspects.Dataplex Universal Catalog also determines which entries and aspects
|
5724
|
+
# to modify by comparing the values and timestamps that you provide in the
|
5725
|
+
# metadata import file with the values and timestamps that exist in your project.
|
5726
|
+
# For more information, see Comparison logic (https://cloud.google.com/dataplex/
|
5727
|
+
# docs/import-metadata#data-modification-logic).
|
5716
5728
|
# Corresponds to the JSON property `updateMask`
|
5717
5729
|
# @return [String]
|
5718
5730
|
attr_accessor :update_mask
|
@@ -6903,10 +6915,10 @@ module Google
|
|
6903
6915
|
# Required. The root path of the Cloud Storage bucket to export the metadata to,
|
6904
6916
|
# in the format gs://`bucket`/. You can optionally specify a custom prefix after
|
6905
6917
|
# the bucket name, in the format gs://`bucket`/`prefix`/. The maximum length of
|
6906
|
-
# the custom prefix is 128 characters. Dataplex constructs the
|
6907
|
-
# the exported files by using the bucket name and prefix that
|
6908
|
-
# followed by a system-generated path.The bucket must be in the
|
6909
|
-
# Controls perimeter as the job.
|
6918
|
+
# the custom prefix is 128 characters. Dataplex Universal Catalog constructs the
|
6919
|
+
# object path for the exported files by using the bucket name and prefix that
|
6920
|
+
# you provide, followed by a system-generated path.The bucket must be in the
|
6921
|
+
# same VPC Service Controls perimeter as the job.
|
6910
6922
|
# Corresponds to the JSON property `outputPath`
|
6911
6923
|
# @return [String]
|
6912
6924
|
attr_accessor :output_path
|
@@ -7498,18 +7510,18 @@ module Google
|
|
7498
7510
|
class GoogleCloudDataplexV1ScannedDataIncrementalField
|
7499
7511
|
include Google::Apis::Core::Hashable
|
7500
7512
|
|
7501
|
-
# Value that marks the end of the range.
|
7513
|
+
# Output only. Value that marks the end of the range.
|
7502
7514
|
# Corresponds to the JSON property `end`
|
7503
7515
|
# @return [String]
|
7504
7516
|
attr_accessor :end
|
7505
7517
|
|
7506
|
-
# The field that contains values which monotonically increases over
|
7507
|
-
# timestamp column).
|
7518
|
+
# Output only. The field that contains values which monotonically increases over
|
7519
|
+
# time (e.g. a timestamp column).
|
7508
7520
|
# Corresponds to the JSON property `field`
|
7509
7521
|
# @return [String]
|
7510
7522
|
attr_accessor :field
|
7511
7523
|
|
7512
|
-
# Value that marks the start of the range.
|
7524
|
+
# Output only. Value that marks the start of the range.
|
7513
7525
|
# Corresponds to the JSON property `start`
|
7514
7526
|
# @return [String]
|
7515
7527
|
attr_accessor :start
|
@@ -7547,14 +7559,16 @@ module Google
|
|
7547
7559
|
# @return [String]
|
7548
7560
|
attr_accessor :partition_style
|
7549
7561
|
|
7550
|
-
# Required. Set to true if user-managed or false if managed by Dataplex
|
7551
|
-
# default is false (managed by Dataplex
|
7552
|
-
#
|
7553
|
-
#
|
7554
|
-
#
|
7555
|
-
#
|
7556
|
-
#
|
7557
|
-
#
|
7562
|
+
# Required. Set to true if user-managed or false if managed by Dataplex
|
7563
|
+
# Universal Catalog. The default is false (managed by Dataplex Universal Catalog)
|
7564
|
+
# . Set to falseto enable Dataplex Universal Catalog discovery to update the
|
7565
|
+
# schema. including new data discovery, schema inference, and schema evolution.
|
7566
|
+
# Users retain the ability to input and edit the schema. Dataplex Universal
|
7567
|
+
# Catalog treats schema input by the user as though produced by a previous
|
7568
|
+
# Dataplex Universal Catalog discovery operation, and it will evolve the schema
|
7569
|
+
# and take action based on that treatment. Set to true to fully manage the
|
7570
|
+
# entity schema. This setting guarantees that Dataplex Universal Catalog will
|
7571
|
+
# not change schema fields.
|
7558
7572
|
# Corresponds to the JSON property `userManaged`
|
7559
7573
|
# @return [Boolean]
|
7560
7574
|
attr_accessor :user_managed
|
@@ -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.83.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,7 +22,7 @@ module Google
|
|
22
22
|
module DataplexV1
|
23
23
|
# Cloud Dataplex API
|
24
24
|
#
|
25
|
-
#
|
25
|
+
# A unified, intelligent governance solution for data and AI assets.
|
26
26
|
#
|
27
27
|
# @example
|
28
28
|
# require 'google/apis/dataplex_v1'
|
@@ -651,8 +651,8 @@ module Google
|
|
651
651
|
# to retrieve the subsequent page.
|
652
652
|
# @param [String] query
|
653
653
|
# Required. The query against which entries in scope should be matched. The
|
654
|
-
# query syntax is defined in Search syntax for Dataplex Catalog (https
|
655
|
-
# google.com/dataplex/docs/search-syntax).
|
654
|
+
# query syntax is defined in Search syntax for Dataplex Universal Catalog (https:
|
655
|
+
# //cloud.google.com/dataplex/docs/search-syntax).
|
656
656
|
# @param [String] scope
|
657
657
|
# Optional. The scope under which the search should be operating. It must either
|
658
658
|
# be organizations/ or projects/. If it is unspecified, it defaults to the
|
@@ -7864,8 +7864,8 @@ module Google
|
|
7864
7864
|
execute_or_queue_command(command, &block)
|
7865
7865
|
end
|
7866
7866
|
|
7867
|
-
# Creates a metadata job. For example, use a metadata job to import
|
7868
|
-
#
|
7867
|
+
# Creates a metadata job. For example, use a metadata job to import metadata
|
7868
|
+
# from a third-party system into Dataplex Universal Catalog.
|
7869
7869
|
# @param [String] parent
|
7870
7870
|
# Required. The resource name of the parent location, in the format projects/`
|
7871
7871
|
# project_id_or_number`/locations/`location_id`
|
@@ -21,7 +21,7 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Cloud Dataplex API
|
23
23
|
#
|
24
|
-
#
|
24
|
+
# A unified, intelligent governance solution for data and AI assets.
|
25
25
|
#
|
26
26
|
# @see https://cloud.google.com/dataplex/docs
|
27
27
|
module DataplexV1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.83.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.83.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|