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.
2282 2283 2284 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2282 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
2275 2276 2277 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2275 def management_state @management_state end |
#management_type ⇒ String
Output only. The Database Management type.
Corresponds to the JSON property managementType
2280 2281 2282 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2280 def management_type @management_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2287 2288 2289 2290 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2287 def update!(**args) @management_state = args[:management_state] if args.key?(:management_state) @management_type = args[:management_type] if args.key?(:management_type) end |