google-cloud-dataplex-v1 1.0.1 → 1.1.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/lib/google/cloud/dataplex/v1/bindings_override.rb +120 -0
- data/lib/google/cloud/dataplex/v1/catalog_pb.rb +17 -1
- data/lib/google/cloud/dataplex/v1/catalog_service/client.rb +585 -121
- data/lib/google/cloud/dataplex/v1/catalog_service/operations.rb +3 -10
- data/lib/google/cloud/dataplex/v1/catalog_service/paths.rb +19 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/client.rb +556 -121
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/operations.rb +32 -10
- data/lib/google/cloud/dataplex/v1/catalog_service/rest/service_stub.rb +238 -0
- data/lib/google/cloud/dataplex/v1/catalog_service/rest.rb +4 -4
- data/lib/google/cloud/dataplex/v1/catalog_service.rb +4 -4
- data/lib/google/cloud/dataplex/v1/catalog_services_pb.rb +44 -20
- data/lib/google/cloud/dataplex/v1/data_discovery_pb.rb +52 -0
- data/lib/google/cloud/dataplex/v1/data_quality_pb.rb +1 -1
- data/lib/google/cloud/dataplex/v1/data_scan_service/operations.rb +3 -10
- data/lib/google/cloud/dataplex/v1/data_scan_service/paths.rb +36 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb +32 -10
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/operations.rb +3 -10
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/operations.rb +32 -10
- data/lib/google/cloud/dataplex/v1/dataplex_service/operations.rb +3 -10
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/operations.rb +32 -10
- data/lib/google/cloud/dataplex/v1/datascans_pb.rb +3 -1
- data/lib/google/cloud/dataplex/v1/logs_pb.rb +3 -1
- data/lib/google/cloud/dataplex/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +20 -0
- data/proto_docs/google/api/field_info.rb +88 -0
- data/proto_docs/google/cloud/dataplex/v1/catalog.rb +710 -234
- data/proto_docs/google/cloud/dataplex/v1/data_discovery.rb +156 -0
- data/proto_docs/google/cloud/dataplex/v1/data_profile.rb +4 -4
- data/proto_docs/google/cloud/dataplex/v1/data_quality.rb +7 -2
- data/proto_docs/google/cloud/dataplex/v1/datascans.rb +30 -12
- data/proto_docs/google/cloud/dataplex/v1/logs.rb +51 -1
- data/proto_docs/google/cloud/dataplex/v1/tasks.rb +3 -4
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +6 -3
@@ -0,0 +1,156 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2024 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Cloud
|
22
|
+
module Dataplex
|
23
|
+
module V1
|
24
|
+
# Spec for a data discovery scan.
|
25
|
+
# @!attribute [rw] bigquery_publishing_config
|
26
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec::BigQueryPublishingConfig]
|
27
|
+
# Optional. Configuration for metadata publishing.
|
28
|
+
# @!attribute [rw] storage_config
|
29
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec::StorageConfig]
|
30
|
+
# Cloud Storage related configurations.
|
31
|
+
class DataDiscoverySpec
|
32
|
+
include ::Google::Protobuf::MessageExts
|
33
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
34
|
+
|
35
|
+
# Describes BigQuery publishing configurations.
|
36
|
+
# @!attribute [rw] table_type
|
37
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec::BigQueryPublishingConfig::TableType]
|
38
|
+
# Optional. Determines whether to publish discovered tables as BigLake
|
39
|
+
# external tables or non-BigLake external tables.
|
40
|
+
# @!attribute [rw] connection
|
41
|
+
# @return [::String]
|
42
|
+
# Optional. The BigQuery connection used to create BigLake tables.
|
43
|
+
# Must be in the form
|
44
|
+
# `projects/{project_id}/locations/{location_id}/connections/{connection_id}`
|
45
|
+
class BigQueryPublishingConfig
|
46
|
+
include ::Google::Protobuf::MessageExts
|
47
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
48
|
+
|
49
|
+
# Determines how discovered tables are published.
|
50
|
+
module TableType
|
51
|
+
# Table type unspecified.
|
52
|
+
TABLE_TYPE_UNSPECIFIED = 0
|
53
|
+
|
54
|
+
# Default. Discovered tables are published as BigQuery external tables
|
55
|
+
# whose data is accessed using the credentials of the user querying the
|
56
|
+
# table.
|
57
|
+
EXTERNAL = 1
|
58
|
+
|
59
|
+
# Discovered tables are published as BigLake external tables whose data
|
60
|
+
# is accessed using the credentials of the associated BigQuery
|
61
|
+
# connection.
|
62
|
+
BIGLAKE = 2
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
# Configurations related to Cloud Storage as the data source.
|
67
|
+
# @!attribute [rw] include_patterns
|
68
|
+
# @return [::Array<::String>]
|
69
|
+
# Optional. Defines the data to include during discovery when only a subset
|
70
|
+
# of the data should be considered. Provide a list of patterns that
|
71
|
+
# identify the data to include. For Cloud Storage bucket assets, these
|
72
|
+
# patterns are interpreted as glob patterns used to match object names. For
|
73
|
+
# BigQuery dataset assets, these patterns are interpreted as patterns to
|
74
|
+
# match table names.
|
75
|
+
# @!attribute [rw] exclude_patterns
|
76
|
+
# @return [::Array<::String>]
|
77
|
+
# Optional. Defines the data to exclude during discovery. Provide a list of
|
78
|
+
# patterns that identify the data to exclude. For Cloud Storage bucket
|
79
|
+
# assets, these patterns are interpreted as glob patterns used to match
|
80
|
+
# object names. For BigQuery dataset assets, these patterns are interpreted
|
81
|
+
# as patterns to match table names.
|
82
|
+
# @!attribute [rw] csv_options
|
83
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec::StorageConfig::CsvOptions]
|
84
|
+
# Optional. Configuration for CSV data.
|
85
|
+
# @!attribute [rw] json_options
|
86
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec::StorageConfig::JsonOptions]
|
87
|
+
# Optional. Configuration for JSON data.
|
88
|
+
class StorageConfig
|
89
|
+
include ::Google::Protobuf::MessageExts
|
90
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
91
|
+
|
92
|
+
# Describes CSV and similar semi-structured data formats.
|
93
|
+
# @!attribute [rw] header_rows
|
94
|
+
# @return [::Integer]
|
95
|
+
# Optional. The number of rows to interpret as header rows that should be
|
96
|
+
# skipped when reading data rows.
|
97
|
+
# @!attribute [rw] delimiter
|
98
|
+
# @return [::String]
|
99
|
+
# Optional. The delimiter that is used to separate values. The default is
|
100
|
+
# `,` (comma).
|
101
|
+
# @!attribute [rw] encoding
|
102
|
+
# @return [::String]
|
103
|
+
# Optional. The character encoding of the data. The default is UTF-8.
|
104
|
+
# @!attribute [rw] type_inference_disabled
|
105
|
+
# @return [::Boolean]
|
106
|
+
# Optional. Whether to disable the inference of data types for CSV data.
|
107
|
+
# If true, all columns are registered as strings.
|
108
|
+
# @!attribute [rw] quote
|
109
|
+
# @return [::String]
|
110
|
+
# Optional. The character used to quote column values. Accepts `"`
|
111
|
+
# (double quotation mark) or `'` (single quotation mark). If unspecified,
|
112
|
+
# defaults to `"` (double quotation mark).
|
113
|
+
class CsvOptions
|
114
|
+
include ::Google::Protobuf::MessageExts
|
115
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
116
|
+
end
|
117
|
+
|
118
|
+
# Describes JSON data format.
|
119
|
+
# @!attribute [rw] encoding
|
120
|
+
# @return [::String]
|
121
|
+
# Optional. The character encoding of the data. The default is UTF-8.
|
122
|
+
# @!attribute [rw] type_inference_disabled
|
123
|
+
# @return [::Boolean]
|
124
|
+
# Optional. Whether to disable the inference of data types for JSON data.
|
125
|
+
# If true, all columns are registered as their primitive types
|
126
|
+
# (strings, number, or boolean).
|
127
|
+
class JsonOptions
|
128
|
+
include ::Google::Protobuf::MessageExts
|
129
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
# The output of a data discovery scan.
|
135
|
+
# @!attribute [r] bigquery_publishing
|
136
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoveryResult::BigQueryPublishing]
|
137
|
+
# Output only. Configuration for metadata publishing.
|
138
|
+
class DataDiscoveryResult
|
139
|
+
include ::Google::Protobuf::MessageExts
|
140
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
141
|
+
|
142
|
+
# Describes BigQuery publishing configurations.
|
143
|
+
# @!attribute [r] dataset
|
144
|
+
# @return [::String]
|
145
|
+
# Output only. The BigQuery dataset to publish to. It takes the form
|
146
|
+
# `projects/{project_id}/datasets/{dataset_id}`.
|
147
|
+
# If not set, the service creates a default publishing dataset.
|
148
|
+
class BigQueryPublishing
|
149
|
+
include ::Google::Protobuf::MessageExts
|
150
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
151
|
+
end
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
@@ -151,15 +151,15 @@ module Google
|
|
151
151
|
# @!attribute [rw] distinct_ratio
|
152
152
|
# @return [::Float]
|
153
153
|
# Ratio of rows with distinct values against total scanned rows.
|
154
|
-
# Not available for complex non-groupable field type RECORD
|
155
|
-
# with REPEATABLE mode.
|
154
|
+
# Not available for complex non-groupable field type, including RECORD,
|
155
|
+
# ARRAY, GEOGRAPHY, and JSON, as well as fields with REPEATABLE mode.
|
156
156
|
# @!attribute [rw] top_n_values
|
157
157
|
# @return [::Array<::Google::Cloud::Dataplex::V1::DataProfileResult::Profile::Field::ProfileInfo::TopNValue>]
|
158
158
|
# The list of top N non-null values, frequency and ratio with which
|
159
159
|
# they occur in the scanned data. N is 10 or equal to the number of
|
160
160
|
# distinct values in the field, whichever is smaller. Not available for
|
161
|
-
# complex non-groupable field type RECORD
|
162
|
-
# mode.
|
161
|
+
# complex non-groupable field type, including RECORD, ARRAY, GEOGRAPHY,
|
162
|
+
# and JSON, as well as fields with REPEATABLE mode.
|
163
163
|
# @!attribute [rw] string_profile
|
164
164
|
# @return [::Google::Cloud::Dataplex::V1::DataProfileResult::Profile::Field::ProfileInfo::StringFieldInfo]
|
165
165
|
# String type field information.
|
@@ -276,7 +276,7 @@ module Google
|
|
276
276
|
# @return [::String]
|
277
277
|
# The dimension name a rule belongs to. Supported dimensions are
|
278
278
|
# ["COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
|
279
|
-
# "
|
279
|
+
# "FRESHNESS", "VOLUME"]
|
280
280
|
class DataQualityDimension
|
281
281
|
include ::Google::Protobuf::MessageExts
|
282
282
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -336,7 +336,8 @@ module Google
|
|
336
336
|
# @return [::String]
|
337
337
|
# Required. The dimension a rule belongs to. Results are also aggregated at
|
338
338
|
# the dimension level. Supported dimensions are **["COMPLETENESS",
|
339
|
-
# "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "
|
339
|
+
# "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "FRESHNESS",
|
340
|
+
# "VOLUME"]**
|
340
341
|
# @!attribute [rw] threshold
|
341
342
|
# @return [::Float]
|
342
343
|
# Optional. The minimum ratio of **passing_rows / total_rows** required to
|
@@ -359,6 +360,10 @@ module Google
|
|
359
360
|
# Optional. Description of the rule.
|
360
361
|
#
|
361
362
|
# * The maximum length is 1,024 characters.
|
363
|
+
# @!attribute [rw] suspended
|
364
|
+
# @return [::Boolean]
|
365
|
+
# Optional. Whether the Rule is active or suspended.
|
366
|
+
# Default is false.
|
362
367
|
class DataQualityRule
|
363
368
|
include ::Google::Protobuf::MessageExts
|
364
369
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -340,16 +340,22 @@ module Google
|
|
340
340
|
# Output only. The type of DataScan.
|
341
341
|
# @!attribute [rw] data_quality_spec
|
342
342
|
# @return [::Google::Cloud::Dataplex::V1::DataQualitySpec]
|
343
|
-
#
|
343
|
+
# Settings for a data quality scan.
|
344
344
|
# @!attribute [rw] data_profile_spec
|
345
345
|
# @return [::Google::Cloud::Dataplex::V1::DataProfileSpec]
|
346
|
-
#
|
346
|
+
# Settings for a data profile scan.
|
347
|
+
# @!attribute [rw] data_discovery_spec
|
348
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec]
|
349
|
+
# Settings for a data discovery scan.
|
347
350
|
# @!attribute [r] data_quality_result
|
348
351
|
# @return [::Google::Cloud::Dataplex::V1::DataQualityResult]
|
349
|
-
# Output only. The result of
|
352
|
+
# Output only. The result of a data quality scan.
|
350
353
|
# @!attribute [r] data_profile_result
|
351
354
|
# @return [::Google::Cloud::Dataplex::V1::DataProfileResult]
|
352
|
-
# Output only. The result of
|
355
|
+
# Output only. The result of a data profile scan.
|
356
|
+
# @!attribute [r] data_discovery_result
|
357
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoveryResult]
|
358
|
+
# Output only. The result of a data discovery scan.
|
353
359
|
class DataScan
|
354
360
|
include ::Google::Protobuf::MessageExts
|
355
361
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -407,6 +413,9 @@ module Google
|
|
407
413
|
# @!attribute [r] uid
|
408
414
|
# @return [::String]
|
409
415
|
# Output only. System generated globally unique ID for the DataScanJob.
|
416
|
+
# @!attribute [r] create_time
|
417
|
+
# @return [::Google::Protobuf::Timestamp]
|
418
|
+
# Output only. The time when the DataScanJob was created.
|
410
419
|
# @!attribute [r] start_time
|
411
420
|
# @return [::Google::Protobuf::Timestamp]
|
412
421
|
# Output only. The time when the DataScanJob was started.
|
@@ -424,16 +433,22 @@ module Google
|
|
424
433
|
# Output only. The type of the parent DataScan.
|
425
434
|
# @!attribute [r] data_quality_spec
|
426
435
|
# @return [::Google::Cloud::Dataplex::V1::DataQualitySpec]
|
427
|
-
# Output only.
|
436
|
+
# Output only. Settings for a data quality scan.
|
428
437
|
# @!attribute [r] data_profile_spec
|
429
438
|
# @return [::Google::Cloud::Dataplex::V1::DataProfileSpec]
|
430
|
-
# Output only.
|
439
|
+
# Output only. Settings for a data profile scan.
|
440
|
+
# @!attribute [r] data_discovery_spec
|
441
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoverySpec]
|
442
|
+
# Output only. Settings for a data discovery scan.
|
431
443
|
# @!attribute [r] data_quality_result
|
432
444
|
# @return [::Google::Cloud::Dataplex::V1::DataQualityResult]
|
433
|
-
# Output only. The result of
|
445
|
+
# Output only. The result of a data quality scan.
|
434
446
|
# @!attribute [r] data_profile_result
|
435
447
|
# @return [::Google::Cloud::Dataplex::V1::DataProfileResult]
|
436
|
-
# Output only. The result of
|
448
|
+
# Output only. The result of a data profile scan.
|
449
|
+
# @!attribute [r] data_discovery_result
|
450
|
+
# @return [::Google::Cloud::Dataplex::V1::DataDiscoveryResult]
|
451
|
+
# Output only. The result of a data discovery scan.
|
437
452
|
class DataScanJob
|
438
453
|
include ::Google::Protobuf::MessageExts
|
439
454
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -463,16 +478,19 @@ module Google
|
|
463
478
|
end
|
464
479
|
end
|
465
480
|
|
466
|
-
# The type of
|
481
|
+
# The type of data scan.
|
467
482
|
module DataScanType
|
468
|
-
# The
|
483
|
+
# The data scan type is unspecified.
|
469
484
|
DATA_SCAN_TYPE_UNSPECIFIED = 0
|
470
485
|
|
471
|
-
# Data
|
486
|
+
# Data quality scan.
|
472
487
|
DATA_QUALITY = 1
|
473
488
|
|
474
|
-
# Data
|
489
|
+
# Data profile scan.
|
475
490
|
DATA_PROFILE = 2
|
491
|
+
|
492
|
+
# Data discovery scan.
|
493
|
+
DATA_DISCOVERY = 3
|
476
494
|
end
|
477
495
|
end
|
478
496
|
end
|
@@ -37,6 +37,9 @@ module Google
|
|
37
37
|
# @!attribute [rw] data_location
|
38
38
|
# @return [::String]
|
39
39
|
# The data location associated with the event.
|
40
|
+
# @!attribute [rw] datascan_id
|
41
|
+
# @return [::String]
|
42
|
+
# The id of the associated datascan for standalone discovery.
|
40
43
|
# @!attribute [rw] type
|
41
44
|
# @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::EventType]
|
42
45
|
# The type of the event being logged.
|
@@ -52,6 +55,9 @@ module Google
|
|
52
55
|
# @!attribute [rw] action
|
53
56
|
# @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::ActionDetails]
|
54
57
|
# Details about the action associated with the event.
|
58
|
+
# @!attribute [rw] table
|
59
|
+
# @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableDetails]
|
60
|
+
# Details about the BigQuery table publishing associated with the event.
|
55
61
|
class DiscoveryEvent
|
56
62
|
include ::Google::Protobuf::MessageExts
|
57
63
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -90,6 +96,18 @@ module Google
|
|
90
96
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
91
97
|
end
|
92
98
|
|
99
|
+
# Details about the published table.
|
100
|
+
# @!attribute [rw] table
|
101
|
+
# @return [::String]
|
102
|
+
# The fully-qualified resource name of the table resource.
|
103
|
+
# @!attribute [rw] type
|
104
|
+
# @return [::Google::Cloud::Dataplex::V1::DiscoveryEvent::TableType]
|
105
|
+
# The type of the table resource.
|
106
|
+
class TableDetails
|
107
|
+
include ::Google::Protobuf::MessageExts
|
108
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
109
|
+
end
|
110
|
+
|
93
111
|
# Details about the partition.
|
94
112
|
# @!attribute [rw] partition
|
95
113
|
# @return [::String]
|
@@ -116,6 +134,9 @@ module Google
|
|
116
134
|
# @return [::String]
|
117
135
|
# The type of action.
|
118
136
|
# Eg. IncompatibleDataSchema, InvalidDataFormat
|
137
|
+
# @!attribute [rw] issue
|
138
|
+
# @return [::String]
|
139
|
+
# The human readable issue associated with the action.
|
119
140
|
class ActionDetails
|
120
141
|
include ::Google::Protobuf::MessageExts
|
121
142
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -146,6 +167,18 @@ module Google
|
|
146
167
|
|
147
168
|
# An event representing a partition being deleted.
|
148
169
|
PARTITION_DELETED = 7
|
170
|
+
|
171
|
+
# An event representing a table being published.
|
172
|
+
TABLE_PUBLISHED = 10
|
173
|
+
|
174
|
+
# An event representing a table being updated.
|
175
|
+
TABLE_UPDATED = 11
|
176
|
+
|
177
|
+
# An event representing a table being skipped in publishing.
|
178
|
+
TABLE_IGNORED = 12
|
179
|
+
|
180
|
+
# An event representing a table being deleted.
|
181
|
+
TABLE_DELETED = 13
|
149
182
|
end
|
150
183
|
|
151
184
|
# The type of the entity.
|
@@ -159,6 +192,21 @@ module Google
|
|
159
192
|
# Entities representing unstructured data.
|
160
193
|
FILESET = 2
|
161
194
|
end
|
195
|
+
|
196
|
+
# The type of the published table.
|
197
|
+
module TableType
|
198
|
+
# An unspecified table type.
|
199
|
+
TABLE_TYPE_UNSPECIFIED = 0
|
200
|
+
|
201
|
+
# External table type.
|
202
|
+
EXTERNAL_TABLE = 1
|
203
|
+
|
204
|
+
# BigLake table type.
|
205
|
+
BIGLAKE_TABLE = 2
|
206
|
+
|
207
|
+
# Object table type for unstructured data.
|
208
|
+
OBJECT_TABLE = 3
|
209
|
+
end
|
162
210
|
end
|
163
211
|
|
164
212
|
# The payload associated with Job logs that contains events describing jobs
|
@@ -436,7 +484,6 @@ module Google
|
|
436
484
|
|
437
485
|
# These messages contain information about the execution of a datascan.
|
438
486
|
# The monitored resource is 'DataScan'
|
439
|
-
# Next ID: 13
|
440
487
|
# @!attribute [rw] data_source
|
441
488
|
# @return [::String]
|
442
489
|
# The data source of the data scan
|
@@ -646,6 +693,9 @@ module Google
|
|
646
693
|
|
647
694
|
# Data scan for data quality.
|
648
695
|
DATA_QUALITY = 2
|
696
|
+
|
697
|
+
# Data scan for data discovery.
|
698
|
+
DATA_DISCOVERY = 4
|
649
699
|
end
|
650
700
|
|
651
701
|
# The job state of the data scan.
|
@@ -260,10 +260,9 @@ module Google
|
|
260
260
|
# named process arguments (`--key=value`).
|
261
261
|
# @!attribute [rw] sql_script_file
|
262
262
|
# @return [::String]
|
263
|
-
# A reference to a query file. This
|
264
|
-
# query file
|
265
|
-
#
|
266
|
-
# (`set key="value";`).
|
263
|
+
# A reference to a query file. This should be the Cloud Storage URI of
|
264
|
+
# the query file. The execution args are used to declare a set of script
|
265
|
+
# variables (`set key="value";`).
|
267
266
|
# @!attribute [rw] sql_script
|
268
267
|
# @return [::String]
|
269
268
|
# The query text.
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dataplex-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -123,6 +123,7 @@ files:
|
|
123
123
|
- lib/google/cloud/dataplex/v1/content_service/rest/client.rb
|
124
124
|
- lib/google/cloud/dataplex/v1/content_service/rest/service_stub.rb
|
125
125
|
- lib/google/cloud/dataplex/v1/content_services_pb.rb
|
126
|
+
- lib/google/cloud/dataplex/v1/data_discovery_pb.rb
|
126
127
|
- lib/google/cloud/dataplex/v1/data_profile_pb.rb
|
127
128
|
- lib/google/cloud/dataplex/v1/data_quality_pb.rb
|
128
129
|
- lib/google/cloud/dataplex/v1/data_scan_service.rb
|
@@ -177,11 +178,13 @@ files:
|
|
177
178
|
- proto_docs/README.md
|
178
179
|
- proto_docs/google/api/client.rb
|
179
180
|
- proto_docs/google/api/field_behavior.rb
|
181
|
+
- proto_docs/google/api/field_info.rb
|
180
182
|
- proto_docs/google/api/launch_stage.rb
|
181
183
|
- proto_docs/google/api/resource.rb
|
182
184
|
- proto_docs/google/cloud/dataplex/v1/analyze.rb
|
183
185
|
- proto_docs/google/cloud/dataplex/v1/catalog.rb
|
184
186
|
- proto_docs/google/cloud/dataplex/v1/content.rb
|
187
|
+
- proto_docs/google/cloud/dataplex/v1/data_discovery.rb
|
185
188
|
- proto_docs/google/cloud/dataplex/v1/data_profile.rb
|
186
189
|
- proto_docs/google/cloud/dataplex/v1/data_quality.rb
|
187
190
|
- proto_docs/google/cloud/dataplex/v1/data_taxonomy.rb
|
@@ -221,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
221
224
|
- !ruby/object:Gem::Version
|
222
225
|
version: '0'
|
223
226
|
requirements: []
|
224
|
-
rubygems_version: 3.5.
|
227
|
+
rubygems_version: 3.5.22
|
225
228
|
signing_key:
|
226
229
|
specification_version: 4
|
227
230
|
summary: Dataplex API is used to manage the lifecycle of data lakes.
|