Class: Google::Apis::OracledatabaseV1::PluggableDatabase
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::PluggableDatabase
- 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 PluggableDatabase resource. https://docs.oracle.com/en-us/iaas/api/#/en/ database/20160918/PluggableDatabase/
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#oci_url ⇒ String
Output only.
-
#properties ⇒ Google::Apis::OracledatabaseV1::PluggableDatabaseProperties
The properties of a PluggableDatabase.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PluggableDatabase
constructor
A new instance of PluggableDatabase.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PluggableDatabase
Returns a new instance of PluggableDatabase.
8919 8920 8921 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The date and time that the PluggableDatabase was created.
Corresponds to the JSON property createTime
8901 8902 8903 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8901 def create_time @create_time end |
#name ⇒ String
Identifier. The name of the PluggableDatabase resource in the following format:
projects/project/locations/region/pluggableDatabases/pluggable_database
Corresponds to the JSON property name
8907 8908 8909 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8907 def name @name end |
#oci_url ⇒ String
Output only. HTTPS link to OCI resources exposed to Customer via UI Interface.
Corresponds to the JSON property ociUrl
8912 8913 8914 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8912 def oci_url @oci_url end |
#properties ⇒ Google::Apis::OracledatabaseV1::PluggableDatabaseProperties
The properties of a PluggableDatabase.
Corresponds to the JSON property properties
8917 8918 8919 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8917 def properties @properties end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8924 8925 8926 8927 8928 8929 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 8924 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @oci_url = args[:oci_url] if args.key?(:oci_url) @properties = args[:properties] if args.key?(:properties) end |