google-cloud-dataplex-v1 0.9.0 → 0.10.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 +72 -0
- data/lib/google/cloud/dataplex/v1/data_profile_pb.rb +8 -1
- data/lib/google/cloud/dataplex/v1/data_quality_pb.rb +7 -1
- data/lib/google/cloud/dataplex/v1/data_scan_service/client.rb +19 -1
- data/lib/google/cloud/dataplex/v1/data_scan_service/paths.rb +19 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb +19 -1
- data/lib/google/cloud/dataplex/v1/data_taxonomy_pb.rb +77 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/client.rb +1931 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/credentials.rb +47 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/operations.rb +770 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/paths.rb +109 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/client.rb +1497 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/operations.rb +795 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/service_stub.rb +939 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service/rest.rb +55 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_service.rb +57 -0
- data/lib/google/cloud/dataplex/v1/data_taxonomy_services_pb.rb +77 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/client.rb +17 -1
- data/lib/google/cloud/dataplex/v1/dataplex_service/rest/client.rb +17 -1
- data/lib/google/cloud/dataplex/v1/datascans_pb.rb +1 -1
- data/lib/google/cloud/dataplex/v1/logs_pb.rb +11 -1
- data/lib/google/cloud/dataplex/v1/rest.rb +1 -0
- data/lib/google/cloud/dataplex/v1/security_pb.rb +45 -0
- data/lib/google/cloud/dataplex/v1/service_pb.rb +1 -1
- data/lib/google/cloud/dataplex/v1/tasks_pb.rb +2 -1
- data/lib/google/cloud/dataplex/v1/version.rb +1 -1
- data/lib/google/cloud/dataplex/v1.rb +1 -0
- data/proto_docs/google/cloud/dataplex/v1/data_profile.rb +118 -6
- data/proto_docs/google/cloud/dataplex/v1/data_quality.rb +130 -30
- data/proto_docs/google/cloud/dataplex/v1/data_taxonomy.rb +565 -0
- data/proto_docs/google/cloud/dataplex/v1/datascans.rb +19 -0
- data/proto_docs/google/cloud/dataplex/v1/logs.rb +214 -4
- data/proto_docs/google/cloud/dataplex/v1/security.rb +61 -0
- data/proto_docs/google/cloud/dataplex/v1/service.rb +36 -0
- data/proto_docs/google/cloud/dataplex/v1/tasks.rb +31 -0
- metadata +16 -2
@@ -190,6 +190,9 @@ module Google
|
|
190
190
|
# @!attribute [rw] service_job
|
191
191
|
# @return [::String]
|
192
192
|
# The reference to the job within the service.
|
193
|
+
# @!attribute [rw] execution_trigger
|
194
|
+
# @return [::Google::Cloud::Dataplex::V1::JobEvent::ExecutionTrigger]
|
195
|
+
# Job execution trigger.
|
193
196
|
class JobEvent
|
194
197
|
include ::Google::Protobuf::MessageExts
|
195
198
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -232,6 +235,19 @@ module Google
|
|
232
235
|
# Cloud Dataproc.
|
233
236
|
DATAPROC = 1
|
234
237
|
end
|
238
|
+
|
239
|
+
# Job Execution trigger.
|
240
|
+
module ExecutionTrigger
|
241
|
+
# The job execution trigger is unspecified.
|
242
|
+
EXECUTION_TRIGGER_UNSPECIFIED = 0
|
243
|
+
|
244
|
+
# The job was triggered by Dataplex based on trigger spec from task
|
245
|
+
# definition.
|
246
|
+
TASK_CONFIG = 1
|
247
|
+
|
248
|
+
# The job was triggered by the explicit call of Task API.
|
249
|
+
RUN_REQUEST = 2
|
250
|
+
end
|
235
251
|
end
|
236
252
|
|
237
253
|
# These messages contain information about sessions within an environment.
|
@@ -324,12 +340,16 @@ module Google
|
|
324
340
|
|
325
341
|
# These messages contain information about the execution of a datascan.
|
326
342
|
# The monitored resource is 'DataScan'
|
343
|
+
# Next ID: 13
|
327
344
|
# @!attribute [rw] data_source
|
328
345
|
# @return [::String]
|
329
346
|
# The data source of the data scan
|
330
347
|
# @!attribute [rw] job_id
|
331
348
|
# @return [::String]
|
332
349
|
# The identifier of the specific data scan job this log entry is for.
|
350
|
+
# @!attribute [rw] create_time
|
351
|
+
# @return [::Google::Protobuf::Timestamp]
|
352
|
+
# The time when the data scan job was created.
|
333
353
|
# @!attribute [rw] start_time
|
334
354
|
# @return [::Google::Protobuf::Timestamp]
|
335
355
|
# The time when the data scan job started to run.
|
@@ -360,6 +380,15 @@ module Google
|
|
360
380
|
# @!attribute [rw] data_quality
|
361
381
|
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::DataQualityResult]
|
362
382
|
# Data quality result for data quality type data scan.
|
383
|
+
# @!attribute [rw] data_profile_configs
|
384
|
+
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::DataProfileAppliedConfigs]
|
385
|
+
# Applied configs for data profile type data scan.
|
386
|
+
# @!attribute [rw] data_quality_configs
|
387
|
+
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::DataQualityAppliedConfigs]
|
388
|
+
# Applied configs for data quality type data scan.
|
389
|
+
# @!attribute [rw] post_scan_actions_result
|
390
|
+
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult]
|
391
|
+
# The result of post scan actions.
|
363
392
|
class DataScanEvent
|
364
393
|
include ::Google::Protobuf::MessageExts
|
365
394
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -400,6 +429,77 @@ module Google
|
|
400
429
|
end
|
401
430
|
end
|
402
431
|
|
432
|
+
# Applied configs for data profile type data scan job.
|
433
|
+
# @!attribute [rw] sampling_percent
|
434
|
+
# @return [::Float]
|
435
|
+
# The percentage of the records selected from the dataset for DataScan.
|
436
|
+
#
|
437
|
+
# * Value ranges between 0.0 and 100.0.
|
438
|
+
# * Value 0.0 or 100.0 imply that sampling was not applied.
|
439
|
+
# @!attribute [rw] row_filter_applied
|
440
|
+
# @return [::Boolean]
|
441
|
+
# Boolean indicating whether a row filter was applied in the DataScan job.
|
442
|
+
# @!attribute [rw] column_filter_applied
|
443
|
+
# @return [::Boolean]
|
444
|
+
# Boolean indicating whether a column filter was applied in the DataScan
|
445
|
+
# job.
|
446
|
+
class DataProfileAppliedConfigs
|
447
|
+
include ::Google::Protobuf::MessageExts
|
448
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
449
|
+
end
|
450
|
+
|
451
|
+
# Applied configs for data quality type data scan job.
|
452
|
+
# @!attribute [rw] sampling_percent
|
453
|
+
# @return [::Float]
|
454
|
+
# The percentage of the records selected from the dataset for DataScan.
|
455
|
+
#
|
456
|
+
# * Value ranges between 0.0 and 100.0.
|
457
|
+
# * Value 0.0 or 100.0 imply that sampling was not applied.
|
458
|
+
# @!attribute [rw] row_filter_applied
|
459
|
+
# @return [::Boolean]
|
460
|
+
# Boolean indicating whether a row filter was applied in the DataScan job.
|
461
|
+
class DataQualityAppliedConfigs
|
462
|
+
include ::Google::Protobuf::MessageExts
|
463
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
464
|
+
end
|
465
|
+
|
466
|
+
# Post scan actions result for data scan job.
|
467
|
+
# @!attribute [rw] bigquery_export_result
|
468
|
+
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult::BigQueryExportResult]
|
469
|
+
# The result of BigQuery export post scan action.
|
470
|
+
class PostScanActionsResult
|
471
|
+
include ::Google::Protobuf::MessageExts
|
472
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
473
|
+
|
474
|
+
# The result of BigQuery export post scan action.
|
475
|
+
# @!attribute [rw] state
|
476
|
+
# @return [::Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult::BigQueryExportResult::State]
|
477
|
+
# Execution state for the BigQuery exporting.
|
478
|
+
# @!attribute [rw] message
|
479
|
+
# @return [::String]
|
480
|
+
# Additional information about the BigQuery exporting.
|
481
|
+
class BigQueryExportResult
|
482
|
+
include ::Google::Protobuf::MessageExts
|
483
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
484
|
+
|
485
|
+
# Execution state for the exporting.
|
486
|
+
module State
|
487
|
+
# The exporting state is unspecified.
|
488
|
+
STATE_UNSPECIFIED = 0
|
489
|
+
|
490
|
+
# The exporting completed successfully.
|
491
|
+
SUCCEEDED = 1
|
492
|
+
|
493
|
+
# The exporting is no longer running due to an error.
|
494
|
+
FAILED = 2
|
495
|
+
|
496
|
+
# The exporting is skipped due to no valid scan result to export
|
497
|
+
# (usually caused by scan failed).
|
498
|
+
SKIPPED = 3
|
499
|
+
end
|
500
|
+
end
|
501
|
+
end
|
502
|
+
|
403
503
|
# The type of the data scan.
|
404
504
|
module ScanType
|
405
505
|
# An unspecified data scan type.
|
@@ -417,17 +517,20 @@ module Google
|
|
417
517
|
# Unspecified job state.
|
418
518
|
STATE_UNSPECIFIED = 0
|
419
519
|
|
420
|
-
# Data scan started.
|
520
|
+
# Data scan job started.
|
421
521
|
STARTED = 1
|
422
522
|
|
423
|
-
# Data scan successfully completed.
|
523
|
+
# Data scan job successfully completed.
|
424
524
|
SUCCEEDED = 2
|
425
525
|
|
426
|
-
# Data scan was unsuccessful.
|
526
|
+
# Data scan job was unsuccessful.
|
427
527
|
FAILED = 3
|
428
528
|
|
429
|
-
# Data scan was cancelled.
|
529
|
+
# Data scan job was cancelled.
|
430
530
|
CANCELLED = 4
|
531
|
+
|
532
|
+
# Data scan job was createed.
|
533
|
+
CREATED = 5
|
431
534
|
end
|
432
535
|
|
433
536
|
# The trigger type for the data scan.
|
@@ -454,6 +557,113 @@ module Google
|
|
454
557
|
INCREMENTAL = 2
|
455
558
|
end
|
456
559
|
end
|
560
|
+
|
561
|
+
# Information about the result of a data quality rule for data quality scan.
|
562
|
+
# The monitored resource is 'DataScan'.
|
563
|
+
# @!attribute [rw] job_id
|
564
|
+
# @return [::String]
|
565
|
+
# Identifier of the specific data scan job this log entry is for.
|
566
|
+
# @!attribute [rw] data_source
|
567
|
+
# @return [::String]
|
568
|
+
# The data source of the data scan (e.g. BigQuery table name).
|
569
|
+
# @!attribute [rw] column
|
570
|
+
# @return [::String]
|
571
|
+
# The column which this rule is evaluated against.
|
572
|
+
# @!attribute [rw] rule_name
|
573
|
+
# @return [::String]
|
574
|
+
# The name of the data quality rule.
|
575
|
+
# @!attribute [rw] rule_type
|
576
|
+
# @return [::Google::Cloud::Dataplex::V1::DataQualityScanRuleResult::RuleType]
|
577
|
+
# The type of the data quality rule.
|
578
|
+
# @!attribute [rw] evalution_type
|
579
|
+
# @return [::Google::Cloud::Dataplex::V1::DataQualityScanRuleResult::EvaluationType]
|
580
|
+
# The evaluation type of the data quality rule.
|
581
|
+
# @!attribute [rw] rule_dimension
|
582
|
+
# @return [::String]
|
583
|
+
# The dimension of the data quality rule.
|
584
|
+
# @!attribute [rw] threshold_percent
|
585
|
+
# @return [::Float]
|
586
|
+
# The passing threshold ([0.0, 100.0]) of the data quality rule.
|
587
|
+
# @!attribute [rw] result
|
588
|
+
# @return [::Google::Cloud::Dataplex::V1::DataQualityScanRuleResult::Result]
|
589
|
+
# The result of the data quality rule.
|
590
|
+
# @!attribute [rw] evaluated_row_count
|
591
|
+
# @return [::Integer]
|
592
|
+
# The number of rows evaluated against the data quality rule.
|
593
|
+
# This field is only valid for rules of PER_ROW evaluation type.
|
594
|
+
# @!attribute [rw] passed_row_count
|
595
|
+
# @return [::Integer]
|
596
|
+
# The number of rows which passed a rule evaluation.
|
597
|
+
# This field is only valid for rules of PER_ROW evaluation type.
|
598
|
+
# @!attribute [rw] null_row_count
|
599
|
+
# @return [::Integer]
|
600
|
+
# The number of rows with null values in the specified column.
|
601
|
+
class DataQualityScanRuleResult
|
602
|
+
include ::Google::Protobuf::MessageExts
|
603
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
604
|
+
|
605
|
+
# The type of the data quality rule.
|
606
|
+
module RuleType
|
607
|
+
# An unspecified rule type.
|
608
|
+
RULE_TYPE_UNSPECIFIED = 0
|
609
|
+
|
610
|
+
# Please see
|
611
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#nonnullexpectation.
|
612
|
+
NON_NULL_EXPECTATION = 1
|
613
|
+
|
614
|
+
# Please see
|
615
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#rangeexpectation.
|
616
|
+
RANGE_EXPECTATION = 2
|
617
|
+
|
618
|
+
# Please see
|
619
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#regexexpectation.
|
620
|
+
REGEX_EXPECTATION = 3
|
621
|
+
|
622
|
+
# Please see
|
623
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#rowconditionexpectation.
|
624
|
+
ROW_CONDITION_EXPECTATION = 4
|
625
|
+
|
626
|
+
# Please see
|
627
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#setexpectation.
|
628
|
+
SET_EXPECTATION = 5
|
629
|
+
|
630
|
+
# Please see
|
631
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#statisticrangeexpectation.
|
632
|
+
STATISTIC_RANGE_EXPECTATION = 6
|
633
|
+
|
634
|
+
# Please see
|
635
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#tableconditionexpectation.
|
636
|
+
TABLE_CONDITION_EXPECTATION = 7
|
637
|
+
|
638
|
+
# Please see
|
639
|
+
# https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#uniquenessexpectation.
|
640
|
+
UNIQUENESS_EXPECTATION = 8
|
641
|
+
end
|
642
|
+
|
643
|
+
# The evaluation type of the data quality rule.
|
644
|
+
module EvaluationType
|
645
|
+
# An unspecified evaluation type.
|
646
|
+
EVALUATION_TYPE_UNSPECIFIED = 0
|
647
|
+
|
648
|
+
# The rule evaluation is done at per row level.
|
649
|
+
PER_ROW = 1
|
650
|
+
|
651
|
+
# The rule evaluation is done for an aggregate of rows.
|
652
|
+
AGGREGATE = 2
|
653
|
+
end
|
654
|
+
|
655
|
+
# Whether the data quality rule passed or failed.
|
656
|
+
module Result
|
657
|
+
# An unspecified result.
|
658
|
+
RESULT_UNSPECIFIED = 0
|
659
|
+
|
660
|
+
# The data quality rule passed.
|
661
|
+
PASSED = 1
|
662
|
+
|
663
|
+
# The data quality rule failed.
|
664
|
+
FAILED = 2
|
665
|
+
end
|
666
|
+
end
|
457
667
|
end
|
458
668
|
end
|
459
669
|
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 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
|
+
# ResourceAccessSpec holds the access control configuration to be enforced
|
25
|
+
# on the resources, for example, Cloud Storage bucket, BigQuery dataset,
|
26
|
+
# BigQuery table.
|
27
|
+
# @!attribute [rw] readers
|
28
|
+
# @return [::Array<::String>]
|
29
|
+
# Optional. The format of strings follows the pattern followed by IAM in the
|
30
|
+
# bindings. user:\\{email}, serviceAccount:\\{email} group:\\{email}.
|
31
|
+
# The set of principals to be granted reader role on the resource.
|
32
|
+
# @!attribute [rw] writers
|
33
|
+
# @return [::Array<::String>]
|
34
|
+
# Optional. The set of principals to be granted writer role on the resource.
|
35
|
+
# @!attribute [rw] owners
|
36
|
+
# @return [::Array<::String>]
|
37
|
+
# Optional. The set of principals to be granted owner role on the resource.
|
38
|
+
class ResourceAccessSpec
|
39
|
+
include ::Google::Protobuf::MessageExts
|
40
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
41
|
+
end
|
42
|
+
|
43
|
+
# DataAccessSpec holds the access control configuration to be enforced on data
|
44
|
+
# stored within resources (eg: rows, columns in BigQuery Tables). When
|
45
|
+
# associated with data, the data is only accessible to
|
46
|
+
# principals explicitly granted access through the DataAccessSpec. Principals
|
47
|
+
# with access to the containing resource are not implicitly granted access.
|
48
|
+
# @!attribute [rw] readers
|
49
|
+
# @return [::Array<::String>]
|
50
|
+
# Optional. The format of strings follows the pattern followed by IAM in the
|
51
|
+
# bindings. user:\\{email}, serviceAccount:\\{email} group:\\{email}.
|
52
|
+
# The set of principals to be granted reader role on data
|
53
|
+
# stored within resources.
|
54
|
+
class DataAccessSpec
|
55
|
+
include ::Google::Protobuf::MessageExts
|
56
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -557,9 +557,45 @@ module Google
|
|
557
557
|
# @return [::String]
|
558
558
|
# Required. The resource name of the task:
|
559
559
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/tasks/{task_id}`.
|
560
|
+
# @!attribute [rw] labels
|
561
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
562
|
+
# Optional. User-defined labels for the task. If the map is left empty, the
|
563
|
+
# task will run with existing labels from task definition. If the map
|
564
|
+
# contains an entry with a new key, the same will be added to existing set of
|
565
|
+
# labels. If the map contains an entry with an existing label key in task
|
566
|
+
# definition, the task will run with new label value for that entry. Clearing
|
567
|
+
# an existing label will require label value to be explicitly set to a hyphen
|
568
|
+
# "-". The label value cannot be empty.
|
569
|
+
# @!attribute [rw] args
|
570
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
571
|
+
# Optional. Execution spec arguments. If the map is left empty, the task will
|
572
|
+
# run with existing execution spec args from task definition. If the map
|
573
|
+
# contains an entry with a new key, the same will be added to existing set of
|
574
|
+
# args. If the map contains an entry with an existing arg key in task
|
575
|
+
# definition, the task will run with new arg value for that entry. Clearing
|
576
|
+
# an existing arg will require arg value to be explicitly set to a hyphen
|
577
|
+
# "-". The arg value cannot be empty.
|
560
578
|
class RunTaskRequest
|
561
579
|
include ::Google::Protobuf::MessageExts
|
562
580
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
581
|
+
|
582
|
+
# @!attribute [rw] key
|
583
|
+
# @return [::String]
|
584
|
+
# @!attribute [rw] value
|
585
|
+
# @return [::String]
|
586
|
+
class LabelsEntry
|
587
|
+
include ::Google::Protobuf::MessageExts
|
588
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
589
|
+
end
|
590
|
+
|
591
|
+
# @!attribute [rw] key
|
592
|
+
# @return [::String]
|
593
|
+
# @!attribute [rw] value
|
594
|
+
# @return [::String]
|
595
|
+
class ArgsEntry
|
596
|
+
include ::Google::Protobuf::MessageExts
|
597
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
598
|
+
end
|
563
599
|
end
|
564
600
|
|
565
601
|
# @!attribute [rw] job
|
@@ -363,10 +363,28 @@ module Google
|
|
363
363
|
# @!attribute [r] message
|
364
364
|
# @return [::String]
|
365
365
|
# Output only. Additional information about the current state.
|
366
|
+
# @!attribute [r] labels
|
367
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
368
|
+
# Output only. User-defined labels for the task.
|
369
|
+
# @!attribute [r] trigger
|
370
|
+
# @return [::Google::Cloud::Dataplex::V1::Job::Trigger]
|
371
|
+
# Output only. Job execution trigger.
|
372
|
+
# @!attribute [r] execution_spec
|
373
|
+
# @return [::Google::Cloud::Dataplex::V1::Task::ExecutionSpec]
|
374
|
+
# Output only. Spec related to how a task is executed.
|
366
375
|
class Job
|
367
376
|
include ::Google::Protobuf::MessageExts
|
368
377
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
369
378
|
|
379
|
+
# @!attribute [rw] key
|
380
|
+
# @return [::String]
|
381
|
+
# @!attribute [rw] value
|
382
|
+
# @return [::String]
|
383
|
+
class LabelsEntry
|
384
|
+
include ::Google::Protobuf::MessageExts
|
385
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
386
|
+
end
|
387
|
+
|
370
388
|
module Service
|
371
389
|
# Service used to run the job is unspecified.
|
372
390
|
SERVICE_UNSPECIFIED = 0
|
@@ -397,6 +415,19 @@ module Google
|
|
397
415
|
# The job was cancelled outside of Dataplex.
|
398
416
|
ABORTED = 6
|
399
417
|
end
|
418
|
+
|
419
|
+
# Job execution trigger.
|
420
|
+
module Trigger
|
421
|
+
# The trigger is unspecified.
|
422
|
+
TRIGGER_UNSPECIFIED = 0
|
423
|
+
|
424
|
+
# The job was triggered by Dataplex based on trigger spec from task
|
425
|
+
# definition.
|
426
|
+
TASK_CONFIG = 1
|
427
|
+
|
428
|
+
# The job was triggered by the explicit call of Task API.
|
429
|
+
RUN_REQUEST = 2
|
430
|
+
end
|
400
431
|
end
|
401
432
|
end
|
402
433
|
end
|
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: 0.
|
4
|
+
version: 0.10.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-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -235,6 +235,17 @@ files:
|
|
235
235
|
- lib/google/cloud/dataplex/v1/data_scan_service/rest/client.rb
|
236
236
|
- lib/google/cloud/dataplex/v1/data_scan_service/rest/operations.rb
|
237
237
|
- lib/google/cloud/dataplex/v1/data_scan_service/rest/service_stub.rb
|
238
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_pb.rb
|
239
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service.rb
|
240
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/client.rb
|
241
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/credentials.rb
|
242
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/operations.rb
|
243
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/paths.rb
|
244
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/rest.rb
|
245
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/client.rb
|
246
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/operations.rb
|
247
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_service/rest/service_stub.rb
|
248
|
+
- lib/google/cloud/dataplex/v1/data_taxonomy_services_pb.rb
|
238
249
|
- lib/google/cloud/dataplex/v1/dataplex_service.rb
|
239
250
|
- lib/google/cloud/dataplex/v1/dataplex_service/client.rb
|
240
251
|
- lib/google/cloud/dataplex/v1/dataplex_service/credentials.rb
|
@@ -259,6 +270,7 @@ files:
|
|
259
270
|
- lib/google/cloud/dataplex/v1/processing_pb.rb
|
260
271
|
- lib/google/cloud/dataplex/v1/resources_pb.rb
|
261
272
|
- lib/google/cloud/dataplex/v1/rest.rb
|
273
|
+
- lib/google/cloud/dataplex/v1/security_pb.rb
|
262
274
|
- lib/google/cloud/dataplex/v1/service_pb.rb
|
263
275
|
- lib/google/cloud/dataplex/v1/service_services_pb.rb
|
264
276
|
- lib/google/cloud/dataplex/v1/tasks_pb.rb
|
@@ -272,11 +284,13 @@ files:
|
|
272
284
|
- proto_docs/google/cloud/dataplex/v1/content.rb
|
273
285
|
- proto_docs/google/cloud/dataplex/v1/data_profile.rb
|
274
286
|
- proto_docs/google/cloud/dataplex/v1/data_quality.rb
|
287
|
+
- proto_docs/google/cloud/dataplex/v1/data_taxonomy.rb
|
275
288
|
- proto_docs/google/cloud/dataplex/v1/datascans.rb
|
276
289
|
- proto_docs/google/cloud/dataplex/v1/logs.rb
|
277
290
|
- proto_docs/google/cloud/dataplex/v1/metadata.rb
|
278
291
|
- proto_docs/google/cloud/dataplex/v1/processing.rb
|
279
292
|
- proto_docs/google/cloud/dataplex/v1/resources.rb
|
293
|
+
- proto_docs/google/cloud/dataplex/v1/security.rb
|
280
294
|
- proto_docs/google/cloud/dataplex/v1/service.rb
|
281
295
|
- proto_docs/google/cloud/dataplex/v1/tasks.rb
|
282
296
|
- proto_docs/google/longrunning/operations.rb
|