Class: Google::Apis::OracledatabaseV1::AutonomousDatabaseCharacterSet
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::AutonomousDatabaseCharacterSet
- 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 Autonomous Database character set resource. https://docs.oracle. com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabaseCharacterSets/
Instance Attribute Summary collapse
-
#character_set ⇒ String
Output only.
-
#character_set_type ⇒ String
Output only.
-
#name ⇒ String
Identifier.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutonomousDatabaseCharacterSet
constructor
A new instance of AutonomousDatabaseCharacterSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AutonomousDatabaseCharacterSet
Returns a new instance of AutonomousDatabaseCharacterSet.
382 383 384 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 382 def initialize(**args) update!(**args) end |
Instance Attribute Details
#character_set ⇒ String
Output only. The character set name for the Autonomous Database which is the
ID in the resource name.
Corresponds to the JSON property characterSet
368 369 370 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 368 def character_set @character_set end |
#character_set_type ⇒ String
Output only. The character set type for the Autonomous Database.
Corresponds to the JSON property characterSetType
373 374 375 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 373 def character_set_type @character_set_type end |
#name ⇒ String
Identifier. The name of the Autonomous Database Character Set resource in the
following format: projects/project
/locations/region
/
autonomousDatabaseCharacterSets/autonomous_database_character_set
Corresponds to the JSON property name
380 381 382 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 380 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
387 388 389 390 391 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 387 def update!(**args) @character_set = args[:character_set] if args.key?(:character_set) @character_set_type = args[:character_set_type] if args.key?(:character_set_type) @name = args[:name] if args.key?(:name) end |