CreateTcpServiceDetails

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

Bases: oci.network_firewall.models.create_service_details.CreateServiceDetails

Request for TCP 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 CreateTcpServiceDetails.
type Gets the type of this CreateServiceDetails.

Methods

__init__(**kwargs) Initializes a new CreateTcpServiceDetails 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 CreateTcpServiceDetails object with values from keyword arguments. The default value of the type attribute of this class is TCP_SERVICE and 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 CreateTcpServiceDetails.
  • type (str) – The value to assign to the type property of this CreateTcpServiceDetails. 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 CreateTcpServiceDetails.
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 CreateTcpServiceDetails. List of port-ranges used.

Returns:The port_ranges of this CreateTcpServiceDetails.
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