UrlList

class oci.network_firewall.models.UrlList(**kwargs)

Bases: object

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.

Methods

__init__(**kwargs) Initializes a new UrlList object with values from keyword arguments.

Attributes

name [Required] Gets the name of this UrlList.
parent_resource_id [Required] Gets the parent_resource_id of this UrlList.
total_urls [Required] Gets the total_urls of this UrlList.
urls [Required] Gets the urls of this UrlList.
__init__(**kwargs)

Initializes a new UrlList object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • name (str) – The value to assign to the name property of this UrlList.
  • urls (list[oci.network_firewall.models.UrlPattern]) – The value to assign to the urls property of this UrlList.
  • total_urls (int) – The value to assign to the total_urls property of this UrlList.
  • parent_resource_id (str) – The value to assign to the parent_resource_id property of this UrlList.
name

[Required] Gets the name of this UrlList. Unique name identifier for the URL list.

Returns:The name of this UrlList.
Return type:str
parent_resource_id

[Required] Gets the parent_resource_id of this UrlList. OCID of the Network Firewall Policy this URL List belongs to.

Returns:The parent_resource_id of this UrlList.
Return type:str
total_urls

[Required] Gets the total_urls of this UrlList. Total count of URLs in the URL List

Returns:The total_urls of this UrlList.
Return type:int
urls

[Required] Gets the urls of this UrlList. List of urls.

Returns:The urls of this UrlList.
Return type:list[oci.network_firewall.models.UrlPattern]