Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1LakeMetastoreStatus

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

Status of Lake and Dataproc Metastore service instance association.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1LakeMetastoreStatus

Returns a new instance of GoogleCloudDataplexV1LakeMetastoreStatus.



1798
1799
1800
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1798

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

Instance Attribute Details

#endpointString

The URI of the endpoint used to access the Metastore service. Corresponds to the JSON property endpoint

Returns:

  • (String)


1781
1782
1783
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1781

def endpoint
  @endpoint
end

#messageString

Additional information about the current status. Corresponds to the JSON property message

Returns:

  • (String)


1786
1787
1788
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1786

def message
  @message
end

#stateString

Current state of association. Corresponds to the JSON property state

Returns:

  • (String)


1791
1792
1793
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1791

def state
  @state
end

#update_timeString

Last update time of the metastore status of the lake. Corresponds to the JSON property updateTime

Returns:

  • (String)


1796
1797
1798
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1796

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1803
1804
1805
1806
1807
1808
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1803

def update!(**args)
  @endpoint = args[:endpoint] if args.key?(:endpoint)
  @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