CreateUrlListDetails¶
-
class
oci.network_firewall.models.CreateUrlListDetails(**kwargs)¶ Bases:
objectThe Request for creating the URL List
Methods
__init__(**kwargs)Initializes a new CreateUrlListDetails object with values from keyword arguments. Attributes
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.
-
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]
-