Show / Hide Table of Contents

Class UrlList

URL pattern lists of the policy. The value of an entry is a list of URL patterns. The associated key/name is the identifier by which the URL pattern list is referenced.

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

Properties

Name

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

Unique name identifier for the URL 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 URL List belongs to.

Remarks

Required

TotalUrls

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

Total count of URLs in the URL List

Remarks

Required

Urls

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

List of urls.

Remarks

Required

In this article
Back to top