Class: Google::Cloud::Dataplex::V1::GetDataScanRequest

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 dataScan request.

Defined Under Namespace

Modules: DataScanView

Instance Attribute Summary collapse

Instance Attribute Details

#name::String

Returns Required. The resource name of the dataScan: projects/{project}/locations/{location_id}/dataScans/{data_scan_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 dataScan: projects/{project}/locations/{location_id}/dataScans/{data_scan_id} where project refers to a project_id or project_number and location_id refers to a GCP region.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'proto_docs/google/cloud/dataplex/v1/datascans.rb', line 92

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

  # DataScan view options.
  module DataScanView
    # The API will default to the `BASIC` view.
    DATA_SCAN_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::GetDataScanRequest::DataScanView

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

Returns:



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'proto_docs/google/cloud/dataplex/v1/datascans.rb', line 92

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

  # DataScan view options.
  module DataScanView
    # The API will default to the `BASIC` view.
    DATA_SCAN_VIEW_UNSPECIFIED = 0

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

    # Include everything.
    FULL = 10
  end
end