Class: Google::Apis::OracledatabaseV1::PluggableDatabaseNodeLevelDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PluggableDatabaseNodeLevelDetails

Returns a new instance of PluggableDatabaseNodeLevelDetails.



8819
8820
8821
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8819

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#node_nameString

Required. The Node name of the Database home. Corresponds to the JSON property nodeName

Returns:

  • (String)


8807
8808
8809
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8807

def node_name
  @node_name
end

#open_modeString

Required. The mode that the pluggable database is in to open it. Corresponds to the JSON property openMode

Returns:

  • (String)


8812
8813
8814
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8812

def open_mode
  @open_mode
end

#pluggable_database_idString

Required. The OCID of the Pluggable Database. Corresponds to the JSON property pluggableDatabaseId

Returns:

  • (String)


8817
8818
8819
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8817

def pluggable_database_id
  @pluggable_database_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8824
8825
8826
8827
8828
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8824

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