Class: Google::Apis::OracledatabaseV1::PluggableDatabaseNodeLevelDetails
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::PluggableDatabaseNodeLevelDetails
- 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 Pluggable Database Node Level Details.
Instance Attribute Summary collapse
-
#node_name ⇒ String
Required.
-
#open_mode ⇒ String
Required.
-
#pluggable_database_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PluggableDatabaseNodeLevelDetails
constructor
A new instance of PluggableDatabaseNodeLevelDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PluggableDatabaseNodeLevelDetails
Returns a new instance of PluggableDatabaseNodeLevelDetails.
4793 4794 4795 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#node_name ⇒ String
Required. The Node name of the Database home.
Corresponds to the JSON property nodeName
4781 4782 4783 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4781 def node_name @node_name end |
#open_mode ⇒ String
Required. The mode that the pluggable database is in to open it.
Corresponds to the JSON property openMode
4786 4787 4788 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4786 def open_mode @open_mode end |
#pluggable_database_id ⇒ String
Required. The OCID of the Pluggable Database.
Corresponds to the JSON property pluggableDatabaseId
4791 4792 4793 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4791 def pluggable_database_id @pluggable_database_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4798 4799 4800 4801 4802 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 4798 def update!(**args) @node_name = args[:node_name] if args.key?(:node_name) @open_mode = args[:open_mode] if args.key?(:open_mode) @pluggable_database_id = args[:pluggable_database_id] if args.key?(:pluggable_database_id) end |