Class: Google::Apis::OracledatabaseV1::ListGiVersionsResponse

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

The response for GiVersion.List.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListGiVersionsResponse

Returns a new instance of ListGiVersionsResponse.



2401
2402
2403
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2401

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#gi_versionsArray<Google::Apis::OracledatabaseV1::GiVersion>

The list of Oracle Grid Infrastructure (GI) versions. Corresponds to the JSON property giVersions



2394
2395
2396
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2394

def gi_versions
  @gi_versions
end

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2399
2400
2401
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2399

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2406
2407
2408
2409
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 2406

def update!(**args)
  @gi_versions = args[:gi_versions] if args.key?(:gi_versions)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end