Skip to content

Latest commit

 

History

History
129 lines (70 loc) · 3.15 KB

Docker.md

File metadata and controls

129 lines (70 loc) · 3.15 KB

Docker

Properties

Name Type Description Notes
Image Pointer to string [optional]
Container Pointer to string [optional]
ContainerId Pointer to string [optional]
Status string

Methods

NewDocker

func NewDocker(status string, ) *Docker

NewDocker instantiates a new Docker 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

NewDockerWithDefaults

func NewDockerWithDefaults() *Docker

NewDockerWithDefaults instantiates a new Docker 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

GetImage

func (o *Docker) GetImage() string

GetImage returns the Image field if non-nil, zero value otherwise.

GetImageOk

func (o *Docker) GetImageOk() (*string, bool)

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

SetImage

func (o *Docker) SetImage(v string)

SetImage sets Image field to given value.

HasImage

func (o *Docker) HasImage() bool

HasImage returns a boolean if a field has been set.

GetContainer

func (o *Docker) GetContainer() string

GetContainer returns the Container field if non-nil, zero value otherwise.

GetContainerOk

func (o *Docker) GetContainerOk() (*string, bool)

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

SetContainer

func (o *Docker) SetContainer(v string)

SetContainer sets Container field to given value.

HasContainer

func (o *Docker) HasContainer() bool

HasContainer returns a boolean if a field has been set.

GetContainerId

func (o *Docker) GetContainerId() string

GetContainerId returns the ContainerId field if non-nil, zero value otherwise.

GetContainerIdOk

func (o *Docker) GetContainerIdOk() (*string, bool)

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

SetContainerId

func (o *Docker) SetContainerId(v string)

SetContainerId sets ContainerId field to given value.

HasContainerId

func (o *Docker) HasContainerId() bool

HasContainerId returns a boolean if a field has been set.

GetStatus

func (o *Docker) GetStatus() string

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *Docker) GetStatusOk() (*string, bool)

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

SetStatus

func (o *Docker) SetStatus(v string)

SetStatus sets Status field to given value.

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