Show / Hide Table of Contents

Class CreateOpaInstanceDetails

The information about new OpaInstance.

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

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

ConsumptionModel

Declaration
[JsonProperty(PropertyName = "consumptionModel")]
[JsonConverter(typeof(StringEnumConverter))]
public OpaInstance.ConsumptionModelEnum? ConsumptionModel { get; set; }
Property Value
Type Description
OpaInstance.ConsumptionModelEnum?

Parameter specifying which entitlement to use for billing purposes

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

Description of the Oracle Process Automation instance.

DisplayName

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

OpaInstance Identifier. User-friendly name for the instance. Avoid entering confidential information. You can change this value anytime.

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

IdcsAt

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

IDCS Authentication token. This is required for all realms with IDCS. This property is optional, as it is not required for non-IDCS realms.

IsBreakglassEnabled

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

indicates if breakGlass is enabled for the opa instance.

MeteringType

Declaration
[JsonProperty(PropertyName = "meteringType")]
[JsonConverter(typeof(StringEnumConverter))]
public OpaInstance.MeteringTypeEnum? MeteringType { get; set; }
Property Value
Type Description
OpaInstance.MeteringTypeEnum?

MeteringType Identifier

ShapeName

Declaration
[Required(ErrorMessage = "ShapeName is required.")]
[JsonProperty(PropertyName = "shapeName")]
[JsonConverter(typeof(StringEnumConverter))]
public OpaInstance.ShapeNameEnum? ShapeName { get; set; }
Property Value
Type Description
OpaInstance.ShapeNameEnum?

Shape of the instance.

Remarks

Required

In this article
Back to top