CreateUrlListDetails

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

Bases: object

The Request for creating the URL List

Methods

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

Attributes

description Gets the description of this CreateUrlListDetails.
name [Required] Gets the name of this CreateUrlListDetails.
urls [Required] Gets the urls of this CreateUrlListDetails.
__init__(**kwargs)

Initializes a new CreateUrlListDetails 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 CreateUrlListDetails.
  • urls (list[oci.network_firewall.models.UrlPattern]) – The value to assign to the urls property of this CreateUrlListDetails.
  • description (str) – The value to assign to the description property of this CreateUrlListDetails.
description

Gets the description of this CreateUrlListDetails. The description of the Url list. This field can be used to add additional info.

Returns:The description of this CreateUrlListDetails.
Return type:str
name

[Required] Gets the name of this CreateUrlListDetails. Unique name to identify the group of urls to be used in the policy rules.

Returns:The name of this CreateUrlListDetails.
Return type:str
urls

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

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