Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 1.51 KB

ServicePortRequestPortsInner.md

File metadata and controls

34 lines (26 loc) · 1.51 KB

ServicePortRequestPortsInner

Properties

Name Type Description Notes
id str [optional]
name str [optional]
internal_port int The listening port of your service.
external_port int The exposed port for your service. This is optional. If not set a default port will be used. [optional]
publicly_accessible bool Expose the port to the world
is_default bool is the default port to use for domain [optional]
protocol PortProtocolEnum [optional]

Example

from qovery.models.service_port_request_ports_inner import ServicePortRequestPortsInner

# TODO update the JSON string below
json = "{}"
# create an instance of ServicePortRequestPortsInner from a JSON string
service_port_request_ports_inner_instance = ServicePortRequestPortsInner.from_json(json)
# print the JSON string representation of the object
print ServicePortRequestPortsInner.to_json()

# convert the object into a dict
service_port_request_ports_inner_dict = service_port_request_ports_inner_instance.to_dict()
# create an instance of ServicePortRequestPortsInner from a dict
service_port_request_ports_inner_form_dict = service_port_request_ports_inner.from_dict(service_port_request_ports_inner_dict)

[Back to Model list] [Back to API list] [Back to README]