Name | Type | Description | Notes |
---|---|---|---|
Id | string | ||
Name | Pointer to string | [optional] | |
InternalPort | int32 | The listening port of your service. | |
ExternalPort | Pointer to int32 | The exposed port for your service. This is optional. If not set a default port will be used. | [optional] |
PubliclyAccessible | bool | Expose the port to the world | |
IsDefault | Pointer to bool | is the default port to use for domain | [optional] |
Protocol | PortProtocolEnum | [default to PORTPROTOCOLENUM_HTTP] |
func NewServicePort(id string, internalPort int32, publiclyAccessible bool, protocol PortProtocolEnum, ) *ServicePort
NewServicePort instantiates a new ServicePort object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewServicePortWithDefaults() *ServicePort
NewServicePortWithDefaults instantiates a new ServicePort object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ServicePort) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *ServicePort) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetId(v string)
SetId sets Id field to given value.
func (o *ServicePort) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *ServicePort) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetName(v string)
SetName sets Name field to given value.
func (o *ServicePort) HasName() bool
HasName returns a boolean if a field has been set.
func (o *ServicePort) GetInternalPort() int32
GetInternalPort returns the InternalPort field if non-nil, zero value otherwise.
func (o *ServicePort) GetInternalPortOk() (*int32, bool)
GetInternalPortOk returns a tuple with the InternalPort field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetInternalPort(v int32)
SetInternalPort sets InternalPort field to given value.
func (o *ServicePort) GetExternalPort() int32
GetExternalPort returns the ExternalPort field if non-nil, zero value otherwise.
func (o *ServicePort) GetExternalPortOk() (*int32, bool)
GetExternalPortOk returns a tuple with the ExternalPort field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetExternalPort(v int32)
SetExternalPort sets ExternalPort field to given value.
func (o *ServicePort) HasExternalPort() bool
HasExternalPort returns a boolean if a field has been set.
func (o *ServicePort) GetPubliclyAccessible() bool
GetPubliclyAccessible returns the PubliclyAccessible field if non-nil, zero value otherwise.
func (o *ServicePort) GetPubliclyAccessibleOk() (*bool, bool)
GetPubliclyAccessibleOk returns a tuple with the PubliclyAccessible field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetPubliclyAccessible(v bool)
SetPubliclyAccessible sets PubliclyAccessible field to given value.
func (o *ServicePort) GetIsDefault() bool
GetIsDefault returns the IsDefault field if non-nil, zero value otherwise.
func (o *ServicePort) GetIsDefaultOk() (*bool, bool)
GetIsDefaultOk returns a tuple with the IsDefault field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetIsDefault(v bool)
SetIsDefault sets IsDefault field to given value.
func (o *ServicePort) HasIsDefault() bool
HasIsDefault returns a boolean if a field has been set.
func (o *ServicePort) GetProtocol() PortProtocolEnum
GetProtocol returns the Protocol field if non-nil, zero value otherwise.
func (o *ServicePort) GetProtocolOk() (*PortProtocolEnum, bool)
GetProtocolOk returns a tuple with the Protocol field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ServicePort) SetProtocol(v PortProtocolEnum)
SetProtocol sets Protocol field to given value.