Show / Hide Table of Contents

Class CustomBuildRunnerShapeConfig

Specifies the custom build runner shape config.

Inheritance
object
BuildRunnerShapeConfig
CustomBuildRunnerShapeConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class CustomBuildRunnerShapeConfig : BuildRunnerShapeConfig

Properties

MemoryInGBs

Declaration
[Required(ErrorMessage = "MemoryInGBs is required.")]
[JsonProperty(PropertyName = "memoryInGBs")]
public int? MemoryInGBs { get; set; }
Property Value
Type Description
int?

The total amount of memory set for the instance in gigabytes.

Remarks

Required

Ocpus

Declaration
[Required(ErrorMessage = "Ocpus is required.")]
[JsonProperty(PropertyName = "ocpus")]
public int? Ocpus { get; set; }
Property Value
Type Description
int?

The total number of OCPUs set for the instance.

Remarks

Required

In this article
Back to top