Class: Google::Apis::OracledatabaseV1::ConfigureExascaleCloudExadataInfrastructureRequest
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::ConfigureExascaleCloudExadataInfrastructureRequest
- 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
-
#request_id ⇒ String
Optional.
-
#total_storage_size_gb ⇒ Fixnum
Required.
-
#total_vm_storage_size_gb ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConfigureExascaleCloudExadataInfrastructureRequest
constructor
A new instance of ConfigureExascaleCloudExadataInfrastructureRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_id ⇒ String
Optional. An optional ID to identify the request.
Corresponds to the JSON property requestId
1955 1956 1957 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1955 def request_id @request_id end |
#total_storage_size_gb ⇒ Fixnum
Required. The total storage to be allocated to Exascale in GBs.
Corresponds to the JSON property totalStorageSizeGb
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_gb ⇒ Fixnum
Optional. Storage size needed for VM storage on Exascale in GBs.
Corresponds to the JSON property totalVmStorageSizeGb
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 |