Show / Hide Table of Contents

Class CurrentMonthlyCost

Current monthly compute and storage costs.

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

Properties

AssetCount

Declaration
[JsonProperty(PropertyName = "assetCount")]
public int? AssetCount { get; set; }
Property Value
Type Description
int?

Number of assets used in this calculation.

ComputeAmount

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

Current monthly compute costs.

Remarks

Required

CurrencyCode

Declaration
[Required(ErrorMessage = "CurrencyCode is required.")]
[JsonProperty(PropertyName = "currencyCode")]
public string CurrencyCode { get; set; }
Property Value
Type Description
string

Currency code as defined by ISO-4217.

Remarks

Required

StorageAmount

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

Current monthly storage costs.

In this article
Back to top