CreateUdpServiceDetails¶
- 
class oci.network_firewall.models.CreateUdpServiceDetails(**kwargs)¶
- Bases: - oci.network_firewall.models.create_service_details.CreateServiceDetails- Request for UDP Service used on the firewall policy rules. - Attributes - TYPE_TCP_SERVICE- str(object=’’) -> str - TYPE_UDP_SERVICE- str(object=’’) -> str - name- [Required] Gets the name of this CreateServiceDetails. - port_ranges- [Required] Gets the port_ranges of this CreateUdpServiceDetails. - type- Gets the type of this CreateServiceDetails. - Methods - __init__(**kwargs)- Initializes a new CreateUdpServiceDetails object with values from keyword arguments. - get_subtype(object_dictionary)- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. - 
TYPE_TCP_SERVICE= 'TCP_SERVICE'¶
 - 
TYPE_UDP_SERVICE= 'UDP_SERVICE'¶
 - 
__init__(**kwargs)¶
- Initializes a new CreateUdpServiceDetails object with values from keyword arguments. The default value of the - typeattribute of this class is- UDP_SERVICEand it should not be changed. 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 CreateUdpServiceDetails.
- type (str) – The value to assign to the type property of this CreateUdpServiceDetails. Allowed values for this property are: “TCP_SERVICE”, “UDP_SERVICE”
- port_ranges (list[oci.network_firewall.models.PortRange]) – The value to assign to the port_ranges property of this CreateUdpServiceDetails.
 
 - 
static get_subtype(object_dictionary)¶
- Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. 
 - 
name¶
- [Required] Gets the name of this CreateServiceDetails. Name of the service - Returns: - The name of this CreateServiceDetails. - Return type: - str 
 - 
port_ranges¶
- [Required] Gets the port_ranges of this CreateUdpServiceDetails. List of port-ranges to be used. - Returns: - The port_ranges of this CreateUdpServiceDetails. - Return type: - list[oci.network_firewall.models.PortRange] 
 - 
type¶
- Gets the type of this CreateServiceDetails. Describes the type of Service. - Allowed values for this property are: “TCP_SERVICE”, “UDP_SERVICE” - Returns: - The type of this CreateServiceDetails. - Return type: - str 
 
-