Class: Google::Apis::OracledatabaseV1::AllConnectionStrings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#highString

Output only. The database service provides the highest level of resources to each SQL statement. Corresponds to the JSON property high

Returns:

  • (String)


34
35
36
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 34

def high
  @high
end

#lowString

Output only. The database service provides the least level of resources to each SQL statement. Corresponds to the JSON property low

Returns:

  • (String)


40
41
42
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 40

def low
  @low
end

#mediumString

Output only. The database service provides a lower level of resources to each SQL statement. Corresponds to the JSON property medium

Returns:

  • (String)


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