Show / Hide Table of Contents

Class ApplicationGroupSummary

Summary object for application list in the network firewall policy.

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

Properties

Name

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

Name of the application groups.

Remarks

Required

ParentResourceId

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

OCID of the Network Firewall Policy this application group belongs to.

Remarks

Required

TotalApps

Declaration
[Required(ErrorMessage = "TotalApps is required.")]
[JsonProperty(PropertyName = "totalApps")]
public int? TotalApps { get; set; }
Property Value
Type Description
int?

Count of total applications in the given application group.

Remarks

Required

In this article
Back to top