Show / Hide Table of Contents

Class CreateVbInstanceDetails

The information about new VbInstance.

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

Properties

AlternateCustomEndpoints

Declaration
[JsonProperty(PropertyName = "alternateCustomEndpoints")]
public List<CreateCustomEndpointDetails> AlternateCustomEndpoints { get; set; }
Property Value
Type Description
List<CreateCustomEndpointDetails>

A list of alternate custom endpoints to be used for the vb instance URL (contact Oracle for alternateCustomEndpoints availability for a specific instance).

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 CreateVbInstanceDetails.ConsumptionModelEnum? ConsumptionModel { get; set; }
Property Value
Type Description
CreateVbInstanceDetails.ConsumptionModelEnum?

Optional parameter specifying which entitlement to use for billing purposes. Only required if the account possesses more than one entitlement.

CustomEndpoint

Declaration
[JsonProperty(PropertyName = "customEndpoint")]
public CreateCustomEndpointDetails CustomEndpoint { get; set; }
Property Value
Type Description
CreateCustomEndpointDetails

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

Vb Instance Identifier.

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

IdcsOpenId

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

Encrypted IDCS Open ID token. This is required for pre-UCPIS cloud accounts, but not UCPIS, hence not a required parameter

IsVisualBuilderEnabled

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

Visual Builder is enabled or not.

NetworkEndpointDetails

Declaration
[JsonProperty(PropertyName = "networkEndpointDetails")]
public NetworkEndpointDetails NetworkEndpointDetails { get; set; }
Property Value
Type Description
NetworkEndpointDetails

NodeCount

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

The number of Nodes

Remarks

Required

In this article
Back to top