Show / Hide Table of Contents

Class ServiceList

A group of services.

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

Properties

Name

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

Name of the service 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 serviceList belongs to.

Remarks

Required

Services

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

List of services in the group.

Remarks

Required

TotalServices

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

Count of total services in the given service List.

Remarks

Required

In this article
Back to top