Show / Hide Table of Contents

Class VolumeCostEstimation

Cost estimation for volume

Inheritance
object
VolumeCostEstimation
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 VolumeCostEstimation

Properties

CapacityGb

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

Gigabyte storage capacity

Remarks

Required

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Volume description

TotalGbPerMonth

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

Gigabyte storage capacity per month.

Remarks

Required

TotalGbPerMonthBySubscription

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

Gigabyte storage capacity per month by subscription

In this article
Back to top