runcommand

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 19, 2025 License: Apache-2.0 Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object

func ParameterValueToString

func ParameterValueToString(obj interface{}, key string) string

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	// contains filtered or unexported fields
}

APIClient manages communication with the STACKIT Run Commands Service API API v2.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options

func (*APIClient) CreateCommand

func (a *APIClient) CreateCommand(ctx context.Context, projectId string, serverId string, region string) ApiCreateCommandRequest

CreateCommand: Method for CreateCommand

Creates a new command for execution

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId ID of the project
@param serverId Server ID of the machine
@param region region
@return ApiCreateCommandRequest

func (*APIClient) CreateCommandExecute

func (a *APIClient) CreateCommandExecute(ctx context.Context, projectId string, serverId string, region string) (*NewCommandResponse, error)

func (*APIClient) GetCommand

func (a *APIClient) GetCommand(ctx context.Context, projectId string, region string, serverId string, commandId string) ApiGetCommandRequest

GetCommand: Method for GetCommand

Returns details about a command

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId ID of the project
@param region region
@param serverId Server ID of the machine
@param commandId ID of the command
@return ApiGetCommandRequest

func (*APIClient) GetCommandExecute

func (a *APIClient) GetCommandExecute(ctx context.Context, projectId string, region string, serverId string, commandId string) (*CommandDetails, error)

func (*APIClient) GetCommandTemplate

func (a *APIClient) GetCommandTemplate(ctx context.Context, projectId string, serverId string, commandTemplateName string, region string) ApiGetCommandTemplateRequest

GetCommandTemplate: Method for GetCommandTemplate

Returns details about a command template

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId ID of the project
@param serverId Server ID of the machine
@param commandTemplateName Name of the template
@param region region
@return ApiGetCommandTemplateRequest

func (*APIClient) GetCommandTemplateExecute

func (a *APIClient) GetCommandTemplateExecute(ctx context.Context, projectId string, serverId string, commandTemplateName string, region string) (*CommandTemplateSchema, error)

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

func (*APIClient) ListCommandTemplates

func (a *APIClient) ListCommandTemplates(ctx context.Context) ApiListCommandTemplatesRequest

ListCommandTemplates: Method for ListCommandTemplates

Returns a list of command templates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCommandTemplatesRequest

func (*APIClient) ListCommandTemplatesExecute

func (a *APIClient) ListCommandTemplatesExecute(ctx context.Context) (*CommandTemplateResponse, error)

func (*APIClient) ListCommands

func (a *APIClient) ListCommands(ctx context.Context, projectId string, serverId string, region string) ApiListCommandsRequest

ListCommands: Method for ListCommands

Returns a list of commands

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId ID of the project
@param serverId Server ID of the machine
@param region region
@return ApiListCommandsRequest

func (*APIClient) ListCommandsExecute

func (a *APIClient) ListCommandsExecute(ctx context.Context, projectId string, serverId string, region string) (*GetCommandsResponse, error)

type ApiCreateCommandRequest

type ApiCreateCommandRequest struct {
	// contains filtered or unexported fields
}

func (ApiCreateCommandRequest) CreateCommandPayload

func (r ApiCreateCommandRequest) CreateCommandPayload(createCommandPayload CreateCommandPayload) ApiCreateCommandRequest

func (ApiCreateCommandRequest) Execute

type ApiGetCommandRequest

type ApiGetCommandRequest struct {
	// contains filtered or unexported fields
}

func (ApiGetCommandRequest) Execute

func (r ApiGetCommandRequest) Execute() (*CommandDetails, error)

type ApiGetCommandTemplateRequest

type ApiGetCommandTemplateRequest struct {
	// contains filtered or unexported fields
}

func (ApiGetCommandTemplateRequest) Execute

type ApiListCommandTemplatesRequest

type ApiListCommandTemplatesRequest struct {
	// contains filtered or unexported fields
}

func (ApiListCommandTemplatesRequest) Execute

func (ApiListCommandTemplatesRequest) OsType

type ApiListCommandsRequest

type ApiListCommandsRequest struct {
	// contains filtered or unexported fields
}

func (ApiListCommandsRequest) Execute

type CommandDetails

type CommandDetails struct {
	CommandTemplateName  CommandDetailsGetCommandTemplateNameAttributeType  `json:"commandTemplateName,omitempty"`
	CommandTemplateTitle CommandDetailsGetCommandTemplateTitleAttributeType `json:"commandTemplateTitle,omitempty"`
	// Can be cast to int32 without loss of precision.
	ExitCode   CommandDetailsGetExitCodeAttributeType   `json:"exitCode,omitempty"`
	FinishedAt CommandDetailsGetFinishedAtAttributeType `json:"finishedAt,omitempty"`
	// Can be cast to int32 without loss of precision.
	Id        CommandDetailsGetIdAttributeType        `json:"id,omitempty"`
	Output    CommandDetailsGetOutputAttributeType    `json:"output,omitempty"`
	Script    CommandDetailsGetScriptAttributeType    `json:"script,omitempty"`
	StartedAt CommandDetailsGetStartedAtAttributeType `json:"startedAt,omitempty"`
	Status    CommandDetailsGetStatusAttributeType    `json:"status,omitempty"`
}

CommandDetails struct for CommandDetails

func NewCommandDetails added in v0.2.0

func NewCommandDetails() *CommandDetails

NewCommandDetails instantiates a new CommandDetails 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 NewCommandDetailsWithDefaults added in v0.2.0

func NewCommandDetailsWithDefaults() *CommandDetails

NewCommandDetailsWithDefaults instantiates a new CommandDetails 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 (*CommandDetails) GetCommandTemplateName added in v0.2.0

func (o *CommandDetails) GetCommandTemplateName() (res CommandDetailsGetCommandTemplateNameRetType)

GetCommandTemplateName returns the CommandTemplateName field value if set, zero value otherwise.

func (*CommandDetails) GetCommandTemplateNameOk added in v0.2.0

func (o *CommandDetails) GetCommandTemplateNameOk() (ret CommandDetailsGetCommandTemplateNameRetType, ok bool)

GetCommandTemplateNameOk returns a tuple with the CommandTemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetCommandTemplateTitle added in v0.2.0

func (o *CommandDetails) GetCommandTemplateTitle() (res CommandDetailsGetCommandTemplateTitleRetType)

GetCommandTemplateTitle returns the CommandTemplateTitle field value if set, zero value otherwise.

func (*CommandDetails) GetCommandTemplateTitleOk added in v0.2.0

func (o *CommandDetails) GetCommandTemplateTitleOk() (ret CommandDetailsGetCommandTemplateTitleRetType, ok bool)

GetCommandTemplateTitleOk returns a tuple with the CommandTemplateTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetExitCode added in v0.2.0

func (o *CommandDetails) GetExitCode() (res CommandDetailsGetExitCodeRetType)

GetExitCode returns the ExitCode field value if set, zero value otherwise.

func (*CommandDetails) GetExitCodeOk added in v0.2.0

func (o *CommandDetails) GetExitCodeOk() (ret CommandDetailsGetExitCodeRetType, ok bool)

GetExitCodeOk returns a tuple with the ExitCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetFinishedAt added in v0.2.0

func (o *CommandDetails) GetFinishedAt() (res CommandDetailsGetFinishedAtRetType)

GetFinishedAt returns the FinishedAt field value if set, zero value otherwise.

func (*CommandDetails) GetFinishedAtOk added in v0.2.0

func (o *CommandDetails) GetFinishedAtOk() (ret CommandDetailsGetFinishedAtRetType, ok bool)

GetFinishedAtOk returns a tuple with the FinishedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetId added in v0.2.0

func (o *CommandDetails) GetId() (res CommandDetailsGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*CommandDetails) GetIdOk added in v0.2.0

func (o *CommandDetails) GetIdOk() (ret CommandDetailsGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetOutput added in v0.2.0

func (o *CommandDetails) GetOutput() (res CommandDetailsGetOutputRetType)

GetOutput returns the Output field value if set, zero value otherwise.

func (*CommandDetails) GetOutputOk added in v0.2.0

func (o *CommandDetails) GetOutputOk() (ret CommandDetailsGetOutputRetType, ok bool)

GetOutputOk returns a tuple with the Output field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetScript added in v0.2.0

func (o *CommandDetails) GetScript() (res CommandDetailsGetScriptRetType)

GetScript returns the Script field value if set, zero value otherwise.

func (*CommandDetails) GetScriptOk added in v0.2.0

func (o *CommandDetails) GetScriptOk() (ret CommandDetailsGetScriptRetType, ok bool)

GetScriptOk returns a tuple with the Script field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetStartedAt added in v0.2.0

func (o *CommandDetails) GetStartedAt() (res CommandDetailsGetStartedAtRetType)

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*CommandDetails) GetStartedAtOk added in v0.2.0

func (o *CommandDetails) GetStartedAtOk() (ret CommandDetailsGetStartedAtRetType, ok bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) GetStatus added in v0.2.0

func (o *CommandDetails) GetStatus() (res CommandDetailsGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*CommandDetails) GetStatusOk added in v0.2.0

func (o *CommandDetails) GetStatusOk() (ret CommandDetailsGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandDetails) HasCommandTemplateName added in v0.2.0

func (o *CommandDetails) HasCommandTemplateName() bool

HasCommandTemplateName returns a boolean if a field has been set.

func (*CommandDetails) HasCommandTemplateTitle added in v0.2.0

func (o *CommandDetails) HasCommandTemplateTitle() bool

HasCommandTemplateTitle returns a boolean if a field has been set.

func (*CommandDetails) HasExitCode added in v0.2.0

func (o *CommandDetails) HasExitCode() bool

HasExitCode returns a boolean if a field has been set.

func (*CommandDetails) HasFinishedAt added in v0.2.0

func (o *CommandDetails) HasFinishedAt() bool

HasFinishedAt returns a boolean if a field has been set.

func (*CommandDetails) HasId added in v0.2.0

func (o *CommandDetails) HasId() bool

HasId returns a boolean if a field has been set.

func (*CommandDetails) HasOutput added in v0.2.0

func (o *CommandDetails) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*CommandDetails) HasScript added in v0.2.0

func (o *CommandDetails) HasScript() bool

HasScript returns a boolean if a field has been set.

func (*CommandDetails) HasStartedAt added in v0.2.0

func (o *CommandDetails) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*CommandDetails) HasStatus added in v0.2.0

func (o *CommandDetails) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CommandDetails) SetCommandTemplateName added in v0.2.0

func (o *CommandDetails) SetCommandTemplateName(v CommandDetailsGetCommandTemplateNameRetType)

SetCommandTemplateName gets a reference to the given string and assigns it to the CommandTemplateName field.

func (*CommandDetails) SetCommandTemplateTitle added in v0.2.0

func (o *CommandDetails) SetCommandTemplateTitle(v CommandDetailsGetCommandTemplateTitleRetType)

SetCommandTemplateTitle gets a reference to the given string and assigns it to the CommandTemplateTitle field.

func (*CommandDetails) SetExitCode added in v0.2.0

SetExitCode gets a reference to the given int64 and assigns it to the ExitCode field.

func (*CommandDetails) SetFinishedAt added in v0.2.0

SetFinishedAt gets a reference to the given string and assigns it to the FinishedAt field.

func (*CommandDetails) SetId added in v0.2.0

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*CommandDetails) SetOutput added in v0.2.0

SetOutput gets a reference to the given string and assigns it to the Output field.

func (*CommandDetails) SetScript added in v0.2.0

SetScript gets a reference to the given string and assigns it to the Script field.

func (*CommandDetails) SetStartedAt added in v0.2.0

SetStartedAt gets a reference to the given string and assigns it to the StartedAt field.

func (*CommandDetails) SetStatus added in v0.2.0

SetStatus gets a reference to the given string and assigns it to the Status field.

func (CommandDetails) ToMap added in v0.2.0

func (o CommandDetails) ToMap() (map[string]interface{}, error)

type CommandDetailsGetCommandTemplateNameArgType added in v1.0.0

type CommandDetailsGetCommandTemplateNameArgType = string

type CommandDetailsGetCommandTemplateNameAttributeType added in v1.0.0

type CommandDetailsGetCommandTemplateNameAttributeType = *string

isNotNullableString

type CommandDetailsGetCommandTemplateNameRetType added in v1.0.0

type CommandDetailsGetCommandTemplateNameRetType = string

type CommandDetailsGetCommandTemplateTitleArgType added in v1.0.0

type CommandDetailsGetCommandTemplateTitleArgType = string

type CommandDetailsGetCommandTemplateTitleAttributeType added in v1.0.0

type CommandDetailsGetCommandTemplateTitleAttributeType = *string

isNotNullableString

type CommandDetailsGetCommandTemplateTitleRetType added in v1.0.0

type CommandDetailsGetCommandTemplateTitleRetType = string

type CommandDetailsGetExitCodeArgType added in v1.0.0

type CommandDetailsGetExitCodeArgType = int64

type CommandDetailsGetExitCodeAttributeType added in v1.0.0

type CommandDetailsGetExitCodeAttributeType = *int64

isInteger

type CommandDetailsGetExitCodeRetType added in v1.0.0

type CommandDetailsGetExitCodeRetType = int64

type CommandDetailsGetFinishedAtArgType added in v1.0.0

type CommandDetailsGetFinishedAtArgType = string

type CommandDetailsGetFinishedAtAttributeType added in v1.0.0

type CommandDetailsGetFinishedAtAttributeType = *string

isNotNullableString

type CommandDetailsGetFinishedAtRetType added in v1.0.0

type CommandDetailsGetFinishedAtRetType = string

type CommandDetailsGetIdArgType added in v1.0.0

type CommandDetailsGetIdArgType = int64

type CommandDetailsGetIdAttributeType added in v1.0.0

type CommandDetailsGetIdAttributeType = *int64

isInteger

type CommandDetailsGetIdRetType added in v1.0.0

type CommandDetailsGetIdRetType = int64

type CommandDetailsGetOutputArgType added in v1.0.0

type CommandDetailsGetOutputArgType = string

type CommandDetailsGetOutputAttributeType added in v1.0.0

type CommandDetailsGetOutputAttributeType = *string

isNotNullableString

type CommandDetailsGetOutputRetType added in v1.0.0

type CommandDetailsGetOutputRetType = string

type CommandDetailsGetScriptArgType added in v1.0.0

type CommandDetailsGetScriptArgType = string

type CommandDetailsGetScriptAttributeType added in v1.0.0

type CommandDetailsGetScriptAttributeType = *string

isNotNullableString

type CommandDetailsGetScriptRetType added in v1.0.0

type CommandDetailsGetScriptRetType = string

type CommandDetailsGetStartedAtArgType added in v1.0.0

type CommandDetailsGetStartedAtArgType = string

type CommandDetailsGetStartedAtAttributeType added in v1.0.0

type CommandDetailsGetStartedAtAttributeType = *string

isNotNullableString

type CommandDetailsGetStartedAtRetType added in v1.0.0

type CommandDetailsGetStartedAtRetType = string

type CommandDetailsGetStatusArgType added in v1.0.0

type CommandDetailsGetStatusArgType = string

type CommandDetailsGetStatusAttributeType added in v1.0.0

type CommandDetailsGetStatusAttributeType = *string

isEnumRef

type CommandDetailsGetStatusRetType added in v1.0.0

type CommandDetailsGetStatusRetType = string

type CommandTemplate

type CommandTemplate struct {
	Name   CommandTemplateGetNameAttributeType   `json:"name,omitempty"`
	OsType CommandTemplateGetOsTypeAttributeType `json:"osType,omitempty"`
	Title  CommandTemplateGetTitleAttributeType  `json:"title,omitempty"`
}

CommandTemplate struct for CommandTemplate

func NewCommandTemplate added in v0.2.0

func NewCommandTemplate() *CommandTemplate

NewCommandTemplate instantiates a new CommandTemplate 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 NewCommandTemplateWithDefaults added in v0.2.0

func NewCommandTemplateWithDefaults() *CommandTemplate

NewCommandTemplateWithDefaults instantiates a new CommandTemplate 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 (*CommandTemplate) GetName added in v0.2.0

GetName returns the Name field value if set, zero value otherwise.

func (*CommandTemplate) GetNameOk added in v0.2.0

func (o *CommandTemplate) GetNameOk() (ret CommandTemplateGetNameRetType, ok bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplate) GetOsType added in v0.2.0

func (o *CommandTemplate) GetOsType() (res CommandTemplateGetOsTypeRetType)

GetOsType returns the OsType field value if set, zero value otherwise.

func (*CommandTemplate) GetOsTypeOk added in v0.2.0

func (o *CommandTemplate) GetOsTypeOk() (ret CommandTemplateGetOsTypeRetType, ok bool)

GetOsTypeOk returns a tuple with the OsType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplate) GetTitle added in v0.2.0

func (o *CommandTemplate) GetTitle() (res CommandTemplateGetTitleRetType)

GetTitle returns the Title field value if set, zero value otherwise.

func (*CommandTemplate) GetTitleOk added in v0.2.0

func (o *CommandTemplate) GetTitleOk() (ret CommandTemplateGetTitleRetType, ok bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplate) HasName added in v0.2.0

func (o *CommandTemplate) HasName() bool

HasName returns a boolean if a field has been set.

func (*CommandTemplate) HasOsType added in v0.2.0

func (o *CommandTemplate) HasOsType() bool

HasOsType returns a boolean if a field has been set.

func (*CommandTemplate) HasTitle added in v0.2.0

func (o *CommandTemplate) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*CommandTemplate) SetName added in v0.2.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*CommandTemplate) SetOsType added in v0.2.0

SetOsType gets a reference to the given []string and assigns it to the OsType field.

func (*CommandTemplate) SetTitle added in v0.2.0

SetTitle gets a reference to the given string and assigns it to the Title field.

func (CommandTemplate) ToMap added in v0.2.0

func (o CommandTemplate) ToMap() (map[string]interface{}, error)

type CommandTemplateGetNameArgType added in v1.0.0

type CommandTemplateGetNameArgType = string

type CommandTemplateGetNameAttributeType added in v1.0.0

type CommandTemplateGetNameAttributeType = *string

isNotNullableString

type CommandTemplateGetNameRetType added in v1.0.0

type CommandTemplateGetNameRetType = string

type CommandTemplateGetOsTypeArgType added in v1.0.0

type CommandTemplateGetOsTypeArgType = []string

type CommandTemplateGetOsTypeAttributeType added in v1.0.0

type CommandTemplateGetOsTypeAttributeType = *[]string

isArray

type CommandTemplateGetOsTypeRetType added in v1.0.0

type CommandTemplateGetOsTypeRetType = []string

type CommandTemplateGetTitleArgType added in v1.0.0

type CommandTemplateGetTitleArgType = string

type CommandTemplateGetTitleAttributeType added in v1.0.0

type CommandTemplateGetTitleAttributeType = *string

isNotNullableString

type CommandTemplateGetTitleRetType added in v1.0.0

type CommandTemplateGetTitleRetType = string

type CommandTemplateResponse

type CommandTemplateResponse struct {
	Items CommandTemplateResponseGetItemsAttributeType `json:"items,omitempty"`
}

CommandTemplateResponse struct for CommandTemplateResponse

func NewCommandTemplateResponse added in v0.2.0

func NewCommandTemplateResponse() *CommandTemplateResponse

NewCommandTemplateResponse instantiates a new CommandTemplateResponse 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 NewCommandTemplateResponseWithDefaults added in v0.2.0

func NewCommandTemplateResponseWithDefaults() *CommandTemplateResponse

NewCommandTemplateResponseWithDefaults instantiates a new CommandTemplateResponse 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 (*CommandTemplateResponse) GetItems added in v0.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*CommandTemplateResponse) GetItemsOk added in v0.2.0

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateResponse) HasItems added in v0.2.0

func (o *CommandTemplateResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*CommandTemplateResponse) SetItems added in v0.2.0

SetItems gets a reference to the given []CommandTemplate and assigns it to the Items field.

func (CommandTemplateResponse) ToMap added in v0.2.0

func (o CommandTemplateResponse) ToMap() (map[string]interface{}, error)

type CommandTemplateResponseGetItemsArgType added in v1.0.0

type CommandTemplateResponseGetItemsArgType = []CommandTemplate

type CommandTemplateResponseGetItemsAttributeType added in v1.0.0

type CommandTemplateResponseGetItemsAttributeType = *[]CommandTemplate

isArray

type CommandTemplateResponseGetItemsRetType added in v1.0.0

type CommandTemplateResponseGetItemsRetType = []CommandTemplate

type CommandTemplateSchema

type CommandTemplateSchema struct {
	Description     CommandTemplateSchemaGetDescriptionAttributeType     `json:"description,omitempty"`
	Name            CommandTemplateSchemaGetNameAttributeType            `json:"name,omitempty"`
	OsType          CommandTemplateSchemaGetOsTypeAttributeType          `json:"osType,omitempty"`
	ParameterSchema CommandTemplateSchemaGetParameterSchemaAttributeType `json:"parameterSchema,omitempty"`
	Title           CommandTemplateSchemaGetTitleAttributeType           `json:"title,omitempty"`
}

CommandTemplateSchema struct for CommandTemplateSchema

func NewCommandTemplateSchema added in v0.2.0

func NewCommandTemplateSchema() *CommandTemplateSchema

NewCommandTemplateSchema instantiates a new CommandTemplateSchema 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 NewCommandTemplateSchemaWithDefaults added in v0.2.0

func NewCommandTemplateSchemaWithDefaults() *CommandTemplateSchema

NewCommandTemplateSchemaWithDefaults instantiates a new CommandTemplateSchema 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 (*CommandTemplateSchema) GetDescription added in v0.2.0

GetDescription returns the Description field value if set, zero value otherwise.

func (*CommandTemplateSchema) GetDescriptionOk added in v0.2.0

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateSchema) GetName added in v0.2.0

GetName returns the Name field value if set, zero value otherwise.

func (*CommandTemplateSchema) GetNameOk added in v0.2.0

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateSchema) GetOsType added in v0.2.0

GetOsType returns the OsType field value if set, zero value otherwise.

func (*CommandTemplateSchema) GetOsTypeOk added in v0.2.0

GetOsTypeOk returns a tuple with the OsType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateSchema) GetParameterSchema added in v0.2.0

GetParameterSchema returns the ParameterSchema field value if set, zero value otherwise.

func (*CommandTemplateSchema) GetParameterSchemaOk added in v0.2.0

GetParameterSchemaOk returns a tuple with the ParameterSchema field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateSchema) GetTitle added in v0.2.0

GetTitle returns the Title field value if set, zero value otherwise.

func (*CommandTemplateSchema) GetTitleOk added in v0.2.0

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CommandTemplateSchema) HasDescription added in v0.2.0

func (o *CommandTemplateSchema) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CommandTemplateSchema) HasName added in v0.2.0

func (o *CommandTemplateSchema) HasName() bool

HasName returns a boolean if a field has been set.

func (*CommandTemplateSchema) HasOsType added in v0.2.0

func (o *CommandTemplateSchema) HasOsType() bool

HasOsType returns a boolean if a field has been set.

func (*CommandTemplateSchema) HasParameterSchema added in v0.2.0

func (o *CommandTemplateSchema) HasParameterSchema() bool

HasParameterSchema returns a boolean if a field has been set.

func (*CommandTemplateSchema) HasTitle added in v0.2.0

func (o *CommandTemplateSchema) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*CommandTemplateSchema) SetDescription added in v0.2.0

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CommandTemplateSchema) SetName added in v0.2.0

SetName gets a reference to the given string and assigns it to the Name field.

func (*CommandTemplateSchema) SetOsType added in v0.2.0

SetOsType gets a reference to the given []string and assigns it to the OsType field.

func (*CommandTemplateSchema) SetParameterSchema added in v0.2.0

SetParameterSchema gets a reference to the given ParametersSchema and assigns it to the ParameterSchema field.

func (*CommandTemplateSchema) SetTitle added in v0.2.0

SetTitle gets a reference to the given string and assigns it to the Title field.

func (CommandTemplateSchema) ToMap added in v0.2.0

func (o CommandTemplateSchema) ToMap() (map[string]interface{}, error)

type CommandTemplateSchemaGetDescriptionArgType added in v1.0.0

type CommandTemplateSchemaGetDescriptionArgType = string

type CommandTemplateSchemaGetDescriptionAttributeType added in v1.0.0

type CommandTemplateSchemaGetDescriptionAttributeType = *string

isNotNullableString

type CommandTemplateSchemaGetDescriptionRetType added in v1.0.0

type CommandTemplateSchemaGetDescriptionRetType = string

type CommandTemplateSchemaGetNameArgType added in v1.0.0

type CommandTemplateSchemaGetNameArgType = string

type CommandTemplateSchemaGetNameAttributeType added in v1.0.0

type CommandTemplateSchemaGetNameAttributeType = *string

isNotNullableString

type CommandTemplateSchemaGetNameRetType added in v1.0.0

type CommandTemplateSchemaGetNameRetType = string

type CommandTemplateSchemaGetOsTypeArgType added in v1.0.0

type CommandTemplateSchemaGetOsTypeArgType = []string

type CommandTemplateSchemaGetOsTypeAttributeType added in v1.0.0

type CommandTemplateSchemaGetOsTypeAttributeType = *[]string

isArray

type CommandTemplateSchemaGetOsTypeRetType added in v1.0.0

type CommandTemplateSchemaGetOsTypeRetType = []string

type CommandTemplateSchemaGetParameterSchemaArgType added in v1.0.0

type CommandTemplateSchemaGetParameterSchemaArgType = ParametersSchema

type CommandTemplateSchemaGetParameterSchemaAttributeType added in v1.0.0

type CommandTemplateSchemaGetParameterSchemaAttributeType = *ParametersSchema

isModel

type CommandTemplateSchemaGetParameterSchemaRetType added in v1.0.0

type CommandTemplateSchemaGetParameterSchemaRetType = ParametersSchema

type CommandTemplateSchemaGetTitleArgType added in v1.0.0

type CommandTemplateSchemaGetTitleArgType = string

type CommandTemplateSchemaGetTitleAttributeType added in v1.0.0

type CommandTemplateSchemaGetTitleAttributeType = *string

isNotNullableString

type CommandTemplateSchemaGetTitleRetType added in v1.0.0

type CommandTemplateSchemaGetTitleRetType = string

type Commands

type Commands struct {
	CommandTemplateName  CommandsGetCommandTemplateNameAttributeType  `json:"commandTemplateName,omitempty"`
	CommandTemplateTitle CommandsGetCommandTemplateTitleAttributeType `json:"commandTemplateTitle,omitempty"`
	FinishedAt           CommandsGetFinishedAtAttributeType           `json:"finishedAt,omitempty"`
	// Can be cast to int32 without loss of precision.
	Id        CommandsGetIdAttributeType        `json:"id,omitempty"`
	StartedAt CommandsGetStartedAtAttributeType `json:"startedAt,omitempty"`
	Status    CommandsGetStatusAttributeType    `json:"status,omitempty"`
}

Commands struct for Commands

func NewCommands added in v0.2.0

func NewCommands() *Commands

NewCommands instantiates a new Commands 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 NewCommandsWithDefaults added in v0.2.0

func NewCommandsWithDefaults() *Commands

NewCommandsWithDefaults instantiates a new Commands 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 (*Commands) GetCommandTemplateName added in v0.2.0

func (o *Commands) GetCommandTemplateName() (res CommandsGetCommandTemplateNameRetType)

GetCommandTemplateName returns the CommandTemplateName field value if set, zero value otherwise.

func (*Commands) GetCommandTemplateNameOk added in v0.2.0

func (o *Commands) GetCommandTemplateNameOk() (ret CommandsGetCommandTemplateNameRetType, ok bool)

GetCommandTemplateNameOk returns a tuple with the CommandTemplateName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) GetCommandTemplateTitle added in v0.2.0

func (o *Commands) GetCommandTemplateTitle() (res CommandsGetCommandTemplateTitleRetType)

GetCommandTemplateTitle returns the CommandTemplateTitle field value if set, zero value otherwise.

func (*Commands) GetCommandTemplateTitleOk added in v0.2.0

func (o *Commands) GetCommandTemplateTitleOk() (ret CommandsGetCommandTemplateTitleRetType, ok bool)

GetCommandTemplateTitleOk returns a tuple with the CommandTemplateTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) GetFinishedAt added in v0.2.0

func (o *Commands) GetFinishedAt() (res CommandsGetFinishedAtRetType)

GetFinishedAt returns the FinishedAt field value if set, zero value otherwise.

func (*Commands) GetFinishedAtOk added in v0.2.0

func (o *Commands) GetFinishedAtOk() (ret CommandsGetFinishedAtRetType, ok bool)

GetFinishedAtOk returns a tuple with the FinishedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) GetId added in v0.2.0

func (o *Commands) GetId() (res CommandsGetIdRetType)

GetId returns the Id field value if set, zero value otherwise.

func (*Commands) GetIdOk added in v0.2.0

func (o *Commands) GetIdOk() (ret CommandsGetIdRetType, ok bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) GetStartedAt added in v0.2.0

func (o *Commands) GetStartedAt() (res CommandsGetStartedAtRetType)

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*Commands) GetStartedAtOk added in v0.2.0

func (o *Commands) GetStartedAtOk() (ret CommandsGetStartedAtRetType, ok bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) GetStatus added in v0.2.0

func (o *Commands) GetStatus() (res CommandsGetStatusRetType)

GetStatus returns the Status field value if set, zero value otherwise.

func (*Commands) GetStatusOk added in v0.2.0

func (o *Commands) GetStatusOk() (ret CommandsGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Commands) HasCommandTemplateName added in v0.2.0

func (o *Commands) HasCommandTemplateName() bool

HasCommandTemplateName returns a boolean if a field has been set.

func (*Commands) HasCommandTemplateTitle added in v0.2.0

func (o *Commands) HasCommandTemplateTitle() bool

HasCommandTemplateTitle returns a boolean if a field has been set.

func (*Commands) HasFinishedAt added in v0.2.0

func (o *Commands) HasFinishedAt() bool

HasFinishedAt returns a boolean if a field has been set.

func (*Commands) HasId added in v0.2.0

func (o *Commands) HasId() bool

HasId returns a boolean if a field has been set.

func (*Commands) HasStartedAt added in v0.2.0

func (o *Commands) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*Commands) HasStatus added in v0.2.0

func (o *Commands) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Commands) SetCommandTemplateName added in v0.2.0

func (o *Commands) SetCommandTemplateName(v CommandsGetCommandTemplateNameRetType)

SetCommandTemplateName gets a reference to the given string and assigns it to the CommandTemplateName field.

func (*Commands) SetCommandTemplateTitle added in v0.2.0

func (o *Commands) SetCommandTemplateTitle(v CommandsGetCommandTemplateTitleRetType)

SetCommandTemplateTitle gets a reference to the given string and assigns it to the CommandTemplateTitle field.

func (*Commands) SetFinishedAt added in v0.2.0

func (o *Commands) SetFinishedAt(v CommandsGetFinishedAtRetType)

SetFinishedAt gets a reference to the given string and assigns it to the FinishedAt field.

func (*Commands) SetId added in v0.2.0

func (o *Commands) SetId(v CommandsGetIdRetType)

SetId gets a reference to the given int64 and assigns it to the Id field.

func (*Commands) SetStartedAt added in v0.2.0

func (o *Commands) SetStartedAt(v CommandsGetStartedAtRetType)

SetStartedAt gets a reference to the given string and assigns it to the StartedAt field.

func (*Commands) SetStatus added in v0.2.0

func (o *Commands) SetStatus(v CommandsGetStatusRetType)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (Commands) ToMap added in v0.2.0

func (o Commands) ToMap() (map[string]interface{}, error)

type CommandsGetCommandTemplateNameArgType added in v1.0.0

type CommandsGetCommandTemplateNameArgType = string

type CommandsGetCommandTemplateNameAttributeType added in v1.0.0

type CommandsGetCommandTemplateNameAttributeType = *string

isNotNullableString

type CommandsGetCommandTemplateNameRetType added in v1.0.0

type CommandsGetCommandTemplateNameRetType = string

type CommandsGetCommandTemplateTitleArgType added in v1.0.0

type CommandsGetCommandTemplateTitleArgType = string

type CommandsGetCommandTemplateTitleAttributeType added in v1.0.0

type CommandsGetCommandTemplateTitleAttributeType = *string

isNotNullableString

type CommandsGetCommandTemplateTitleRetType added in v1.0.0

type CommandsGetCommandTemplateTitleRetType = string

type CommandsGetFinishedAtArgType added in v1.0.0

type CommandsGetFinishedAtArgType = string

type CommandsGetFinishedAtAttributeType added in v1.0.0

type CommandsGetFinishedAtAttributeType = *string

isNotNullableString

type CommandsGetFinishedAtRetType added in v1.0.0

type CommandsGetFinishedAtRetType = string

type CommandsGetIdArgType added in v1.0.0

type CommandsGetIdArgType = int64

type CommandsGetIdAttributeType added in v1.0.0

type CommandsGetIdAttributeType = *int64

isInteger

type CommandsGetIdRetType added in v1.0.0

type CommandsGetIdRetType = int64

type CommandsGetStartedAtArgType added in v1.0.0

type CommandsGetStartedAtArgType = string

type CommandsGetStartedAtAttributeType added in v1.0.0

type CommandsGetStartedAtAttributeType = *string

isNotNullableString

type CommandsGetStartedAtRetType added in v1.0.0

type CommandsGetStartedAtRetType = string

type CommandsGetStatusArgType added in v1.0.0

type CommandsGetStatusArgType = string

type CommandsGetStatusAttributeType added in v1.0.0

type CommandsGetStatusAttributeType = *string

isEnumRef

type CommandsGetStatusRetType added in v1.0.0

type CommandsGetStatusRetType = string

type CreateCommandPayload

type CreateCommandPayload struct {
	// REQUIRED
	CommandTemplateName CreateCommandPayloadGetCommandTemplateNameAttributeType `json:"commandTemplateName"`
	Parameters          CreateCommandPayloadGetParametersAttributeType          `json:"parameters,omitempty"`
}

CreateCommandPayload struct for CreateCommandPayload

func NewCreateCommandPayload added in v0.2.0

func NewCreateCommandPayload(commandTemplateName CreateCommandPayloadGetCommandTemplateNameArgType) *CreateCommandPayload

NewCreateCommandPayload instantiates a new CreateCommandPayload 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 NewCreateCommandPayloadWithDefaults added in v0.2.0

func NewCreateCommandPayloadWithDefaults() *CreateCommandPayload

NewCreateCommandPayloadWithDefaults instantiates a new CreateCommandPayload 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 (*CreateCommandPayload) GetCommandTemplateName added in v0.2.0

GetCommandTemplateName returns the CommandTemplateName field value

func (*CreateCommandPayload) GetCommandTemplateNameOk added in v0.2.0

func (o *CreateCommandPayload) GetCommandTemplateNameOk() (ret CreateCommandPayloadGetCommandTemplateNameRetType, ok bool)

GetCommandTemplateNameOk returns a tuple with the CommandTemplateName field value and a boolean to check if the value has been set.

func (*CreateCommandPayload) GetParameters added in v0.2.0

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*CreateCommandPayload) GetParametersOk added in v0.2.0

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateCommandPayload) HasParameters added in v0.2.0

func (o *CreateCommandPayload) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (*CreateCommandPayload) SetCommandTemplateName added in v0.2.0

SetCommandTemplateName sets field value

func (*CreateCommandPayload) SetParameters added in v0.2.0

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

func (CreateCommandPayload) ToMap added in v0.2.0

func (o CreateCommandPayload) ToMap() (map[string]interface{}, error)

type CreateCommandPayloadGetCommandTemplateNameArgType added in v1.0.0

type CreateCommandPayloadGetCommandTemplateNameArgType = string

type CreateCommandPayloadGetCommandTemplateNameAttributeType added in v1.0.0

type CreateCommandPayloadGetCommandTemplateNameAttributeType = *string

isNotNullableString

type CreateCommandPayloadGetCommandTemplateNameRetType added in v1.0.0

type CreateCommandPayloadGetCommandTemplateNameRetType = string

type CreateCommandPayloadGetParametersArgType added in v1.0.0

type CreateCommandPayloadGetParametersArgType = map[string]string

type CreateCommandPayloadGetParametersAttributeType added in v1.0.0

type CreateCommandPayloadGetParametersAttributeType = *map[string]string

isContainer

type CreateCommandPayloadGetParametersRetType added in v1.0.0

type CreateCommandPayloadGetParametersRetType = map[string]string

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type ErrorResponse

type ErrorResponse struct {
	// Details about the error
	// REQUIRED
	Message ErrorResponseGetMessageAttributeType `json:"message"`
	// The string representation of the http status code (i.e. Not Found, Bad Request, etc)
	// REQUIRED
	Status ErrorResponseGetStatusAttributeType `json:"status"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse added in v0.2.0

NewErrorResponse instantiates a new ErrorResponse 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 NewErrorResponseWithDefaults added in v0.2.0

func NewErrorResponseWithDefaults() *ErrorResponse

NewErrorResponseWithDefaults instantiates a new ErrorResponse 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 (*ErrorResponse) GetMessage added in v0.2.0

func (o *ErrorResponse) GetMessage() (ret ErrorResponseGetMessageRetType)

GetMessage returns the Message field value

func (*ErrorResponse) GetMessageOk added in v0.2.0

func (o *ErrorResponse) GetMessageOk() (ret ErrorResponseGetMessageRetType, ok bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*ErrorResponse) GetStatus added in v0.2.0

func (o *ErrorResponse) GetStatus() (ret ErrorResponseGetStatusRetType)

GetStatus returns the Status field value

func (*ErrorResponse) GetStatusOk added in v0.2.0

func (o *ErrorResponse) GetStatusOk() (ret ErrorResponseGetStatusRetType, ok bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ErrorResponse) SetMessage added in v0.2.0

SetMessage sets field value

func (*ErrorResponse) SetStatus added in v0.2.0

SetStatus sets field value

func (ErrorResponse) ToMap added in v0.2.0

func (o ErrorResponse) ToMap() (map[string]interface{}, error)

type ErrorResponseGetMessageArgType added in v1.0.0

type ErrorResponseGetMessageArgType = string

type ErrorResponseGetMessageAttributeType added in v1.0.0

type ErrorResponseGetMessageAttributeType = *string

isNotNullableString

type ErrorResponseGetMessageRetType added in v1.0.0

type ErrorResponseGetMessageRetType = string

type ErrorResponseGetStatusArgType added in v1.0.0

type ErrorResponseGetStatusArgType = string

type ErrorResponseGetStatusAttributeType added in v1.0.0

type ErrorResponseGetStatusAttributeType = *string

isNotNullableString

type ErrorResponseGetStatusRetType added in v1.0.0

type ErrorResponseGetStatusRetType = string

type Field

type Field struct {
	Default     FieldGetDefaultAttributeType     `json:"default,omitempty"`
	Description FieldGetDescriptionAttributeType `json:"description,omitempty"`
	// Can be cast to int32 without loss of precision.
	MaxLen FieldGetMaxLenAttributeType `json:"maxLen,omitempty"`
	// Can be cast to int32 without loss of precision.
	MinLen   FieldGetMinLenAttributeType   `json:"minLen,omitempty"`
	ReadOnly FieldgetReadOnlyAttributeType `json:"readOnly,omitempty"`
	Title    FieldGetTitleAttributeType    `json:"title,omitempty"`
	Type     FieldGetTypeAttributeType     `json:"type,omitempty"`
}

Field struct for Field

func NewField added in v0.2.0

func NewField() *Field

NewField instantiates a new Field 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 NewFieldWithDefaults added in v0.2.0

func NewFieldWithDefaults() *Field

NewFieldWithDefaults instantiates a new Field 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 (*Field) GetDefault added in v0.2.0

func (o *Field) GetDefault() (res FieldGetDefaultRetType)

GetDefault returns the Default field value if set, zero value otherwise.

func (*Field) GetDefaultOk added in v0.2.0

func (o *Field) GetDefaultOk() (ret FieldGetDefaultRetType, ok bool)

GetDefaultOk returns a tuple with the Default field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetDescription added in v0.2.0

func (o *Field) GetDescription() (res FieldGetDescriptionRetType)

GetDescription returns the Description field value if set, zero value otherwise.

func (*Field) GetDescriptionOk added in v0.2.0

func (o *Field) GetDescriptionOk() (ret FieldGetDescriptionRetType, ok bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetMaxLen added in v0.2.0

func (o *Field) GetMaxLen() (res FieldGetMaxLenRetType)

GetMaxLen returns the MaxLen field value if set, zero value otherwise.

func (*Field) GetMaxLenOk added in v0.2.0

func (o *Field) GetMaxLenOk() (ret FieldGetMaxLenRetType, ok bool)

GetMaxLenOk returns a tuple with the MaxLen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetMinLen added in v0.2.0

func (o *Field) GetMinLen() (res FieldGetMinLenRetType)

GetMinLen returns the MinLen field value if set, zero value otherwise.

func (*Field) GetMinLenOk added in v0.2.0

func (o *Field) GetMinLenOk() (ret FieldGetMinLenRetType, ok bool)

GetMinLenOk returns a tuple with the MinLen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetReadOnly added in v0.2.0

func (o *Field) GetReadOnly() (res FieldgetReadOnlyRetType)

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*Field) GetReadOnlyOk added in v0.2.0

func (o *Field) GetReadOnlyOk() (ret FieldgetReadOnlyRetType, ok bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetTitle added in v0.2.0

func (o *Field) GetTitle() (res FieldGetTitleRetType)

GetTitle returns the Title field value if set, zero value otherwise.

func (*Field) GetTitleOk added in v0.2.0

func (o *Field) GetTitleOk() (ret FieldGetTitleRetType, ok bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) GetType added in v0.2.0

func (o *Field) GetType() (res FieldGetTypeRetType)

GetType returns the Type field value if set, zero value otherwise.

func (*Field) GetTypeOk added in v0.2.0

func (o *Field) GetTypeOk() (ret FieldGetTypeRetType, ok bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Field) HasDefault added in v0.2.0

func (o *Field) HasDefault() bool

HasDefault returns a boolean if a field has been set.

func (*Field) HasDescription added in v0.2.0

func (o *Field) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Field) HasMaxLen added in v0.2.0

func (o *Field) HasMaxLen() bool

HasMaxLen returns a boolean if a field has been set.

func (*Field) HasMinLen added in v0.2.0

func (o *Field) HasMinLen() bool

HasMinLen returns a boolean if a field has been set.

func (*Field) HasReadOnly added in v0.2.0

func (o *Field) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

func (*Field) HasTitle added in v0.2.0

func (o *Field) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*Field) HasType added in v0.2.0

func (o *Field) HasType() bool

HasType returns a boolean if a field has been set.

func (*Field) SetDefault added in v0.2.0

func (o *Field) SetDefault(v FieldGetDefaultRetType)

SetDefault gets a reference to the given string and assigns it to the Default field.

func (*Field) SetDescription added in v0.2.0

func (o *Field) SetDescription(v FieldGetDescriptionRetType)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*Field) SetMaxLen added in v0.2.0

func (o *Field) SetMaxLen(v FieldGetMaxLenRetType)

SetMaxLen gets a reference to the given int64 and assigns it to the MaxLen field.

func (*Field) SetMinLen added in v0.2.0

func (o *Field) SetMinLen(v FieldGetMinLenRetType)

SetMinLen gets a reference to the given int64 and assigns it to the MinLen field.

func (*Field) SetReadOnly added in v0.2.0

func (o *Field) SetReadOnly(v FieldgetReadOnlyRetType)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*Field) SetTitle added in v0.2.0

func (o *Field) SetTitle(v FieldGetTitleRetType)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*Field) SetType added in v0.2.0

func (o *Field) SetType(v FieldGetTypeRetType)

SetType gets a reference to the given string and assigns it to the Type field.

func (Field) ToMap added in v0.2.0

func (o Field) ToMap() (map[string]interface{}, error)

type FieldGetDefaultArgType added in v1.0.0

type FieldGetDefaultArgType = string

type FieldGetDefaultAttributeType added in v1.0.0

type FieldGetDefaultAttributeType = *string

isNotNullableString

type FieldGetDefaultRetType added in v1.0.0

type FieldGetDefaultRetType = string

type FieldGetDescriptionArgType added in v1.0.0

type FieldGetDescriptionArgType = string

type FieldGetDescriptionAttributeType added in v1.0.0

type FieldGetDescriptionAttributeType = *string

isNotNullableString

type FieldGetDescriptionRetType added in v1.0.0

type FieldGetDescriptionRetType = string

type FieldGetMaxLenArgType added in v1.0.0

type FieldGetMaxLenArgType = int64

type FieldGetMaxLenAttributeType added in v1.0.0

type FieldGetMaxLenAttributeType = *int64

isInteger

type FieldGetMaxLenRetType added in v1.0.0

type FieldGetMaxLenRetType = int64

type FieldGetMinLenArgType added in v1.0.0

type FieldGetMinLenArgType = int64

type FieldGetMinLenAttributeType added in v1.0.0

type FieldGetMinLenAttributeType = *int64

isInteger

type FieldGetMinLenRetType added in v1.0.0

type FieldGetMinLenRetType = int64

type FieldGetTitleArgType added in v1.0.0

type FieldGetTitleArgType = string

type FieldGetTitleAttributeType added in v1.0.0

type FieldGetTitleAttributeType = *string

isNotNullableString

type FieldGetTitleRetType added in v1.0.0

type FieldGetTitleRetType = string

type FieldGetTypeArgType added in v1.0.0

type FieldGetTypeArgType = string

type FieldGetTypeAttributeType added in v1.0.0

type FieldGetTypeAttributeType = *string

isNotNullableString

type FieldGetTypeRetType added in v1.0.0

type FieldGetTypeRetType = string

type FieldgetReadOnlyArgType added in v1.0.0

type FieldgetReadOnlyArgType = bool

type FieldgetReadOnlyAttributeType added in v1.0.0

type FieldgetReadOnlyAttributeType = *bool

isBoolean

type FieldgetReadOnlyRetType added in v1.0.0

type FieldgetReadOnlyRetType = bool

type GetCommandsResponse

type GetCommandsResponse struct {
	Items GetCommandsResponseGetItemsAttributeType `json:"items,omitempty"`
}

GetCommandsResponse struct for GetCommandsResponse

func NewGetCommandsResponse added in v0.2.0

func NewGetCommandsResponse() *GetCommandsResponse

NewGetCommandsResponse instantiates a new GetCommandsResponse 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 NewGetCommandsResponseWithDefaults added in v0.2.0

func NewGetCommandsResponseWithDefaults() *GetCommandsResponse

NewGetCommandsResponseWithDefaults instantiates a new GetCommandsResponse 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 (*GetCommandsResponse) GetItems added in v0.2.0

GetItems returns the Items field value if set, zero value otherwise.

func (*GetCommandsResponse) GetItemsOk added in v0.2.0

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*GetCommandsResponse) HasItems added in v0.2.0

func (o *GetCommandsResponse) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GetCommandsResponse) SetItems added in v0.2.0

SetItems gets a reference to the given []Commands and assigns it to the Items field.

func (GetCommandsResponse) ToMap added in v0.2.0

func (o GetCommandsResponse) ToMap() (map[string]interface{}, error)

type GetCommandsResponseGetItemsArgType added in v1.0.0

type GetCommandsResponseGetItemsArgType = []Commands

type GetCommandsResponseGetItemsAttributeType added in v1.0.0

type GetCommandsResponseGetItemsAttributeType = *[]Commands

isArray

type GetCommandsResponseGetItemsRetType added in v1.0.0

type GetCommandsResponseGetItemsRetType = []Commands

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NewCommandResponse

type NewCommandResponse struct {
	// Can be cast to int32 without loss of precision.
	Id NewCommandResponseGetIdAttributeType `json:"id,omitempty"`
}

NewCommandResponse struct for NewCommandResponse

func NewNewCommandResponse added in v0.2.0

func NewNewCommandResponse() *NewCommandResponse

NewNewCommandResponse instantiates a new NewCommandResponse 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 NewNewCommandResponseWithDefaults added in v0.2.0

func NewNewCommandResponseWithDefaults() *NewCommandResponse

NewNewCommandResponseWithDefaults instantiates a new NewCommandResponse 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 (*NewCommandResponse) GetId added in v0.2.0

GetId returns the Id field value if set, zero value otherwise.

func (*NewCommandResponse) GetIdOk added in v0.2.0

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NewCommandResponse) HasId added in v0.2.0

func (o *NewCommandResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*NewCommandResponse) SetId added in v0.2.0

SetId gets a reference to the given int64 and assigns it to the Id field.

func (NewCommandResponse) ToMap added in v0.2.0

func (o NewCommandResponse) ToMap() (map[string]interface{}, error)

type NewCommandResponseGetIdArgType added in v1.0.0

type NewCommandResponseGetIdArgType = int64

type NewCommandResponseGetIdAttributeType added in v1.0.0

type NewCommandResponseGetIdAttributeType = *int64

isInteger

type NewCommandResponseGetIdRetType added in v1.0.0

type NewCommandResponseGetIdRetType = int64

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCommandDetails added in v0.2.0

type NullableCommandDetails struct {
	// contains filtered or unexported fields
}

func NewNullableCommandDetails added in v0.2.0

func NewNullableCommandDetails(val *CommandDetails) *NullableCommandDetails

func (NullableCommandDetails) Get added in v0.2.0

func (NullableCommandDetails) IsSet added in v0.2.0

func (v NullableCommandDetails) IsSet() bool

func (NullableCommandDetails) MarshalJSON added in v0.2.0

func (v NullableCommandDetails) MarshalJSON() ([]byte, error)

func (*NullableCommandDetails) Set added in v0.2.0

func (*NullableCommandDetails) UnmarshalJSON added in v0.2.0

func (v *NullableCommandDetails) UnmarshalJSON(src []byte) error

func (*NullableCommandDetails) Unset added in v0.2.0

func (v *NullableCommandDetails) Unset()

type NullableCommandTemplate added in v0.2.0

type NullableCommandTemplate struct {
	// contains filtered or unexported fields
}

func NewNullableCommandTemplate added in v0.2.0

func NewNullableCommandTemplate(val *CommandTemplate) *NullableCommandTemplate

func (NullableCommandTemplate) Get added in v0.2.0

func (NullableCommandTemplate) IsSet added in v0.2.0

func (v NullableCommandTemplate) IsSet() bool

func (NullableCommandTemplate) MarshalJSON added in v0.2.0

func (v NullableCommandTemplate) MarshalJSON() ([]byte, error)

func (*NullableCommandTemplate) Set added in v0.2.0

func (*NullableCommandTemplate) UnmarshalJSON added in v0.2.0

func (v *NullableCommandTemplate) UnmarshalJSON(src []byte) error

func (*NullableCommandTemplate) Unset added in v0.2.0

func (v *NullableCommandTemplate) Unset()

type NullableCommandTemplateResponse added in v0.2.0

type NullableCommandTemplateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableCommandTemplateResponse added in v0.2.0

func NewNullableCommandTemplateResponse(val *CommandTemplateResponse) *NullableCommandTemplateResponse

func (NullableCommandTemplateResponse) Get added in v0.2.0

func (NullableCommandTemplateResponse) IsSet added in v0.2.0

func (NullableCommandTemplateResponse) MarshalJSON added in v0.2.0

func (v NullableCommandTemplateResponse) MarshalJSON() ([]byte, error)

func (*NullableCommandTemplateResponse) Set added in v0.2.0

func (*NullableCommandTemplateResponse) UnmarshalJSON added in v0.2.0

func (v *NullableCommandTemplateResponse) UnmarshalJSON(src []byte) error

func (*NullableCommandTemplateResponse) Unset added in v0.2.0

type NullableCommandTemplateSchema added in v0.2.0

type NullableCommandTemplateSchema struct {
	// contains filtered or unexported fields
}

func NewNullableCommandTemplateSchema added in v0.2.0

func NewNullableCommandTemplateSchema(val *CommandTemplateSchema) *NullableCommandTemplateSchema

func (NullableCommandTemplateSchema) Get added in v0.2.0

func (NullableCommandTemplateSchema) IsSet added in v0.2.0

func (NullableCommandTemplateSchema) MarshalJSON added in v0.2.0

func (v NullableCommandTemplateSchema) MarshalJSON() ([]byte, error)

func (*NullableCommandTemplateSchema) Set added in v0.2.0

func (*NullableCommandTemplateSchema) UnmarshalJSON added in v0.2.0

func (v *NullableCommandTemplateSchema) UnmarshalJSON(src []byte) error

func (*NullableCommandTemplateSchema) Unset added in v0.2.0

func (v *NullableCommandTemplateSchema) Unset()

type NullableCommands added in v0.2.0

type NullableCommands struct {
	// contains filtered or unexported fields
}

func NewNullableCommands added in v0.2.0

func NewNullableCommands(val *Commands) *NullableCommands

func (NullableCommands) Get added in v0.2.0

func (v NullableCommands) Get() *Commands

func (NullableCommands) IsSet added in v0.2.0

func (v NullableCommands) IsSet() bool

func (NullableCommands) MarshalJSON added in v0.2.0

func (v NullableCommands) MarshalJSON() ([]byte, error)

func (*NullableCommands) Set added in v0.2.0

func (v *NullableCommands) Set(val *Commands)

func (*NullableCommands) UnmarshalJSON added in v0.2.0

func (v *NullableCommands) UnmarshalJSON(src []byte) error

func (*NullableCommands) Unset added in v0.2.0

func (v *NullableCommands) Unset()

type NullableCreateCommandPayload added in v0.2.0

type NullableCreateCommandPayload struct {
	// contains filtered or unexported fields
}

func NewNullableCreateCommandPayload added in v0.2.0

func NewNullableCreateCommandPayload(val *CreateCommandPayload) *NullableCreateCommandPayload

func (NullableCreateCommandPayload) Get added in v0.2.0

func (NullableCreateCommandPayload) IsSet added in v0.2.0

func (NullableCreateCommandPayload) MarshalJSON added in v0.2.0

func (v NullableCreateCommandPayload) MarshalJSON() ([]byte, error)

func (*NullableCreateCommandPayload) Set added in v0.2.0

func (*NullableCreateCommandPayload) UnmarshalJSON added in v0.2.0

func (v *NullableCreateCommandPayload) UnmarshalJSON(src []byte) error

func (*NullableCreateCommandPayload) Unset added in v0.2.0

func (v *NullableCreateCommandPayload) Unset()

type NullableErrorResponse added in v0.2.0

type NullableErrorResponse struct {
	// contains filtered or unexported fields
}

func NewNullableErrorResponse added in v0.2.0

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get added in v0.2.0

func (NullableErrorResponse) IsSet added in v0.2.0

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON added in v0.2.0

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set added in v0.2.0

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON added in v0.2.0

func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error

func (*NullableErrorResponse) Unset added in v0.2.0

func (v *NullableErrorResponse) Unset()

type NullableField added in v0.2.0

type NullableField struct {
	// contains filtered or unexported fields
}

func NewNullableField added in v0.2.0

func NewNullableField(val *Field) *NullableField

func (NullableField) Get added in v0.2.0

func (v NullableField) Get() *Field

func (NullableField) IsSet added in v0.2.0

func (v NullableField) IsSet() bool

func (NullableField) MarshalJSON added in v0.2.0

func (v NullableField) MarshalJSON() ([]byte, error)

func (*NullableField) Set added in v0.2.0

func (v *NullableField) Set(val *Field)

func (*NullableField) UnmarshalJSON added in v0.2.0

func (v *NullableField) UnmarshalJSON(src []byte) error

func (*NullableField) Unset added in v0.2.0

func (v *NullableField) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetCommandsResponse added in v0.2.0

type NullableGetCommandsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGetCommandsResponse added in v0.2.0

func NewNullableGetCommandsResponse(val *GetCommandsResponse) *NullableGetCommandsResponse

func (NullableGetCommandsResponse) Get added in v0.2.0

func (NullableGetCommandsResponse) IsSet added in v0.2.0

func (NullableGetCommandsResponse) MarshalJSON added in v0.2.0

func (v NullableGetCommandsResponse) MarshalJSON() ([]byte, error)

func (*NullableGetCommandsResponse) Set added in v0.2.0

func (*NullableGetCommandsResponse) UnmarshalJSON added in v0.2.0

func (v *NullableGetCommandsResponse) UnmarshalJSON(src []byte) error

func (*NullableGetCommandsResponse) Unset added in v0.2.0

func (v *NullableGetCommandsResponse) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableNewCommandResponse added in v0.2.0

type NullableNewCommandResponse struct {
	// contains filtered or unexported fields
}

func NewNullableNewCommandResponse added in v0.2.0

func NewNullableNewCommandResponse(val *NewCommandResponse) *NullableNewCommandResponse

func (NullableNewCommandResponse) Get added in v0.2.0

func (NullableNewCommandResponse) IsSet added in v0.2.0

func (v NullableNewCommandResponse) IsSet() bool

func (NullableNewCommandResponse) MarshalJSON added in v0.2.0

func (v NullableNewCommandResponse) MarshalJSON() ([]byte, error)

func (*NullableNewCommandResponse) Set added in v0.2.0

func (*NullableNewCommandResponse) UnmarshalJSON added in v0.2.0

func (v *NullableNewCommandResponse) UnmarshalJSON(src []byte) error

func (*NullableNewCommandResponse) Unset added in v0.2.0

func (v *NullableNewCommandResponse) Unset()

type NullableParametersSchema added in v0.2.0

type NullableParametersSchema struct {
	// contains filtered or unexported fields
}

func NewNullableParametersSchema added in v0.2.0

func NewNullableParametersSchema(val *ParametersSchema) *NullableParametersSchema

func (NullableParametersSchema) Get added in v0.2.0

func (NullableParametersSchema) IsSet added in v0.2.0

func (v NullableParametersSchema) IsSet() bool

func (NullableParametersSchema) MarshalJSON added in v0.2.0

func (v NullableParametersSchema) MarshalJSON() ([]byte, error)

func (*NullableParametersSchema) Set added in v0.2.0

func (*NullableParametersSchema) UnmarshalJSON added in v0.2.0

func (v *NullableParametersSchema) UnmarshalJSON(src []byte) error

func (*NullableParametersSchema) Unset added in v0.2.0

func (v *NullableParametersSchema) Unset()

type NullableProperties added in v0.2.0

type NullableProperties struct {
	// contains filtered or unexported fields
}

func NewNullableProperties added in v0.2.0

func NewNullableProperties(val *Properties) *NullableProperties

func (NullableProperties) Get added in v0.2.0

func (v NullableProperties) Get() *Properties

func (NullableProperties) IsSet added in v0.2.0

func (v NullableProperties) IsSet() bool

func (NullableProperties) MarshalJSON added in v0.2.0

func (v NullableProperties) MarshalJSON() ([]byte, error)

func (*NullableProperties) Set added in v0.2.0

func (v *NullableProperties) Set(val *Properties)

func (*NullableProperties) UnmarshalJSON added in v0.2.0

func (v *NullableProperties) UnmarshalJSON(src []byte) error

func (*NullableProperties) Unset added in v0.2.0

func (v *NullableProperties) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableValue added in v1.0.0

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

func (NullableValue[T]) Get added in v1.0.0

func (v NullableValue[T]) Get() *T

func (NullableValue[T]) IsSet added in v1.0.0

func (v NullableValue[T]) IsSet() bool

func (*NullableValue[T]) Set added in v1.0.0

func (v *NullableValue[T]) Set(val *T)

func (*NullableValue[T]) Unset added in v1.0.0

func (v *NullableValue[T]) Unset()

type ParametersSchema

type ParametersSchema struct {
	Properties ParametersSchemaGetPropertiesAttributeType `json:"properties,omitempty"`
}

ParametersSchema struct for ParametersSchema

func NewParametersSchema added in v0.2.0

func NewParametersSchema() *ParametersSchema

NewParametersSchema instantiates a new ParametersSchema 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 NewParametersSchemaWithDefaults added in v0.2.0

func NewParametersSchemaWithDefaults() *ParametersSchema

NewParametersSchemaWithDefaults instantiates a new ParametersSchema 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 (*ParametersSchema) GetProperties added in v0.2.0

func (o *ParametersSchema) GetProperties() (res ParametersSchemaGetPropertiesRetType)

GetProperties returns the Properties field value if set, zero value otherwise.

func (*ParametersSchema) GetPropertiesOk added in v0.2.0

func (o *ParametersSchema) GetPropertiesOk() (ret ParametersSchemaGetPropertiesRetType, ok bool)

GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ParametersSchema) HasProperties added in v0.2.0

func (o *ParametersSchema) HasProperties() bool

HasProperties returns a boolean if a field has been set.

func (*ParametersSchema) SetProperties added in v0.2.0

SetProperties gets a reference to the given Properties and assigns it to the Properties field.

func (ParametersSchema) ToMap added in v0.2.0

func (o ParametersSchema) ToMap() (map[string]interface{}, error)

type ParametersSchemaGetPropertiesArgType added in v1.0.0

type ParametersSchemaGetPropertiesArgType = Properties

type ParametersSchemaGetPropertiesAttributeType added in v1.0.0

type ParametersSchemaGetPropertiesAttributeType = *Properties

isModel

type ParametersSchemaGetPropertiesRetType added in v1.0.0

type ParametersSchemaGetPropertiesRetType = Properties

type Properties

type Properties struct {
	ConfirmPassword PropertiesGetConfirmPasswordAttributeType `json:"ConfirmPassword,omitempty"`
	Password        PropertiesGetPasswordAttributeType        `json:"Password,omitempty"`
	Script          PropertiesGetScriptAttributeType          `json:"Script,omitempty"`
	Username        PropertiesGetUsernameAttributeType        `json:"Username,omitempty"`
	Required        PropertiesGetRequiredAttributeType        `json:"required,omitempty"`
	Type            PropertiesGetTypeAttributeType            `json:"type,omitempty"`
}

Properties struct for Properties

func NewProperties added in v0.2.0

func NewProperties() *Properties

NewProperties instantiates a new Properties 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 NewPropertiesWithDefaults added in v0.2.0

func NewPropertiesWithDefaults() *Properties

NewPropertiesWithDefaults instantiates a new Properties 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 (*Properties) GetConfirmPassword added in v0.2.0

func (o *Properties) GetConfirmPassword() (res PropertiesGetConfirmPasswordRetType)

GetConfirmPassword returns the ConfirmPassword field value if set, zero value otherwise.

func (*Properties) GetConfirmPasswordOk added in v0.2.0

func (o *Properties) GetConfirmPasswordOk() (ret PropertiesGetConfirmPasswordRetType, ok bool)

GetConfirmPasswordOk returns a tuple with the ConfirmPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) GetPassword added in v0.2.0

func (o *Properties) GetPassword() (res PropertiesGetPasswordRetType)

GetPassword returns the Password field value if set, zero value otherwise.

func (*Properties) GetPasswordOk added in v0.2.0

func (o *Properties) GetPasswordOk() (ret PropertiesGetPasswordRetType, ok bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) GetRequired added in v0.2.0

func (o *Properties) GetRequired() (res PropertiesGetRequiredRetType)

GetRequired returns the Required field value if set, zero value otherwise.

func (*Properties) GetRequiredOk added in v0.2.0

func (o *Properties) GetRequiredOk() (ret PropertiesGetRequiredRetType, ok bool)

GetRequiredOk returns a tuple with the Required field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) GetScript added in v0.2.0

func (o *Properties) GetScript() (res PropertiesGetScriptRetType)

GetScript returns the Script field value if set, zero value otherwise.

func (*Properties) GetScriptOk added in v0.2.0

func (o *Properties) GetScriptOk() (ret PropertiesGetScriptRetType, ok bool)

GetScriptOk returns a tuple with the Script field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) GetType added in v0.2.0

func (o *Properties) GetType() (res PropertiesGetTypeRetType)

GetType returns the Type field value if set, zero value otherwise.

func (*Properties) GetTypeOk added in v0.2.0

func (o *Properties) GetTypeOk() (ret PropertiesGetTypeRetType, ok bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) GetUsername added in v0.2.0

func (o *Properties) GetUsername() (res PropertiesGetUsernameRetType)

GetUsername returns the Username field value if set, zero value otherwise.

func (*Properties) GetUsernameOk added in v0.2.0

func (o *Properties) GetUsernameOk() (ret PropertiesGetUsernameRetType, ok bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Properties) HasConfirmPassword added in v0.2.0

func (o *Properties) HasConfirmPassword() bool

HasConfirmPassword returns a boolean if a field has been set.

func (*Properties) HasPassword added in v0.2.0

func (o *Properties) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*Properties) HasRequired added in v0.2.0

func (o *Properties) HasRequired() bool

HasRequired returns a boolean if a field has been set.

func (*Properties) HasScript added in v0.2.0

func (o *Properties) HasScript() bool

HasScript returns a boolean if a field has been set.

func (*Properties) HasType added in v0.2.0

func (o *Properties) HasType() bool

HasType returns a boolean if a field has been set.

func (*Properties) HasUsername added in v0.2.0

func (o *Properties) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (*Properties) SetConfirmPassword added in v0.2.0

func (o *Properties) SetConfirmPassword(v PropertiesGetConfirmPasswordRetType)

SetConfirmPassword gets a reference to the given Field and assigns it to the ConfirmPassword field.

func (*Properties) SetPassword added in v0.2.0

func (o *Properties) SetPassword(v PropertiesGetPasswordRetType)

SetPassword gets a reference to the given Field and assigns it to the Password field.

func (*Properties) SetRequired added in v0.2.0

func (o *Properties) SetRequired(v PropertiesGetRequiredRetType)

SetRequired gets a reference to the given []string and assigns it to the Required field.

func (*Properties) SetScript added in v0.2.0

func (o *Properties) SetScript(v PropertiesGetScriptRetType)

SetScript gets a reference to the given Field and assigns it to the Script field.

func (*Properties) SetType added in v0.2.0

func (o *Properties) SetType(v PropertiesGetTypeRetType)

SetType gets a reference to the given string and assigns it to the Type field.

func (*Properties) SetUsername added in v0.2.0

func (o *Properties) SetUsername(v PropertiesGetUsernameRetType)

SetUsername gets a reference to the given Field and assigns it to the Username field.

func (Properties) ToMap added in v0.2.0

func (o Properties) ToMap() (map[string]interface{}, error)

type PropertiesGetConfirmPasswordArgType added in v1.0.0

type PropertiesGetConfirmPasswordArgType = Field

type PropertiesGetConfirmPasswordAttributeType added in v1.0.0

type PropertiesGetConfirmPasswordAttributeType = *Field

isModel

type PropertiesGetConfirmPasswordRetType added in v1.0.0

type PropertiesGetConfirmPasswordRetType = Field

type PropertiesGetPasswordArgType added in v1.0.0

type PropertiesGetPasswordArgType = Field

type PropertiesGetPasswordAttributeType added in v1.0.0

type PropertiesGetPasswordAttributeType = *Field

isModel

type PropertiesGetPasswordRetType added in v1.0.0

type PropertiesGetPasswordRetType = Field

type PropertiesGetRequiredArgType added in v1.0.0

type PropertiesGetRequiredArgType = []string

type PropertiesGetRequiredAttributeType added in v1.0.0

type PropertiesGetRequiredAttributeType = *[]string

isArray

type PropertiesGetRequiredRetType added in v1.0.0

type PropertiesGetRequiredRetType = []string

type PropertiesGetScriptArgType added in v1.0.0

type PropertiesGetScriptArgType = Field

type PropertiesGetScriptAttributeType added in v1.0.0

type PropertiesGetScriptAttributeType = *Field

isModel

type PropertiesGetScriptRetType added in v1.0.0

type PropertiesGetScriptRetType = Field

type PropertiesGetTypeArgType added in v1.0.0

type PropertiesGetTypeArgType = string

type PropertiesGetTypeAttributeType added in v1.0.0

type PropertiesGetTypeAttributeType = *string

isNotNullableString

type PropertiesGetTypeRetType added in v1.0.0

type PropertiesGetTypeRetType = string

type PropertiesGetUsernameArgType added in v1.0.0

type PropertiesGetUsernameArgType = Field

type PropertiesGetUsernameAttributeType added in v1.0.0

type PropertiesGetUsernameAttributeType = *Field

isModel

type PropertiesGetUsernameRetType added in v1.0.0

type PropertiesGetUsernameRetType = Field

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL