Show / Hide Table of Contents

Class GetMaintenancePolicyDetails

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

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

Properties

EnvironmentMaintenanceOverride

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

User choice to upgrade both production and non-production environments at the same time. Overrides the Fusion environment family setting.

MonthlyPatchingOverride

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

Whether the Fusion environment will be updated monthly or updated on the quarterly cycle. This setting overrides the monthly patching setting of its Fusion environment family.

QuarterlyUpgradeBeginTimes

Declaration
[JsonProperty(PropertyName = "quarterlyUpgradeBeginTimes")]
public QuarterlyUpgradeBeginTimes QuarterlyUpgradeBeginTimes { get; set; }
Property Value
Type Description
QuarterlyUpgradeBeginTimes
In this article
Back to top