Show / Hide Table of Contents

Class FusionEnvironment

Description of FusionEnvironment.

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

Properties

AdditionalLanguagePacks

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

Language packs

AppliedPatchBundles

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

Patch bundle names

CompartmentId

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

Compartment Identifier

Remarks

Required

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

DisplayName

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

FusionEnvironment Identifier, can be renamed

Remarks

Required

DnsPrefix

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

DNS prefix

DomainId

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

The IDCS domain created for the fusion instance

EnvironmentRole

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

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

FusionEnvironmentFamilyId

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

FusionEnvironmentFamily Identifier

FusionEnvironmentType

Declaration
[Required(ErrorMessage = "FusionEnvironmentType is required.")]
[JsonProperty(PropertyName = "fusionEnvironmentType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FusionEnvironment.FusionEnvironmentTypeEnum? FusionEnvironmentType { get; set; }
Property Value
Type Description
FusionEnvironment.FusionEnvironmentTypeEnum?

Type of the FusionEnvironment.

Remarks

Required

Id

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

Unique identifier that is immutable on creation

Remarks

Required

IdcsDomainUrl

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

The IDCS Domain URL

IsBreakGlassEnabled

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

If it's true, then the Break Glass feature is enabled

IsSuspended

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

Environment suspended status

KmsKeyId

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

BYOK key id

KmsKeyInfo

Declaration
[JsonProperty(PropertyName = "kmsKeyInfo")]
public object KmsKeyInfo { get; set; }
Property Value
Type Description
object

BYOK key info

LifecycleDetails

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

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FusionEnvironment.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
FusionEnvironment.LifecycleStateEnum?

The current state of the ServiceInstance.

Remarks

Required

LockboxId

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

The lockbox Id of this fusion environment. If there's no lockbox id, this field will be null

MaintenancePolicy

Declaration
[JsonProperty(PropertyName = "maintenancePolicy")]
public GetMaintenancePolicyDetails MaintenancePolicy { get; set; }
Property Value
Type Description
GetMaintenancePolicyDetails

PublicUrl

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

Public URL

Refresh

Declaration
[JsonProperty(PropertyName = "refresh")]
public RefreshDetails Refresh { get; set; }
Property Value
Type Description
RefreshDetails

Rules

Declaration
[JsonProperty(PropertyName = "rules")]
public List<Rule> Rules { get; set; }
Property Value
Type Description
List<Rule>

Network Access Control Rules

SubscriptionIds

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

List of subscription IDs.

SystemName

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

Environment Specific Guid/ System Name

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the the FusionEnvironment was created. An RFC3339 formatted datetime string

TimeUpcomingMaintenance

Declaration
[JsonProperty(PropertyName = "timeUpcomingMaintenance")]
public DateTime? TimeUpcomingMaintenance { get; set; }
Property Value
Type Description
DateTime?

The next maintenance for this environment

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the FusionEnvironment was updated. An RFC3339 formatted datetime string

Version

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

Version of Fusion Apps used by this environment

In this article
Back to top