Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1LakeMetastoreStatus
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1LakeMetastoreStatus
- 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
-
#endpoint ⇒ String
The URI of the endpoint used to access the Metastore service.
-
#message ⇒ String
Additional information about the current status.
-
#state ⇒ String
Current state of association.
-
#update_time ⇒ String
Last update time of the metastore status of the lake.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1LakeMetastoreStatus
constructor
A new instance of GoogleCloudDataplexV1LakeMetastoreStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1LakeMetastoreStatus
Returns a new instance of GoogleCloudDataplexV1LakeMetastoreStatus.
3981 3982 3983 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3981 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint ⇒ String
The URI of the endpoint used to access the Metastore service.
Corresponds to the JSON property endpoint
3964 3965 3966 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3964 def endpoint @endpoint end |
#message ⇒ String
Additional information about the current status.
Corresponds to the JSON property message
3969 3970 3971 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3969 def @message end |
#state ⇒ String
Current state of association.
Corresponds to the JSON property state
3974 3975 3976 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3974 def state @state end |
#update_time ⇒ String
Last update time of the metastore status of the lake.
Corresponds to the JSON property updateTime
3979 3980 3981 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3979 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3986 3987 3988 3989 3990 3991 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3986 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 |