Class: Google::Apis::OracledatabaseV1::GoldengateDeploymentLock
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateDeploymentLock
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The lock of the GoldengateDeployment.
Instance Attribute Summary collapse
-
#compartment_id ⇒ String
Output only.
-
#create_time ⇒ String
Output only.
-
#message ⇒ String
Output only.
-
#related_resource_id ⇒ String
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateDeploymentLock
constructor
A new instance of GoldengateDeploymentLock.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateDeploymentLock
Returns a new instance of GoldengateDeploymentLock.
5070 5071 5072 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5070 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compartment_id ⇒ String
Output only. The compartment id.
Corresponds to the JSON property compartmentId
5048 5049 5050 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5048 def compartment_id @compartment_id end |
#create_time ⇒ String
Output only. The time created.
Corresponds to the JSON property createTime
5053 5054 5055 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5053 def create_time @create_time end |
#message ⇒ String
Output only. The message.
Corresponds to the JSON property message
5058 5059 5060 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5058 def @message end |
#related_resource_id ⇒ String
Output only. The related resource id.
Corresponds to the JSON property relatedResourceId
5063 5064 5065 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5063 def @related_resource_id end |
#type ⇒ String
Output only. The type of lock.
Corresponds to the JSON property type
5068 5069 5070 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5068 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5075 5076 5077 5078 5079 5080 5081 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5075 def update!(**args) @compartment_id = args[:compartment_id] if args.key?(:compartment_id) @create_time = args[:create_time] if args.key?(:create_time) @message = args[:message] if args.key?(:message) @related_resource_id = args[:related_resource_id] if args.key?(:related_resource_id) @type = args[:type] if args.key?(:type) end |