Versions in this module Expand all Collapse all v1 v1.5.0 Mar 10, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiCreateCommandRequest struct + ApiService DefaultAPI + func (r ApiCreateCommandRequest) CreateCommandPayload(createCommandPayload CreateCommandPayload) ApiCreateCommandRequest + func (r ApiCreateCommandRequest) Execute() (*NewCommandResponse, error) + type ApiGetCommandRequest struct + ApiService DefaultAPI + func (r ApiGetCommandRequest) Execute() (*CommandDetails, error) + type ApiGetCommandTemplateRequest struct + ApiService DefaultAPI + func (r ApiGetCommandTemplateRequest) Execute() (*CommandTemplateSchema, error) + type ApiListCommandTemplatesRequest struct + ApiService DefaultAPI + func (r ApiListCommandTemplatesRequest) Execute() (*CommandTemplateResponse, error) + func (r ApiListCommandTemplatesRequest) OsType(osType string) ApiListCommandTemplatesRequest + type ApiListCommandsRequest struct + ApiService DefaultAPI + func (r ApiListCommandsRequest) Execute() (*GetCommandsResponse, error) + type CommandDetails struct + CommandTemplateName *string + CommandTemplateTitle *string + ExitCode *int32 + FinishedAt *string + Id *int32 + Output *string + Script *string + StartedAt *string + Status *string + func NewCommandDetails() *CommandDetails + func NewCommandDetailsWithDefaults() *CommandDetails + func (o *CommandDetails) GetCommandTemplateName() string + func (o *CommandDetails) GetCommandTemplateNameOk() (*string, bool) + func (o *CommandDetails) GetCommandTemplateTitle() string + func (o *CommandDetails) GetCommandTemplateTitleOk() (*string, bool) + func (o *CommandDetails) GetExitCode() int32 + func (o *CommandDetails) GetExitCodeOk() (*int32, bool) + func (o *CommandDetails) GetFinishedAt() string + func (o *CommandDetails) GetFinishedAtOk() (*string, bool) + func (o *CommandDetails) GetId() int32 + func (o *CommandDetails) GetIdOk() (*int32, bool) + func (o *CommandDetails) GetOutput() string + func (o *CommandDetails) GetOutputOk() (*string, bool) + func (o *CommandDetails) GetScript() string + func (o *CommandDetails) GetScriptOk() (*string, bool) + func (o *CommandDetails) GetStartedAt() string + func (o *CommandDetails) GetStartedAtOk() (*string, bool) + func (o *CommandDetails) GetStatus() string + func (o *CommandDetails) GetStatusOk() (*string, bool) + func (o *CommandDetails) HasCommandTemplateName() bool + func (o *CommandDetails) HasCommandTemplateTitle() bool + func (o *CommandDetails) HasExitCode() bool + func (o *CommandDetails) HasFinishedAt() bool + func (o *CommandDetails) HasId() bool + func (o *CommandDetails) HasOutput() bool + func (o *CommandDetails) HasScript() bool + func (o *CommandDetails) HasStartedAt() bool + func (o *CommandDetails) HasStatus() bool + func (o *CommandDetails) SetCommandTemplateName(v string) + func (o *CommandDetails) SetCommandTemplateTitle(v string) + func (o *CommandDetails) SetExitCode(v int32) + func (o *CommandDetails) SetFinishedAt(v string) + func (o *CommandDetails) SetId(v int32) + func (o *CommandDetails) SetOutput(v string) + func (o *CommandDetails) SetScript(v string) + func (o *CommandDetails) SetStartedAt(v string) + func (o *CommandDetails) SetStatus(v string) + func (o CommandDetails) MarshalJSON() ([]byte, error) + func (o CommandDetails) ToMap() (map[string]interface{}, error) + type CommandTemplate struct + Name *string + OsType []string + Title *string + func NewCommandTemplate() *CommandTemplate + func NewCommandTemplateWithDefaults() *CommandTemplate + func (o *CommandTemplate) GetName() string + func (o *CommandTemplate) GetNameOk() (*string, bool) + func (o *CommandTemplate) GetOsType() []string + func (o *CommandTemplate) GetOsTypeOk() ([]string, bool) + func (o *CommandTemplate) GetTitle() string + func (o *CommandTemplate) GetTitleOk() (*string, bool) + func (o *CommandTemplate) HasName() bool + func (o *CommandTemplate) HasOsType() bool + func (o *CommandTemplate) HasTitle() bool + func (o *CommandTemplate) SetName(v string) + func (o *CommandTemplate) SetOsType(v []string) + func (o *CommandTemplate) SetTitle(v string) + func (o CommandTemplate) MarshalJSON() ([]byte, error) + func (o CommandTemplate) ToMap() (map[string]interface{}, error) + type CommandTemplateResponse struct + Items []CommandTemplate + func NewCommandTemplateResponse() *CommandTemplateResponse + func NewCommandTemplateResponseWithDefaults() *CommandTemplateResponse + func (o *CommandTemplateResponse) GetItems() []CommandTemplate + func (o *CommandTemplateResponse) GetItemsOk() ([]CommandTemplate, bool) + func (o *CommandTemplateResponse) HasItems() bool + func (o *CommandTemplateResponse) SetItems(v []CommandTemplate) + func (o CommandTemplateResponse) MarshalJSON() ([]byte, error) + func (o CommandTemplateResponse) ToMap() (map[string]interface{}, error) + type CommandTemplateSchema struct + Description *string + Name *string + OsType []string + ParameterSchema *ParametersSchema + Title *string + func NewCommandTemplateSchema() *CommandTemplateSchema + func NewCommandTemplateSchemaWithDefaults() *CommandTemplateSchema + func (o *CommandTemplateSchema) GetDescription() string + func (o *CommandTemplateSchema) GetDescriptionOk() (*string, bool) + func (o *CommandTemplateSchema) GetName() string + func (o *CommandTemplateSchema) GetNameOk() (*string, bool) + func (o *CommandTemplateSchema) GetOsType() []string + func (o *CommandTemplateSchema) GetOsTypeOk() ([]string, bool) + func (o *CommandTemplateSchema) GetParameterSchema() ParametersSchema + func (o *CommandTemplateSchema) GetParameterSchemaOk() (*ParametersSchema, bool) + func (o *CommandTemplateSchema) GetTitle() string + func (o *CommandTemplateSchema) GetTitleOk() (*string, bool) + func (o *CommandTemplateSchema) HasDescription() bool + func (o *CommandTemplateSchema) HasName() bool + func (o *CommandTemplateSchema) HasOsType() bool + func (o *CommandTemplateSchema) HasParameterSchema() bool + func (o *CommandTemplateSchema) HasTitle() bool + func (o *CommandTemplateSchema) SetDescription(v string) + func (o *CommandTemplateSchema) SetName(v string) + func (o *CommandTemplateSchema) SetOsType(v []string) + func (o *CommandTemplateSchema) SetParameterSchema(v ParametersSchema) + func (o *CommandTemplateSchema) SetTitle(v string) + func (o CommandTemplateSchema) MarshalJSON() ([]byte, error) + func (o CommandTemplateSchema) ToMap() (map[string]interface{}, error) + type Commands struct + CommandTemplateName *string + CommandTemplateTitle *string + FinishedAt *string + Id *int32 + StartedAt *string + Status *string + func NewCommands() *Commands + func NewCommandsWithDefaults() *Commands + func (o *Commands) GetCommandTemplateName() string + func (o *Commands) GetCommandTemplateNameOk() (*string, bool) + func (o *Commands) GetCommandTemplateTitle() string + func (o *Commands) GetCommandTemplateTitleOk() (*string, bool) + func (o *Commands) GetFinishedAt() string + func (o *Commands) GetFinishedAtOk() (*string, bool) + func (o *Commands) GetId() int32 + func (o *Commands) GetIdOk() (*int32, bool) + func (o *Commands) GetStartedAt() string + func (o *Commands) GetStartedAtOk() (*string, bool) + func (o *Commands) GetStatus() string + func (o *Commands) GetStatusOk() (*string, bool) + func (o *Commands) HasCommandTemplateName() bool + func (o *Commands) HasCommandTemplateTitle() bool + func (o *Commands) HasFinishedAt() bool + func (o *Commands) HasId() bool + func (o *Commands) HasStartedAt() bool + func (o *Commands) HasStatus() bool + func (o *Commands) SetCommandTemplateName(v string) + func (o *Commands) SetCommandTemplateTitle(v string) + func (o *Commands) SetFinishedAt(v string) + func (o *Commands) SetId(v int32) + func (o *Commands) SetStartedAt(v string) + func (o *Commands) SetStatus(v string) + func (o Commands) MarshalJSON() ([]byte, error) + func (o Commands) ToMap() (map[string]interface{}, error) + type CreateCommandPayload struct + CommandTemplateName string + Parameters *map[string]string + func NewCreateCommandPayload(commandTemplateName string) *CreateCommandPayload + func NewCreateCommandPayloadWithDefaults() *CreateCommandPayload + func (o *CreateCommandPayload) GetCommandTemplateName() string + func (o *CreateCommandPayload) GetCommandTemplateNameOk() (*string, bool) + func (o *CreateCommandPayload) GetParameters() map[string]string + func (o *CreateCommandPayload) GetParametersOk() (*map[string]string, bool) + func (o *CreateCommandPayload) HasParameters() bool + func (o *CreateCommandPayload) SetCommandTemplateName(v string) + func (o *CreateCommandPayload) SetParameters(v map[string]string) + func (o *CreateCommandPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateCommandPayload) MarshalJSON() ([]byte, error) + func (o CreateCommandPayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateCommand func(ctx context.Context, projectId string, serverId string) ApiCreateCommandRequest + CreateCommandExecute func(r ApiCreateCommandRequest) (*NewCommandResponse, error) + GetCommand func(ctx context.Context, projectId string, serverId string, commandId string) ApiGetCommandRequest + GetCommandExecute func(r ApiGetCommandRequest) (*CommandDetails, error) + GetCommandTemplate func(ctx context.Context, projectId string, serverId string, ...) ApiGetCommandTemplateRequest + GetCommandTemplateExecute func(r ApiGetCommandTemplateRequest) (*CommandTemplateSchema, error) + ListCommandTemplates func(ctx context.Context) ApiListCommandTemplatesRequest + ListCommandTemplatesExecute func(r ApiListCommandTemplatesRequest) (*CommandTemplateResponse, error) + ListCommands func(ctx context.Context, projectId string, serverId string) ApiListCommandsRequest + ListCommandsExecute func(r ApiListCommandsRequest) (*GetCommandsResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateCommand(ctx context.Context, projectId string, serverId string) ApiCreateCommandRequest + func (a *DefaultAPIService) CreateCommandExecute(r ApiCreateCommandRequest) (*NewCommandResponse, error) + func (a *DefaultAPIService) GetCommand(ctx context.Context, projectId string, serverId string, commandId string) ApiGetCommandRequest + func (a *DefaultAPIService) GetCommandExecute(r ApiGetCommandRequest) (*CommandDetails, error) + func (a *DefaultAPIService) GetCommandTemplate(ctx context.Context, projectId string, serverId string, ...) ApiGetCommandTemplateRequest + func (a *DefaultAPIService) GetCommandTemplateExecute(r ApiGetCommandTemplateRequest) (*CommandTemplateSchema, error) + func (a *DefaultAPIService) ListCommandTemplates(ctx context.Context) ApiListCommandTemplatesRequest + func (a *DefaultAPIService) ListCommandTemplatesExecute(r ApiListCommandTemplatesRequest) (*CommandTemplateResponse, error) + func (a *DefaultAPIService) ListCommands(ctx context.Context, projectId string, serverId string) ApiListCommandsRequest + func (a *DefaultAPIService) ListCommandsExecute(r ApiListCommandsRequest) (*GetCommandsResponse, error) + type DefaultAPIServiceMock struct + CreateCommandExecuteMock *func(r ApiCreateCommandRequest) (*NewCommandResponse, error) + GetCommandExecuteMock *func(r ApiGetCommandRequest) (*CommandDetails, error) + GetCommandTemplateExecuteMock *func(r ApiGetCommandTemplateRequest) (*CommandTemplateSchema, error) + ListCommandTemplatesExecuteMock *func(r ApiListCommandTemplatesRequest) (*CommandTemplateResponse, error) + ListCommandsExecuteMock *func(r ApiListCommandsRequest) (*GetCommandsResponse, error) + func (a DefaultAPIServiceMock) CreateCommand(ctx context.Context, projectId string, serverId string) ApiCreateCommandRequest + func (a DefaultAPIServiceMock) CreateCommandExecute(r ApiCreateCommandRequest) (*NewCommandResponse, error) + func (a DefaultAPIServiceMock) GetCommand(ctx context.Context, projectId string, serverId string, commandId string) ApiGetCommandRequest + func (a DefaultAPIServiceMock) GetCommandExecute(r ApiGetCommandRequest) (*CommandDetails, error) + func (a DefaultAPIServiceMock) GetCommandTemplate(ctx context.Context, projectId string, serverId string, ...) ApiGetCommandTemplateRequest + func (a DefaultAPIServiceMock) GetCommandTemplateExecute(r ApiGetCommandTemplateRequest) (*CommandTemplateSchema, error) + func (a DefaultAPIServiceMock) ListCommandTemplates(ctx context.Context) ApiListCommandTemplatesRequest + func (a DefaultAPIServiceMock) ListCommandTemplatesExecute(r ApiListCommandTemplatesRequest) (*CommandTemplateResponse, error) + func (a DefaultAPIServiceMock) ListCommands(ctx context.Context, projectId string, serverId string) ApiListCommandsRequest + func (a DefaultAPIServiceMock) ListCommandsExecute(r ApiListCommandsRequest) (*GetCommandsResponse, error) + type ErrorResponse struct + Message string + Status string + func NewErrorResponse(message string, status string) *ErrorResponse + func NewErrorResponseWithDefaults() *ErrorResponse + func (o *ErrorResponse) GetMessage() string + func (o *ErrorResponse) GetMessageOk() (*string, bool) + func (o *ErrorResponse) GetStatus() string + func (o *ErrorResponse) GetStatusOk() (*string, bool) + func (o *ErrorResponse) SetMessage(v string) + func (o *ErrorResponse) SetStatus(v string) + func (o *ErrorResponse) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponse) MarshalJSON() ([]byte, error) + func (o ErrorResponse) ToMap() (map[string]interface{}, error) + type Field struct + Default *string + Description *string + MaxLen *int32 + MinLen *int32 + ReadOnly *bool + Title *string + Type *string + func NewField() *Field + func NewFieldWithDefaults() *Field + func (o *Field) GetDefault() string + func (o *Field) GetDefaultOk() (*string, bool) + func (o *Field) GetDescription() string + func (o *Field) GetDescriptionOk() (*string, bool) + func (o *Field) GetMaxLen() int32 + func (o *Field) GetMaxLenOk() (*int32, bool) + func (o *Field) GetMinLen() int32 + func (o *Field) GetMinLenOk() (*int32, bool) + func (o *Field) GetReadOnly() bool + func (o *Field) GetReadOnlyOk() (*bool, bool) + func (o *Field) GetTitle() string + func (o *Field) GetTitleOk() (*string, bool) + func (o *Field) GetType() string + func (o *Field) GetTypeOk() (*string, bool) + func (o *Field) HasDefault() bool + func (o *Field) HasDescription() bool + func (o *Field) HasMaxLen() bool + func (o *Field) HasMinLen() bool + func (o *Field) HasReadOnly() bool + func (o *Field) HasTitle() bool + func (o *Field) HasType() bool + func (o *Field) SetDefault(v string) + func (o *Field) SetDescription(v string) + func (o *Field) SetMaxLen(v int32) + func (o *Field) SetMinLen(v int32) + func (o *Field) SetReadOnly(v bool) + func (o *Field) SetTitle(v string) + func (o *Field) SetType(v string) + func (o Field) MarshalJSON() ([]byte, error) + func (o Field) ToMap() (map[string]interface{}, error) + type GetCommandsResponse struct + Items []Commands + func NewGetCommandsResponse() *GetCommandsResponse + func NewGetCommandsResponseWithDefaults() *GetCommandsResponse + func (o *GetCommandsResponse) GetItems() []Commands + func (o *GetCommandsResponse) GetItemsOk() ([]Commands, bool) + func (o *GetCommandsResponse) HasItems() bool + func (o *GetCommandsResponse) SetItems(v []Commands) + func (o GetCommandsResponse) MarshalJSON() ([]byte, error) + func (o GetCommandsResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NewCommandResponse struct + Id *int32 + func NewNewCommandResponse() *NewCommandResponse + func NewNewCommandResponseWithDefaults() *NewCommandResponse + func (o *NewCommandResponse) GetId() int32 + func (o *NewCommandResponse) GetIdOk() (*int32, bool) + func (o *NewCommandResponse) HasId() bool + func (o *NewCommandResponse) SetId(v int32) + func (o NewCommandResponse) MarshalJSON() ([]byte, error) + func (o NewCommandResponse) ToMap() (map[string]interface{}, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCommandDetails struct + func NewNullableCommandDetails(val *CommandDetails) *NullableCommandDetails + func (v *NullableCommandDetails) Set(val *CommandDetails) + func (v *NullableCommandDetails) UnmarshalJSON(src []byte) error + func (v *NullableCommandDetails) Unset() + func (v NullableCommandDetails) Get() *CommandDetails + func (v NullableCommandDetails) IsSet() bool + func (v NullableCommandDetails) MarshalJSON() ([]byte, error) + type NullableCommandTemplate struct + func NewNullableCommandTemplate(val *CommandTemplate) *NullableCommandTemplate + func (v *NullableCommandTemplate) Set(val *CommandTemplate) + func (v *NullableCommandTemplate) UnmarshalJSON(src []byte) error + func (v *NullableCommandTemplate) Unset() + func (v NullableCommandTemplate) Get() *CommandTemplate + func (v NullableCommandTemplate) IsSet() bool + func (v NullableCommandTemplate) MarshalJSON() ([]byte, error) + type NullableCommandTemplateResponse struct + func NewNullableCommandTemplateResponse(val *CommandTemplateResponse) *NullableCommandTemplateResponse + func (v *NullableCommandTemplateResponse) Set(val *CommandTemplateResponse) + func (v *NullableCommandTemplateResponse) UnmarshalJSON(src []byte) error + func (v *NullableCommandTemplateResponse) Unset() + func (v NullableCommandTemplateResponse) Get() *CommandTemplateResponse + func (v NullableCommandTemplateResponse) IsSet() bool + func (v NullableCommandTemplateResponse) MarshalJSON() ([]byte, error) + type NullableCommandTemplateSchema struct + func NewNullableCommandTemplateSchema(val *CommandTemplateSchema) *NullableCommandTemplateSchema + func (v *NullableCommandTemplateSchema) Set(val *CommandTemplateSchema) + func (v *NullableCommandTemplateSchema) UnmarshalJSON(src []byte) error + func (v *NullableCommandTemplateSchema) Unset() + func (v NullableCommandTemplateSchema) Get() *CommandTemplateSchema + func (v NullableCommandTemplateSchema) IsSet() bool + func (v NullableCommandTemplateSchema) MarshalJSON() ([]byte, error) + type NullableCommands struct + func NewNullableCommands(val *Commands) *NullableCommands + func (v *NullableCommands) Set(val *Commands) + func (v *NullableCommands) UnmarshalJSON(src []byte) error + func (v *NullableCommands) Unset() + func (v NullableCommands) Get() *Commands + func (v NullableCommands) IsSet() bool + func (v NullableCommands) MarshalJSON() ([]byte, error) + type NullableCreateCommandPayload struct + func NewNullableCreateCommandPayload(val *CreateCommandPayload) *NullableCreateCommandPayload + func (v *NullableCreateCommandPayload) Set(val *CreateCommandPayload) + func (v *NullableCreateCommandPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateCommandPayload) Unset() + func (v NullableCreateCommandPayload) Get() *CreateCommandPayload + func (v NullableCreateCommandPayload) IsSet() bool + func (v NullableCreateCommandPayload) MarshalJSON() ([]byte, error) + type NullableErrorResponse struct + func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse + func (v *NullableErrorResponse) Set(val *ErrorResponse) + func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponse) Unset() + func (v NullableErrorResponse) Get() *ErrorResponse + func (v NullableErrorResponse) IsSet() bool + func (v NullableErrorResponse) MarshalJSON() ([]byte, error) + type NullableField struct + func NewNullableField(val *Field) *NullableField + func (v *NullableField) Set(val *Field) + func (v *NullableField) UnmarshalJSON(src []byte) error + func (v *NullableField) Unset() + func (v NullableField) Get() *Field + func (v NullableField) IsSet() bool + func (v NullableField) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableGetCommandsResponse struct + func NewNullableGetCommandsResponse(val *GetCommandsResponse) *NullableGetCommandsResponse + func (v *NullableGetCommandsResponse) Set(val *GetCommandsResponse) + func (v *NullableGetCommandsResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetCommandsResponse) Unset() + func (v NullableGetCommandsResponse) Get() *GetCommandsResponse + func (v NullableGetCommandsResponse) IsSet() bool + func (v NullableGetCommandsResponse) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableNewCommandResponse struct + func NewNullableNewCommandResponse(val *NewCommandResponse) *NullableNewCommandResponse + func (v *NullableNewCommandResponse) Set(val *NewCommandResponse) + func (v *NullableNewCommandResponse) UnmarshalJSON(src []byte) error + func (v *NullableNewCommandResponse) Unset() + func (v NullableNewCommandResponse) Get() *NewCommandResponse + func (v NullableNewCommandResponse) IsSet() bool + func (v NullableNewCommandResponse) MarshalJSON() ([]byte, error) + type NullableParametersSchema struct + func NewNullableParametersSchema(val *ParametersSchema) *NullableParametersSchema + func (v *NullableParametersSchema) Set(val *ParametersSchema) + func (v *NullableParametersSchema) UnmarshalJSON(src []byte) error + func (v *NullableParametersSchema) Unset() + func (v NullableParametersSchema) Get() *ParametersSchema + func (v NullableParametersSchema) IsSet() bool + func (v NullableParametersSchema) MarshalJSON() ([]byte, error) + type NullableProperties struct + func NewNullableProperties(val *Properties) *NullableProperties + func (v *NullableProperties) Set(val *Properties) + func (v *NullableProperties) UnmarshalJSON(src []byte) error + func (v *NullableProperties) Unset() + func (v NullableProperties) Get() *Properties + func (v NullableProperties) IsSet() bool + func (v NullableProperties) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type ParametersSchema struct + Properties *Properties + func NewParametersSchema() *ParametersSchema + func NewParametersSchemaWithDefaults() *ParametersSchema + func (o *ParametersSchema) GetProperties() Properties + func (o *ParametersSchema) GetPropertiesOk() (*Properties, bool) + func (o *ParametersSchema) HasProperties() bool + func (o *ParametersSchema) SetProperties(v Properties) + func (o ParametersSchema) MarshalJSON() ([]byte, error) + func (o ParametersSchema) ToMap() (map[string]interface{}, error) + type Properties struct + ConfirmPassword *Field + Password *Field + Required []string + Script *Field + Type *string + Username *Field + func NewProperties() *Properties + func NewPropertiesWithDefaults() *Properties + func (o *Properties) GetConfirmPassword() Field + func (o *Properties) GetConfirmPasswordOk() (*Field, bool) + func (o *Properties) GetPassword() Field + func (o *Properties) GetPasswordOk() (*Field, bool) + func (o *Properties) GetRequired() []string + func (o *Properties) GetRequiredOk() ([]string, bool) + func (o *Properties) GetScript() Field + func (o *Properties) GetScriptOk() (*Field, bool) + func (o *Properties) GetType() string + func (o *Properties) GetTypeOk() (*string, bool) + func (o *Properties) GetUsername() Field + func (o *Properties) GetUsernameOk() (*Field, bool) + func (o *Properties) HasConfirmPassword() bool + func (o *Properties) HasPassword() bool + func (o *Properties) HasRequired() bool + func (o *Properties) HasScript() bool + func (o *Properties) HasType() bool + func (o *Properties) HasUsername() bool + func (o *Properties) SetConfirmPassword(v Field) + func (o *Properties) SetPassword(v Field) + func (o *Properties) SetRequired(v []string) + func (o *Properties) SetScript(v Field) + func (o *Properties) SetType(v string) + func (o *Properties) SetUsername(v Field) + func (o Properties) MarshalJSON() ([]byte, error) + func (o Properties) ToMap() (map[string]interface{}, error)