google-apis-dataplex_v1 0.68.0 → 0.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8278fa3078ff2a8c8a2229ad2ab0edcb36813219a929037604f243e11e62846c
|
4
|
+
data.tar.gz: ef475725356f129a1b392f356c494376c49c268c9fa1d9e1745cd7da3b12db53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd94f9f10f402857baea78614d20431dec9d2aae108b4975b2236bdbf84deda49c210b4b8cebcf63b229b2bfff2b0580c952688d54ffbcdeaf0886408ba0e376
|
7
|
+
data.tar.gz: 66842db04ba6bdf599201dfc8d70a675991690dd750a68e2eb6971c2d617b12decf0882da31b4a5044a3a08e6b44a45bce07c2e34081629f95d6d87b441c3ef7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.69.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250222
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.68.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241206
|
@@ -1169,6 +1169,37 @@ module Google
|
|
1169
1169
|
end
|
1170
1170
|
end
|
1171
1171
|
|
1172
|
+
# Payload associated with Business Glossary related log events.
|
1173
|
+
class GoogleCloudDataplexV1BusinessGlossaryEvent
|
1174
|
+
include Google::Apis::Core::Hashable
|
1175
|
+
|
1176
|
+
# The type of the event.
|
1177
|
+
# Corresponds to the JSON property `eventType`
|
1178
|
+
# @return [String]
|
1179
|
+
attr_accessor :event_type
|
1180
|
+
|
1181
|
+
# The log message.
|
1182
|
+
# Corresponds to the JSON property `message`
|
1183
|
+
# @return [String]
|
1184
|
+
attr_accessor :message
|
1185
|
+
|
1186
|
+
# Name of the resource.
|
1187
|
+
# Corresponds to the JSON property `resource`
|
1188
|
+
# @return [String]
|
1189
|
+
attr_accessor :resource
|
1190
|
+
|
1191
|
+
def initialize(**args)
|
1192
|
+
update!(**args)
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
# Update properties of this object
|
1196
|
+
def update!(**args)
|
1197
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1198
|
+
@message = args[:message] if args.key?(:message)
|
1199
|
+
@resource = args[:resource] if args.key?(:resource)
|
1200
|
+
end
|
1201
|
+
end
|
1202
|
+
|
1172
1203
|
# Cancel task jobs.
|
1173
1204
|
class GoogleCloudDataplexV1CancelJobRequest
|
1174
1205
|
include Google::Apis::Core::Hashable
|
@@ -1637,6 +1668,26 @@ module Google
|
|
1637
1668
|
# @return [String]
|
1638
1669
|
attr_accessor :connection
|
1639
1670
|
|
1671
|
+
# Optional. The location of the BigQuery dataset to publish BigLake external or
|
1672
|
+
# non-BigLake external tables to. 1. If the Cloud Storage bucket is located in a
|
1673
|
+
# multi-region bucket, then BigQuery dataset can be in the same multi-region
|
1674
|
+
# bucket or any single region that is included in the same multi-region bucket.
|
1675
|
+
# The datascan can be created in any single region that is included in the same
|
1676
|
+
# multi-region bucket 2. If the Cloud Storage bucket is located in a dual-region
|
1677
|
+
# bucket, then BigQuery dataset can be located in regions that are included in
|
1678
|
+
# the dual-region bucket, or in a multi-region that includes the dual-region.
|
1679
|
+
# The datascan can be created in any single region that is included in the same
|
1680
|
+
# dual-region bucket. 3. If the Cloud Storage bucket is located in a single
|
1681
|
+
# region, then BigQuery dataset can be in the same single region or any multi-
|
1682
|
+
# region bucket that includes the same single region. The datascan will be
|
1683
|
+
# created in the same single region as the bucket. 4. If the BigQuery dataset is
|
1684
|
+
# in single region, it must be in the same single region as the datascan.For
|
1685
|
+
# supported values, refer to https://cloud.google.com/bigquery/docs/locations#
|
1686
|
+
# supported_locations.
|
1687
|
+
# Corresponds to the JSON property `location`
|
1688
|
+
# @return [String]
|
1689
|
+
attr_accessor :location
|
1690
|
+
|
1640
1691
|
# Optional. Determines whether to publish discovered tables as BigLake external
|
1641
1692
|
# tables or non-BigLake external tables.
|
1642
1693
|
# Corresponds to the JSON property `tableType`
|
@@ -1650,6 +1701,7 @@ module Google
|
|
1650
1701
|
# Update properties of this object
|
1651
1702
|
def update!(**args)
|
1652
1703
|
@connection = args[:connection] if args.key?(:connection)
|
1704
|
+
@location = args[:location] if args.key?(:location)
|
1653
1705
|
@table_type = args[:table_type] if args.key?(:table_type)
|
1654
1706
|
end
|
1655
1707
|
end
|
@@ -2164,8 +2216,9 @@ module Google
|
|
2164
2216
|
attr_accessor :post_scan_actions
|
2165
2217
|
|
2166
2218
|
# Optional. A filter applied to all rows in a single DataScan job. The filter
|
2167
|
-
# needs to be a valid SQL expression for a WHERE clause in
|
2168
|
-
# syntax
|
2219
|
+
# needs to be a valid SQL expression for a WHERE clause in GoogleSQL syntax (
|
2220
|
+
# https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#
|
2221
|
+
# where_clause).Example: col1 >= 0 AND col2 < 10
|
2169
2222
|
# Corresponds to the JSON property `rowFilter`
|
2170
2223
|
# @return [String]
|
2171
2224
|
attr_accessor :row_filter
|
@@ -2503,8 +2556,9 @@ module Google
|
|
2503
2556
|
attr_accessor :regex_expectation
|
2504
2557
|
|
2505
2558
|
# Evaluates whether each row passes the specified condition.The SQL expression
|
2506
|
-
# needs to use
|
2507
|
-
#
|
2559
|
+
# needs to use GoogleSQL syntax (https://cloud.google.com/bigquery/docs/
|
2560
|
+
# reference/standard-sql/query-syntax) and should produce a boolean value per
|
2561
|
+
# row as the result.Example: col1 >= 0 AND col2 < 10
|
2508
2562
|
# Corresponds to the JSON property `rowConditionExpectation`
|
2509
2563
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation]
|
2510
2564
|
attr_accessor :row_condition_expectation
|
@@ -2516,10 +2570,11 @@ module Google
|
|
2516
2570
|
|
2517
2571
|
# A SQL statement that is evaluated to return rows that match an invalid state.
|
2518
2572
|
# If any rows are are returned, this rule fails.The SQL statement must use
|
2519
|
-
#
|
2520
|
-
#
|
2521
|
-
#
|
2522
|
-
#
|
2573
|
+
# GoogleSQL syntax (https://cloud.google.com/bigquery/docs/reference/standard-
|
2574
|
+
# sql/query-syntax), and must not contain any semicolons.You can use the data
|
2575
|
+
# reference parameter $`data()` to reference the source table with all of its
|
2576
|
+
# precondition filters applied. Examples of precondition filters include row
|
2577
|
+
# filters, incremental data filters, and sampling. For more information, see
|
2523
2578
|
# Data reference parameter (https://cloud.google.com/dataplex/docs/auto-data-
|
2524
2579
|
# quality-overview#data-reference-parameter).Example: SELECT * FROM $`data()`
|
2525
2580
|
# WHERE price < 0
|
@@ -2540,8 +2595,9 @@ module Google
|
|
2540
2595
|
alias_method :suspended?, :suspended
|
2541
2596
|
|
2542
2597
|
# Evaluates whether the provided expression is true.The SQL expression needs to
|
2543
|
-
# use
|
2544
|
-
#
|
2598
|
+
# use GoogleSQL syntax (https://cloud.google.com/bigquery/docs/reference/
|
2599
|
+
# standard-sql/query-syntax) and should produce a scalar boolean result.Example:
|
2600
|
+
# MIN(col1) >= 0
|
2545
2601
|
# Corresponds to the JSON property `tableConditionExpectation`
|
2546
2602
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation]
|
2547
2603
|
attr_accessor :table_condition_expectation
|
@@ -2674,6 +2730,7 @@ module Google
|
|
2674
2730
|
# row-level type rules.Evaluated count can be configured to either include all
|
2675
2731
|
# rows (default) - with null rows automatically failing rule evaluation, or
|
2676
2732
|
# exclude null rows from the evaluated_count, by setting ignore_nulls = true.
|
2733
|
+
# This field is not set for rule SqlAssertion.
|
2677
2734
|
# Corresponds to the JSON property `evaluatedCount`
|
2678
2735
|
# @return [Fixnum]
|
2679
2736
|
attr_accessor :evaluated_count
|
@@ -2701,8 +2758,7 @@ module Google
|
|
2701
2758
|
attr_accessor :passed
|
2702
2759
|
alias_method :passed?, :passed
|
2703
2760
|
|
2704
|
-
#
|
2705
|
-
# row-level type rules.
|
2761
|
+
# This field is not set for rule SqlAssertion.
|
2706
2762
|
# Corresponds to the JSON property `passedCount`
|
2707
2763
|
# @return [Fixnum]
|
2708
2764
|
attr_accessor :passed_count
|
@@ -2730,8 +2786,9 @@ module Google
|
|
2730
2786
|
end
|
2731
2787
|
|
2732
2788
|
# Evaluates whether each row passes the specified condition.The SQL expression
|
2733
|
-
# needs to use
|
2734
|
-
#
|
2789
|
+
# needs to use GoogleSQL syntax (https://cloud.google.com/bigquery/docs/
|
2790
|
+
# reference/standard-sql/query-syntax) and should produce a boolean value per
|
2791
|
+
# row as the result.Example: col1 >= 0 AND col2 < 10
|
2735
2792
|
class GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation
|
2736
2793
|
include Google::Apis::Core::Hashable
|
2737
2794
|
|
@@ -2771,10 +2828,11 @@ module Google
|
|
2771
2828
|
|
2772
2829
|
# A SQL statement that is evaluated to return rows that match an invalid state.
|
2773
2830
|
# If any rows are are returned, this rule fails.The SQL statement must use
|
2774
|
-
#
|
2775
|
-
#
|
2776
|
-
#
|
2777
|
-
#
|
2831
|
+
# GoogleSQL syntax (https://cloud.google.com/bigquery/docs/reference/standard-
|
2832
|
+
# sql/query-syntax), and must not contain any semicolons.You can use the data
|
2833
|
+
# reference parameter $`data()` to reference the source table with all of its
|
2834
|
+
# precondition filters applied. Examples of precondition filters include row
|
2835
|
+
# filters, incremental data filters, and sampling. For more information, see
|
2778
2836
|
# Data reference parameter (https://cloud.google.com/dataplex/docs/auto-data-
|
2779
2837
|
# quality-overview#data-reference-parameter).Example: SELECT * FROM $`data()`
|
2780
2838
|
# WHERE price < 0
|
@@ -2849,8 +2907,9 @@ module Google
|
|
2849
2907
|
end
|
2850
2908
|
|
2851
2909
|
# Evaluates whether the provided expression is true.The SQL expression needs to
|
2852
|
-
# use
|
2853
|
-
#
|
2910
|
+
# use GoogleSQL syntax (https://cloud.google.com/bigquery/docs/reference/
|
2911
|
+
# standard-sql/query-syntax) and should produce a scalar boolean result.Example:
|
2912
|
+
# MIN(col1) >= 0
|
2854
2913
|
class GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation
|
2855
2914
|
include Google::Apis::Core::Hashable
|
2856
2915
|
|
@@ -2987,8 +3046,9 @@ module Google
|
|
2987
3046
|
attr_accessor :post_scan_actions
|
2988
3047
|
|
2989
3048
|
# Optional. A filter applied to all rows in a single DataScan job. The filter
|
2990
|
-
# needs to be a valid SQL expression for a WHERE clause in
|
2991
|
-
# syntax
|
3049
|
+
# needs to be a valid SQL expression for a WHERE clause in GoogleSQL syntax (
|
3050
|
+
# https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#
|
3051
|
+
# where_clause).Example: col1 >= 0 AND col2 < 10
|
2992
3052
|
# Corresponds to the JSON property `rowFilter`
|
2993
3053
|
# @return [String]
|
2994
3054
|
attr_accessor :row_filter
|
@@ -3177,11 +3237,16 @@ module Google
|
|
3177
3237
|
end
|
3178
3238
|
|
3179
3239
|
# Represents a user-visible job which provides the insights for the related data
|
3180
|
-
# source.For example: Data
|
3181
|
-
# runs against the data to get data quality check results.
|
3182
|
-
#
|
3183
|
-
#
|
3184
|
-
#
|
3240
|
+
# source.For example: Data quality: generates queries based on the rules and
|
3241
|
+
# runs against the data to get data quality check results. For more information,
|
3242
|
+
# see Auto data quality overview (https://cloud.google.com/dataplex/docs/auto-
|
3243
|
+
# data-quality-overview). Data profile: analyzes the data in tables and
|
3244
|
+
# generates insights about the structure, content and relationships (such as
|
3245
|
+
# null percent, cardinality, min/max/mean, etc). For more information, see About
|
3246
|
+
# data profiling (https://cloud.google.com/dataplex/docs/data-profiling-overview)
|
3247
|
+
# . Data discovery: scans data in Cloud Storage buckets to extract and then
|
3248
|
+
# catalog metadata. For more information, see Discover and catalog Cloud Storage
|
3249
|
+
# data (https://cloud.google.com/bigquery/docs/automatic-discovery).
|
3185
3250
|
class GoogleCloudDataplexV1DataScan
|
3186
3251
|
include Google::Apis::Core::Hashable
|
3187
3252
|
|
@@ -4327,7 +4392,9 @@ module Google
|
|
4327
4392
|
# @return [String]
|
4328
4393
|
attr_accessor :name
|
4329
4394
|
|
4330
|
-
# Optional. Immutable. The resource name of the parent entry
|
4395
|
+
# Optional. Immutable. The resource name of the parent entry, in the format
|
4396
|
+
# projects/`project_id_or_number`/locations/`location_id`/entryGroups/`
|
4397
|
+
# entry_group_id`/entries/`entry_id`.
|
4331
4398
|
# Corresponds to the JSON property `parentEntry`
|
4332
4399
|
# @return [String]
|
4333
4400
|
attr_accessor :parent_entry
|
@@ -5044,13 +5111,14 @@ module Google
|
|
5044
5111
|
# The aspects to modify. Supports the following syntaxes: `aspect_type_reference`
|
5045
5112
|
# : matches aspects that belong to the specified aspect type and are attached
|
5046
5113
|
# directly to the entry. `aspect_type_reference`@`path`: matches aspects that
|
5047
|
-
# belong to the specified aspect type and path.
|
5048
|
-
# given type for all paths. *@path : matches aspects of
|
5049
|
-
# path.
|
5050
|
-
# the format `project_id_or_number`.`location_id`.`
|
5051
|
-
#
|
5052
|
-
#
|
5053
|
-
# implicitly adds the keys for all of the required
|
5114
|
+
# belong to the specified aspect type and path. `aspect_type_reference`@* :
|
5115
|
+
# matches aspects of the given type for all paths. *@path : matches aspects of
|
5116
|
+
# all types on the given path.Replace `aspect_type_reference` with a reference
|
5117
|
+
# to the aspect type, in the format `project_id_or_number`.`location_id`.`
|
5118
|
+
# aspect_type_id`.In FULL entry sync mode, if you leave this field empty, it is
|
5119
|
+
# treated as specifying exactly those aspects that are present within the
|
5120
|
+
# specified entry. Dataplex implicitly adds the keys for all of the required
|
5121
|
+
# aspects of an entry.
|
5054
5122
|
# Corresponds to the JSON property `aspectKeys`
|
5055
5123
|
# @return [Array<String>]
|
5056
5124
|
attr_accessor :aspect_keys
|
@@ -5068,11 +5136,12 @@ module Google
|
|
5068
5136
|
# in the metadata import file. All modifiable fields are updated, regardless of
|
5069
5137
|
# the fields that are listed in the update mask, and regardless of whether a
|
5070
5138
|
# field is present in the entry object.The update_mask field is ignored when an
|
5071
|
-
# entry is created or re-created.
|
5072
|
-
#
|
5073
|
-
#
|
5074
|
-
#
|
5075
|
-
#
|
5139
|
+
# entry is created or re-created.In an aspect-only metadata job (when entry sync
|
5140
|
+
# mode is NONE), set this value to aspects.Dataplex also determines which
|
5141
|
+
# entries and aspects to modify by comparing the values and timestamps that you
|
5142
|
+
# provide in the metadata import file with the values and timestamps that exist
|
5143
|
+
# in your project. For more information, see Comparison logic (https://cloud.
|
5144
|
+
# google.com/dataplex/docs/import-metadata#data-modification-logic).
|
5076
5145
|
# Corresponds to the JSON property `updateMask`
|
5077
5146
|
# @return [String]
|
5078
5147
|
attr_accessor :update_mask
|
@@ -6024,7 +6093,12 @@ module Google
|
|
6024
6093
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobResult]
|
6025
6094
|
attr_accessor :import_result
|
6026
6095
|
|
6027
|
-
# Job specification for a metadata import job
|
6096
|
+
# Job specification for a metadata import job.You can run the following kinds of
|
6097
|
+
# metadata import jobs: Full sync of entries with incremental import of their
|
6098
|
+
# aspects. Supported for custom entries. Incremental import of aspects only.
|
6099
|
+
# Supported for aspects that belong to custom entries and system entries. For
|
6100
|
+
# custom entries, you can modify both optional aspects and required aspects. For
|
6101
|
+
# system entries, you can modify optional aspects.
|
6028
6102
|
# Corresponds to the JSON property `importSpec`
|
6029
6103
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobImportJobSpec]
|
6030
6104
|
attr_accessor :import_spec
|
@@ -6130,21 +6204,21 @@ module Google
|
|
6130
6204
|
end
|
6131
6205
|
end
|
6132
6206
|
|
6133
|
-
# Job specification for a metadata import job
|
6207
|
+
# Job specification for a metadata import job.You can run the following kinds of
|
6208
|
+
# metadata import jobs: Full sync of entries with incremental import of their
|
6209
|
+
# aspects. Supported for custom entries. Incremental import of aspects only.
|
6210
|
+
# Supported for aspects that belong to custom entries and system entries. For
|
6211
|
+
# custom entries, you can modify both optional aspects and required aspects. For
|
6212
|
+
# system entries, you can modify optional aspects.
|
6134
6213
|
class GoogleCloudDataplexV1MetadataJobImportJobSpec
|
6135
6214
|
include Google::Apis::Core::Hashable
|
6136
6215
|
|
6137
|
-
# Required. The sync mode for aspects.
|
6138
|
-
# aspects. An aspect is modified only if the metadata import file includes a
|
6139
|
-
# reference to the aspect in the update_mask field and the aspect_keys field.
|
6216
|
+
# Required. The sync mode for aspects.
|
6140
6217
|
# Corresponds to the JSON property `aspectSyncMode`
|
6141
6218
|
# @return [String]
|
6142
6219
|
attr_accessor :aspect_sync_mode
|
6143
6220
|
|
6144
|
-
# Required. The sync mode for entries.
|
6145
|
-
# All entries in the job's scope are modified. If an entry exists in Dataplex
|
6146
|
-
# but isn't included in the metadata import file, the entry is deleted when you
|
6147
|
-
# run the metadata job.
|
6221
|
+
# Required. The sync mode for entries.
|
6148
6222
|
# Corresponds to the JSON property `entrySyncMode`
|
6149
6223
|
# @return [String]
|
6150
6224
|
attr_accessor :entry_sync_mode
|
@@ -6207,20 +6281,20 @@ module Google
|
|
6207
6281
|
# Optional. The aspect types that are in scope for the import job, specified as
|
6208
6282
|
# relative resource names in the format projects/`project_number_or_id`/
|
6209
6283
|
# locations/`location_id`/aspectTypes/`aspect_type_id`. The job modifies only
|
6210
|
-
# the aspects that belong to these aspect types.
|
6211
|
-
#
|
6212
|
-
#
|
6213
|
-
#
|
6214
|
-
# must be global.
|
6284
|
+
# the aspects that belong to these aspect types.This field is required when
|
6285
|
+
# creating an aspect-only import job.If the metadata import file attempts to
|
6286
|
+
# modify an aspect whose type isn't included in this list, the import job is
|
6287
|
+
# halted before modifying any entries or aspects.The location of an aspect type
|
6288
|
+
# must either match the location of the job, or the aspect type must be global.
|
6215
6289
|
# Corresponds to the JSON property `aspectTypes`
|
6216
6290
|
# @return [Array<String>]
|
6217
6291
|
attr_accessor :aspect_types
|
6218
6292
|
|
6219
6293
|
# Required. The entry group that is in scope for the import job, specified as a
|
6220
6294
|
# relative resource name in the format projects/`project_number_or_id`/locations/
|
6221
|
-
# `location_id`/entryGroups/`entry_group_id`. Only entries
|
6222
|
-
# specified entry group are affected by the job.Must contain
|
6223
|
-
# The entry group and the job must be in the same location.
|
6295
|
+
# `location_id`/entryGroups/`entry_group_id`. Only entries and aspects that
|
6296
|
+
# belong to the specified entry group are affected by the job.Must contain
|
6297
|
+
# exactly one element. The entry group and the job must be in the same location.
|
6224
6298
|
# Corresponds to the JSON property `entryGroups`
|
6225
6299
|
# @return [Array<String>]
|
6226
6300
|
attr_accessor :entry_groups
|
@@ -6228,10 +6302,11 @@ module Google
|
|
6228
6302
|
# Required. The entry types that are in scope for the import job, specified as
|
6229
6303
|
# relative resource names in the format projects/`project_number_or_id`/
|
6230
6304
|
# locations/`location_id`/entryTypes/`entry_type_id`. The job modifies only the
|
6231
|
-
# entries that belong to these entry types.If the metadata import
|
6232
|
-
# to modify an entry whose type isn't included in this list, the
|
6233
|
-
# halted before modifying any entries or aspects.The location of
|
6234
|
-
# must either match the location of the job, or the entry type
|
6305
|
+
# entries and aspects that belong to these entry types.If the metadata import
|
6306
|
+
# file attempts to modify an entry whose type isn't included in this list, the
|
6307
|
+
# import job is halted before modifying any entries or aspects.The location of
|
6308
|
+
# an entry type must either match the location of the job, or the entry type
|
6309
|
+
# must be global.
|
6235
6310
|
# Corresponds to the JSON property `entryTypes`
|
6236
6311
|
# @return [Array<String>]
|
6237
6312
|
attr_accessor :entry_types
|
@@ -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.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250222"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -190,6 +190,12 @@ module Google
|
|
190
190
|
include Google::Apis::Core::JsonObjectSupport
|
191
191
|
end
|
192
192
|
|
193
|
+
class GoogleCloudDataplexV1BusinessGlossaryEvent
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
193
199
|
class GoogleCloudDataplexV1CancelJobRequest
|
194
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
201
|
|
@@ -1597,6 +1603,15 @@ module Google
|
|
1597
1603
|
end
|
1598
1604
|
end
|
1599
1605
|
|
1606
|
+
class GoogleCloudDataplexV1BusinessGlossaryEvent
|
1607
|
+
# @private
|
1608
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1609
|
+
property :event_type, as: 'eventType'
|
1610
|
+
property :message, as: 'message'
|
1611
|
+
property :resource, as: 'resource'
|
1612
|
+
end
|
1613
|
+
end
|
1614
|
+
|
1600
1615
|
class GoogleCloudDataplexV1CancelJobRequest
|
1601
1616
|
# @private
|
1602
1617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1723,6 +1738,7 @@ module Google
|
|
1723
1738
|
# @private
|
1724
1739
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1725
1740
|
property :connection, as: 'connection'
|
1741
|
+
property :location, as: 'location'
|
1726
1742
|
property :table_type, as: 'tableType'
|
1727
1743
|
end
|
1728
1744
|
end
|
@@ -389,10 +389,7 @@ module Google
|
|
389
389
|
execute_or_queue_command(command, &block)
|
390
390
|
end
|
391
391
|
|
392
|
-
# Looks up
|
393
|
-
# Caution: The BigQuery metadata that is stored in Dataplex Catalog is changing.
|
394
|
-
# For more information, see Changes to BigQuery metadata stored in Dataplex
|
395
|
-
# Catalog (https://cloud.google.com/dataplex/docs/biqquery-metadata-changes).
|
392
|
+
# Looks up an entry by name using the permission on the source system.
|
396
393
|
# @param [String] name
|
397
394
|
# Required. The project to which the request should be attributed in the
|
398
395
|
# following form: projects/`project`/locations/`location`.
|
@@ -443,8 +440,8 @@ module Google
|
|
443
440
|
# Required. The project to which the request should be attributed in the
|
444
441
|
# following form: projects/`project`/locations/`location`.
|
445
442
|
# @param [String] order_by
|
446
|
-
# Optional. Specifies the ordering of results. Supported values are:
|
447
|
-
#
|
443
|
+
# Optional. Specifies the ordering of results. Supported values are: relevance (
|
444
|
+
# default) last_modified_timestamp last_modified_timestamp asc
|
448
445
|
# @param [Fixnum] page_size
|
449
446
|
# Optional. Number of results in the search page. If <=0, then defaults to 10.
|
450
447
|
# Max limit for page_size is 1000. Throws an invalid argument for page_size >
|
@@ -1673,9 +1670,6 @@ module Google
|
|
1673
1670
|
|
1674
1671
|
# Create a DataTaxonomy resource.
|
1675
1672
|
# @param [String] parent
|
1676
|
-
# Required. The resource name of the data taxonomy location, of the form:
|
1677
|
-
# projects/`project_number`/locations/`location_id` where location_id refers to
|
1678
|
-
# a GCP region.
|
1679
1673
|
# @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1DataTaxonomy] google_cloud_dataplex_v1_data_taxonomy_object
|
1680
1674
|
# @param [String] data_taxonomy_id
|
1681
1675
|
# Required. DataTaxonomy identifier. * Must contain only lowercase letters,
|
@@ -1754,8 +1748,6 @@ module Google
|
|
1754
1748
|
|
1755
1749
|
# Retrieves a DataTaxonomy resource.
|
1756
1750
|
# @param [String] name
|
1757
|
-
# Required. The resource name of the DataTaxonomy: projects/`project_number`/
|
1758
|
-
# locations/`location_id`/dataTaxonomies/`data_taxonomy_id`
|
1759
1751
|
# @param [String] fields
|
1760
1752
|
# Selector specifying which fields to include in a partial response.
|
1761
1753
|
# @param [String] quota_user
|
@@ -2718,10 +2710,7 @@ module Google
|
|
2718
2710
|
execute_or_queue_command(command, &block)
|
2719
2711
|
end
|
2720
2712
|
|
2721
|
-
# Gets an Entry.
|
2722
|
-
# Catalog is changing. For more information, see Changes to BigQuery metadata
|
2723
|
-
# stored in Dataplex Catalog (https://cloud.google.com/dataplex/docs/biqquery-
|
2724
|
-
# metadata-changes).
|
2713
|
+
# Gets an Entry.
|
2725
2714
|
# @param [String] name
|
2726
2715
|
# Required. The resource name of the Entry: projects/`project`/locations/`
|
2727
2716
|
# location`/entryGroups/`entry_group`/entries/`entry`.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.69.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Dataplex API V1
|
82
79
|
test_files: []
|