Show / Hide Table of Contents

Class UpdateVbInstanceDetails

Information about updating a VbInstance.

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

Properties

AlternateCustomEndpoints

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

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

CustomEndpoint

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

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
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Vb Instance Identifier.

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?

Enable Visual Builder. If Visual Builder is enabled alredy, then it cannot be disabled.

NetworkEndpointDetails

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

NodeCount

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

The number of Nodes

In this article
Back to top