Show / Hide Table of Contents

Class ClassicAssignedSubscriptionSummary

Summary of assigned subscription information.

Inheritance
object
AssignedSubscriptionSummary
ClassicAssignedSubscriptionSummary
Inherited Members
AssignedSubscriptionSummary.Id
AssignedSubscriptionSummary.CompartmentId
AssignedSubscriptionSummary.ServiceName
AssignedSubscriptionSummary.TimeCreated
AssignedSubscriptionSummary.TimeUpdated
AssignedSubscriptionSummary.FreeformTags
AssignedSubscriptionSummary.DefinedTags
AssignedSubscriptionSummary.SystemTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.TenantmanagercontrolplaneService.Models
Assembly: OCI.DotNetSDK.Tenantmanagercontrolplane.dll
Syntax
public class ClassicAssignedSubscriptionSummary : AssignedSubscriptionSummary

Properties

ClassicSubscriptionId

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

Subscription ID.

Remarks

Required

CsiNumber

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

Customer service identifier for the customer associated with the subscription.

EndDate

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

Subscription end time.

IsClassicSubscription

Declaration
[JsonProperty(PropertyName = "isClassicSubscription")]
public bool? IsClassicSubscription { get; set; }
Property Value
Type Description
bool?

Specifies whether or not the subscription is legacy.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClassicSubscriptionLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
ClassicSubscriptionLifecycleState?

Lifecycle state of the subscription.

Remarks

Required

ManagedBy

Declaration
[JsonProperty(PropertyName = "managedBy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClassicSubscriptionManagedBy? ManagedBy { get; set; }
Property Value
Type Description
ClassicSubscriptionManagedBy?

Service or component which is used to provision and manage the subscription.

RegionAssignment

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

Region for the subscription.

StartDate

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

Subscription start time.

In this article
Back to top