Show / Hide Table of Contents

Class CreateAddressListDetails

The Request for creating the address List

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

Properties

Addresses

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

List of addresses.

Remarks

Required

Name

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

Unique name to identify the group of addresses to be used in the policy rules.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public AddressListType? Type { get; set; }
Property Value
Type Description
AddressListType?

Type of address List. The accepted values are - * FQDN * IP

Remarks

Required

In this article
Back to top