google-cloud-dataplex-v1 0.5.0 → 0.6.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/README.md +1 -1
- data/lib/google/cloud/dataplex/v1/content_service/client.rb +4 -4
- data/lib/google/cloud/dataplex/v1/content_service.rb +1 -1
- data/lib/google/cloud/dataplex/v1/data_profile_pb.rb +78 -0
- data/lib/google/cloud/dataplex/v1/data_quality_pb.rb +108 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/client.rb +1171 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/credentials.rb +47 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/operations.rb +770 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service/paths.rb +113 -0
- data/lib/google/cloud/dataplex/v1/data_scan_service.rb +48 -0
- data/lib/google/cloud/dataplex/v1/dataplex_service/client.rb +64 -63
- data/lib/google/cloud/dataplex/v1/dataplex_service.rb +1 -1
- data/lib/google/cloud/dataplex/v1/datascans_pb.rb +169 -0
- data/lib/google/cloud/dataplex/v1/datascans_services_pb.rb +58 -0
- data/lib/google/cloud/dataplex/v1/logs_pb.rb +53 -0
- data/lib/google/cloud/dataplex/v1/metadata_pb.rb +5 -0
- data/lib/google/cloud/dataplex/v1/metadata_service/client.rb +18 -16
- data/lib/google/cloud/dataplex/v1/metadata_service.rb +1 -1
- data/lib/google/cloud/dataplex/v1/processing_pb.rb +53 -0
- data/lib/google/cloud/dataplex/v1/version.rb +1 -1
- data/lib/google/cloud/dataplex/v1.rb +3 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/dataplex/v1/analyze.rb +26 -21
- data/proto_docs/google/cloud/dataplex/v1/content.rb +4 -4
- data/proto_docs/google/cloud/dataplex/v1/data_profile.rb +232 -0
- data/proto_docs/google/cloud/dataplex/v1/data_quality.rb +274 -0
- data/proto_docs/google/cloud/dataplex/v1/datascans.rb +418 -0
- data/proto_docs/google/cloud/dataplex/v1/logs.rb +135 -2
- data/proto_docs/google/cloud/dataplex/v1/metadata.rb +72 -52
- data/proto_docs/google/cloud/dataplex/v1/processing.rb +96 -0
- data/proto_docs/google/cloud/dataplex/v1/resources.rb +67 -61
- data/proto_docs/google/cloud/dataplex/v1/service.rb +67 -65
- data/proto_docs/google/cloud/dataplex/v1/tasks.rb +34 -34
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +20 -4
@@ -84,13 +84,13 @@ module Google
|
|
84
84
|
# where `location_id` refers to a GCP region.
|
85
85
|
# @!attribute [rw] page_size
|
86
86
|
# @return [::Integer]
|
87
|
-
# Optional. Maximum number of Lakes to return. The service may return fewer
|
88
|
-
# value. If unspecified, at most 10 lakes will be returned. The
|
89
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
87
|
+
# Optional. Maximum number of Lakes to return. The service may return fewer
|
88
|
+
# than this value. If unspecified, at most 10 lakes will be returned. The
|
89
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
90
90
|
# @!attribute [rw] page_token
|
91
91
|
# @return [::String]
|
92
|
-
# Optional. Page token received from a previous `ListLakes` call. Provide
|
93
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
92
|
+
# Optional. Page token received from a previous `ListLakes` call. Provide
|
93
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
94
94
|
# provided to `ListLakes` must match the call that provided the page token.
|
95
95
|
# @!attribute [rw] filter
|
96
96
|
# @return [::String]
|
@@ -126,15 +126,15 @@ module Google
|
|
126
126
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
|
127
127
|
# @!attribute [rw] page_size
|
128
128
|
# @return [::Integer]
|
129
|
-
# Optional. Maximum number of actions to return. The service may return fewer
|
130
|
-
# value. If unspecified, at most 10 actions will be returned. The
|
131
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
129
|
+
# Optional. Maximum number of actions to return. The service may return fewer
|
130
|
+
# than this value. If unspecified, at most 10 actions will be returned. The
|
131
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
132
132
|
# @!attribute [rw] page_token
|
133
133
|
# @return [::String]
|
134
|
-
# Optional. Page token received from a previous `ListLakeActions` call.
|
135
|
-
# retrieve the subsequent page. When paginating, all other
|
136
|
-
# provided to `ListLakeActions` must match the call that provided
|
137
|
-
# token.
|
134
|
+
# Optional. Page token received from a previous `ListLakeActions` call.
|
135
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
136
|
+
# parameters provided to `ListLakeActions` must match the call that provided
|
137
|
+
# the page token.
|
138
138
|
class ListLakeActionsRequest
|
139
139
|
include ::Google::Protobuf::MessageExts
|
140
140
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -225,13 +225,13 @@ module Google
|
|
225
225
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
|
226
226
|
# @!attribute [rw] page_size
|
227
227
|
# @return [::Integer]
|
228
|
-
# Optional. Maximum number of zones to return. The service may return fewer
|
229
|
-
# value. If unspecified, at most 10 zones will be returned. The
|
230
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
228
|
+
# Optional. Maximum number of zones to return. The service may return fewer
|
229
|
+
# than this value. If unspecified, at most 10 zones will be returned. The
|
230
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
231
231
|
# @!attribute [rw] page_token
|
232
232
|
# @return [::String]
|
233
|
-
# Optional. Page token received from a previous `ListZones` call. Provide
|
234
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
233
|
+
# Optional. Page token received from a previous `ListZones` call. Provide
|
234
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
235
235
|
# provided to `ListZones` must match the call that provided the page token.
|
236
236
|
# @!attribute [rw] filter
|
237
237
|
# @return [::String]
|
@@ -264,15 +264,15 @@ module Google
|
|
264
264
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`.
|
265
265
|
# @!attribute [rw] page_size
|
266
266
|
# @return [::Integer]
|
267
|
-
# Optional. Maximum number of actions to return. The service may return fewer
|
268
|
-
# value. If unspecified, at most 10 actions will be returned. The
|
269
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
267
|
+
# Optional. Maximum number of actions to return. The service may return fewer
|
268
|
+
# than this value. If unspecified, at most 10 actions will be returned. The
|
269
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
270
270
|
# @!attribute [rw] page_token
|
271
271
|
# @return [::String]
|
272
|
-
# Optional. Page token received from a previous `ListZoneActions` call.
|
273
|
-
# retrieve the subsequent page. When paginating, all other
|
274
|
-
# provided to `ListZoneActions` must match the call that provided
|
275
|
-
# token.
|
272
|
+
# Optional. Page token received from a previous `ListZoneActions` call.
|
273
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
274
|
+
# parameters provided to `ListZoneActions` must match the call that provided
|
275
|
+
# the page token.
|
276
276
|
class ListZoneActionsRequest
|
277
277
|
include ::Google::Protobuf::MessageExts
|
278
278
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -349,13 +349,13 @@ module Google
|
|
349
349
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`.
|
350
350
|
# @!attribute [rw] page_size
|
351
351
|
# @return [::Integer]
|
352
|
-
# Optional. Maximum number of asset to return. The service may return fewer
|
353
|
-
# this value. If unspecified, at most 10 assets will be returned. The
|
352
|
+
# Optional. Maximum number of asset to return. The service may return fewer
|
353
|
+
# than this value. If unspecified, at most 10 assets will be returned. The
|
354
354
|
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
355
355
|
# @!attribute [rw] page_token
|
356
356
|
# @return [::String]
|
357
|
-
# Optional. Page token received from a previous `ListAssets` call. Provide
|
358
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
357
|
+
# Optional. Page token received from a previous `ListAssets` call. Provide
|
358
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
359
359
|
# provided to `ListAssets` must match the call that provided the page
|
360
360
|
# token.
|
361
361
|
# @!attribute [rw] filter
|
@@ -389,15 +389,15 @@ module Google
|
|
389
389
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/assets/{asset_id}`.
|
390
390
|
# @!attribute [rw] page_size
|
391
391
|
# @return [::Integer]
|
392
|
-
# Optional. Maximum number of actions to return. The service may return fewer
|
393
|
-
# value. If unspecified, at most 10 actions will be returned. The
|
394
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
392
|
+
# Optional. Maximum number of actions to return. The service may return fewer
|
393
|
+
# than this value. If unspecified, at most 10 actions will be returned. The
|
394
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
395
395
|
# @!attribute [rw] page_token
|
396
396
|
# @return [::String]
|
397
|
-
# Optional. Page token received from a previous `ListAssetActions` call.
|
398
|
-
# to retrieve the subsequent page. When paginating, all other
|
399
|
-
# provided to `ListAssetActions` must match the call that provided
|
400
|
-
# token.
|
397
|
+
# Optional. Page token received from a previous `ListAssetActions` call.
|
398
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
399
|
+
# parameters provided to `ListAssetActions` must match the call that provided
|
400
|
+
# the page token.
|
401
401
|
class ListAssetActionsRequest
|
402
402
|
include ::Google::Protobuf::MessageExts
|
403
403
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -433,8 +433,9 @@ module Google
|
|
433
433
|
# @return [::Boolean]
|
434
434
|
# Output only. Identifies whether the user has requested cancellation
|
435
435
|
# of the operation. Operations that have successfully been cancelled
|
436
|
-
# have [Operation.error][] value with a
|
437
|
-
# corresponding to
|
436
|
+
# have [Operation.error][] value with a
|
437
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
438
|
+
# `Code.CANCELLED`.
|
438
439
|
# @!attribute [r] api_version
|
439
440
|
# @return [::String]
|
440
441
|
# Output only. API version used to start the operation.
|
@@ -497,13 +498,13 @@ module Google
|
|
497
498
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}`.
|
498
499
|
# @!attribute [rw] page_size
|
499
500
|
# @return [::Integer]
|
500
|
-
# Optional. Maximum number of tasks to return. The service may return fewer
|
501
|
-
# value. If unspecified, at most 10 tasks will be returned. The
|
502
|
-
# value is 1000; values above 1000 will be coerced to 1000.
|
501
|
+
# Optional. Maximum number of tasks to return. The service may return fewer
|
502
|
+
# than this value. If unspecified, at most 10 tasks will be returned. The
|
503
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
503
504
|
# @!attribute [rw] page_token
|
504
505
|
# @return [::String]
|
505
|
-
# Optional. Page token received from a previous `ListZones` call. Provide
|
506
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
506
|
+
# Optional. Page token received from a previous `ListZones` call. Provide
|
507
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
507
508
|
# provided to `ListZones` must match the call that provided the page token.
|
508
509
|
# @!attribute [rw] filter
|
509
510
|
# @return [::String]
|
@@ -559,13 +560,13 @@ module Google
|
|
559
560
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/tasks/{task_id}`.
|
560
561
|
# @!attribute [rw] page_size
|
561
562
|
# @return [::Integer]
|
562
|
-
# Optional. Maximum number of jobs to return. The service may return fewer
|
563
|
-
# this value. If unspecified, at most 10 jobs will be returned. The
|
563
|
+
# Optional. Maximum number of jobs to return. The service may return fewer
|
564
|
+
# than this value. If unspecified, at most 10 jobs will be returned. The
|
564
565
|
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
565
566
|
# @!attribute [rw] page_token
|
566
567
|
# @return [::String]
|
567
|
-
# Optional. Page token received from a previous `ListJobs` call. Provide this
|
568
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
568
|
+
# Optional. Page token received from a previous `ListJobs` call. Provide this
|
569
|
+
# to retrieve the subsequent page. When paginating, all other parameters
|
569
570
|
# provided to `ListJobs` must match the call that provided the page
|
570
571
|
# token.
|
571
572
|
class ListJobsRequest
|
@@ -655,15 +656,16 @@ module Google
|
|
655
656
|
# `projects/{project_id}/locations/{location_id}/lakes/{lake_id}`.
|
656
657
|
# @!attribute [rw] page_size
|
657
658
|
# @return [::Integer]
|
658
|
-
# Optional. Maximum number of environments to return. The service may return
|
659
|
-
# this value. If unspecified, at most 10 environments will be
|
660
|
-
# maximum value is 1000; values above 1000 will be coerced to
|
659
|
+
# Optional. Maximum number of environments to return. The service may return
|
660
|
+
# fewer than this value. If unspecified, at most 10 environments will be
|
661
|
+
# returned. The maximum value is 1000; values above 1000 will be coerced to
|
662
|
+
# 1000.
|
661
663
|
# @!attribute [rw] page_token
|
662
664
|
# @return [::String]
|
663
|
-
# Optional. Page token received from a previous `ListEnvironments` call.
|
664
|
-
# to retrieve the subsequent page. When paginating, all other
|
665
|
-
# provided to `ListEnvironments` must match the call that provided
|
666
|
-
# token.
|
665
|
+
# Optional. Page token received from a previous `ListEnvironments` call.
|
666
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
667
|
+
# parameters provided to `ListEnvironments` must match the call that provided
|
668
|
+
# the page token.
|
667
669
|
# @!attribute [rw] filter
|
668
670
|
# @return [::String]
|
669
671
|
# Optional. Filter request.
|
@@ -705,24 +707,24 @@ module Google
|
|
705
707
|
# `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id}`.
|
706
708
|
# @!attribute [rw] page_size
|
707
709
|
# @return [::Integer]
|
708
|
-
# Optional. Maximum number of sessions to return. The service may return
|
709
|
-
# this value. If unspecified, at most 10 sessions will be
|
710
|
-
# maximum value is 1000; values above 1000 will be coerced to
|
710
|
+
# Optional. Maximum number of sessions to return. The service may return
|
711
|
+
# fewer than this value. If unspecified, at most 10 sessions will be
|
712
|
+
# returned. The maximum value is 1000; values above 1000 will be coerced to
|
713
|
+
# 1000.
|
711
714
|
# @!attribute [rw] page_token
|
712
715
|
# @return [::String]
|
713
|
-
# Optional. Page token received from a previous `ListSessions` call. Provide
|
714
|
-
# retrieve the subsequent page. When paginating, all other parameters
|
716
|
+
# Optional. Page token received from a previous `ListSessions` call. Provide
|
717
|
+
# this to retrieve the subsequent page. When paginating, all other parameters
|
715
718
|
# provided to `ListSessions` must match the call that provided the page
|
716
719
|
# token.
|
717
720
|
# @!attribute [rw] filter
|
718
721
|
# @return [::String]
|
719
|
-
# Optional. Filter request. The following `mode` filter is supported to
|
720
|
-
# sessions belonging to the requester when the mode is USER
|
721
|
-
# sessions of all the users when the mode is ADMIN. When no filter
|
722
|
-
# default to USER mode.
|
723
|
-
#
|
724
|
-
#
|
725
|
-
# in absence of the permission, the request fails.
|
722
|
+
# Optional. Filter request. The following `mode` filter is supported to
|
723
|
+
# return only the sessions belonging to the requester when the mode is USER
|
724
|
+
# and return sessions of all the users when the mode is ADMIN. When no filter
|
725
|
+
# is sent default to USER mode. NOTE: When the mode is ADMIN, the requester
|
726
|
+
# should have `dataplex.environments.listAllSessions` permission to list all
|
727
|
+
# sessions, in absence of the permission, the request fails.
|
726
728
|
#
|
727
729
|
# mode = ADMIN | USER
|
728
730
|
class ListSessionsRequest
|
@@ -29,8 +29,8 @@ module Google
|
|
29
29
|
# tasks/\\{task_id}.
|
30
30
|
# @!attribute [r] uid
|
31
31
|
# @return [::String]
|
32
|
-
# Output only. System generated globally unique ID for the task. This ID will
|
33
|
-
# different if the task is deleted and re-created with the same name.
|
32
|
+
# Output only. System generated globally unique ID for the task. This ID will
|
33
|
+
# be different if the task is deleted and re-created with the same name.
|
34
34
|
# @!attribute [r] create_time
|
35
35
|
# @return [::Google::Protobuf::Timestamp]
|
36
36
|
# Output only. The time when the task was created.
|
@@ -113,12 +113,10 @@ module Google
|
|
113
113
|
# For example, gs://bucket-name/my/path/to/lib.tar.gz
|
114
114
|
# @!attribute [rw] properties
|
115
115
|
# @return [::Google::Protobuf::Map{::String => ::String}]
|
116
|
-
# Optional. Override to common configuration of open source components
|
117
|
-
# the Dataproc cluster.
|
118
|
-
#
|
119
|
-
#
|
120
|
-
# `core:hadoop.tmp.dir`.
|
121
|
-
# For more information, see [Cluster
|
116
|
+
# Optional. Override to common configuration of open source components
|
117
|
+
# installed on the Dataproc cluster. The properties to set on daemon
|
118
|
+
# config files. Property keys are specified in `prefix:property` format,
|
119
|
+
# for example `core:hadoop.tmp.dir`. For more information, see [Cluster
|
122
120
|
# properties](https://cloud.google.com/dataproc/docs/concepts/cluster-properties).
|
123
121
|
class ContainerImageRuntime
|
124
122
|
include ::Google::Protobuf::MessageExts
|
@@ -137,8 +135,8 @@ module Google
|
|
137
135
|
# Cloud VPC Network used to run the infrastructure.
|
138
136
|
# @!attribute [rw] network
|
139
137
|
# @return [::String]
|
140
|
-
# Optional. The Cloud VPC network in which the job is run. By default,
|
141
|
-
# VPC network named Default within the project is used.
|
138
|
+
# Optional. The Cloud VPC network in which the job is run. By default,
|
139
|
+
# the Cloud VPC network named Default within the project is used.
|
142
140
|
# @!attribute [rw] sub_network
|
143
141
|
# @return [::String]
|
144
142
|
# Optional. The Cloud VPC sub-network in which the job is run.
|
@@ -171,13 +169,13 @@ module Google
|
|
171
169
|
# Set to zero to never attempt to retry a failed task.
|
172
170
|
# @!attribute [rw] schedule
|
173
171
|
# @return [::String]
|
174
|
-
# Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for
|
175
|
-
# tasks periodically.
|
176
|
-
#
|
177
|
-
#
|
178
|
-
#
|
179
|
-
#
|
180
|
-
#
|
172
|
+
# Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for
|
173
|
+
# running tasks periodically. To explicitly set a timezone to the cron
|
174
|
+
# tab, apply a prefix in the cron tab: "CRON_TZ=$\\{IANA_TIME_ZONE}" or
|
175
|
+
# "TZ=$\\{IANA_TIME_ZONE}". The $\\{IANA_TIME_ZONE} may only be a valid
|
176
|
+
# string from IANA time zone database. For example,
|
177
|
+
# `CRON_TZ=America/New_York 1 * * * *`,
|
178
|
+
# or `TZ=America/New_York 1 * * * *`.
|
181
179
|
# This field is required for RECURRING tasks.
|
182
180
|
class TriggerSpec
|
183
181
|
include ::Google::Protobuf::MessageExts
|
@@ -218,9 +216,10 @@ module Google
|
|
218
216
|
# used.
|
219
217
|
# @!attribute [rw] project
|
220
218
|
# @return [::String]
|
221
|
-
# Optional. The project in which jobs are run. By default, the project
|
222
|
-
# Lake is used. If a project is provided, the
|
223
|
-
# {::Google::Cloud::Dataplex::V1::Task::ExecutionSpec#service_account ExecutionSpec.service_account}
|
219
|
+
# Optional. The project in which jobs are run. By default, the project
|
220
|
+
# containing the Lake is used. If a project is provided, the
|
221
|
+
# {::Google::Cloud::Dataplex::V1::Task::ExecutionSpec#service_account ExecutionSpec.service_account}
|
222
|
+
# must belong to this project.
|
224
223
|
# @!attribute [rw] max_job_execution_lifetime
|
225
224
|
# @return [::Google::Protobuf::Duration]
|
226
225
|
# Optional. The maximum duration after which the job execution is expired.
|
@@ -273,13 +272,13 @@ module Google
|
|
273
272
|
# (`set key="value";`).
|
274
273
|
# @!attribute [rw] file_uris
|
275
274
|
# @return [::Array<::String>]
|
276
|
-
# Optional. Cloud Storage URIs of files to be placed in the working
|
277
|
-
# executor.
|
275
|
+
# Optional. Cloud Storage URIs of files to be placed in the working
|
276
|
+
# directory of each executor.
|
278
277
|
# @!attribute [rw] archive_uris
|
279
278
|
# @return [::Array<::String>]
|
280
|
-
# Optional. Cloud Storage URIs of archives to be extracted into the working
|
281
|
-
# of each executor. Supported file types: .jar, .tar, .tar.gz,
|
282
|
-
# .zip.
|
279
|
+
# Optional. Cloud Storage URIs of archives to be extracted into the working
|
280
|
+
# directory of each executor. Supported file types: .jar, .tar, .tar.gz,
|
281
|
+
# .tgz, and .zip.
|
283
282
|
# @!attribute [rw] infrastructure_spec
|
284
283
|
# @return [::Google::Cloud::Dataplex::V1::Task::InfrastructureSpec]
|
285
284
|
# Optional. Infrastructure specification for the execution.
|
@@ -291,22 +290,22 @@ module Google
|
|
291
290
|
# Config for running scheduled notebooks.
|
292
291
|
# @!attribute [rw] notebook
|
293
292
|
# @return [::String]
|
294
|
-
# Required. Path to input notebook. This can be the Cloud Storage URI of
|
295
|
-
# file or the path to a Notebook Content. The execution args
|
296
|
-
# as environment variables
|
293
|
+
# Required. Path to input notebook. This can be the Cloud Storage URI of
|
294
|
+
# the notebook file or the path to a Notebook Content. The execution args
|
295
|
+
# are accessible as environment variables
|
297
296
|
# (`TASK_key=value`).
|
298
297
|
# @!attribute [rw] infrastructure_spec
|
299
298
|
# @return [::Google::Cloud::Dataplex::V1::Task::InfrastructureSpec]
|
300
299
|
# Optional. Infrastructure specification for the execution.
|
301
300
|
# @!attribute [rw] file_uris
|
302
301
|
# @return [::Array<::String>]
|
303
|
-
# Optional. Cloud Storage URIs of files to be placed in the working
|
304
|
-
# executor.
|
302
|
+
# Optional. Cloud Storage URIs of files to be placed in the working
|
303
|
+
# directory of each executor.
|
305
304
|
# @!attribute [rw] archive_uris
|
306
305
|
# @return [::Array<::String>]
|
307
|
-
# Optional. Cloud Storage URIs of archives to be extracted into the working
|
308
|
-
# of each executor. Supported file types: .jar, .tar, .tar.gz,
|
309
|
-
# .zip.
|
306
|
+
# Optional. Cloud Storage URIs of archives to be extracted into the working
|
307
|
+
# directory of each executor. Supported file types: .jar, .tar, .tar.gz,
|
308
|
+
# .tgz, and .zip.
|
310
309
|
class NotebookTaskConfig
|
311
310
|
include ::Google::Protobuf::MessageExts
|
312
311
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -360,7 +359,8 @@ module Google
|
|
360
359
|
# Output only. The underlying service running a job.
|
361
360
|
# @!attribute [r] service_job
|
362
361
|
# @return [::String]
|
363
|
-
# Output only. The full resource name for the job run under a particular
|
362
|
+
# Output only. The full resource name for the job run under a particular
|
363
|
+
# service.
|
364
364
|
# @!attribute [r] message
|
365
365
|
# @return [::String]
|
366
366
|
# Output only. Additional information about the current state.
|
@@ -28,12 +28,14 @@ module Google
|
|
28
28
|
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
29
29
|
# @!attribute [rw] code
|
30
30
|
# @return [::Integer]
|
31
|
-
# The status code, which should be an enum value of
|
31
|
+
# The status code, which should be an enum value of
|
32
|
+
# [google.rpc.Code][google.rpc.Code].
|
32
33
|
# @!attribute [rw] message
|
33
34
|
# @return [::String]
|
34
35
|
# A developer-facing error message, which should be in English. Any
|
35
36
|
# user-facing error message should be localized and sent in the
|
36
|
-
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
38
|
+
# by the client.
|
37
39
|
# @!attribute [rw] details
|
38
40
|
# @return [::Array<::Google::Protobuf::Any>]
|
39
41
|
# A list of messages that carry the error details. There is a common set of
|
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.6.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:
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.16.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.16.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -220,11 +220,20 @@ files:
|
|
220
220
|
- lib/google/cloud/dataplex/v1/content_service/credentials.rb
|
221
221
|
- lib/google/cloud/dataplex/v1/content_service/paths.rb
|
222
222
|
- lib/google/cloud/dataplex/v1/content_services_pb.rb
|
223
|
+
- lib/google/cloud/dataplex/v1/data_profile_pb.rb
|
224
|
+
- lib/google/cloud/dataplex/v1/data_quality_pb.rb
|
225
|
+
- lib/google/cloud/dataplex/v1/data_scan_service.rb
|
226
|
+
- lib/google/cloud/dataplex/v1/data_scan_service/client.rb
|
227
|
+
- lib/google/cloud/dataplex/v1/data_scan_service/credentials.rb
|
228
|
+
- lib/google/cloud/dataplex/v1/data_scan_service/operations.rb
|
229
|
+
- lib/google/cloud/dataplex/v1/data_scan_service/paths.rb
|
223
230
|
- lib/google/cloud/dataplex/v1/dataplex_service.rb
|
224
231
|
- lib/google/cloud/dataplex/v1/dataplex_service/client.rb
|
225
232
|
- lib/google/cloud/dataplex/v1/dataplex_service/credentials.rb
|
226
233
|
- lib/google/cloud/dataplex/v1/dataplex_service/operations.rb
|
227
234
|
- lib/google/cloud/dataplex/v1/dataplex_service/paths.rb
|
235
|
+
- lib/google/cloud/dataplex/v1/datascans_pb.rb
|
236
|
+
- lib/google/cloud/dataplex/v1/datascans_services_pb.rb
|
228
237
|
- lib/google/cloud/dataplex/v1/logs_pb.rb
|
229
238
|
- lib/google/cloud/dataplex/v1/metadata_pb.rb
|
230
239
|
- lib/google/cloud/dataplex/v1/metadata_service.rb
|
@@ -232,18 +241,25 @@ files:
|
|
232
241
|
- lib/google/cloud/dataplex/v1/metadata_service/credentials.rb
|
233
242
|
- lib/google/cloud/dataplex/v1/metadata_service/paths.rb
|
234
243
|
- lib/google/cloud/dataplex/v1/metadata_services_pb.rb
|
244
|
+
- lib/google/cloud/dataplex/v1/processing_pb.rb
|
235
245
|
- lib/google/cloud/dataplex/v1/resources_pb.rb
|
236
246
|
- lib/google/cloud/dataplex/v1/service_pb.rb
|
237
247
|
- lib/google/cloud/dataplex/v1/service_services_pb.rb
|
238
248
|
- lib/google/cloud/dataplex/v1/tasks_pb.rb
|
239
249
|
- lib/google/cloud/dataplex/v1/version.rb
|
240
250
|
- proto_docs/README.md
|
251
|
+
- proto_docs/google/api/client.rb
|
241
252
|
- proto_docs/google/api/field_behavior.rb
|
253
|
+
- proto_docs/google/api/launch_stage.rb
|
242
254
|
- proto_docs/google/api/resource.rb
|
243
255
|
- proto_docs/google/cloud/dataplex/v1/analyze.rb
|
244
256
|
- proto_docs/google/cloud/dataplex/v1/content.rb
|
257
|
+
- proto_docs/google/cloud/dataplex/v1/data_profile.rb
|
258
|
+
- proto_docs/google/cloud/dataplex/v1/data_quality.rb
|
259
|
+
- proto_docs/google/cloud/dataplex/v1/datascans.rb
|
245
260
|
- proto_docs/google/cloud/dataplex/v1/logs.rb
|
246
261
|
- proto_docs/google/cloud/dataplex/v1/metadata.rb
|
262
|
+
- proto_docs/google/cloud/dataplex/v1/processing.rb
|
247
263
|
- proto_docs/google/cloud/dataplex/v1/resources.rb
|
248
264
|
- proto_docs/google/cloud/dataplex/v1/service.rb
|
249
265
|
- proto_docs/google/cloud/dataplex/v1/tasks.rb
|