Show / Hide Table of Contents

Class ApplicationGroup

A group of applications.

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

Properties

Apps

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

List of apps in the group.

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

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