class Google::Apis::ConnectorsV1::ConnectionStatus
ConnectionStatus
indicates the state of the connection.
Attributes
description[RW]
Description. Corresponds to the JSON property ‘description` @return [String]
state[RW]
State. Corresponds to the JSON property ‘state` @return [String]
status[RW]
Status
provides detailed information for the state. Corresponds to the JSON property ‘status` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 523 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/connectors_v1/classes.rb, line 528 def update!(**args) @description = args[:description] if args.key?(:description) @state = args[:state] if args.key?(:state) @status = args[:status] if args.key?(:status) end