Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.65 KB

File metadata and controls

186 lines (101 loc) · 4.65 KB

FlyMachineInit

Properties

Name Type Description Notes
Cmd Pointer to []string [optional]
Entrypoint Pointer to []string [optional]
Exec Pointer to []string [optional]
KernelArgs Pointer to []string [optional]
SwapSizeMb Pointer to int64 [optional]
Tty Pointer to bool [optional]

Methods

NewFlyMachineInit

func NewFlyMachineInit() *FlyMachineInit

NewFlyMachineInit instantiates a new FlyMachineInit 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

NewFlyMachineInitWithDefaults

func NewFlyMachineInitWithDefaults() *FlyMachineInit

NewFlyMachineInitWithDefaults instantiates a new FlyMachineInit 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

GetCmd

func (o *FlyMachineInit) GetCmd() []string

GetCmd returns the Cmd field if non-nil, zero value otherwise.

GetCmdOk

func (o *FlyMachineInit) GetCmdOk() (*[]string, bool)

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

SetCmd

func (o *FlyMachineInit) SetCmd(v []string)

SetCmd sets Cmd field to given value.

HasCmd

func (o *FlyMachineInit) HasCmd() bool

HasCmd returns a boolean if a field has been set.

GetEntrypoint

func (o *FlyMachineInit) GetEntrypoint() []string

GetEntrypoint returns the Entrypoint field if non-nil, zero value otherwise.

GetEntrypointOk

func (o *FlyMachineInit) GetEntrypointOk() (*[]string, bool)

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

SetEntrypoint

func (o *FlyMachineInit) SetEntrypoint(v []string)

SetEntrypoint sets Entrypoint field to given value.

HasEntrypoint

func (o *FlyMachineInit) HasEntrypoint() bool

HasEntrypoint returns a boolean if a field has been set.

GetExec

func (o *FlyMachineInit) GetExec() []string

GetExec returns the Exec field if non-nil, zero value otherwise.

GetExecOk

func (o *FlyMachineInit) GetExecOk() (*[]string, bool)

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

SetExec

func (o *FlyMachineInit) SetExec(v []string)

SetExec sets Exec field to given value.

HasExec

func (o *FlyMachineInit) HasExec() bool

HasExec returns a boolean if a field has been set.

GetKernelArgs

func (o *FlyMachineInit) GetKernelArgs() []string

GetKernelArgs returns the KernelArgs field if non-nil, zero value otherwise.

GetKernelArgsOk

func (o *FlyMachineInit) GetKernelArgsOk() (*[]string, bool)

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

SetKernelArgs

func (o *FlyMachineInit) SetKernelArgs(v []string)

SetKernelArgs sets KernelArgs field to given value.

HasKernelArgs

func (o *FlyMachineInit) HasKernelArgs() bool

HasKernelArgs returns a boolean if a field has been set.

GetSwapSizeMb

func (o *FlyMachineInit) GetSwapSizeMb() int64

GetSwapSizeMb returns the SwapSizeMb field if non-nil, zero value otherwise.

GetSwapSizeMbOk

func (o *FlyMachineInit) GetSwapSizeMbOk() (*int64, bool)

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

SetSwapSizeMb

func (o *FlyMachineInit) SetSwapSizeMb(v int64)

SetSwapSizeMb sets SwapSizeMb field to given value.

HasSwapSizeMb

func (o *FlyMachineInit) HasSwapSizeMb() bool

HasSwapSizeMb returns a boolean if a field has been set.

GetTty

func (o *FlyMachineInit) GetTty() bool

GetTty returns the Tty field if non-nil, zero value otherwise.

GetTtyOk

func (o *FlyMachineInit) GetTtyOk() (*bool, bool)

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

SetTty

func (o *FlyMachineInit) SetTty(v bool)

SetTty sets Tty field to given value.

HasTty

func (o *FlyMachineInit) HasTty() bool

HasTty returns a boolean if a field has been set.

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