Class RequiredPolicySummary
The summary information about the required policy for WebLogic Management Service.
Inherited Members
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