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.
2237 2238 2239 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2237 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
2230 2231 2232 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2230 def management_state @management_state end |
#management_type ⇒ String
Output only. The Database Management type.
Corresponds to the JSON property managementType
2235 2236 2237 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2235 def management_type @management_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2242 2243 2244 2245 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2242 def update!(**args) @management_state = args[:management_state] if args.key?(:management_state) @management_type = args[:management_type] if args.key?(:management_type) end |