Show / Hide Table of Contents

Class ComputeCostEstimation

Cost estimation for compute

Inheritance
object
ComputeCostEstimation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudmigrationsService.Models
Assembly: OCI.DotNetSDK.Cloudmigrations.dll
Syntax
public class ComputeCostEstimation

Properties

GpuCount

Declaration
[JsonProperty(PropertyName = "gpuCount")]
public decimal? GpuCount { get; set; }
Property Value
Type Description
decimal?

Total number of GPU

GpuPerHour

Declaration
[Required(ErrorMessage = "GpuPerHour is required.")]
[JsonProperty(PropertyName = "gpuPerHour")]
public decimal? GpuPerHour { get; set; }
Property Value
Type Description
decimal?

GPU per hour

Remarks

Required

GpuPerHourBySubscription

Declaration
[JsonProperty(PropertyName = "gpuPerHourBySubscription")]
public decimal? GpuPerHourBySubscription { get; set; }
Property Value
Type Description
decimal?

GPU per hour by subscription

MemoryAmountGb

Declaration
[JsonProperty(PropertyName = "memoryAmountGb")]
public decimal? MemoryAmountGb { get; set; }
Property Value
Type Description
decimal?

Total usage of memory

MemoryGbPerHour

Declaration
[Required(ErrorMessage = "MemoryGbPerHour is required.")]
[JsonProperty(PropertyName = "memoryGbPerHour")]
public decimal? MemoryGbPerHour { get; set; }
Property Value
Type Description
decimal?

Gigabyte per hour

Remarks

Required

MemoryGbPerHourBySubscription

Declaration
[JsonProperty(PropertyName = "memoryGbPerHourBySubscription")]
public decimal? MemoryGbPerHourBySubscription { get; set; }
Property Value
Type Description
decimal?

Gigabyte per hour by subscription

OcpuCount

Declaration
[JsonProperty(PropertyName = "ocpuCount")]
public decimal? OcpuCount { get; set; }
Property Value
Type Description
decimal?

Total number of OCPUs

OcpuPerHour

Declaration
[Required(ErrorMessage = "OcpuPerHour is required.")]
[JsonProperty(PropertyName = "ocpuPerHour")]
public decimal? OcpuPerHour { get; set; }
Property Value
Type Description
decimal?

OCPU per hour

Remarks

Required

OcpuPerHourBySubscription

Declaration
[JsonProperty(PropertyName = "ocpuPerHourBySubscription")]
public decimal? OcpuPerHourBySubscription { get; set; }
Property Value
Type Description
decimal?

OCPU per hour by subscription

TotalPerHour

Declaration
[Required(ErrorMessage = "TotalPerHour is required.")]
[JsonProperty(PropertyName = "totalPerHour")]
public decimal? TotalPerHour { get; set; }
Property Value
Type Description
decimal?

Total per hour

Remarks

Required

TotalPerHourBySubscription

Declaration
[JsonProperty(PropertyName = "totalPerHourBySubscription")]
public decimal? TotalPerHourBySubscription { get; set; }
Property Value
Type Description
decimal?

Total usage per hour by subscription

In this article
Back to top