Show / Hide Table of Contents

Class CreateServiceListDetails

Request for creating a service list in a policy.

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

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

Services

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

Collection of service names.

Remarks

Required

In this article
Back to top