Show / Hide Table of Contents

Class BlockchainPlatform

Blockchain Platform Instance Description.

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

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

ComponentDetails

Declaration
[JsonProperty(PropertyName = "componentDetails")]
public BlockchainPlatformComponentDetails ComponentDetails { get; set; }
Property Value
Type Description
BlockchainPlatformComponentDetails

ComputeShape

Declaration
[Required(ErrorMessage = "ComputeShape is required.")]
[JsonProperty(PropertyName = "computeShape")]
[JsonConverter(typeof(ResponseEnumConverter))]
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 or DIGITAL_ASSETS_MEDIUM or DIGITAL_ASSETS_LARGE or DIGITAL_ASSETS_EXTRA_LARGE

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"}

HostOcpuUtilizationInfo

Declaration
[JsonProperty(PropertyName = "hostOcpuUtilizationInfo")]
public List<OcpuUtilizationInfo> HostOcpuUtilizationInfo { get; set; }
Property Value
Type Description
List<OcpuUtilizationInfo>

List of OcpuUtilization for all hosts

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

IsByol

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

Bring your own license

IsMultiAD

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

True for multi-AD blockchain plaforms, false for single-AD

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(ResponseEnumConverter))]
public BlockchainPlatform.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
BlockchainPlatform.LifecycleStateEnum?

The current state of the Platform Instance.

LoadBalancerShape

Declaration
[JsonProperty(PropertyName = "loadBalancerShape")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BlockchainPlatform.LoadBalancerShapeEnum? LoadBalancerShape { get; set; }
Property Value
Type Description
BlockchainPlatform.LoadBalancerShapeEnum?

Type of Load Balancer shape - LB_100_MBPS or LB_400_MBPS. Default is LB_100_MBPS.

PlatformRole

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

Role of platform - FOUNDER or PARTICIPANT

Remarks

Required

PlatformShapeType

Declaration
[JsonProperty(PropertyName = "platformShapeType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BlockchainPlatform.PlatformShapeTypeEnum? PlatformShapeType { get; set; }
Property Value
Type Description
BlockchainPlatform.PlatformShapeTypeEnum?

Type of Platform shape - DEFAULT or CUSTOM

PlatformVersion

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

Platform Version

Replicas

Declaration
[JsonProperty(PropertyName = "replicas")]
public ReplicaDetails Replicas { get; set; }
Property Value
Type Description
ReplicaDetails

ServiceEndpoint

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

Service endpoint URL, valid post-provisioning

ServiceVersion

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

The version of the Platform Instance.

StorageSizeInTBs

Declaration
[JsonProperty(PropertyName = "storageSizeInTBs")]
public double StorageSizeInTBs { get; set; }
Property Value
Type Description
double

Storage size in TBs

StorageUsedInTBs

Declaration
[JsonProperty(PropertyName = "storageUsedInTBs")]
public double StorageUsedInTBs { get; set; }
Property Value
Type Description
double

Storage used in TBs

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

TotalOcpuCapacity

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

Number of total OCPUs allocated to the platform cluster

In this article
Back to top