Show / Hide Table of Contents

Class UpdateIntegrationInstanceDetails

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

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 integration 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

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

IntegrationInstanceType

Declaration
[JsonProperty(PropertyName = "integrationInstanceType")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateIntegrationInstanceDetails.IntegrationInstanceTypeEnum? IntegrationInstanceType { get; set; }
Property Value
Type Description
UpdateIntegrationInstanceDetails.IntegrationInstanceTypeEnum?

Standard or Enterprise type, Oracle Integration Generation 2 uses ENTERPRISE and STANDARD, Oracle Integration 3 uses ENTERPRISEX and STANDARDX

IsByol

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

Bring your own license.

IsFileServerEnabled

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

The file server is enabled or not.

IsVisualBuilderEnabled

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

Visual Builder is enabled or not.

MessagePacks

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

The number of configured message packs

In this article
Back to top