Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobStatus

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

Metadata job status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobStatus

Returns a new instance of GoogleCloudDataplexV1MetadataJobStatus.



7488
7489
7490
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7488

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

Instance Attribute Details

#completion_percentFixnum

Output only. Progress tracking. Corresponds to the JSON property completionPercent

Returns:

  • (Fixnum)


7471
7472
7473
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7471

def completion_percent
  @completion_percent
end

#messageString

Output only. Message relating to the progression of a metadata job. Corresponds to the JSON property message

Returns:

  • (String)


7476
7477
7478
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7476

def message
  @message
end

#stateString

Output only. State of the metadata job. Corresponds to the JSON property state

Returns:

  • (String)


7481
7482
7483
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7481

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


7486
7487
7488
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7486

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7493
7494
7495
7496
7497
7498
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7493

def update!(**args)
  @completion_percent = args[:completion_percent] if args.key?(:completion_percent)
  @message = args[:message] if args.key?(:message)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end