Class ServiceList
A group of services.
Inherited Members
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