Show / Hide Table of Contents

Class AddressListSummary

Address List Summary in the network firewall policy

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

Properties

Name

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

Name of Address List

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 address list belongs to.

Remarks

Required

TotalAddresses

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

Count of total Addresses in the AddressList

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
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