InheritablePolicy

InheritablePolicy
InheritablePolicy

The base class for any type of setting or configuration that may get a inherited value.

When used in a reconfigure operation specification, if inherited is true, it specifies the intention to change the values of subclass's properties to the inherited values from the level above. In this case, users don't need to specify the values and any set property in the subclass will be ignored. if inherited is false, it specifies the intention to explicitly set subclass's properties to user specified values. Users should set the properties in the subclass with the desired values.

When used in a configuration information object, The values of the properties in the subclass are the effective values. if inherited is true, the object is getting the effective values from upper level. If false, the values are explicitly set by a user.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "inherited": false
}
boolean
inherited
Required

Whether the configuration is set to inherited value.