Show / Hide Table of Contents

Class NodeCount

An object with a logical shape and count of the number of nodes with that shape.

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

Properties

Count

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

The node count of this compute shape.

LogicalShape

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

The compute shape of the nodes that the count is for.

In this article
Back to top