Show / Hide Table of Contents

Class MulticloudSubscriptionSummary

A Multicloud subscription.

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

Properties

ActiveCommitment

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

Total value for the subscription.

ClassicSubscriptionId

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

Subscription ID for OCI and partner cloud in classic format.

Remarks

Required

CspAdditionalProperties

Declaration
[JsonProperty(PropertyName = "cspAdditionalProperties")]
public Dictionary<string, string> CspAdditionalProperties { get; set; }
Property Value
Type Description
Dictionary<string, string>

Properties specific to the cloud service provider. For example, AzureSubnetId for Azure.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MulticloudSubscriptionSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
MulticloudSubscriptionSummary.LifecycleStateEnum?

The current state of the subscription.

PartnerCloudAccountIdentifier

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

The partner cloud account ID.

Remarks

Required

PartnerCloudTenantIdentifier

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

The partner cloud tenant ID.

PaymentPlan

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

Payment plan for the subscription.

ServiceName

Declaration
[JsonProperty(PropertyName = "serviceName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SubscriptionType? ServiceName { get; set; }
Property Value
Type Description
SubscriptionType?

The cloud service provider.

SubscriptionId

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

URL to the subscription details page. Example: https://{console-url}/org-mgmt/subscription/ocid1.organizationssubscription.oc1.iad.exampleuniqueid?region=us-ashburn-1.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace.
Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The date and time that the subscription was created, in the format defined by RFC 3339.

Remarks

Required

TimeEndDate

Declaration
[JsonProperty(PropertyName = "timeEndDate")]
public DateTime? TimeEndDate { get; set; }
Property Value
Type Description
DateTime?

The end date and time for the subscription, in the format defined by RFC 3339.

TimeLinkedDate

Declaration
[JsonProperty(PropertyName = "timeLinkedDate")]
public DateTime? TimeLinkedDate { get; set; }
Property Value
Type Description
DateTime?

The date and time that the Multicloud base compartment was created, in the format defined by RFC 3339.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the subscription was updated, in the format defined by RFC 3339.

In this article
Back to top