Show / Hide Table of Contents

Class UpdateBlockchainPlatformDetails

Blockchain Platform details for updating a service.

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

Properties

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 Description

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

LoadBalancerShape

Declaration
[JsonProperty(PropertyName = "loadBalancerShape")]
[JsonConverter(typeof(StringEnumConverter))]
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.

Replicas

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

StorageSizeInTBs

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

Storage size in TBs

TotalOcpuCapacity

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

Number of total OCPUs to allocate

In this article
Back to top