| Name | Type | Description | Notes |
|---|---|---|---|
| Cmd | Pointer to []string | [optional] | |
| Entrypoint | Pointer to []string | [optional] | |
| Env | Pointer to map[string]string | [optional] | |
| EnvFrom | Pointer to []FlyEnvFrom | EnvFrom can be provided to set environment variables from machine fields. | [optional] |
| Exec | Pointer to []string | [optional] | |
| IgnoreAppSecrets | Pointer to bool | IgnoreAppSecrets can be set to true to ignore the secrets for the App the Machine belongs to and only use the secrets provided at the process level. The default/legacy behavior is to use the secrets provided at the App level. | [optional] |
| Secrets | Pointer to []FlyMachineSecret | Secrets can be provided at the process level to explicitly indicate which secrets should be used for the process. If not provided, the secrets provided at the machine level will be used. | [optional] |
| User | Pointer to string | [optional] |
func NewFlyMachineProcess() *FlyMachineProcess
NewFlyMachineProcess instantiates a new FlyMachineProcess 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 NewFlyMachineProcessWithDefaults() *FlyMachineProcess
NewFlyMachineProcessWithDefaults instantiates a new FlyMachineProcess 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 *FlyMachineProcess) GetCmd() []string
GetCmd returns the Cmd field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) 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.
func (o *FlyMachineProcess) SetCmd(v []string)
SetCmd sets Cmd field to given value.
func (o *FlyMachineProcess) HasCmd() bool
HasCmd returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetEntrypoint() []string
GetEntrypoint returns the Entrypoint field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) 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.
func (o *FlyMachineProcess) SetEntrypoint(v []string)
SetEntrypoint sets Entrypoint field to given value.
func (o *FlyMachineProcess) HasEntrypoint() bool
HasEntrypoint returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetEnv() map[string]string
GetEnv returns the Env field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) GetEnvOk() (*map[string]string, bool)
GetEnvOk returns a tuple with the Env field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FlyMachineProcess) SetEnv(v map[string]string)
SetEnv sets Env field to given value.
func (o *FlyMachineProcess) HasEnv() bool
HasEnv returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetEnvFrom() []FlyEnvFrom
GetEnvFrom returns the EnvFrom field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) GetEnvFromOk() (*[]FlyEnvFrom, bool)
GetEnvFromOk returns a tuple with the EnvFrom field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FlyMachineProcess) SetEnvFrom(v []FlyEnvFrom)
SetEnvFrom sets EnvFrom field to given value.
func (o *FlyMachineProcess) HasEnvFrom() bool
HasEnvFrom returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetExec() []string
GetExec returns the Exec field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) 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.
func (o *FlyMachineProcess) SetExec(v []string)
SetExec sets Exec field to given value.
func (o *FlyMachineProcess) HasExec() bool
HasExec returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetIgnoreAppSecrets() bool
GetIgnoreAppSecrets returns the IgnoreAppSecrets field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) GetIgnoreAppSecretsOk() (*bool, bool)
GetIgnoreAppSecretsOk returns a tuple with the IgnoreAppSecrets field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FlyMachineProcess) SetIgnoreAppSecrets(v bool)
SetIgnoreAppSecrets sets IgnoreAppSecrets field to given value.
func (o *FlyMachineProcess) HasIgnoreAppSecrets() bool
HasIgnoreAppSecrets returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetSecrets() []FlyMachineSecret
GetSecrets returns the Secrets field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) GetSecretsOk() (*[]FlyMachineSecret, bool)
GetSecretsOk returns a tuple with the Secrets field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FlyMachineProcess) SetSecrets(v []FlyMachineSecret)
SetSecrets sets Secrets field to given value.
func (o *FlyMachineProcess) HasSecrets() bool
HasSecrets returns a boolean if a field has been set.
func (o *FlyMachineProcess) GetUser() string
GetUser returns the User field if non-nil, zero value otherwise.
func (o *FlyMachineProcess) GetUserOk() (*string, bool)
GetUserOk returns a tuple with the User field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *FlyMachineProcess) SetUser(v string)
SetUser sets User field to given value.
func (o *FlyMachineProcess) HasUser() bool
HasUser returns a boolean if a field has been set.