Show / Hide Table of Contents

Class BlockchainPlatformSummary

Blockchain Platform Instance Summary.

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

Properties

CompartmentId

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

Compartment Identifier

Remarks

Required

ComputeShape

Declaration
[Required(ErrorMessage = "ComputeShape is required.")]
[JsonProperty(PropertyName = "computeShape")]
[JsonConverter(typeof(StringEnumConverter))]
public BlockchainPlatform.ComputeShapeEnum? ComputeShape { get; set; }
Property Value
Type Description
BlockchainPlatform.ComputeShapeEnum?

Compute shape - STANDARD or ENTERPRISE_SMALL or ENTERPRISE_MEDIUM or ENTERPRISE_LARGE or ENTERPRISE_EXTRA_LARGE or ENTERPRISE_CUSTOM

Remarks

Required

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. Example: {"foo-namespace": {"bar-key": "value"}}

Description

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

Platform Instance Description

DisplayName

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

Platform Instance Display name, can be renamed

Remarks

Required

FreeformTags

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

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

unique identifier that is immutable on creation

Remarks

Required

LifecycleDetails

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

An message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

LifecycleState

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

The current state of the Platform Instance.

PlatformRole

Declaration
[JsonProperty(PropertyName = "platformRole")]
[JsonConverter(typeof(StringEnumConverter))]
public BlockchainPlatform.PlatformRoleEnum? PlatformRole { get; set; }
Property Value
Type Description
BlockchainPlatform.PlatformRoleEnum?

Role of platform - founder or participant

ServiceEndpoint

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

Service endpoint URL, valid post-provisioning

TimeCreated

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

The time the the Platform Instance was created. An RFC3339 formatted datetime string

TimeUpdated

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

The time the Platform Instance was updated. An RFC3339 formatted datetime string

In this article
Back to top