Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScan

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

Represents a user-visible job which provides the insights for the related data source.For example: Data Quality: generates queries based on the rules and runs against the data to get data quality check results. Data Profile: analyzes the data in table(s) and generates insights about the structure, content and relationships (such as null percent, cardinality, min/max/mean, etc).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataScan

Returns a new instance of GoogleCloudDataplexV1DataScan.



2114
2115
2116
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2114

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. The time when the scan was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2033
2034
2035
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2033

def create_time
  @create_time
end

#dataGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataSource

The data source for DataScan. Corresponds to the JSON property data



2038
2039
2040
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2038

def data
  @data
end

#data_profile_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileResult

DataProfileResult defines the output of DataProfileScan. Each field of the table will have field type specific profile result. Corresponds to the JSON property dataProfileResult



2044
2045
2046
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2044

def data_profile_result
  @data_profile_result
end

#data_profile_specGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataProfileSpec

DataProfileScan related setting. Corresponds to the JSON property dataProfileSpec



2049
2050
2051
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2049

def data_profile_spec
  @data_profile_spec
end

#data_quality_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityResult

The output of a DataQualityScan. Corresponds to the JSON property dataQualityResult



2054
2055
2056
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2054

def data_quality_result
  @data_quality_result
end

#data_quality_specGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataQualitySpec

DataQualityScan related setting. Corresponds to the JSON property dataQualitySpec



2059
2060
2061
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2059

def data_quality_spec
  @data_quality_spec
end

#descriptionString

Optional. Description of the scan. Must be between 1-1024 characters. Corresponds to the JSON property description

Returns:

  • (String)


2064
2065
2066
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2064

def description
  @description
end

#display_nameString

Optional. User friendly display name. Must be between 1-256 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


2069
2070
2071
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2069

def display_name
  @display_name
end

#execution_specGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionSpec

DataScan execution settings. Corresponds to the JSON property executionSpec



2074
2075
2076
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2074

def execution_spec
  @execution_spec
end

#execution_statusGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataScanExecutionStatus

Status of the data scan execution. Corresponds to the JSON property executionStatus



2079
2080
2081
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2079

def execution_status
  @execution_status
end

#labelsHash<String,String>

Optional. User-defined labels for the scan. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


2084
2085
2086
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2084

def labels
  @labels
end

#nameString

Output only. The relative resource name of the scan, of the form: projects/ project/locations/location_id/dataScans/datascan_id, where project refers to a project_id or project_number and location_id refers to a GCP region. Corresponds to the JSON property name

Returns:

  • (String)


2091
2092
2093
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2091

def name
  @name
end

#stateString

Output only. Current state of the DataScan. Corresponds to the JSON property state

Returns:

  • (String)


2096
2097
2098
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2096

def state
  @state
end

#typeString

Output only. The type of DataScan. Corresponds to the JSON property type

Returns:

  • (String)


2101
2102
2103
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2101

def type
  @type
end

#uidString

Output only. System generated globally unique ID for the scan. This ID will be different if the scan is deleted and re-created with the same name. Corresponds to the JSON property uid

Returns:

  • (String)


2107
2108
2109
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2107

def uid
  @uid
end

#update_timeString

Output only. The time when the scan was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


2112
2113
2114
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2112

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2119

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @data = args[:data] if args.key?(:data)
  @data_profile_result = args[:data_profile_result] if args.key?(:data_profile_result)
  @data_profile_spec = args[:data_profile_spec] if args.key?(:data_profile_spec)
  @data_quality_result = args[:data_quality_result] if args.key?(:data_quality_result)
  @data_quality_spec = args[:data_quality_spec] if args.key?(:data_quality_spec)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @execution_spec = args[:execution_spec] if args.key?(:execution_spec)
  @execution_status = args[:execution_status] if args.key?(:execution_status)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @type = args[:type] if args.key?(:type)
  @uid = args[:uid] if args.key?(:uid)
  @update_time = args[:update_time] if args.key?(:update_time)
end