Class: Google::Apis::ConnectorsV1::LockConfig
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::LockConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Determines whether or no a connection is locked. If locked, a reason must be specified.
Instance Attribute Summary collapse
-
#locked ⇒ Boolean
(also: #locked?)
Indicates whether or not the connection is locked.
-
#reason ⇒ String
Describes why a connection is locked.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LockConfig
constructor
A new instance of LockConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LockConfig
Returns a new instance of LockConfig.
3572 3573 3574 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3572 def initialize(**args) update!(**args) end |
Instance Attribute Details
#locked ⇒ Boolean Also known as: locked?
Indicates whether or not the connection is locked.
Corresponds to the JSON property locked
3564 3565 3566 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3564 def locked @locked end |
#reason ⇒ String
Describes why a connection is locked.
Corresponds to the JSON property reason
3570 3571 3572 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3570 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3577 3578 3579 3580 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 3577 def update!(**args) @locked = args[:locked] if args.key?(:locked) @reason = args[:reason] if args.key?(:reason) end |