Class: Google::Apis::OracledatabaseV1::AllConnectionStrings
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::AllConnectionStrings
- 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
A list of all connection strings that can be used to connect to the Autonomous Database.
Instance Attribute Summary collapse
-
#high ⇒ String
Output only.
-
#low ⇒ String
Output only.
-
#medium ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AllConnectionStrings
constructor
A new instance of AllConnectionStrings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AllConnectionStrings
Returns a new instance of AllConnectionStrings.
48 49 50 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 48 def initialize(**args) update!(**args) end |
Instance Attribute Details
#high ⇒ String
Output only. The database service provides the highest level of resources to
each SQL statement.
Corresponds to the JSON property high
34 35 36 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 34 def high @high end |
#low ⇒ String
Output only. The database service provides the least level of resources to
each SQL statement.
Corresponds to the JSON property low
40 41 42 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 40 def low @low end |
#medium ⇒ String
Output only. The database service provides a lower level of resources to each
SQL statement.
Corresponds to the JSON property medium
46 47 48 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 46 def medium @medium end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
53 54 55 56 57 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 53 def update!(**args) @high = args[:high] if args.key?(:high) @low = args[:low] if args.key?(:low) @medium = args[:medium] if args.key?(:medium) end |