Skip to content

Latest commit

 

History

History
182 lines (97 loc) · 5.09 KB

ServiceConnection.md

File metadata and controls

182 lines (97 loc) · 5.09 KB

ServiceConnection

Properties

Name Type Description Notes
Pk string [readonly]
Name string
Local Pointer to bool If enabled, use the local connection. Required Docker socket/Kubernetes Integration [optional]
Component string Return component used to edit this object [readonly]
VerboseName string Return object's verbose_name [readonly]
VerboseNamePlural string Return object's plural verbose_name [readonly]
MetaModelName string Return internal model name [readonly]

Methods

NewServiceConnection

func NewServiceConnection(pk string, name string, component string, verboseName string, verboseNamePlural string, metaModelName string, ) *ServiceConnection

NewServiceConnection instantiates a new ServiceConnection 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

NewServiceConnectionWithDefaults

func NewServiceConnectionWithDefaults() *ServiceConnection

NewServiceConnectionWithDefaults instantiates a new ServiceConnection 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

GetPk

func (o *ServiceConnection) GetPk() string

GetPk returns the Pk field if non-nil, zero value otherwise.

GetPkOk

func (o *ServiceConnection) GetPkOk() (*string, bool)

GetPkOk returns a tuple with the Pk field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPk

func (o *ServiceConnection) SetPk(v string)

SetPk sets Pk field to given value.

GetName

func (o *ServiceConnection) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *ServiceConnection) 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.

SetName

func (o *ServiceConnection) SetName(v string)

SetName sets Name field to given value.

GetLocal

func (o *ServiceConnection) GetLocal() bool

GetLocal returns the Local field if non-nil, zero value otherwise.

GetLocalOk

func (o *ServiceConnection) GetLocalOk() (*bool, bool)

GetLocalOk returns a tuple with the Local field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLocal

func (o *ServiceConnection) SetLocal(v bool)

SetLocal sets Local field to given value.

HasLocal

func (o *ServiceConnection) HasLocal() bool

HasLocal returns a boolean if a field has been set.

GetComponent

func (o *ServiceConnection) GetComponent() string

GetComponent returns the Component field if non-nil, zero value otherwise.

GetComponentOk

func (o *ServiceConnection) GetComponentOk() (*string, bool)

GetComponentOk returns a tuple with the Component field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetComponent

func (o *ServiceConnection) SetComponent(v string)

SetComponent sets Component field to given value.

GetVerboseName

func (o *ServiceConnection) GetVerboseName() string

GetVerboseName returns the VerboseName field if non-nil, zero value otherwise.

GetVerboseNameOk

func (o *ServiceConnection) GetVerboseNameOk() (*string, bool)

GetVerboseNameOk returns a tuple with the VerboseName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVerboseName

func (o *ServiceConnection) SetVerboseName(v string)

SetVerboseName sets VerboseName field to given value.

GetVerboseNamePlural

func (o *ServiceConnection) GetVerboseNamePlural() string

GetVerboseNamePlural returns the VerboseNamePlural field if non-nil, zero value otherwise.

GetVerboseNamePluralOk

func (o *ServiceConnection) GetVerboseNamePluralOk() (*string, bool)

GetVerboseNamePluralOk returns a tuple with the VerboseNamePlural field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVerboseNamePlural

func (o *ServiceConnection) SetVerboseNamePlural(v string)

SetVerboseNamePlural sets VerboseNamePlural field to given value.

GetMetaModelName

func (o *ServiceConnection) GetMetaModelName() string

GetMetaModelName returns the MetaModelName field if non-nil, zero value otherwise.

GetMetaModelNameOk

func (o *ServiceConnection) GetMetaModelNameOk() (*string, bool)

GetMetaModelNameOk returns a tuple with the MetaModelName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMetaModelName

func (o *ServiceConnection) SetMetaModelName(v string)

SetMetaModelName sets MetaModelName field to given value.

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