Class: Google::Apis::OracledatabaseV1::ConfigureExascaleCloudExadataInfrastructureRequest

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 request for CloudExadataInfrastructure.ConfigureExascale.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConfigureExascaleCloudExadataInfrastructureRequest

Returns a new instance of ConfigureExascaleCloudExadataInfrastructureRequest.



1967
1968
1969
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1967

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

Instance Attribute Details

#request_idString

Optional. An optional ID to identify the request. Corresponds to the JSON property requestId

Returns:

  • (String)


1955
1956
1957
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1955

def request_id
  @request_id
end

#total_storage_size_gbFixnum

Required. The total storage to be allocated to Exascale in GBs. Corresponds to the JSON property totalStorageSizeGb

Returns:

  • (Fixnum)


1960
1961
1962
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1960

def total_storage_size_gb
  @total_storage_size_gb
end

#total_vm_storage_size_gbFixnum

Optional. Storage size needed for VM storage on Exascale in GBs. Corresponds to the JSON property totalVmStorageSizeGb

Returns:

  • (Fixnum)


1965
1966
1967
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1965

def total_vm_storage_size_gb
  @total_vm_storage_size_gb
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1972
1973
1974
1975
1976
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1972

def update!(**args)
  @request_id = args[:request_id] if args.key?(:request_id)
  @total_storage_size_gb = args[:total_storage_size_gb] if args.key?(:total_storage_size_gb)
  @total_vm_storage_size_gb = args[:total_vm_storage_size_gb] if args.key?(:total_vm_storage_size_gb)
end