Show / Hide Table of Contents

Class UpdateOceInstanceDetails

The information to be updated.

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

Properties

AddOnFeatures

Declaration
[JsonProperty(PropertyName = "addOnFeatures")]
public List<string> AddOnFeatures { get; set; }
Property Value
Type Description
List<string>

a list of add-on features for the ocm instance

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

Description

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

OceInstance description

DrRegion

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

disaster recovery paired ragion name

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

InstanceLicenseType

Declaration
[JsonProperty(PropertyName = "instanceLicenseType")]
[JsonConverter(typeof(StringEnumConverter))]
public LicenseType? InstanceLicenseType { get; set; }
Property Value
Type Description
LicenseType?

Flag indicating whether the instance license is new cloud or bring your own license

InstanceUsageType

Declaration
[JsonProperty(PropertyName = "instanceUsageType")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateOceInstanceDetails.InstanceUsageTypeEnum? InstanceUsageType { get; set; }
Property Value
Type Description
UpdateOceInstanceDetails.InstanceUsageTypeEnum?

Instance type based on its usage

LifecycleDetails

Declaration
[JsonProperty(PropertyName = "lifecycleDetails")]
[JsonConverter(typeof(StringEnumConverter))]
public LifecycleDetails? LifecycleDetails { get; set; }
Property Value
Type Description
LifecycleDetails?

Details of the current state of the instance lifecycle

WafPrimaryDomain

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

Web Application Firewall(WAF) primary domain

In this article
Back to top