Show / Hide Table of Contents

Class StorageCostEstimation

Cost estimation for storage

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

Properties

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.

Volumes

Declaration
[Required(ErrorMessage = "Volumes is required.")]
[JsonProperty(PropertyName = "volumes")]
public List<VolumeCostEstimation> Volumes { get; set; }
Property Value
Type Description
List<VolumeCostEstimation>

Volume estimation

Remarks

Required

In this article
Back to top