Class: Google::Cloud::Dataplex::V1::GetDataScanJobRequest

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataplex/v1/datascans.rb

Overview

Get DataScanJob request.

Defined Under Namespace

Modules: DataScanJobView

Instance Attribute Summary collapse

Instance Attribute Details

#name::String

Returns Required. The resource name of the DataScanJob: projects/{project}/locations/{location_id}/dataScans/{data_scan_id}/jobs/{data_scan_job_id} where project refers to a project_id or project_number and location_id refers to a GCP region.

Returns:

  • (::String)

    Required. The resource name of the DataScanJob: projects/{project}/locations/{location_id}/dataScans/{data_scan_id}/jobs/{data_scan_job_id} where project refers to a project_id or project_number and location_id refers to a GCP region.



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'proto_docs/google/cloud/dataplex/v1/datascans.rb', line 188

class GetDataScanJobRequest
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # DataScanJob view options.
  module DataScanJobView
    # The API will default to the `BASIC` view.
    DATA_SCAN_JOB_VIEW_UNSPECIFIED = 0

    # Basic view that does not include *spec* and *result*.
    BASIC = 1

    # Include everything.
    FULL = 10
  end
end

#view::Google::Cloud::Dataplex::V1::GetDataScanJobRequest::DataScanJobView

Returns Optional. Select the DataScanJob view to return. Defaults to BASIC.

Returns:



188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'proto_docs/google/cloud/dataplex/v1/datascans.rb', line 188

class GetDataScanJobRequest
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # DataScanJob view options.
  module DataScanJobView
    # The API will default to the `BASIC` view.
    DATA_SCAN_JOB_VIEW_UNSPECIFIED = 0

    # Basic view that does not include *spec* and *result*.
    BASIC = 1

    # Include everything.
    FULL = 10
  end
end