Show / Hide Table of Contents

Class CreateApplicationGroupDetails

Request for creating a application list in a policy.

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

Properties

Apps

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

Collection of application names.

Remarks

Required

Name

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

Name of the application Group.

Remarks

Required

In this article
Back to top