Show / Hide Table of Contents

Class MaintenancePolicy

The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.

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

Properties

EnvironmentMaintenanceOverride

Declaration
[JsonProperty(PropertyName = "environmentMaintenanceOverride")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MaintenancePolicy.EnvironmentMaintenanceOverrideEnum? EnvironmentMaintenanceOverride { get; set; }
Property Value
Type Description
MaintenancePolicy.EnvironmentMaintenanceOverrideEnum?

User choice to upgrade both test and prod pods at the same time. Overrides fusion environment families'.

MonthlyPatchingOverride

Declaration
[JsonProperty(PropertyName = "monthlyPatchingOverride")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MaintenancePolicy.MonthlyPatchingOverrideEnum? MonthlyPatchingOverride { get; set; }
Property Value
Type Description
MaintenancePolicy.MonthlyPatchingOverrideEnum?

When "ENABLED", the Fusion environment is patched monthly. When "DISABLED", the Fusion environment is not patched monthly. This setting overrides the environment family setting. When not set, the environment follows the environment family policy.

In this article
Back to top