Show / Hide Table of Contents

Class RequiredPolicySummary

The summary information about the required policy for WebLogic Management Service.

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

Properties

Description

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

A short description about the policy.

Name

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

The name of the policy.

Remarks

Required

Statements

Declaration
[Required(ErrorMessage = "Statements is required.")]
[JsonProperty(PropertyName = "statements")]
public List<string> Statements { get; set; }
Property Value
Type Description
List<string>

The list of the statements in the policy.

Remarks

Required

In this article
Back to top