Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobStatus
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobStatus
- 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
Metadata job status.
Instance Attribute Summary collapse
-
#completion_percent ⇒ Fixnum
Output only.
-
#message ⇒ String
Output only.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobStatus
constructor
A new instance of GoogleCloudDataplexV1MetadataJobStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobStatus
Returns a new instance of GoogleCloudDataplexV1MetadataJobStatus.
7252 7253 7254 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7252 def initialize(**args) update!(**args) end |
Instance Attribute Details
#completion_percent ⇒ Fixnum
Output only. Progress tracking.
Corresponds to the JSON property completionPercent
7235 7236 7237 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7235 def completion_percent @completion_percent end |
#message ⇒ String
Output only. Message relating to the progression of a metadata job.
Corresponds to the JSON property message
7240 7241 7242 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7240 def end |
#state ⇒ String
Output only. State of the metadata job.
Corresponds to the JSON property state
7245 7246 7247 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7245 def state @state end |
#update_time ⇒ String
Output only. The time when the status was updated.
Corresponds to the JSON property updateTime
7250 7251 7252 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7250 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7257 7258 7259 7260 7261 7262 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7257 def update!(**args) @completion_percent = args[:completion_percent] if args.key?(:completion_percent) = args[:message] if args.key?(:message) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |