Class: Google::Apis::OracledatabaseV1::DbHome
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::DbHome
- 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
Details of the Database Home resource.
Instance Attribute Summary collapse
-
#database ⇒ Google::Apis::OracledatabaseV1::Database
Details of the Database resource.
-
#db_version ⇒ String
Required.
-
#display_name ⇒ String
Optional.
-
#is_unified_auditing_enabled ⇒ Boolean
(also: #is_unified_auditing_enabled?)
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DbHome
constructor
A new instance of DbHome.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DbHome
Returns a new instance of DbHome.
2290 2291 2292 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2290 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database ⇒ Google::Apis::OracledatabaseV1::Database
Details of the Database resource. https://docs.oracle.com/en-us/iaas/api/#/en/
database/20160918/Database/
Corresponds to the JSON property database
2270 2271 2272 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2270 def database @database end |
#db_version ⇒ String
Required. A valid Oracle Database version. For a list of supported versions,
use the ListDbVersions operation.
Corresponds to the JSON property dbVersion
2276 2277 2278 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2276 def db_version @db_version end |
#display_name ⇒ String
Optional. The display name for the Database Home. The name does not have to be
unique within your project.
Corresponds to the JSON property displayName
2282 2283 2284 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2282 def display_name @display_name end |
#is_unified_auditing_enabled ⇒ Boolean Also known as: is_unified_auditing_enabled?
Optional. Whether unified auditing is enabled for the Database Home.
Corresponds to the JSON property isUnifiedAuditingEnabled
2287 2288 2289 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2287 def is_unified_auditing_enabled @is_unified_auditing_enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2295 2296 2297 2298 2299 2300 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2295 def update!(**args) @database = args[:database] if args.key?(:database) @db_version = args[:db_version] if args.key?(:db_version) @display_name = args[:display_name] if args.key?(:display_name) @is_unified_auditing_enabled = args[:is_unified_auditing_enabled] if args.key?(:is_unified_auditing_enabled) end |