Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 6.28 KB

File metadata and controls

186 lines (101 loc) · 6.28 KB

TriggerDynamicExecutionInputBody

Properties

Name Type Description Notes
ArchiveEntryPath Pointer to string Relative path of the entry inside the archive to execute [optional]
ArchivePassword Pointer to string Password for an encrypted archive [optional]
ArchiveSha256Hash Pointer to string SHA-256 of the archive object to send to the sandbox instead of the analysed binary [optional]
CommandLineArgs Pointer to string Command-line arguments passed to the sample when the sandbox launches it [optional]
StartMethod Pointer to string How the sandbox launches the sample. Defaults to the sandbox's standard behaviour when omitted. [optional]
Timeout Pointer to int64 Maximum sandbox execution time in seconds [optional] [default to 120]

Methods

NewTriggerDynamicExecutionInputBody

func NewTriggerDynamicExecutionInputBody() *TriggerDynamicExecutionInputBody

NewTriggerDynamicExecutionInputBody instantiates a new TriggerDynamicExecutionInputBody 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

NewTriggerDynamicExecutionInputBodyWithDefaults

func NewTriggerDynamicExecutionInputBodyWithDefaults() *TriggerDynamicExecutionInputBody

NewTriggerDynamicExecutionInputBodyWithDefaults instantiates a new TriggerDynamicExecutionInputBody 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

GetArchiveEntryPath

func (o *TriggerDynamicExecutionInputBody) GetArchiveEntryPath() string

GetArchiveEntryPath returns the ArchiveEntryPath field if non-nil, zero value otherwise.

GetArchiveEntryPathOk

func (o *TriggerDynamicExecutionInputBody) GetArchiveEntryPathOk() (*string, bool)

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

SetArchiveEntryPath

func (o *TriggerDynamicExecutionInputBody) SetArchiveEntryPath(v string)

SetArchiveEntryPath sets ArchiveEntryPath field to given value.

HasArchiveEntryPath

func (o *TriggerDynamicExecutionInputBody) HasArchiveEntryPath() bool

HasArchiveEntryPath returns a boolean if a field has been set.

GetArchivePassword

func (o *TriggerDynamicExecutionInputBody) GetArchivePassword() string

GetArchivePassword returns the ArchivePassword field if non-nil, zero value otherwise.

GetArchivePasswordOk

func (o *TriggerDynamicExecutionInputBody) GetArchivePasswordOk() (*string, bool)

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

SetArchivePassword

func (o *TriggerDynamicExecutionInputBody) SetArchivePassword(v string)

SetArchivePassword sets ArchivePassword field to given value.

HasArchivePassword

func (o *TriggerDynamicExecutionInputBody) HasArchivePassword() bool

HasArchivePassword returns a boolean if a field has been set.

GetArchiveSha256Hash

func (o *TriggerDynamicExecutionInputBody) GetArchiveSha256Hash() string

GetArchiveSha256Hash returns the ArchiveSha256Hash field if non-nil, zero value otherwise.

GetArchiveSha256HashOk

func (o *TriggerDynamicExecutionInputBody) GetArchiveSha256HashOk() (*string, bool)

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

SetArchiveSha256Hash

func (o *TriggerDynamicExecutionInputBody) SetArchiveSha256Hash(v string)

SetArchiveSha256Hash sets ArchiveSha256Hash field to given value.

HasArchiveSha256Hash

func (o *TriggerDynamicExecutionInputBody) HasArchiveSha256Hash() bool

HasArchiveSha256Hash returns a boolean if a field has been set.

GetCommandLineArgs

func (o *TriggerDynamicExecutionInputBody) GetCommandLineArgs() string

GetCommandLineArgs returns the CommandLineArgs field if non-nil, zero value otherwise.

GetCommandLineArgsOk

func (o *TriggerDynamicExecutionInputBody) GetCommandLineArgsOk() (*string, bool)

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

SetCommandLineArgs

func (o *TriggerDynamicExecutionInputBody) SetCommandLineArgs(v string)

SetCommandLineArgs sets CommandLineArgs field to given value.

HasCommandLineArgs

func (o *TriggerDynamicExecutionInputBody) HasCommandLineArgs() bool

HasCommandLineArgs returns a boolean if a field has been set.

GetStartMethod

func (o *TriggerDynamicExecutionInputBody) GetStartMethod() string

GetStartMethod returns the StartMethod field if non-nil, zero value otherwise.

GetStartMethodOk

func (o *TriggerDynamicExecutionInputBody) GetStartMethodOk() (*string, bool)

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

SetStartMethod

func (o *TriggerDynamicExecutionInputBody) SetStartMethod(v string)

SetStartMethod sets StartMethod field to given value.

HasStartMethod

func (o *TriggerDynamicExecutionInputBody) HasStartMethod() bool

HasStartMethod returns a boolean if a field has been set.

GetTimeout

func (o *TriggerDynamicExecutionInputBody) GetTimeout() int64

GetTimeout returns the Timeout field if non-nil, zero value otherwise.

GetTimeoutOk

func (o *TriggerDynamicExecutionInputBody) GetTimeoutOk() (*int64, bool)

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

SetTimeout

func (o *TriggerDynamicExecutionInputBody) SetTimeout(v int64)

SetTimeout sets Timeout field to given value.

HasTimeout

func (o *TriggerDynamicExecutionInputBody) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

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