Class: Google::Apis::OracledatabaseV1::DatabaseManagementConfig
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::DatabaseManagementConfig
- 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 configuration of the Database Management service.
Instance Attribute Summary collapse
-
#management_state ⇒ String
Output only.
-
#management_type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabaseManagementConfig
constructor
A new instance of DatabaseManagementConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabaseManagementConfig
Returns a new instance of DatabaseManagementConfig.
2151 2152 2153 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2151 def initialize(**args) update!(**args) end |
Instance Attribute Details
#management_state ⇒ String
Output only. The status of the Database Management service.
Corresponds to the JSON property managementState
2144 2145 2146 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2144 def management_state @management_state end |
#management_type ⇒ String
Output only. The Database Management type.
Corresponds to the JSON property managementType
2149 2150 2151 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2149 def management_type @management_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2156 2157 2158 2159 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2156 def update!(**args) @management_state = args[:management_state] if args.key?(:management_state) @management_type = args[:management_type] if args.key?(:management_type) end |