openapi_client

package
v0.11.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

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 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 {
	DomainsAPI DomainsAPI

	MetadataAPI MetadataAPI

	TeamsAPI TeamsAPI

	WorkspacesAPI WorkspacesAPI
	// contains filtered or unexported fields
}

APIClient manages communication with the Codesphere Public API API v0.1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *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

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiDomainsCreateDomainRequest

type ApiDomainsCreateDomainRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsCreateDomainRequest) Execute

type ApiDomainsDeleteDomainRequest

type ApiDomainsDeleteDomainRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsDeleteDomainRequest) Execute

type ApiDomainsGetDomainRequest

type ApiDomainsGetDomainRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsGetDomainRequest) Execute

type ApiDomainsListDomainsRequest

type ApiDomainsListDomainsRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsListDomainsRequest) Execute

type ApiDomainsUpdateDomainRequest

type ApiDomainsUpdateDomainRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsUpdateDomainRequest) DomainsGetDomain200ResponseCustomConfig

func (r ApiDomainsUpdateDomainRequest) DomainsGetDomain200ResponseCustomConfig(domainsGetDomain200ResponseCustomConfig DomainsGetDomain200ResponseCustomConfig) ApiDomainsUpdateDomainRequest

func (ApiDomainsUpdateDomainRequest) Execute

type ApiDomainsUpdateWorkspaceConnectionsRequest

type ApiDomainsUpdateWorkspaceConnectionsRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

func (ApiDomainsUpdateWorkspaceConnectionsRequest) Execute

func (ApiDomainsUpdateWorkspaceConnectionsRequest) RequestBody

type ApiDomainsVerifyDomainRequest

type ApiDomainsVerifyDomainRequest struct {
	ApiService DomainsAPI
	// contains filtered or unexported fields
}

type ApiMetadataGetDatacentersRequest

type ApiMetadataGetDatacentersRequest struct {
	ApiService MetadataAPI
	// contains filtered or unexported fields
}

func (ApiMetadataGetDatacentersRequest) Execute

type ApiMetadataGetWorkspacePlansRequest

type ApiMetadataGetWorkspacePlansRequest struct {
	ApiService MetadataAPI
	// contains filtered or unexported fields
}

func (ApiMetadataGetWorkspacePlansRequest) Execute

type ApiTeamsCreateTeamRequest

type ApiTeamsCreateTeamRequest struct {
	ApiService TeamsAPI
	// contains filtered or unexported fields
}

func (ApiTeamsCreateTeamRequest) Execute

func (ApiTeamsCreateTeamRequest) TeamsCreateTeamRequest

func (r ApiTeamsCreateTeamRequest) TeamsCreateTeamRequest(teamsCreateTeamRequest TeamsCreateTeamRequest) ApiTeamsCreateTeamRequest

type ApiTeamsDeleteTeamRequest

type ApiTeamsDeleteTeamRequest struct {
	ApiService TeamsAPI
	// contains filtered or unexported fields
}

func (ApiTeamsDeleteTeamRequest) Execute

func (r ApiTeamsDeleteTeamRequest) Execute() (*http.Response, error)

type ApiTeamsGetTeamRequest

type ApiTeamsGetTeamRequest struct {
	ApiService TeamsAPI
	// contains filtered or unexported fields
}

func (ApiTeamsGetTeamRequest) Execute

type ApiTeamsListTeamsRequest

type ApiTeamsListTeamsRequest struct {
	ApiService TeamsAPI
	// contains filtered or unexported fields
}

func (ApiTeamsListTeamsRequest) Execute

type ApiWorkspacesCreateWorkspaceRequest

type ApiWorkspacesCreateWorkspaceRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesCreateWorkspaceRequest) Execute

func (ApiWorkspacesCreateWorkspaceRequest) WorkspacesCreateWorkspaceRequest

func (r ApiWorkspacesCreateWorkspaceRequest) WorkspacesCreateWorkspaceRequest(workspacesCreateWorkspaceRequest WorkspacesCreateWorkspaceRequest) ApiWorkspacesCreateWorkspaceRequest

type ApiWorkspacesDeleteEnvVarRequest

type ApiWorkspacesDeleteEnvVarRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesDeleteEnvVarRequest) Execute

func (ApiWorkspacesDeleteEnvVarRequest) RequestBody

type ApiWorkspacesDeleteWorkspaceRequest

type ApiWorkspacesDeleteWorkspaceRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesDeleteWorkspaceRequest) Execute

type ApiWorkspacesDeployLandscape1Request

type ApiWorkspacesDeployLandscape1Request struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesDeployLandscape1Request) Execute

type ApiWorkspacesDeployLandscapeRequest

type ApiWorkspacesDeployLandscapeRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesDeployLandscapeRequest) Execute

type ApiWorkspacesExecuteCommandRequest

type ApiWorkspacesExecuteCommandRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesExecuteCommandRequest) Execute

func (ApiWorkspacesExecuteCommandRequest) WorkspacesExecuteCommandRequest

func (r ApiWorkspacesExecuteCommandRequest) WorkspacesExecuteCommandRequest(workspacesExecuteCommandRequest WorkspacesExecuteCommandRequest) ApiWorkspacesExecuteCommandRequest

type ApiWorkspacesGetWorkspaceRequest

type ApiWorkspacesGetWorkspaceRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGetWorkspaceRequest) Execute

type ApiWorkspacesGetWorkspaceStatusRequest

type ApiWorkspacesGetWorkspaceStatusRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGetWorkspaceStatusRequest) Execute

type ApiWorkspacesGitHeadRequest

type ApiWorkspacesGitHeadRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGitHeadRequest) Execute

type ApiWorkspacesGitPull1Request

type ApiWorkspacesGitPull1Request struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGitPull1Request) Execute

type ApiWorkspacesGitPull2Request

type ApiWorkspacesGitPull2Request struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGitPull2Request) Execute

type ApiWorkspacesGitPullRequest

type ApiWorkspacesGitPullRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesGitPullRequest) Execute

type ApiWorkspacesListEnvVarsRequest

type ApiWorkspacesListEnvVarsRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesListEnvVarsRequest) Execute

type ApiWorkspacesListWorkspacesRequest

type ApiWorkspacesListWorkspacesRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesListWorkspacesRequest) Execute

type ApiWorkspacesLogsRequest

type ApiWorkspacesLogsRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesLogsRequest) Execute

type ApiWorkspacesPipelineStatusRequest

type ApiWorkspacesPipelineStatusRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesPipelineStatusRequest) Execute

type ApiWorkspacesReplicaLogsRequest

type ApiWorkspacesReplicaLogsRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesReplicaLogsRequest) Execute

type ApiWorkspacesServerLogsRequest

type ApiWorkspacesServerLogsRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesServerLogsRequest) Execute

type ApiWorkspacesSetEnvVarRequest

type ApiWorkspacesSetEnvVarRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesSetEnvVarRequest) Execute

func (ApiWorkspacesSetEnvVarRequest) WorkspacesListEnvVars200ResponseInner

func (r ApiWorkspacesSetEnvVarRequest) WorkspacesListEnvVars200ResponseInner(workspacesListEnvVars200ResponseInner []WorkspacesListEnvVars200ResponseInner) ApiWorkspacesSetEnvVarRequest

type ApiWorkspacesStartPipelineStage1Request

type ApiWorkspacesStartPipelineStage1Request struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesStartPipelineStage1Request) Execute

type ApiWorkspacesStartPipelineStageRequest

type ApiWorkspacesStartPipelineStageRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesStartPipelineStageRequest) Execute

type ApiWorkspacesStopPipelineStageRequest

type ApiWorkspacesStopPipelineStageRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesStopPipelineStageRequest) Execute

type ApiWorkspacesTeardownLandscapeRequest

type ApiWorkspacesTeardownLandscapeRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesTeardownLandscapeRequest) Execute

type ApiWorkspacesUpdateWorkspaceRequest

type ApiWorkspacesUpdateWorkspaceRequest struct {
	ApiService WorkspacesAPI
	// contains filtered or unexported fields
}

func (ApiWorkspacesUpdateWorkspaceRequest) Execute

func (ApiWorkspacesUpdateWorkspaceRequest) WorkspacesUpdateWorkspaceRequest

func (r ApiWorkspacesUpdateWorkspaceRequest) WorkspacesUpdateWorkspaceRequest(workspacesUpdateWorkspaceRequest WorkspacesUpdateWorkspaceRequest) ApiWorkspacesUpdateWorkspaceRequest

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type DomainsAPI

type DomainsAPI interface {

	/*
		DomainsCreateDomain createDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsCreateDomainRequest
	*/
	DomainsCreateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsCreateDomainRequest

	// DomainsCreateDomainExecute executes the request
	//  @return DomainsGetDomain200Response
	DomainsCreateDomainExecute(r ApiDomainsCreateDomainRequest) (*DomainsGetDomain200Response, *http.Response, error)

	/*
		DomainsDeleteDomain deleteDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsDeleteDomainRequest
	*/
	DomainsDeleteDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsDeleteDomainRequest

	// DomainsDeleteDomainExecute executes the request
	DomainsDeleteDomainExecute(r ApiDomainsDeleteDomainRequest) (*http.Response, error)

	/*
		DomainsGetDomain getDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsGetDomainRequest
	*/
	DomainsGetDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsGetDomainRequest

	// DomainsGetDomainExecute executes the request
	//  @return DomainsGetDomain200Response
	DomainsGetDomainExecute(r ApiDomainsGetDomainRequest) (*DomainsGetDomain200Response, *http.Response, error)

	/*
		DomainsListDomains listDomains

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@return ApiDomainsListDomainsRequest
	*/
	DomainsListDomains(ctx context.Context, teamId float32) ApiDomainsListDomainsRequest

	// DomainsListDomainsExecute executes the request
	//  @return []DomainsGetDomain200Response
	DomainsListDomainsExecute(r ApiDomainsListDomainsRequest) ([]DomainsGetDomain200Response, *http.Response, error)

	/*
		DomainsUpdateDomain updateDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsUpdateDomainRequest
	*/
	DomainsUpdateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateDomainRequest

	// DomainsUpdateDomainExecute executes the request
	//  @return DomainsGetDomain200Response
	DomainsUpdateDomainExecute(r ApiDomainsUpdateDomainRequest) (*DomainsGetDomain200Response, *http.Response, error)

	/*
		DomainsUpdateWorkspaceConnections updateWorkspaceConnections

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsUpdateWorkspaceConnectionsRequest
	*/
	DomainsUpdateWorkspaceConnections(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateWorkspaceConnectionsRequest

	// DomainsUpdateWorkspaceConnectionsExecute executes the request
	//  @return DomainsGetDomain200Response
	DomainsUpdateWorkspaceConnectionsExecute(r ApiDomainsUpdateWorkspaceConnectionsRequest) (*DomainsGetDomain200Response, *http.Response, error)

	/*
		DomainsVerifyDomain verifyDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@param domainName
		@return ApiDomainsVerifyDomainRequest
	*/
	DomainsVerifyDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsVerifyDomainRequest

	// DomainsVerifyDomainExecute executes the request
	//  @return DomainsGetDomain200ResponseDomainVerificationStatus
	DomainsVerifyDomainExecute(r ApiDomainsVerifyDomainRequest) (*DomainsGetDomain200ResponseDomainVerificationStatus, *http.Response, error)
}

type DomainsAPIService

type DomainsAPIService service

DomainsAPIService DomainsAPI service

func (*DomainsAPIService) DomainsCreateDomain

func (a *DomainsAPIService) DomainsCreateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsCreateDomainRequest

DomainsCreateDomain createDomain

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

func (*DomainsAPIService) DomainsCreateDomainExecute

Execute executes the request

@return DomainsGetDomain200Response

func (*DomainsAPIService) DomainsDeleteDomain

func (a *DomainsAPIService) DomainsDeleteDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsDeleteDomainRequest

DomainsDeleteDomain deleteDomain

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

func (*DomainsAPIService) DomainsDeleteDomainExecute

func (a *DomainsAPIService) DomainsDeleteDomainExecute(r ApiDomainsDeleteDomainRequest) (*http.Response, error)

Execute executes the request

func (*DomainsAPIService) DomainsGetDomain

func (a *DomainsAPIService) DomainsGetDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsGetDomainRequest

DomainsGetDomain getDomain

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

func (*DomainsAPIService) DomainsGetDomainExecute

Execute executes the request

@return DomainsGetDomain200Response

func (*DomainsAPIService) DomainsListDomains

func (a *DomainsAPIService) DomainsListDomains(ctx context.Context, teamId float32) ApiDomainsListDomainsRequest

DomainsListDomains listDomains

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

func (*DomainsAPIService) DomainsListDomainsExecute

Execute executes the request

@return []DomainsGetDomain200Response

func (*DomainsAPIService) DomainsUpdateDomain

func (a *DomainsAPIService) DomainsUpdateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateDomainRequest

DomainsUpdateDomain updateDomain

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

func (*DomainsAPIService) DomainsUpdateDomainExecute

Execute executes the request

@return DomainsGetDomain200Response

func (*DomainsAPIService) DomainsUpdateWorkspaceConnections

func (a *DomainsAPIService) DomainsUpdateWorkspaceConnections(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateWorkspaceConnectionsRequest

DomainsUpdateWorkspaceConnections updateWorkspaceConnections

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

func (*DomainsAPIService) DomainsUpdateWorkspaceConnectionsExecute

Execute executes the request

@return DomainsGetDomain200Response

func (*DomainsAPIService) DomainsVerifyDomain

func (a *DomainsAPIService) DomainsVerifyDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsVerifyDomainRequest

DomainsVerifyDomain verifyDomain

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

func (*DomainsAPIService) DomainsVerifyDomainExecute

Execute executes the request

@return DomainsGetDomain200ResponseDomainVerificationStatus

type DomainsGetDomain200Response

type DomainsGetDomain200Response struct {
	TeamId                   int                                                 `json:"teamId"`
	DataCenterId             int                                                 `json:"dataCenterId"`
	Workspaces               map[string][]int                                    `json:"workspaces"`
	Name                     string                                              `json:"name"`
	CertificateRequestStatus DomainsGetDomain200ResponseCertificateRequestStatus `json:"certificateRequestStatus"`
	DnsEntries               DomainsGetDomain200ResponseDnsEntries               `json:"dnsEntries"`
	DomainVerificationStatus DomainsGetDomain200ResponseDomainVerificationStatus `json:"domainVerificationStatus"`
	CustomConfigRevision     *int                                                `json:"customConfigRevision,omitempty"`
	CustomConfig             *DomainsGetDomain200ResponseCustomConfig            `json:"customConfig,omitempty"`
}

DomainsGetDomain200Response struct for DomainsGetDomain200Response

func NewDomainsGetDomain200Response

func NewDomainsGetDomain200Response(teamId int, dataCenterId int, workspaces map[string][]int, name string, certificateRequestStatus DomainsGetDomain200ResponseCertificateRequestStatus, dnsEntries DomainsGetDomain200ResponseDnsEntries, domainVerificationStatus DomainsGetDomain200ResponseDomainVerificationStatus) *DomainsGetDomain200Response

NewDomainsGetDomain200Response instantiates a new DomainsGetDomain200Response 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 NewDomainsGetDomain200ResponseWithDefaults

func NewDomainsGetDomain200ResponseWithDefaults() *DomainsGetDomain200Response

NewDomainsGetDomain200ResponseWithDefaults instantiates a new DomainsGetDomain200Response 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 (*DomainsGetDomain200Response) GetCertificateRequestStatus

GetCertificateRequestStatus returns the CertificateRequestStatus field value

func (*DomainsGetDomain200Response) GetCertificateRequestStatusOk

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

func (*DomainsGetDomain200Response) GetCustomConfig

GetCustomConfig returns the CustomConfig field value if set, zero value otherwise.

func (*DomainsGetDomain200Response) GetCustomConfigOk

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

func (*DomainsGetDomain200Response) GetCustomConfigRevision

func (o *DomainsGetDomain200Response) GetCustomConfigRevision() int

GetCustomConfigRevision returns the CustomConfigRevision field value if set, zero value otherwise.

func (*DomainsGetDomain200Response) GetCustomConfigRevisionOk

func (o *DomainsGetDomain200Response) GetCustomConfigRevisionOk() (*int, bool)

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

func (*DomainsGetDomain200Response) GetDataCenterId

func (o *DomainsGetDomain200Response) GetDataCenterId() int

GetDataCenterId returns the DataCenterId field value

func (*DomainsGetDomain200Response) GetDataCenterIdOk

func (o *DomainsGetDomain200Response) GetDataCenterIdOk() (*int, bool)

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

func (*DomainsGetDomain200Response) GetDnsEntries

GetDnsEntries returns the DnsEntries field value

func (*DomainsGetDomain200Response) GetDnsEntriesOk

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

func (*DomainsGetDomain200Response) GetDomainVerificationStatus

GetDomainVerificationStatus returns the DomainVerificationStatus field value

func (*DomainsGetDomain200Response) GetDomainVerificationStatusOk

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

func (*DomainsGetDomain200Response) GetName

func (o *DomainsGetDomain200Response) GetName() string

GetName returns the Name field value

func (*DomainsGetDomain200Response) GetNameOk

func (o *DomainsGetDomain200Response) GetNameOk() (*string, bool)

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

func (*DomainsGetDomain200Response) GetTeamId

func (o *DomainsGetDomain200Response) GetTeamId() int

GetTeamId returns the TeamId field value

func (*DomainsGetDomain200Response) GetTeamIdOk

func (o *DomainsGetDomain200Response) GetTeamIdOk() (*int, bool)

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

func (*DomainsGetDomain200Response) GetWorkspaces

func (o *DomainsGetDomain200Response) GetWorkspaces() map[string][]int

GetWorkspaces returns the Workspaces field value

func (*DomainsGetDomain200Response) GetWorkspacesOk

func (o *DomainsGetDomain200Response) GetWorkspacesOk() (*map[string][]int, bool)

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

func (*DomainsGetDomain200Response) HasCustomConfig

func (o *DomainsGetDomain200Response) HasCustomConfig() bool

HasCustomConfig returns a boolean if a field has been set.

func (*DomainsGetDomain200Response) HasCustomConfigRevision

func (o *DomainsGetDomain200Response) HasCustomConfigRevision() bool

HasCustomConfigRevision returns a boolean if a field has been set.

func (DomainsGetDomain200Response) MarshalJSON

func (o DomainsGetDomain200Response) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain200Response) SetCertificateRequestStatus

SetCertificateRequestStatus sets field value

func (*DomainsGetDomain200Response) SetCustomConfig

SetCustomConfig gets a reference to the given DomainsGetDomain200ResponseCustomConfig and assigns it to the CustomConfig field.

func (*DomainsGetDomain200Response) SetCustomConfigRevision

func (o *DomainsGetDomain200Response) SetCustomConfigRevision(v int)

SetCustomConfigRevision gets a reference to the given int and assigns it to the CustomConfigRevision field.

func (*DomainsGetDomain200Response) SetDataCenterId

func (o *DomainsGetDomain200Response) SetDataCenterId(v int)

SetDataCenterId sets field value

func (*DomainsGetDomain200Response) SetDnsEntries

SetDnsEntries sets field value

func (*DomainsGetDomain200Response) SetDomainVerificationStatus

SetDomainVerificationStatus sets field value

func (*DomainsGetDomain200Response) SetName

func (o *DomainsGetDomain200Response) SetName(v string)

SetName sets field value

func (*DomainsGetDomain200Response) SetTeamId

func (o *DomainsGetDomain200Response) SetTeamId(v int)

SetTeamId sets field value

func (*DomainsGetDomain200Response) SetWorkspaces

func (o *DomainsGetDomain200Response) SetWorkspaces(v map[string][]int)

SetWorkspaces sets field value

func (DomainsGetDomain200Response) ToMap

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

func (*DomainsGetDomain200Response) UnmarshalJSON

func (o *DomainsGetDomain200Response) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain200ResponseCertificateRequestStatus

type DomainsGetDomain200ResponseCertificateRequestStatus struct {
	Issued bool           `json:"issued"`
	Reason NullableString `json:"reason"`
}

DomainsGetDomain200ResponseCertificateRequestStatus struct for DomainsGetDomain200ResponseCertificateRequestStatus

func NewDomainsGetDomain200ResponseCertificateRequestStatus

func NewDomainsGetDomain200ResponseCertificateRequestStatus(issued bool, reason NullableString) *DomainsGetDomain200ResponseCertificateRequestStatus

NewDomainsGetDomain200ResponseCertificateRequestStatus instantiates a new DomainsGetDomain200ResponseCertificateRequestStatus 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 NewDomainsGetDomain200ResponseCertificateRequestStatusWithDefaults

func NewDomainsGetDomain200ResponseCertificateRequestStatusWithDefaults() *DomainsGetDomain200ResponseCertificateRequestStatus

NewDomainsGetDomain200ResponseCertificateRequestStatusWithDefaults instantiates a new DomainsGetDomain200ResponseCertificateRequestStatus 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 (*DomainsGetDomain200ResponseCertificateRequestStatus) GetIssued

GetIssued returns the Issued field value

func (*DomainsGetDomain200ResponseCertificateRequestStatus) GetIssuedOk

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

func (*DomainsGetDomain200ResponseCertificateRequestStatus) GetReason

GetReason returns the Reason field value If the value is explicit nil, the zero value for string will be returned

func (*DomainsGetDomain200ResponseCertificateRequestStatus) GetReasonOk

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (DomainsGetDomain200ResponseCertificateRequestStatus) MarshalJSON

func (*DomainsGetDomain200ResponseCertificateRequestStatus) SetIssued

SetIssued sets field value

func (*DomainsGetDomain200ResponseCertificateRequestStatus) SetReason

SetReason sets field value

func (DomainsGetDomain200ResponseCertificateRequestStatus) ToMap

func (*DomainsGetDomain200ResponseCertificateRequestStatus) UnmarshalJSON

func (o *DomainsGetDomain200ResponseCertificateRequestStatus) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain200ResponseCustomConfig

type DomainsGetDomain200ResponseCustomConfig struct {
	MaxBodySizeMb         *float32 `json:"maxBodySizeMb,omitempty"`
	MaxConnectionTimeoutS *float32 `json:"maxConnectionTimeoutS,omitempty"`
	UseRegex              *bool    `json:"useRegex,omitempty"`
	Restricted            *bool    `json:"restricted,omitempty"`
}

DomainsGetDomain200ResponseCustomConfig struct for DomainsGetDomain200ResponseCustomConfig

func NewDomainsGetDomain200ResponseCustomConfig

func NewDomainsGetDomain200ResponseCustomConfig() *DomainsGetDomain200ResponseCustomConfig

NewDomainsGetDomain200ResponseCustomConfig instantiates a new DomainsGetDomain200ResponseCustomConfig 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 NewDomainsGetDomain200ResponseCustomConfigWithDefaults

func NewDomainsGetDomain200ResponseCustomConfigWithDefaults() *DomainsGetDomain200ResponseCustomConfig

NewDomainsGetDomain200ResponseCustomConfigWithDefaults instantiates a new DomainsGetDomain200ResponseCustomConfig 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 (*DomainsGetDomain200ResponseCustomConfig) GetMaxBodySizeMb

func (o *DomainsGetDomain200ResponseCustomConfig) GetMaxBodySizeMb() float32

GetMaxBodySizeMb returns the MaxBodySizeMb field value if set, zero value otherwise.

func (*DomainsGetDomain200ResponseCustomConfig) GetMaxBodySizeMbOk

func (o *DomainsGetDomain200ResponseCustomConfig) GetMaxBodySizeMbOk() (*float32, bool)

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

func (*DomainsGetDomain200ResponseCustomConfig) GetMaxConnectionTimeoutS

func (o *DomainsGetDomain200ResponseCustomConfig) GetMaxConnectionTimeoutS() float32

GetMaxConnectionTimeoutS returns the MaxConnectionTimeoutS field value if set, zero value otherwise.

func (*DomainsGetDomain200ResponseCustomConfig) GetMaxConnectionTimeoutSOk

func (o *DomainsGetDomain200ResponseCustomConfig) GetMaxConnectionTimeoutSOk() (*float32, bool)

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

func (*DomainsGetDomain200ResponseCustomConfig) GetRestricted

func (o *DomainsGetDomain200ResponseCustomConfig) GetRestricted() bool

GetRestricted returns the Restricted field value if set, zero value otherwise.

func (*DomainsGetDomain200ResponseCustomConfig) GetRestrictedOk

func (o *DomainsGetDomain200ResponseCustomConfig) GetRestrictedOk() (*bool, bool)

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

func (*DomainsGetDomain200ResponseCustomConfig) GetUseRegex

GetUseRegex returns the UseRegex field value if set, zero value otherwise.

func (*DomainsGetDomain200ResponseCustomConfig) GetUseRegexOk

func (o *DomainsGetDomain200ResponseCustomConfig) GetUseRegexOk() (*bool, bool)

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

func (*DomainsGetDomain200ResponseCustomConfig) HasMaxBodySizeMb

func (o *DomainsGetDomain200ResponseCustomConfig) HasMaxBodySizeMb() bool

HasMaxBodySizeMb returns a boolean if a field has been set.

func (*DomainsGetDomain200ResponseCustomConfig) HasMaxConnectionTimeoutS

func (o *DomainsGetDomain200ResponseCustomConfig) HasMaxConnectionTimeoutS() bool

HasMaxConnectionTimeoutS returns a boolean if a field has been set.

func (*DomainsGetDomain200ResponseCustomConfig) HasRestricted

func (o *DomainsGetDomain200ResponseCustomConfig) HasRestricted() bool

HasRestricted returns a boolean if a field has been set.

func (*DomainsGetDomain200ResponseCustomConfig) HasUseRegex

HasUseRegex returns a boolean if a field has been set.

func (DomainsGetDomain200ResponseCustomConfig) MarshalJSON

func (o DomainsGetDomain200ResponseCustomConfig) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain200ResponseCustomConfig) SetMaxBodySizeMb

func (o *DomainsGetDomain200ResponseCustomConfig) SetMaxBodySizeMb(v float32)

SetMaxBodySizeMb gets a reference to the given float32 and assigns it to the MaxBodySizeMb field.

func (*DomainsGetDomain200ResponseCustomConfig) SetMaxConnectionTimeoutS

func (o *DomainsGetDomain200ResponseCustomConfig) SetMaxConnectionTimeoutS(v float32)

SetMaxConnectionTimeoutS gets a reference to the given float32 and assigns it to the MaxConnectionTimeoutS field.

func (*DomainsGetDomain200ResponseCustomConfig) SetRestricted

func (o *DomainsGetDomain200ResponseCustomConfig) SetRestricted(v bool)

SetRestricted gets a reference to the given bool and assigns it to the Restricted field.

func (*DomainsGetDomain200ResponseCustomConfig) SetUseRegex

SetUseRegex gets a reference to the given bool and assigns it to the UseRegex field.

func (DomainsGetDomain200ResponseCustomConfig) ToMap

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

type DomainsGetDomain200ResponseDnsEntries

type DomainsGetDomain200ResponseDnsEntries struct {
	A     string `json:"a"`
	Cname string `json:"cname"`
	Txt   string `json:"txt"`
}

DomainsGetDomain200ResponseDnsEntries struct for DomainsGetDomain200ResponseDnsEntries

func NewDomainsGetDomain200ResponseDnsEntries

func NewDomainsGetDomain200ResponseDnsEntries(a string, cname string, txt string) *DomainsGetDomain200ResponseDnsEntries

NewDomainsGetDomain200ResponseDnsEntries instantiates a new DomainsGetDomain200ResponseDnsEntries 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 NewDomainsGetDomain200ResponseDnsEntriesWithDefaults

func NewDomainsGetDomain200ResponseDnsEntriesWithDefaults() *DomainsGetDomain200ResponseDnsEntries

NewDomainsGetDomain200ResponseDnsEntriesWithDefaults instantiates a new DomainsGetDomain200ResponseDnsEntries 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 (*DomainsGetDomain200ResponseDnsEntries) GetA

GetA returns the A field value

func (*DomainsGetDomain200ResponseDnsEntries) GetAOk

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

func (*DomainsGetDomain200ResponseDnsEntries) GetCname

GetCname returns the Cname field value

func (*DomainsGetDomain200ResponseDnsEntries) GetCnameOk

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

func (*DomainsGetDomain200ResponseDnsEntries) GetTxt

GetTxt returns the Txt field value

func (*DomainsGetDomain200ResponseDnsEntries) GetTxtOk

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

func (DomainsGetDomain200ResponseDnsEntries) MarshalJSON

func (o DomainsGetDomain200ResponseDnsEntries) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain200ResponseDnsEntries) SetA

SetA sets field value

func (*DomainsGetDomain200ResponseDnsEntries) SetCname

SetCname sets field value

func (*DomainsGetDomain200ResponseDnsEntries) SetTxt

SetTxt sets field value

func (DomainsGetDomain200ResponseDnsEntries) ToMap

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

func (*DomainsGetDomain200ResponseDnsEntries) UnmarshalJSON

func (o *DomainsGetDomain200ResponseDnsEntries) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain200ResponseDomainVerificationStatus

type DomainsGetDomain200ResponseDomainVerificationStatus struct {
	Verified bool           `json:"verified"`
	Reason   NullableString `json:"reason"`
}

DomainsGetDomain200ResponseDomainVerificationStatus struct for DomainsGetDomain200ResponseDomainVerificationStatus

func NewDomainsGetDomain200ResponseDomainVerificationStatus

func NewDomainsGetDomain200ResponseDomainVerificationStatus(verified bool, reason NullableString) *DomainsGetDomain200ResponseDomainVerificationStatus

NewDomainsGetDomain200ResponseDomainVerificationStatus instantiates a new DomainsGetDomain200ResponseDomainVerificationStatus 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 NewDomainsGetDomain200ResponseDomainVerificationStatusWithDefaults

func NewDomainsGetDomain200ResponseDomainVerificationStatusWithDefaults() *DomainsGetDomain200ResponseDomainVerificationStatus

NewDomainsGetDomain200ResponseDomainVerificationStatusWithDefaults instantiates a new DomainsGetDomain200ResponseDomainVerificationStatus 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 (*DomainsGetDomain200ResponseDomainVerificationStatus) GetReason

GetReason returns the Reason field value If the value is explicit nil, the zero value for string will be returned

func (*DomainsGetDomain200ResponseDomainVerificationStatus) GetReasonOk

GetReasonOk returns a tuple with the Reason field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DomainsGetDomain200ResponseDomainVerificationStatus) GetVerified

GetVerified returns the Verified field value

func (*DomainsGetDomain200ResponseDomainVerificationStatus) GetVerifiedOk

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

func (DomainsGetDomain200ResponseDomainVerificationStatus) MarshalJSON

func (*DomainsGetDomain200ResponseDomainVerificationStatus) SetReason

SetReason sets field value

func (*DomainsGetDomain200ResponseDomainVerificationStatus) SetVerified

SetVerified sets field value

func (DomainsGetDomain200ResponseDomainVerificationStatus) ToMap

func (*DomainsGetDomain200ResponseDomainVerificationStatus) UnmarshalJSON

func (o *DomainsGetDomain200ResponseDomainVerificationStatus) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain400Response

type DomainsGetDomain400Response struct {
	Status  int     `json:"status"`
	Title   string  `json:"title"`
	Detail  *string `json:"detail,omitempty"`
	TraceId string  `json:"traceId"`
}

DomainsGetDomain400Response struct for DomainsGetDomain400Response

func NewDomainsGetDomain400Response

func NewDomainsGetDomain400Response(status int, title string, traceId string) *DomainsGetDomain400Response

NewDomainsGetDomain400Response instantiates a new DomainsGetDomain400Response 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 NewDomainsGetDomain400ResponseWithDefaults

func NewDomainsGetDomain400ResponseWithDefaults() *DomainsGetDomain400Response

NewDomainsGetDomain400ResponseWithDefaults instantiates a new DomainsGetDomain400Response 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 (*DomainsGetDomain400Response) GetDetail

func (o *DomainsGetDomain400Response) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*DomainsGetDomain400Response) GetDetailOk

func (o *DomainsGetDomain400Response) GetDetailOk() (*string, bool)

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

func (*DomainsGetDomain400Response) GetStatus

func (o *DomainsGetDomain400Response) GetStatus() int

GetStatus returns the Status field value

func (*DomainsGetDomain400Response) GetStatusOk

func (o *DomainsGetDomain400Response) GetStatusOk() (*int, bool)

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

func (*DomainsGetDomain400Response) GetTitle

func (o *DomainsGetDomain400Response) GetTitle() string

GetTitle returns the Title field value

func (*DomainsGetDomain400Response) GetTitleOk

func (o *DomainsGetDomain400Response) GetTitleOk() (*string, bool)

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

func (*DomainsGetDomain400Response) GetTraceId

func (o *DomainsGetDomain400Response) GetTraceId() string

GetTraceId returns the TraceId field value

func (*DomainsGetDomain400Response) GetTraceIdOk

func (o *DomainsGetDomain400Response) GetTraceIdOk() (*string, bool)

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

func (*DomainsGetDomain400Response) HasDetail

func (o *DomainsGetDomain400Response) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (DomainsGetDomain400Response) MarshalJSON

func (o DomainsGetDomain400Response) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain400Response) SetDetail

func (o *DomainsGetDomain400Response) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*DomainsGetDomain400Response) SetStatus

func (o *DomainsGetDomain400Response) SetStatus(v int)

SetStatus sets field value

func (*DomainsGetDomain400Response) SetTitle

func (o *DomainsGetDomain400Response) SetTitle(v string)

SetTitle sets field value

func (*DomainsGetDomain400Response) SetTraceId

func (o *DomainsGetDomain400Response) SetTraceId(v string)

SetTraceId sets field value

func (DomainsGetDomain400Response) ToMap

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

func (*DomainsGetDomain400Response) UnmarshalJSON

func (o *DomainsGetDomain400Response) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain401Response

type DomainsGetDomain401Response struct {
	Status  int     `json:"status"`
	Title   string  `json:"title"`
	Detail  *string `json:"detail,omitempty"`
	TraceId string  `json:"traceId"`
}

DomainsGetDomain401Response struct for DomainsGetDomain401Response

func NewDomainsGetDomain401Response

func NewDomainsGetDomain401Response(status int, title string, traceId string) *DomainsGetDomain401Response

NewDomainsGetDomain401Response instantiates a new DomainsGetDomain401Response 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 NewDomainsGetDomain401ResponseWithDefaults

func NewDomainsGetDomain401ResponseWithDefaults() *DomainsGetDomain401Response

NewDomainsGetDomain401ResponseWithDefaults instantiates a new DomainsGetDomain401Response 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 (*DomainsGetDomain401Response) GetDetail

func (o *DomainsGetDomain401Response) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*DomainsGetDomain401Response) GetDetailOk

func (o *DomainsGetDomain401Response) GetDetailOk() (*string, bool)

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

func (*DomainsGetDomain401Response) GetStatus

func (o *DomainsGetDomain401Response) GetStatus() int

GetStatus returns the Status field value

func (*DomainsGetDomain401Response) GetStatusOk

func (o *DomainsGetDomain401Response) GetStatusOk() (*int, bool)

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

func (*DomainsGetDomain401Response) GetTitle

func (o *DomainsGetDomain401Response) GetTitle() string

GetTitle returns the Title field value

func (*DomainsGetDomain401Response) GetTitleOk

func (o *DomainsGetDomain401Response) GetTitleOk() (*string, bool)

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

func (*DomainsGetDomain401Response) GetTraceId

func (o *DomainsGetDomain401Response) GetTraceId() string

GetTraceId returns the TraceId field value

func (*DomainsGetDomain401Response) GetTraceIdOk

func (o *DomainsGetDomain401Response) GetTraceIdOk() (*string, bool)

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

func (*DomainsGetDomain401Response) HasDetail

func (o *DomainsGetDomain401Response) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (DomainsGetDomain401Response) MarshalJSON

func (o DomainsGetDomain401Response) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain401Response) SetDetail

func (o *DomainsGetDomain401Response) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*DomainsGetDomain401Response) SetStatus

func (o *DomainsGetDomain401Response) SetStatus(v int)

SetStatus sets field value

func (*DomainsGetDomain401Response) SetTitle

func (o *DomainsGetDomain401Response) SetTitle(v string)

SetTitle sets field value

func (*DomainsGetDomain401Response) SetTraceId

func (o *DomainsGetDomain401Response) SetTraceId(v string)

SetTraceId sets field value

func (DomainsGetDomain401Response) ToMap

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

func (*DomainsGetDomain401Response) UnmarshalJSON

func (o *DomainsGetDomain401Response) UnmarshalJSON(data []byte) (err error)

type DomainsGetDomain404Response

type DomainsGetDomain404Response struct {
	Status  int     `json:"status"`
	Title   string  `json:"title"`
	Detail  *string `json:"detail,omitempty"`
	TraceId string  `json:"traceId"`
}

DomainsGetDomain404Response struct for DomainsGetDomain404Response

func NewDomainsGetDomain404Response

func NewDomainsGetDomain404Response(status int, title string, traceId string) *DomainsGetDomain404Response

NewDomainsGetDomain404Response instantiates a new DomainsGetDomain404Response 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 NewDomainsGetDomain404ResponseWithDefaults

func NewDomainsGetDomain404ResponseWithDefaults() *DomainsGetDomain404Response

NewDomainsGetDomain404ResponseWithDefaults instantiates a new DomainsGetDomain404Response 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 (*DomainsGetDomain404Response) GetDetail

func (o *DomainsGetDomain404Response) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*DomainsGetDomain404Response) GetDetailOk

func (o *DomainsGetDomain404Response) GetDetailOk() (*string, bool)

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

func (*DomainsGetDomain404Response) GetStatus

func (o *DomainsGetDomain404Response) GetStatus() int

GetStatus returns the Status field value

func (*DomainsGetDomain404Response) GetStatusOk

func (o *DomainsGetDomain404Response) GetStatusOk() (*int, bool)

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

func (*DomainsGetDomain404Response) GetTitle

func (o *DomainsGetDomain404Response) GetTitle() string

GetTitle returns the Title field value

func (*DomainsGetDomain404Response) GetTitleOk

func (o *DomainsGetDomain404Response) GetTitleOk() (*string, bool)

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

func (*DomainsGetDomain404Response) GetTraceId

func (o *DomainsGetDomain404Response) GetTraceId() string

GetTraceId returns the TraceId field value

func (*DomainsGetDomain404Response) GetTraceIdOk

func (o *DomainsGetDomain404Response) GetTraceIdOk() (*string, bool)

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

func (*DomainsGetDomain404Response) HasDetail

func (o *DomainsGetDomain404Response) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (DomainsGetDomain404Response) MarshalJSON

func (o DomainsGetDomain404Response) MarshalJSON() ([]byte, error)

func (*DomainsGetDomain404Response) SetDetail

func (o *DomainsGetDomain404Response) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*DomainsGetDomain404Response) SetStatus

func (o *DomainsGetDomain404Response) SetStatus(v int)

SetStatus sets field value

func (*DomainsGetDomain404Response) SetTitle

func (o *DomainsGetDomain404Response) SetTitle(v string)

SetTitle sets field value

func (*DomainsGetDomain404Response) SetTraceId

func (o *DomainsGetDomain404Response) SetTraceId(v string)

SetTraceId sets field value

func (DomainsGetDomain404Response) ToMap

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

func (*DomainsGetDomain404Response) UnmarshalJSON

func (o *DomainsGetDomain404Response) UnmarshalJSON(data []byte) (err error)

type DomainsUpdateDomain409Response

type DomainsUpdateDomain409Response struct {
	Status  int     `json:"status"`
	Title   string  `json:"title"`
	Detail  *string `json:"detail,omitempty"`
	TraceId string  `json:"traceId"`
}

DomainsUpdateDomain409Response struct for DomainsUpdateDomain409Response

func NewDomainsUpdateDomain409Response

func NewDomainsUpdateDomain409Response(status int, title string, traceId string) *DomainsUpdateDomain409Response

NewDomainsUpdateDomain409Response instantiates a new DomainsUpdateDomain409Response 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 NewDomainsUpdateDomain409ResponseWithDefaults

func NewDomainsUpdateDomain409ResponseWithDefaults() *DomainsUpdateDomain409Response

NewDomainsUpdateDomain409ResponseWithDefaults instantiates a new DomainsUpdateDomain409Response 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 (*DomainsUpdateDomain409Response) GetDetail

func (o *DomainsUpdateDomain409Response) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*DomainsUpdateDomain409Response) GetDetailOk

func (o *DomainsUpdateDomain409Response) GetDetailOk() (*string, bool)

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

func (*DomainsUpdateDomain409Response) GetStatus

func (o *DomainsUpdateDomain409Response) GetStatus() int

GetStatus returns the Status field value

func (*DomainsUpdateDomain409Response) GetStatusOk

func (o *DomainsUpdateDomain409Response) GetStatusOk() (*int, bool)

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

func (*DomainsUpdateDomain409Response) GetTitle

func (o *DomainsUpdateDomain409Response) GetTitle() string

GetTitle returns the Title field value

func (*DomainsUpdateDomain409Response) GetTitleOk

func (o *DomainsUpdateDomain409Response) GetTitleOk() (*string, bool)

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

func (*DomainsUpdateDomain409Response) GetTraceId

func (o *DomainsUpdateDomain409Response) GetTraceId() string

GetTraceId returns the TraceId field value

func (*DomainsUpdateDomain409Response) GetTraceIdOk

func (o *DomainsUpdateDomain409Response) GetTraceIdOk() (*string, bool)

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

func (*DomainsUpdateDomain409Response) HasDetail

func (o *DomainsUpdateDomain409Response) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (DomainsUpdateDomain409Response) MarshalJSON

func (o DomainsUpdateDomain409Response) MarshalJSON() ([]byte, error)

func (*DomainsUpdateDomain409Response) SetDetail

func (o *DomainsUpdateDomain409Response) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*DomainsUpdateDomain409Response) SetStatus

func (o *DomainsUpdateDomain409Response) SetStatus(v int)

SetStatus sets field value

func (*DomainsUpdateDomain409Response) SetTitle

func (o *DomainsUpdateDomain409Response) SetTitle(v string)

SetTitle sets field value

func (*DomainsUpdateDomain409Response) SetTraceId

func (o *DomainsUpdateDomain409Response) SetTraceId(v string)

SetTraceId sets field value

func (DomainsUpdateDomain409Response) ToMap

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

func (*DomainsUpdateDomain409Response) UnmarshalJSON

func (o *DomainsUpdateDomain409Response) UnmarshalJSON(data []byte) (err error)

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type MappedNullable

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

type MetadataAPI

type MetadataAPI interface {

	/*
		MetadataGetDatacenters getDatacenters

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

	// MetadataGetDatacentersExecute executes the request
	//  @return []MetadataGetDatacenters200ResponseInner
	MetadataGetDatacentersExecute(r ApiMetadataGetDatacentersRequest) ([]MetadataGetDatacenters200ResponseInner, *http.Response, error)

	/*
		MetadataGetWorkspacePlans getWorkspacePlans

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

	// MetadataGetWorkspacePlansExecute executes the request
	//  @return []MetadataGetWorkspacePlans200ResponseInner
	MetadataGetWorkspacePlansExecute(r ApiMetadataGetWorkspacePlansRequest) ([]MetadataGetWorkspacePlans200ResponseInner, *http.Response, error)
}

type MetadataAPIService

type MetadataAPIService service

MetadataAPIService MetadataAPI service

func (*MetadataAPIService) MetadataGetDatacenters

func (a *MetadataAPIService) MetadataGetDatacenters(ctx context.Context) ApiMetadataGetDatacentersRequest

MetadataGetDatacenters getDatacenters

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

func (*MetadataAPIService) MetadataGetDatacentersExecute

Execute executes the request

@return []MetadataGetDatacenters200ResponseInner

func (*MetadataAPIService) MetadataGetWorkspacePlans

func (a *MetadataAPIService) MetadataGetWorkspacePlans(ctx context.Context) ApiMetadataGetWorkspacePlansRequest

MetadataGetWorkspacePlans getWorkspacePlans

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

func (*MetadataAPIService) MetadataGetWorkspacePlansExecute

Execute executes the request

@return []MetadataGetWorkspacePlans200ResponseInner

type MetadataGetDatacenters200ResponseInner

type MetadataGetDatacenters200ResponseInner struct {
	Id          int    `json:"id"`
	Name        string `json:"name"`
	City        string `json:"city"`
	CountryCode string `json:"countryCode"`
}

MetadataGetDatacenters200ResponseInner struct for MetadataGetDatacenters200ResponseInner

func NewMetadataGetDatacenters200ResponseInner

func NewMetadataGetDatacenters200ResponseInner(id int, name string, city string, countryCode string) *MetadataGetDatacenters200ResponseInner

NewMetadataGetDatacenters200ResponseInner instantiates a new MetadataGetDatacenters200ResponseInner 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 NewMetadataGetDatacenters200ResponseInnerWithDefaults

func NewMetadataGetDatacenters200ResponseInnerWithDefaults() *MetadataGetDatacenters200ResponseInner

NewMetadataGetDatacenters200ResponseInnerWithDefaults instantiates a new MetadataGetDatacenters200ResponseInner 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 (*MetadataGetDatacenters200ResponseInner) GetCity

GetCity returns the City field value

func (*MetadataGetDatacenters200ResponseInner) GetCityOk

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

func (*MetadataGetDatacenters200ResponseInner) GetCountryCode

func (o *MetadataGetDatacenters200ResponseInner) GetCountryCode() string

GetCountryCode returns the CountryCode field value

func (*MetadataGetDatacenters200ResponseInner) GetCountryCodeOk

func (o *MetadataGetDatacenters200ResponseInner) GetCountryCodeOk() (*string, bool)

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

func (*MetadataGetDatacenters200ResponseInner) GetId

GetId returns the Id field value

func (*MetadataGetDatacenters200ResponseInner) GetIdOk

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

func (*MetadataGetDatacenters200ResponseInner) GetName

GetName returns the Name field value

func (*MetadataGetDatacenters200ResponseInner) GetNameOk

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

func (MetadataGetDatacenters200ResponseInner) MarshalJSON

func (o MetadataGetDatacenters200ResponseInner) MarshalJSON() ([]byte, error)

func (*MetadataGetDatacenters200ResponseInner) SetCity

SetCity sets field value

func (*MetadataGetDatacenters200ResponseInner) SetCountryCode

func (o *MetadataGetDatacenters200ResponseInner) SetCountryCode(v string)

SetCountryCode sets field value

func (*MetadataGetDatacenters200ResponseInner) SetId

SetId sets field value

func (*MetadataGetDatacenters200ResponseInner) SetName

SetName sets field value

func (MetadataGetDatacenters200ResponseInner) ToMap

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

func (*MetadataGetDatacenters200ResponseInner) UnmarshalJSON

func (o *MetadataGetDatacenters200ResponseInner) UnmarshalJSON(data []byte) (err error)

type MetadataGetWorkspacePlans200ResponseInner

type MetadataGetWorkspacePlans200ResponseInner struct {
	Id              int                                                      `json:"id"`
	PriceUsd        float32                                                  `json:"priceUsd"`
	Title           string                                                   `json:"title"`
	Deprecated      bool                                                     `json:"deprecated"`
	Characteristics MetadataGetWorkspacePlans200ResponseInnerCharacteristics `json:"characteristics"`
	MaxReplicas     int                                                      `json:"maxReplicas"`
}

MetadataGetWorkspacePlans200ResponseInner struct for MetadataGetWorkspacePlans200ResponseInner

func NewMetadataGetWorkspacePlans200ResponseInner

func NewMetadataGetWorkspacePlans200ResponseInner(id int, priceUsd float32, title string, deprecated bool, characteristics MetadataGetWorkspacePlans200ResponseInnerCharacteristics, maxReplicas int) *MetadataGetWorkspacePlans200ResponseInner

NewMetadataGetWorkspacePlans200ResponseInner instantiates a new MetadataGetWorkspacePlans200ResponseInner 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 NewMetadataGetWorkspacePlans200ResponseInnerWithDefaults

func NewMetadataGetWorkspacePlans200ResponseInnerWithDefaults() *MetadataGetWorkspacePlans200ResponseInner

NewMetadataGetWorkspacePlans200ResponseInnerWithDefaults instantiates a new MetadataGetWorkspacePlans200ResponseInner 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 (*MetadataGetWorkspacePlans200ResponseInner) GetCharacteristics

GetCharacteristics returns the Characteristics field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetCharacteristicsOk

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

func (*MetadataGetWorkspacePlans200ResponseInner) GetDeprecated

GetDeprecated returns the Deprecated field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetDeprecatedOk

func (o *MetadataGetWorkspacePlans200ResponseInner) GetDeprecatedOk() (*bool, bool)

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

func (*MetadataGetWorkspacePlans200ResponseInner) GetId

GetId returns the Id field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetIdOk

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

func (*MetadataGetWorkspacePlans200ResponseInner) GetMaxReplicas

func (o *MetadataGetWorkspacePlans200ResponseInner) GetMaxReplicas() int

GetMaxReplicas returns the MaxReplicas field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetMaxReplicasOk

func (o *MetadataGetWorkspacePlans200ResponseInner) GetMaxReplicasOk() (*int, bool)

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

func (*MetadataGetWorkspacePlans200ResponseInner) GetPriceUsd

GetPriceUsd returns the PriceUsd field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetPriceUsdOk

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

func (*MetadataGetWorkspacePlans200ResponseInner) GetTitle

GetTitle returns the Title field value

func (*MetadataGetWorkspacePlans200ResponseInner) GetTitleOk

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

func (MetadataGetWorkspacePlans200ResponseInner) MarshalJSON

func (*MetadataGetWorkspacePlans200ResponseInner) SetCharacteristics

SetCharacteristics sets field value

func (*MetadataGetWorkspacePlans200ResponseInner) SetDeprecated

func (o *MetadataGetWorkspacePlans200ResponseInner) SetDeprecated(v bool)

SetDeprecated sets field value

func (*MetadataGetWorkspacePlans200ResponseInner) SetId

SetId sets field value

func (*MetadataGetWorkspacePlans200ResponseInner) SetMaxReplicas

func (o *MetadataGetWorkspacePlans200ResponseInner) SetMaxReplicas(v int)

SetMaxReplicas sets field value

func (*MetadataGetWorkspacePlans200ResponseInner) SetPriceUsd

SetPriceUsd sets field value

func (*MetadataGetWorkspacePlans200ResponseInner) SetTitle

SetTitle sets field value

func (MetadataGetWorkspacePlans200ResponseInner) ToMap

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

func (*MetadataGetWorkspacePlans200ResponseInner) UnmarshalJSON

func (o *MetadataGetWorkspacePlans200ResponseInner) UnmarshalJSON(data []byte) (err error)

type MetadataGetWorkspacePlans200ResponseInnerCharacteristics

type MetadataGetWorkspacePlans200ResponseInnerCharacteristics struct {
	Id          int     `json:"id"`
	CPU         float32 `json:"CPU"`
	GPU         float32 `json:"GPU"`
	RAM         int     `json:"RAM"`
	SSD         int     `json:"SSD"`
	TempStorage int     `json:"TempStorage"`
	OnDemand    bool    `json:"onDemand"`
}

MetadataGetWorkspacePlans200ResponseInnerCharacteristics struct for MetadataGetWorkspacePlans200ResponseInnerCharacteristics

func NewMetadataGetWorkspacePlans200ResponseInnerCharacteristics

func NewMetadataGetWorkspacePlans200ResponseInnerCharacteristics(id int, cPU float32, gPU float32, rAM int, sSD int, tempStorage int, onDemand bool) *MetadataGetWorkspacePlans200ResponseInnerCharacteristics

NewMetadataGetWorkspacePlans200ResponseInnerCharacteristics instantiates a new MetadataGetWorkspacePlans200ResponseInnerCharacteristics 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 NewMetadataGetWorkspacePlans200ResponseInnerCharacteristicsWithDefaults

func NewMetadataGetWorkspacePlans200ResponseInnerCharacteristicsWithDefaults() *MetadataGetWorkspacePlans200ResponseInnerCharacteristics

NewMetadataGetWorkspacePlans200ResponseInnerCharacteristicsWithDefaults instantiates a new MetadataGetWorkspacePlans200ResponseInnerCharacteristics 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 (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetCPU

GetCPU returns the CPU field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetCPUOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetGPU

GetGPU returns the GPU field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetGPUOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetId

GetId returns the Id field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetIdOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetOnDemand

GetOnDemand returns the OnDemand field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetOnDemandOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetRAM

GetRAM returns the RAM field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetRAMOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetSSD

GetSSD returns the SSD field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetSSDOk

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

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetTempStorage

GetTempStorage returns the TempStorage field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) GetTempStorageOk

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

func (MetadataGetWorkspacePlans200ResponseInnerCharacteristics) MarshalJSON

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetCPU

SetCPU sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetGPU

SetGPU sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetId

SetId sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetOnDemand

SetOnDemand sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetRAM

SetRAM sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetSSD

SetSSD sets field value

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) SetTempStorage

SetTempStorage sets field value

func (MetadataGetWorkspacePlans200ResponseInnerCharacteristics) ToMap

func (*MetadataGetWorkspacePlans200ResponseInnerCharacteristics) UnmarshalJSON

type MockDomainsAPI

type MockDomainsAPI struct {
	mock.Mock
}

MockDomainsAPI is an autogenerated mock type for the DomainsAPI type

func NewMockDomainsAPI

func NewMockDomainsAPI(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockDomainsAPI

NewMockDomainsAPI creates a new instance of MockDomainsAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockDomainsAPI) DomainsCreateDomain

func (_mock *MockDomainsAPI) DomainsCreateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsCreateDomainRequest

DomainsCreateDomain provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsCreateDomainExecute

DomainsCreateDomainExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsDeleteDomain

func (_mock *MockDomainsAPI) DomainsDeleteDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsDeleteDomainRequest

DomainsDeleteDomain provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsDeleteDomainExecute

func (_mock *MockDomainsAPI) DomainsDeleteDomainExecute(r ApiDomainsDeleteDomainRequest) (*http.Response, error)

DomainsDeleteDomainExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsGetDomain

func (_mock *MockDomainsAPI) DomainsGetDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsGetDomainRequest

DomainsGetDomain provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsGetDomainExecute

DomainsGetDomainExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsListDomains

func (_mock *MockDomainsAPI) DomainsListDomains(ctx context.Context, teamId float32) ApiDomainsListDomainsRequest

DomainsListDomains provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsListDomainsExecute

DomainsListDomainsExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsUpdateDomain

func (_mock *MockDomainsAPI) DomainsUpdateDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateDomainRequest

DomainsUpdateDomain provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsUpdateDomainExecute

DomainsUpdateDomainExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsUpdateWorkspaceConnections

func (_mock *MockDomainsAPI) DomainsUpdateWorkspaceConnections(ctx context.Context, teamId float32, domainName string) ApiDomainsUpdateWorkspaceConnectionsRequest

DomainsUpdateWorkspaceConnections provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsUpdateWorkspaceConnectionsExecute

func (_mock *MockDomainsAPI) DomainsUpdateWorkspaceConnectionsExecute(r ApiDomainsUpdateWorkspaceConnectionsRequest) (*DomainsGetDomain200Response, *http.Response, error)

DomainsUpdateWorkspaceConnectionsExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsVerifyDomain

func (_mock *MockDomainsAPI) DomainsVerifyDomain(ctx context.Context, teamId float32, domainName string) ApiDomainsVerifyDomainRequest

DomainsVerifyDomain provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) DomainsVerifyDomainExecute

DomainsVerifyDomainExecute provides a mock function for the type MockDomainsAPI

func (*MockDomainsAPI) EXPECT

type MockDomainsAPI_DomainsCreateDomainExecute_Call

type MockDomainsAPI_DomainsCreateDomainExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsCreateDomainExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsCreateDomainExecute'

func (*MockDomainsAPI_DomainsCreateDomainExecute_Call) Return

func (*MockDomainsAPI_DomainsCreateDomainExecute_Call) Run

type MockDomainsAPI_DomainsCreateDomain_Call

type MockDomainsAPI_DomainsCreateDomain_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsCreateDomain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsCreateDomain'

func (*MockDomainsAPI_DomainsCreateDomain_Call) Return

func (*MockDomainsAPI_DomainsCreateDomain_Call) Run

func (*MockDomainsAPI_DomainsCreateDomain_Call) RunAndReturn

type MockDomainsAPI_DomainsDeleteDomainExecute_Call

type MockDomainsAPI_DomainsDeleteDomainExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsDeleteDomainExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsDeleteDomainExecute'

func (*MockDomainsAPI_DomainsDeleteDomainExecute_Call) Return

func (*MockDomainsAPI_DomainsDeleteDomainExecute_Call) Run

func (*MockDomainsAPI_DomainsDeleteDomainExecute_Call) RunAndReturn

type MockDomainsAPI_DomainsDeleteDomain_Call

type MockDomainsAPI_DomainsDeleteDomain_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsDeleteDomain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsDeleteDomain'

func (*MockDomainsAPI_DomainsDeleteDomain_Call) Return

func (*MockDomainsAPI_DomainsDeleteDomain_Call) Run

func (*MockDomainsAPI_DomainsDeleteDomain_Call) RunAndReturn

type MockDomainsAPI_DomainsGetDomainExecute_Call

type MockDomainsAPI_DomainsGetDomainExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsGetDomainExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsGetDomainExecute'

func (*MockDomainsAPI_DomainsGetDomainExecute_Call) Return

func (*MockDomainsAPI_DomainsGetDomainExecute_Call) Run

type MockDomainsAPI_DomainsGetDomain_Call

type MockDomainsAPI_DomainsGetDomain_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsGetDomain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsGetDomain'

func (*MockDomainsAPI_DomainsGetDomain_Call) Return

func (*MockDomainsAPI_DomainsGetDomain_Call) Run

func (*MockDomainsAPI_DomainsGetDomain_Call) RunAndReturn

type MockDomainsAPI_DomainsListDomainsExecute_Call

type MockDomainsAPI_DomainsListDomainsExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsListDomainsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsListDomainsExecute'

func (*MockDomainsAPI_DomainsListDomainsExecute_Call) Return

func (*MockDomainsAPI_DomainsListDomainsExecute_Call) Run

type MockDomainsAPI_DomainsListDomains_Call

type MockDomainsAPI_DomainsListDomains_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsListDomains_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsListDomains'

func (*MockDomainsAPI_DomainsListDomains_Call) Return

func (*MockDomainsAPI_DomainsListDomains_Call) Run

func (*MockDomainsAPI_DomainsListDomains_Call) RunAndReturn

type MockDomainsAPI_DomainsUpdateDomainExecute_Call

type MockDomainsAPI_DomainsUpdateDomainExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsUpdateDomainExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsUpdateDomainExecute'

func (*MockDomainsAPI_DomainsUpdateDomainExecute_Call) Return

func (*MockDomainsAPI_DomainsUpdateDomainExecute_Call) Run

type MockDomainsAPI_DomainsUpdateDomain_Call

type MockDomainsAPI_DomainsUpdateDomain_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsUpdateDomain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsUpdateDomain'

func (*MockDomainsAPI_DomainsUpdateDomain_Call) Return

func (*MockDomainsAPI_DomainsUpdateDomain_Call) Run

func (*MockDomainsAPI_DomainsUpdateDomain_Call) RunAndReturn

type MockDomainsAPI_DomainsUpdateWorkspaceConnectionsExecute_Call

type MockDomainsAPI_DomainsUpdateWorkspaceConnectionsExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsUpdateWorkspaceConnectionsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsUpdateWorkspaceConnectionsExecute'

func (*MockDomainsAPI_DomainsUpdateWorkspaceConnectionsExecute_Call) Return

type MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call

type MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsUpdateWorkspaceConnections'

func (*MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call) Return

func (*MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call) Run

func (*MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call) RunAndReturn

type MockDomainsAPI_DomainsVerifyDomainExecute_Call

type MockDomainsAPI_DomainsVerifyDomainExecute_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsVerifyDomainExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsVerifyDomainExecute'

func (*MockDomainsAPI_DomainsVerifyDomainExecute_Call) Return

func (*MockDomainsAPI_DomainsVerifyDomainExecute_Call) Run

type MockDomainsAPI_DomainsVerifyDomain_Call

type MockDomainsAPI_DomainsVerifyDomain_Call struct {
	*mock.Call
}

MockDomainsAPI_DomainsVerifyDomain_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'DomainsVerifyDomain'

func (*MockDomainsAPI_DomainsVerifyDomain_Call) Return

func (*MockDomainsAPI_DomainsVerifyDomain_Call) Run

func (*MockDomainsAPI_DomainsVerifyDomain_Call) RunAndReturn

type MockDomainsAPI_Expecter

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

func (*MockDomainsAPI_Expecter) DomainsCreateDomain

func (_e *MockDomainsAPI_Expecter) DomainsCreateDomain(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsCreateDomain_Call

DomainsCreateDomain is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsCreateDomainExecute

func (_e *MockDomainsAPI_Expecter) DomainsCreateDomainExecute(r interface{}) *MockDomainsAPI_DomainsCreateDomainExecute_Call

DomainsCreateDomainExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsDeleteDomain

func (_e *MockDomainsAPI_Expecter) DomainsDeleteDomain(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsDeleteDomain_Call

DomainsDeleteDomain is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsDeleteDomainExecute

func (_e *MockDomainsAPI_Expecter) DomainsDeleteDomainExecute(r interface{}) *MockDomainsAPI_DomainsDeleteDomainExecute_Call

DomainsDeleteDomainExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsGetDomain

func (_e *MockDomainsAPI_Expecter) DomainsGetDomain(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsGetDomain_Call

DomainsGetDomain is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsGetDomainExecute

func (_e *MockDomainsAPI_Expecter) DomainsGetDomainExecute(r interface{}) *MockDomainsAPI_DomainsGetDomainExecute_Call

DomainsGetDomainExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsListDomains

func (_e *MockDomainsAPI_Expecter) DomainsListDomains(ctx interface{}, teamId interface{}) *MockDomainsAPI_DomainsListDomains_Call

DomainsListDomains is a helper method to define mock.On call

  • ctx
  • teamId

func (*MockDomainsAPI_Expecter) DomainsListDomainsExecute

func (_e *MockDomainsAPI_Expecter) DomainsListDomainsExecute(r interface{}) *MockDomainsAPI_DomainsListDomainsExecute_Call

DomainsListDomainsExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsUpdateDomain

func (_e *MockDomainsAPI_Expecter) DomainsUpdateDomain(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsUpdateDomain_Call

DomainsUpdateDomain is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsUpdateDomainExecute

func (_e *MockDomainsAPI_Expecter) DomainsUpdateDomainExecute(r interface{}) *MockDomainsAPI_DomainsUpdateDomainExecute_Call

DomainsUpdateDomainExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsUpdateWorkspaceConnections

func (_e *MockDomainsAPI_Expecter) DomainsUpdateWorkspaceConnections(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsUpdateWorkspaceConnections_Call

DomainsUpdateWorkspaceConnections is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsUpdateWorkspaceConnectionsExecute

func (_e *MockDomainsAPI_Expecter) DomainsUpdateWorkspaceConnectionsExecute(r interface{}) *MockDomainsAPI_DomainsUpdateWorkspaceConnectionsExecute_Call

DomainsUpdateWorkspaceConnectionsExecute is a helper method to define mock.On call

  • r

func (*MockDomainsAPI_Expecter) DomainsVerifyDomain

func (_e *MockDomainsAPI_Expecter) DomainsVerifyDomain(ctx interface{}, teamId interface{}, domainName interface{}) *MockDomainsAPI_DomainsVerifyDomain_Call

DomainsVerifyDomain is a helper method to define mock.On call

  • ctx
  • teamId
  • domainName

func (*MockDomainsAPI_Expecter) DomainsVerifyDomainExecute

func (_e *MockDomainsAPI_Expecter) DomainsVerifyDomainExecute(r interface{}) *MockDomainsAPI_DomainsVerifyDomainExecute_Call

DomainsVerifyDomainExecute is a helper method to define mock.On call

  • r

type MockMappedNullable

type MockMappedNullable struct {
	mock.Mock
}

MockMappedNullable is an autogenerated mock type for the MappedNullable type

func NewMockMappedNullable

func NewMockMappedNullable(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockMappedNullable

NewMockMappedNullable creates a new instance of MockMappedNullable. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockMappedNullable) EXPECT

func (*MockMappedNullable) ToMap

func (_mock *MockMappedNullable) ToMap() (map[string]interface{}, error)

ToMap provides a mock function for the type MockMappedNullable

type MockMappedNullable_Expecter

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

func (*MockMappedNullable_Expecter) ToMap

ToMap is a helper method to define mock.On call

type MockMappedNullable_ToMap_Call

type MockMappedNullable_ToMap_Call struct {
	*mock.Call
}

MockMappedNullable_ToMap_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ToMap'

func (*MockMappedNullable_ToMap_Call) Return

func (_c *MockMappedNullable_ToMap_Call) Return(stringToIfaceVal map[string]interface{}, err error) *MockMappedNullable_ToMap_Call

func (*MockMappedNullable_ToMap_Call) Run

func (*MockMappedNullable_ToMap_Call) RunAndReturn

func (_c *MockMappedNullable_ToMap_Call) RunAndReturn(run func() (map[string]interface{}, error)) *MockMappedNullable_ToMap_Call

type MockMetadataAPI

type MockMetadataAPI struct {
	mock.Mock
}

MockMetadataAPI is an autogenerated mock type for the MetadataAPI type

func NewMockMetadataAPI

func NewMockMetadataAPI(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockMetadataAPI

NewMockMetadataAPI creates a new instance of MockMetadataAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockMetadataAPI) EXPECT

func (*MockMetadataAPI) MetadataGetDatacenters

func (_mock *MockMetadataAPI) MetadataGetDatacenters(ctx context.Context) ApiMetadataGetDatacentersRequest

MetadataGetDatacenters provides a mock function for the type MockMetadataAPI

func (*MockMetadataAPI) MetadataGetDatacentersExecute

MetadataGetDatacentersExecute provides a mock function for the type MockMetadataAPI

func (*MockMetadataAPI) MetadataGetWorkspacePlans

func (_mock *MockMetadataAPI) MetadataGetWorkspacePlans(ctx context.Context) ApiMetadataGetWorkspacePlansRequest

MetadataGetWorkspacePlans provides a mock function for the type MockMetadataAPI

func (*MockMetadataAPI) MetadataGetWorkspacePlansExecute

MetadataGetWorkspacePlansExecute provides a mock function for the type MockMetadataAPI

type MockMetadataAPI_Expecter

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

func (*MockMetadataAPI_Expecter) MetadataGetDatacenters

func (_e *MockMetadataAPI_Expecter) MetadataGetDatacenters(ctx interface{}) *MockMetadataAPI_MetadataGetDatacenters_Call

MetadataGetDatacenters is a helper method to define mock.On call

  • ctx

func (*MockMetadataAPI_Expecter) MetadataGetDatacentersExecute

func (_e *MockMetadataAPI_Expecter) MetadataGetDatacentersExecute(r interface{}) *MockMetadataAPI_MetadataGetDatacentersExecute_Call

MetadataGetDatacentersExecute is a helper method to define mock.On call

  • r

func (*MockMetadataAPI_Expecter) MetadataGetWorkspacePlans

func (_e *MockMetadataAPI_Expecter) MetadataGetWorkspacePlans(ctx interface{}) *MockMetadataAPI_MetadataGetWorkspacePlans_Call

MetadataGetWorkspacePlans is a helper method to define mock.On call

  • ctx

func (*MockMetadataAPI_Expecter) MetadataGetWorkspacePlansExecute

func (_e *MockMetadataAPI_Expecter) MetadataGetWorkspacePlansExecute(r interface{}) *MockMetadataAPI_MetadataGetWorkspacePlansExecute_Call

MetadataGetWorkspacePlansExecute is a helper method to define mock.On call

  • r

type MockMetadataAPI_MetadataGetDatacentersExecute_Call

type MockMetadataAPI_MetadataGetDatacentersExecute_Call struct {
	*mock.Call
}

MockMetadataAPI_MetadataGetDatacentersExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MetadataGetDatacentersExecute'

func (*MockMetadataAPI_MetadataGetDatacentersExecute_Call) Return

func (*MockMetadataAPI_MetadataGetDatacentersExecute_Call) Run

type MockMetadataAPI_MetadataGetDatacenters_Call

type MockMetadataAPI_MetadataGetDatacenters_Call struct {
	*mock.Call
}

MockMetadataAPI_MetadataGetDatacenters_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MetadataGetDatacenters'

func (*MockMetadataAPI_MetadataGetDatacenters_Call) Return

func (*MockMetadataAPI_MetadataGetDatacenters_Call) Run

func (*MockMetadataAPI_MetadataGetDatacenters_Call) RunAndReturn

type MockMetadataAPI_MetadataGetWorkspacePlansExecute_Call

type MockMetadataAPI_MetadataGetWorkspacePlansExecute_Call struct {
	*mock.Call
}

MockMetadataAPI_MetadataGetWorkspacePlansExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MetadataGetWorkspacePlansExecute'

func (*MockMetadataAPI_MetadataGetWorkspacePlansExecute_Call) Return

type MockMetadataAPI_MetadataGetWorkspacePlans_Call

type MockMetadataAPI_MetadataGetWorkspacePlans_Call struct {
	*mock.Call
}

MockMetadataAPI_MetadataGetWorkspacePlans_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MetadataGetWorkspacePlans'

func (*MockMetadataAPI_MetadataGetWorkspacePlans_Call) Return

func (*MockMetadataAPI_MetadataGetWorkspacePlans_Call) Run

type MockTeamsAPI

type MockTeamsAPI struct {
	mock.Mock
}

MockTeamsAPI is an autogenerated mock type for the TeamsAPI type

func NewMockTeamsAPI

func NewMockTeamsAPI(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockTeamsAPI

NewMockTeamsAPI creates a new instance of MockTeamsAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockTeamsAPI) EXPECT

func (_m *MockTeamsAPI) EXPECT() *MockTeamsAPI_Expecter

func (*MockTeamsAPI) TeamsCreateTeam

func (_mock *MockTeamsAPI) TeamsCreateTeam(ctx context.Context) ApiTeamsCreateTeamRequest

TeamsCreateTeam provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsCreateTeamExecute

func (_mock *MockTeamsAPI) TeamsCreateTeamExecute(r ApiTeamsCreateTeamRequest) (*TeamsGetTeam200Response, *http.Response, error)

TeamsCreateTeamExecute provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsDeleteTeam

func (_mock *MockTeamsAPI) TeamsDeleteTeam(ctx context.Context, teamId float32) ApiTeamsDeleteTeamRequest

TeamsDeleteTeam provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsDeleteTeamExecute

func (_mock *MockTeamsAPI) TeamsDeleteTeamExecute(r ApiTeamsDeleteTeamRequest) (*http.Response, error)

TeamsDeleteTeamExecute provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsGetTeam

func (_mock *MockTeamsAPI) TeamsGetTeam(ctx context.Context, teamId float32) ApiTeamsGetTeamRequest

TeamsGetTeam provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsGetTeamExecute

func (_mock *MockTeamsAPI) TeamsGetTeamExecute(r ApiTeamsGetTeamRequest) (*TeamsGetTeam200Response, *http.Response, error)

TeamsGetTeamExecute provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsListTeams

func (_mock *MockTeamsAPI) TeamsListTeams(ctx context.Context) ApiTeamsListTeamsRequest

TeamsListTeams provides a mock function for the type MockTeamsAPI

func (*MockTeamsAPI) TeamsListTeamsExecute

TeamsListTeamsExecute provides a mock function for the type MockTeamsAPI

type MockTeamsAPI_Expecter

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

func (*MockTeamsAPI_Expecter) TeamsCreateTeam

func (_e *MockTeamsAPI_Expecter) TeamsCreateTeam(ctx interface{}) *MockTeamsAPI_TeamsCreateTeam_Call

TeamsCreateTeam is a helper method to define mock.On call

  • ctx

func (*MockTeamsAPI_Expecter) TeamsCreateTeamExecute

func (_e *MockTeamsAPI_Expecter) TeamsCreateTeamExecute(r interface{}) *MockTeamsAPI_TeamsCreateTeamExecute_Call

TeamsCreateTeamExecute is a helper method to define mock.On call

  • r

func (*MockTeamsAPI_Expecter) TeamsDeleteTeam

func (_e *MockTeamsAPI_Expecter) TeamsDeleteTeam(ctx interface{}, teamId interface{}) *MockTeamsAPI_TeamsDeleteTeam_Call

TeamsDeleteTeam is a helper method to define mock.On call

  • ctx
  • teamId

func (*MockTeamsAPI_Expecter) TeamsDeleteTeamExecute

func (_e *MockTeamsAPI_Expecter) TeamsDeleteTeamExecute(r interface{}) *MockTeamsAPI_TeamsDeleteTeamExecute_Call

TeamsDeleteTeamExecute is a helper method to define mock.On call

  • r

func (*MockTeamsAPI_Expecter) TeamsGetTeam

func (_e *MockTeamsAPI_Expecter) TeamsGetTeam(ctx interface{}, teamId interface{}) *MockTeamsAPI_TeamsGetTeam_Call

TeamsGetTeam is a helper method to define mock.On call

  • ctx
  • teamId

func (*MockTeamsAPI_Expecter) TeamsGetTeamExecute

func (_e *MockTeamsAPI_Expecter) TeamsGetTeamExecute(r interface{}) *MockTeamsAPI_TeamsGetTeamExecute_Call

TeamsGetTeamExecute is a helper method to define mock.On call

  • r

func (*MockTeamsAPI_Expecter) TeamsListTeams

func (_e *MockTeamsAPI_Expecter) TeamsListTeams(ctx interface{}) *MockTeamsAPI_TeamsListTeams_Call

TeamsListTeams is a helper method to define mock.On call

  • ctx

func (*MockTeamsAPI_Expecter) TeamsListTeamsExecute

func (_e *MockTeamsAPI_Expecter) TeamsListTeamsExecute(r interface{}) *MockTeamsAPI_TeamsListTeamsExecute_Call

TeamsListTeamsExecute is a helper method to define mock.On call

  • r

type MockTeamsAPI_TeamsCreateTeamExecute_Call

type MockTeamsAPI_TeamsCreateTeamExecute_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsCreateTeamExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsCreateTeamExecute'

func (*MockTeamsAPI_TeamsCreateTeamExecute_Call) Return

func (*MockTeamsAPI_TeamsCreateTeamExecute_Call) Run

type MockTeamsAPI_TeamsCreateTeam_Call

type MockTeamsAPI_TeamsCreateTeam_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsCreateTeam_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsCreateTeam'

func (*MockTeamsAPI_TeamsCreateTeam_Call) Return

func (*MockTeamsAPI_TeamsCreateTeam_Call) Run

func (*MockTeamsAPI_TeamsCreateTeam_Call) RunAndReturn

type MockTeamsAPI_TeamsDeleteTeamExecute_Call

type MockTeamsAPI_TeamsDeleteTeamExecute_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsDeleteTeamExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsDeleteTeamExecute'

func (*MockTeamsAPI_TeamsDeleteTeamExecute_Call) Return

func (*MockTeamsAPI_TeamsDeleteTeamExecute_Call) Run

func (*MockTeamsAPI_TeamsDeleteTeamExecute_Call) RunAndReturn

type MockTeamsAPI_TeamsDeleteTeam_Call

type MockTeamsAPI_TeamsDeleteTeam_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsDeleteTeam_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsDeleteTeam'

func (*MockTeamsAPI_TeamsDeleteTeam_Call) Return

func (*MockTeamsAPI_TeamsDeleteTeam_Call) Run

func (*MockTeamsAPI_TeamsDeleteTeam_Call) RunAndReturn

type MockTeamsAPI_TeamsGetTeamExecute_Call

type MockTeamsAPI_TeamsGetTeamExecute_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsGetTeamExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsGetTeamExecute'

func (*MockTeamsAPI_TeamsGetTeamExecute_Call) Return

func (*MockTeamsAPI_TeamsGetTeamExecute_Call) Run

func (*MockTeamsAPI_TeamsGetTeamExecute_Call) RunAndReturn

type MockTeamsAPI_TeamsGetTeam_Call

type MockTeamsAPI_TeamsGetTeam_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsGetTeam_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsGetTeam'

func (*MockTeamsAPI_TeamsGetTeam_Call) Return

func (*MockTeamsAPI_TeamsGetTeam_Call) Run

func (*MockTeamsAPI_TeamsGetTeam_Call) RunAndReturn

type MockTeamsAPI_TeamsListTeamsExecute_Call

type MockTeamsAPI_TeamsListTeamsExecute_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsListTeamsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsListTeamsExecute'

func (*MockTeamsAPI_TeamsListTeamsExecute_Call) Return

func (*MockTeamsAPI_TeamsListTeamsExecute_Call) Run

type MockTeamsAPI_TeamsListTeams_Call

type MockTeamsAPI_TeamsListTeams_Call struct {
	*mock.Call
}

MockTeamsAPI_TeamsListTeams_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TeamsListTeams'

func (*MockTeamsAPI_TeamsListTeams_Call) Return

func (*MockTeamsAPI_TeamsListTeams_Call) Run

func (*MockTeamsAPI_TeamsListTeams_Call) RunAndReturn

type MockWorkspacesAPI

type MockWorkspacesAPI struct {
	mock.Mock
}

MockWorkspacesAPI is an autogenerated mock type for the WorkspacesAPI type

func NewMockWorkspacesAPI

func NewMockWorkspacesAPI(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockWorkspacesAPI

NewMockWorkspacesAPI creates a new instance of MockWorkspacesAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockWorkspacesAPI) EXPECT

func (*MockWorkspacesAPI) WorkspacesCreateWorkspace

func (_mock *MockWorkspacesAPI) WorkspacesCreateWorkspace(ctx context.Context) ApiWorkspacesCreateWorkspaceRequest

WorkspacesCreateWorkspace provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesCreateWorkspaceExecute

WorkspacesCreateWorkspaceExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeleteEnvVar

func (_mock *MockWorkspacesAPI) WorkspacesDeleteEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteEnvVarRequest

WorkspacesDeleteEnvVar provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeleteEnvVarExecute

func (_mock *MockWorkspacesAPI) WorkspacesDeleteEnvVarExecute(r ApiWorkspacesDeleteEnvVarRequest) (*http.Response, error)

WorkspacesDeleteEnvVarExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeleteWorkspace

func (_mock *MockWorkspacesAPI) WorkspacesDeleteWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteWorkspaceRequest

WorkspacesDeleteWorkspace provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeleteWorkspaceExecute

func (_mock *MockWorkspacesAPI) WorkspacesDeleteWorkspaceExecute(r ApiWorkspacesDeleteWorkspaceRequest) (*http.Response, error)

WorkspacesDeleteWorkspaceExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeployLandscape

func (_mock *MockWorkspacesAPI) WorkspacesDeployLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesDeployLandscapeRequest

WorkspacesDeployLandscape provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeployLandscape1

func (_mock *MockWorkspacesAPI) WorkspacesDeployLandscape1(ctx context.Context, workspaceId float32, profile string) ApiWorkspacesDeployLandscape1Request

WorkspacesDeployLandscape1 provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeployLandscape1Execute

func (_mock *MockWorkspacesAPI) WorkspacesDeployLandscape1Execute(r ApiWorkspacesDeployLandscape1Request) (*http.Response, error)

WorkspacesDeployLandscape1Execute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesDeployLandscapeExecute

func (_mock *MockWorkspacesAPI) WorkspacesDeployLandscapeExecute(r ApiWorkspacesDeployLandscapeRequest) (*http.Response, error)

WorkspacesDeployLandscapeExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesExecuteCommand

func (_mock *MockWorkspacesAPI) WorkspacesExecuteCommand(ctx context.Context, workspaceId float32) ApiWorkspacesExecuteCommandRequest

WorkspacesExecuteCommand provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesExecuteCommandExecute

WorkspacesExecuteCommandExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGetWorkspace

func (_mock *MockWorkspacesAPI) WorkspacesGetWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceRequest

WorkspacesGetWorkspace provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGetWorkspaceExecute

WorkspacesGetWorkspaceExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGetWorkspaceStatus

func (_mock *MockWorkspacesAPI) WorkspacesGetWorkspaceStatus(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceStatusRequest

WorkspacesGetWorkspaceStatus provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGetWorkspaceStatusExecute

WorkspacesGetWorkspaceStatusExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitHead

func (_mock *MockWorkspacesAPI) WorkspacesGitHead(ctx context.Context, workspaceId float32) ApiWorkspacesGitHeadRequest

WorkspacesGitHead provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitHeadExecute

WorkspacesGitHeadExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPull

func (_mock *MockWorkspacesAPI) WorkspacesGitPull(ctx context.Context, workspaceId float32) ApiWorkspacesGitPullRequest

WorkspacesGitPull provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPull1

func (_mock *MockWorkspacesAPI) WorkspacesGitPull1(ctx context.Context, workspaceId float32, remote string) ApiWorkspacesGitPull1Request

WorkspacesGitPull1 provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPull1Execute

func (_mock *MockWorkspacesAPI) WorkspacesGitPull1Execute(r ApiWorkspacesGitPull1Request) (*http.Response, error)

WorkspacesGitPull1Execute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPull2

func (_mock *MockWorkspacesAPI) WorkspacesGitPull2(ctx context.Context, workspaceId float32, remote string, branch string) ApiWorkspacesGitPull2Request

WorkspacesGitPull2 provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPull2Execute

func (_mock *MockWorkspacesAPI) WorkspacesGitPull2Execute(r ApiWorkspacesGitPull2Request) (*http.Response, error)

WorkspacesGitPull2Execute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesGitPullExecute

func (_mock *MockWorkspacesAPI) WorkspacesGitPullExecute(r ApiWorkspacesGitPullRequest) (*http.Response, error)

WorkspacesGitPullExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesListEnvVars

func (_mock *MockWorkspacesAPI) WorkspacesListEnvVars(ctx context.Context, workspaceId float32) ApiWorkspacesListEnvVarsRequest

WorkspacesListEnvVars provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesListEnvVarsExecute

WorkspacesListEnvVarsExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesListWorkspaces

func (_mock *MockWorkspacesAPI) WorkspacesListWorkspaces(ctx context.Context, teamId float32) ApiWorkspacesListWorkspacesRequest

WorkspacesListWorkspaces provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesListWorkspacesExecute

WorkspacesListWorkspacesExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesLogs

func (_mock *MockWorkspacesAPI) WorkspacesLogs(ctx context.Context, workspaceId float32, stage string, step float32) ApiWorkspacesLogsRequest

WorkspacesLogs provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesLogsExecute

WorkspacesLogsExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesPipelineStatus

func (_mock *MockWorkspacesAPI) WorkspacesPipelineStatus(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesPipelineStatusRequest

WorkspacesPipelineStatus provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesPipelineStatusExecute

WorkspacesPipelineStatusExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesReplicaLogs

func (_mock *MockWorkspacesAPI) WorkspacesReplicaLogs(ctx context.Context, workspaceId float32, step float32, replica string) ApiWorkspacesReplicaLogsRequest

WorkspacesReplicaLogs provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesReplicaLogsExecute

WorkspacesReplicaLogsExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesServerLogs

func (_mock *MockWorkspacesAPI) WorkspacesServerLogs(ctx context.Context, workspaceId float32, step float32, server string) ApiWorkspacesServerLogsRequest

WorkspacesServerLogs provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesServerLogsExecute

WorkspacesServerLogsExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesSetEnvVar

func (_mock *MockWorkspacesAPI) WorkspacesSetEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesSetEnvVarRequest

WorkspacesSetEnvVar provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesSetEnvVarExecute

func (_mock *MockWorkspacesAPI) WorkspacesSetEnvVarExecute(r ApiWorkspacesSetEnvVarRequest) (*http.Response, error)

WorkspacesSetEnvVarExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStartPipelineStage

func (_mock *MockWorkspacesAPI) WorkspacesStartPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStartPipelineStageRequest

WorkspacesStartPipelineStage provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStartPipelineStage1

func (_mock *MockWorkspacesAPI) WorkspacesStartPipelineStage1(ctx context.Context, workspaceId float32, stage string, profile string) ApiWorkspacesStartPipelineStage1Request

WorkspacesStartPipelineStage1 provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStartPipelineStage1Execute

func (_mock *MockWorkspacesAPI) WorkspacesStartPipelineStage1Execute(r ApiWorkspacesStartPipelineStage1Request) (*http.Response, error)

WorkspacesStartPipelineStage1Execute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStartPipelineStageExecute

func (_mock *MockWorkspacesAPI) WorkspacesStartPipelineStageExecute(r ApiWorkspacesStartPipelineStageRequest) (*http.Response, error)

WorkspacesStartPipelineStageExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStopPipelineStage

func (_mock *MockWorkspacesAPI) WorkspacesStopPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStopPipelineStageRequest

WorkspacesStopPipelineStage provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesStopPipelineStageExecute

func (_mock *MockWorkspacesAPI) WorkspacesStopPipelineStageExecute(r ApiWorkspacesStopPipelineStageRequest) (*http.Response, error)

WorkspacesStopPipelineStageExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesTeardownLandscape

func (_mock *MockWorkspacesAPI) WorkspacesTeardownLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesTeardownLandscapeRequest

WorkspacesTeardownLandscape provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesTeardownLandscapeExecute

func (_mock *MockWorkspacesAPI) WorkspacesTeardownLandscapeExecute(r ApiWorkspacesTeardownLandscapeRequest) (*http.Response, error)

WorkspacesTeardownLandscapeExecute provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesUpdateWorkspace

func (_mock *MockWorkspacesAPI) WorkspacesUpdateWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesUpdateWorkspaceRequest

WorkspacesUpdateWorkspace provides a mock function for the type MockWorkspacesAPI

func (*MockWorkspacesAPI) WorkspacesUpdateWorkspaceExecute

func (_mock *MockWorkspacesAPI) WorkspacesUpdateWorkspaceExecute(r ApiWorkspacesUpdateWorkspaceRequest) (*http.Response, error)

WorkspacesUpdateWorkspaceExecute provides a mock function for the type MockWorkspacesAPI

type MockWorkspacesAPI_Expecter

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

func (*MockWorkspacesAPI_Expecter) WorkspacesCreateWorkspace

func (_e *MockWorkspacesAPI_Expecter) WorkspacesCreateWorkspace(ctx interface{}) *MockWorkspacesAPI_WorkspacesCreateWorkspace_Call

WorkspacesCreateWorkspace is a helper method to define mock.On call

  • ctx

func (*MockWorkspacesAPI_Expecter) WorkspacesCreateWorkspaceExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesCreateWorkspaceExecute(r interface{}) *MockWorkspacesAPI_WorkspacesCreateWorkspaceExecute_Call

WorkspacesCreateWorkspaceExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesDeleteEnvVar

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeleteEnvVar(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call

WorkspacesDeleteEnvVar is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesDeleteEnvVarExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeleteEnvVarExecute(r interface{}) *MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call

WorkspacesDeleteEnvVarExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesDeleteWorkspace

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeleteWorkspace(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call

WorkspacesDeleteWorkspace is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesDeleteWorkspaceExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeleteWorkspaceExecute(r interface{}) *MockWorkspacesAPI_WorkspacesDeleteWorkspaceExecute_Call

WorkspacesDeleteWorkspaceExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesDeployLandscape_Call

WorkspacesDeployLandscape is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape1

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape1(ctx interface{}, workspaceId interface{}, profile interface{}) *MockWorkspacesAPI_WorkspacesDeployLandscape1_Call

WorkspacesDeployLandscape1 is a helper method to define mock.On call

  • ctx
  • workspaceId
  • profile

func (*MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape1Execute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeployLandscape1Execute(r interface{}) *MockWorkspacesAPI_WorkspacesDeployLandscape1Execute_Call

WorkspacesDeployLandscape1Execute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesDeployLandscapeExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesDeployLandscapeExecute(r interface{}) *MockWorkspacesAPI_WorkspacesDeployLandscapeExecute_Call

WorkspacesDeployLandscapeExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesExecuteCommand

func (_e *MockWorkspacesAPI_Expecter) WorkspacesExecuteCommand(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesExecuteCommand_Call

WorkspacesExecuteCommand is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesExecuteCommandExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesExecuteCommandExecute(r interface{}) *MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call

WorkspacesExecuteCommandExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGetWorkspace

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGetWorkspace(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesGetWorkspace_Call

WorkspacesGetWorkspace is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceExecute(r interface{}) *MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call

WorkspacesGetWorkspaceExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceStatus

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceStatus(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call

WorkspacesGetWorkspaceStatus is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceStatusExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGetWorkspaceStatusExecute(r interface{}) *MockWorkspacesAPI_WorkspacesGetWorkspaceStatusExecute_Call

WorkspacesGetWorkspaceStatusExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGitHead

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitHead(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesGitHead_Call

WorkspacesGitHead is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesGitHeadExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitHeadExecute(r interface{}) *MockWorkspacesAPI_WorkspacesGitHeadExecute_Call

WorkspacesGitHeadExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPull

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPull(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesGitPull_Call

WorkspacesGitPull is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPull1

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPull1(ctx interface{}, workspaceId interface{}, remote interface{}) *MockWorkspacesAPI_WorkspacesGitPull1_Call

WorkspacesGitPull1 is a helper method to define mock.On call

  • ctx
  • workspaceId
  • remote

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPull1Execute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPull1Execute(r interface{}) *MockWorkspacesAPI_WorkspacesGitPull1Execute_Call

WorkspacesGitPull1Execute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPull2

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPull2(ctx interface{}, workspaceId interface{}, remote interface{}, branch interface{}) *MockWorkspacesAPI_WorkspacesGitPull2_Call

WorkspacesGitPull2 is a helper method to define mock.On call

  • ctx
  • workspaceId
  • remote
  • branch

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPull2Execute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPull2Execute(r interface{}) *MockWorkspacesAPI_WorkspacesGitPull2Execute_Call

WorkspacesGitPull2Execute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesGitPullExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesGitPullExecute(r interface{}) *MockWorkspacesAPI_WorkspacesGitPullExecute_Call

WorkspacesGitPullExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesListEnvVars

func (_e *MockWorkspacesAPI_Expecter) WorkspacesListEnvVars(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesListEnvVars_Call

WorkspacesListEnvVars is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesListEnvVarsExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesListEnvVarsExecute(r interface{}) *MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call

WorkspacesListEnvVarsExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesListWorkspaces

func (_e *MockWorkspacesAPI_Expecter) WorkspacesListWorkspaces(ctx interface{}, teamId interface{}) *MockWorkspacesAPI_WorkspacesListWorkspaces_Call

WorkspacesListWorkspaces is a helper method to define mock.On call

  • ctx
  • teamId

func (*MockWorkspacesAPI_Expecter) WorkspacesListWorkspacesExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesListWorkspacesExecute(r interface{}) *MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call

WorkspacesListWorkspacesExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesLogs

func (_e *MockWorkspacesAPI_Expecter) WorkspacesLogs(ctx interface{}, workspaceId interface{}, stage interface{}, step interface{}) *MockWorkspacesAPI_WorkspacesLogs_Call

WorkspacesLogs is a helper method to define mock.On call

  • ctx
  • workspaceId
  • stage
  • step

func (*MockWorkspacesAPI_Expecter) WorkspacesLogsExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesLogsExecute(r interface{}) *MockWorkspacesAPI_WorkspacesLogsExecute_Call

WorkspacesLogsExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesPipelineStatus

func (_e *MockWorkspacesAPI_Expecter) WorkspacesPipelineStatus(ctx interface{}, workspaceId interface{}, stage interface{}) *MockWorkspacesAPI_WorkspacesPipelineStatus_Call

WorkspacesPipelineStatus is a helper method to define mock.On call

  • ctx
  • workspaceId
  • stage

func (*MockWorkspacesAPI_Expecter) WorkspacesPipelineStatusExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesPipelineStatusExecute(r interface{}) *MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call

WorkspacesPipelineStatusExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesReplicaLogs

func (_e *MockWorkspacesAPI_Expecter) WorkspacesReplicaLogs(ctx interface{}, workspaceId interface{}, step interface{}, replica interface{}) *MockWorkspacesAPI_WorkspacesReplicaLogs_Call

WorkspacesReplicaLogs is a helper method to define mock.On call

  • ctx
  • workspaceId
  • step
  • replica

func (*MockWorkspacesAPI_Expecter) WorkspacesReplicaLogsExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesReplicaLogsExecute(r interface{}) *MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call

WorkspacesReplicaLogsExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesServerLogs

func (_e *MockWorkspacesAPI_Expecter) WorkspacesServerLogs(ctx interface{}, workspaceId interface{}, step interface{}, server interface{}) *MockWorkspacesAPI_WorkspacesServerLogs_Call

WorkspacesServerLogs is a helper method to define mock.On call

  • ctx
  • workspaceId
  • step
  • server

func (*MockWorkspacesAPI_Expecter) WorkspacesServerLogsExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesServerLogsExecute(r interface{}) *MockWorkspacesAPI_WorkspacesServerLogsExecute_Call

WorkspacesServerLogsExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesSetEnvVar

func (_e *MockWorkspacesAPI_Expecter) WorkspacesSetEnvVar(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesSetEnvVar_Call

WorkspacesSetEnvVar is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesSetEnvVarExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesSetEnvVarExecute(r interface{}) *MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call

WorkspacesSetEnvVarExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage(ctx interface{}, workspaceId interface{}, stage interface{}) *MockWorkspacesAPI_WorkspacesStartPipelineStage_Call

WorkspacesStartPipelineStage is a helper method to define mock.On call

  • ctx
  • workspaceId
  • stage

func (*MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage1

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage1(ctx interface{}, workspaceId interface{}, stage interface{}, profile interface{}) *MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call

WorkspacesStartPipelineStage1 is a helper method to define mock.On call

  • ctx
  • workspaceId
  • stage
  • profile

func (*MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage1Execute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStage1Execute(r interface{}) *MockWorkspacesAPI_WorkspacesStartPipelineStage1Execute_Call

WorkspacesStartPipelineStage1Execute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStageExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStartPipelineStageExecute(r interface{}) *MockWorkspacesAPI_WorkspacesStartPipelineStageExecute_Call

WorkspacesStartPipelineStageExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesStopPipelineStage

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStopPipelineStage(ctx interface{}, workspaceId interface{}, stage interface{}) *MockWorkspacesAPI_WorkspacesStopPipelineStage_Call

WorkspacesStopPipelineStage is a helper method to define mock.On call

  • ctx
  • workspaceId
  • stage

func (*MockWorkspacesAPI_Expecter) WorkspacesStopPipelineStageExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesStopPipelineStageExecute(r interface{}) *MockWorkspacesAPI_WorkspacesStopPipelineStageExecute_Call

WorkspacesStopPipelineStageExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesTeardownLandscape

func (_e *MockWorkspacesAPI_Expecter) WorkspacesTeardownLandscape(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesTeardownLandscape_Call

WorkspacesTeardownLandscape is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesTeardownLandscapeExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesTeardownLandscapeExecute(r interface{}) *MockWorkspacesAPI_WorkspacesTeardownLandscapeExecute_Call

WorkspacesTeardownLandscapeExecute is a helper method to define mock.On call

  • r

func (*MockWorkspacesAPI_Expecter) WorkspacesUpdateWorkspace

func (_e *MockWorkspacesAPI_Expecter) WorkspacesUpdateWorkspace(ctx interface{}, workspaceId interface{}) *MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call

WorkspacesUpdateWorkspace is a helper method to define mock.On call

  • ctx
  • workspaceId

func (*MockWorkspacesAPI_Expecter) WorkspacesUpdateWorkspaceExecute

func (_e *MockWorkspacesAPI_Expecter) WorkspacesUpdateWorkspaceExecute(r interface{}) *MockWorkspacesAPI_WorkspacesUpdateWorkspaceExecute_Call

WorkspacesUpdateWorkspaceExecute is a helper method to define mock.On call

  • r

type MockWorkspacesAPI_WorkspacesCreateWorkspaceExecute_Call

type MockWorkspacesAPI_WorkspacesCreateWorkspaceExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesCreateWorkspaceExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesCreateWorkspaceExecute'

func (*MockWorkspacesAPI_WorkspacesCreateWorkspaceExecute_Call) Return

type MockWorkspacesAPI_WorkspacesCreateWorkspace_Call

type MockWorkspacesAPI_WorkspacesCreateWorkspace_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesCreateWorkspace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesCreateWorkspace'

func (*MockWorkspacesAPI_WorkspacesCreateWorkspace_Call) Return

func (*MockWorkspacesAPI_WorkspacesCreateWorkspace_Call) Run

type MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call

type MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeleteEnvVarExecute'

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call) Run

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVarExecute_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call

type MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeleteEnvVar'

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call) Return

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call) Run

func (*MockWorkspacesAPI_WorkspacesDeleteEnvVar_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesDeleteWorkspaceExecute_Call

type MockWorkspacesAPI_WorkspacesDeleteWorkspaceExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeleteWorkspaceExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeleteWorkspaceExecute'

func (*MockWorkspacesAPI_WorkspacesDeleteWorkspaceExecute_Call) Return

type MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call

type MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeleteWorkspace'

func (*MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call) Return

func (*MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call) Run

func (*MockWorkspacesAPI_WorkspacesDeleteWorkspace_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesDeployLandscape1Execute_Call

type MockWorkspacesAPI_WorkspacesDeployLandscape1Execute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeployLandscape1Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeployLandscape1Execute'

func (*MockWorkspacesAPI_WorkspacesDeployLandscape1Execute_Call) Return

type MockWorkspacesAPI_WorkspacesDeployLandscape1_Call

type MockWorkspacesAPI_WorkspacesDeployLandscape1_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeployLandscape1_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeployLandscape1'

func (*MockWorkspacesAPI_WorkspacesDeployLandscape1_Call) Return

func (*MockWorkspacesAPI_WorkspacesDeployLandscape1_Call) Run

func (*MockWorkspacesAPI_WorkspacesDeployLandscape1_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesDeployLandscapeExecute_Call

type MockWorkspacesAPI_WorkspacesDeployLandscapeExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeployLandscapeExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeployLandscapeExecute'

func (*MockWorkspacesAPI_WorkspacesDeployLandscapeExecute_Call) Return

type MockWorkspacesAPI_WorkspacesDeployLandscape_Call

type MockWorkspacesAPI_WorkspacesDeployLandscape_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesDeployLandscape_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesDeployLandscape'

func (*MockWorkspacesAPI_WorkspacesDeployLandscape_Call) Return

func (*MockWorkspacesAPI_WorkspacesDeployLandscape_Call) Run

func (*MockWorkspacesAPI_WorkspacesDeployLandscape_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call

type MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesExecuteCommandExecute'

func (*MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesExecuteCommandExecute_Call) Run

type MockWorkspacesAPI_WorkspacesExecuteCommand_Call

type MockWorkspacesAPI_WorkspacesExecuteCommand_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesExecuteCommand_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesExecuteCommand'

func (*MockWorkspacesAPI_WorkspacesExecuteCommand_Call) Return

func (*MockWorkspacesAPI_WorkspacesExecuteCommand_Call) Run

func (*MockWorkspacesAPI_WorkspacesExecuteCommand_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call

type MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGetWorkspaceExecute'

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceExecute_Call) Run

type MockWorkspacesAPI_WorkspacesGetWorkspaceStatusExecute_Call

type MockWorkspacesAPI_WorkspacesGetWorkspaceStatusExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGetWorkspaceStatusExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGetWorkspaceStatusExecute'

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceStatusExecute_Call) Return

type MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call

type MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGetWorkspaceStatus'

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call) Return

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call) Run

func (*MockWorkspacesAPI_WorkspacesGetWorkspaceStatus_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGetWorkspace_Call

type MockWorkspacesAPI_WorkspacesGetWorkspace_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGetWorkspace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGetWorkspace'

func (*MockWorkspacesAPI_WorkspacesGetWorkspace_Call) Return

func (*MockWorkspacesAPI_WorkspacesGetWorkspace_Call) Run

func (*MockWorkspacesAPI_WorkspacesGetWorkspace_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitHeadExecute_Call

type MockWorkspacesAPI_WorkspacesGitHeadExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitHeadExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitHeadExecute'

func (*MockWorkspacesAPI_WorkspacesGitHeadExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitHeadExecute_Call) Run

type MockWorkspacesAPI_WorkspacesGitHead_Call

type MockWorkspacesAPI_WorkspacesGitHead_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitHead_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitHead'

func (*MockWorkspacesAPI_WorkspacesGitHead_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitHead_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitHead_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPull1Execute_Call

type MockWorkspacesAPI_WorkspacesGitPull1Execute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPull1Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPull1Execute'

func (*MockWorkspacesAPI_WorkspacesGitPull1Execute_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPull1Execute_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPull1Execute_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPull1_Call

type MockWorkspacesAPI_WorkspacesGitPull1_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPull1_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPull1'

func (*MockWorkspacesAPI_WorkspacesGitPull1_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPull1_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPull1_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPull2Execute_Call

type MockWorkspacesAPI_WorkspacesGitPull2Execute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPull2Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPull2Execute'

func (*MockWorkspacesAPI_WorkspacesGitPull2Execute_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPull2Execute_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPull2Execute_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPull2_Call

type MockWorkspacesAPI_WorkspacesGitPull2_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPull2_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPull2'

func (*MockWorkspacesAPI_WorkspacesGitPull2_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPull2_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPull2_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPullExecute_Call

type MockWorkspacesAPI_WorkspacesGitPullExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPullExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPullExecute'

func (*MockWorkspacesAPI_WorkspacesGitPullExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPullExecute_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPullExecute_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesGitPull_Call

type MockWorkspacesAPI_WorkspacesGitPull_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesGitPull_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesGitPull'

func (*MockWorkspacesAPI_WorkspacesGitPull_Call) Return

func (*MockWorkspacesAPI_WorkspacesGitPull_Call) Run

func (*MockWorkspacesAPI_WorkspacesGitPull_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call

type MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesListEnvVarsExecute'

func (*MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesListEnvVarsExecute_Call) Run

type MockWorkspacesAPI_WorkspacesListEnvVars_Call

type MockWorkspacesAPI_WorkspacesListEnvVars_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesListEnvVars_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesListEnvVars'

func (*MockWorkspacesAPI_WorkspacesListEnvVars_Call) Return

func (*MockWorkspacesAPI_WorkspacesListEnvVars_Call) Run

func (*MockWorkspacesAPI_WorkspacesListEnvVars_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call

type MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesListWorkspacesExecute'

func (*MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesListWorkspacesExecute_Call) Run

type MockWorkspacesAPI_WorkspacesListWorkspaces_Call

type MockWorkspacesAPI_WorkspacesListWorkspaces_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesListWorkspaces_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesListWorkspaces'

func (*MockWorkspacesAPI_WorkspacesListWorkspaces_Call) Return

func (*MockWorkspacesAPI_WorkspacesListWorkspaces_Call) Run

func (*MockWorkspacesAPI_WorkspacesListWorkspaces_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesLogsExecute_Call

type MockWorkspacesAPI_WorkspacesLogsExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesLogsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesLogsExecute'

func (*MockWorkspacesAPI_WorkspacesLogsExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesLogsExecute_Call) Run

type MockWorkspacesAPI_WorkspacesLogs_Call

type MockWorkspacesAPI_WorkspacesLogs_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesLogs'

func (*MockWorkspacesAPI_WorkspacesLogs_Call) Return

func (*MockWorkspacesAPI_WorkspacesLogs_Call) Run

func (*MockWorkspacesAPI_WorkspacesLogs_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call

type MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesPipelineStatusExecute'

func (*MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesPipelineStatusExecute_Call) Run

type MockWorkspacesAPI_WorkspacesPipelineStatus_Call

type MockWorkspacesAPI_WorkspacesPipelineStatus_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesPipelineStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesPipelineStatus'

func (*MockWorkspacesAPI_WorkspacesPipelineStatus_Call) Return

func (*MockWorkspacesAPI_WorkspacesPipelineStatus_Call) Run

func (*MockWorkspacesAPI_WorkspacesPipelineStatus_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call

type MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesReplicaLogsExecute'

func (*MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesReplicaLogsExecute_Call) Run

type MockWorkspacesAPI_WorkspacesReplicaLogs_Call

type MockWorkspacesAPI_WorkspacesReplicaLogs_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesReplicaLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesReplicaLogs'

func (*MockWorkspacesAPI_WorkspacesReplicaLogs_Call) Return

func (*MockWorkspacesAPI_WorkspacesReplicaLogs_Call) Run

func (*MockWorkspacesAPI_WorkspacesReplicaLogs_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesServerLogsExecute_Call

type MockWorkspacesAPI_WorkspacesServerLogsExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesServerLogsExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesServerLogsExecute'

func (*MockWorkspacesAPI_WorkspacesServerLogsExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesServerLogsExecute_Call) Run

type MockWorkspacesAPI_WorkspacesServerLogs_Call

type MockWorkspacesAPI_WorkspacesServerLogs_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesServerLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesServerLogs'

func (*MockWorkspacesAPI_WorkspacesServerLogs_Call) Return

func (*MockWorkspacesAPI_WorkspacesServerLogs_Call) Run

func (*MockWorkspacesAPI_WorkspacesServerLogs_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call

type MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesSetEnvVarExecute'

func (*MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call) Return

func (*MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call) Run

func (*MockWorkspacesAPI_WorkspacesSetEnvVarExecute_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesSetEnvVar_Call

type MockWorkspacesAPI_WorkspacesSetEnvVar_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesSetEnvVar_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesSetEnvVar'

func (*MockWorkspacesAPI_WorkspacesSetEnvVar_Call) Return

func (*MockWorkspacesAPI_WorkspacesSetEnvVar_Call) Run

func (*MockWorkspacesAPI_WorkspacesSetEnvVar_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesStartPipelineStage1Execute_Call

type MockWorkspacesAPI_WorkspacesStartPipelineStage1Execute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStartPipelineStage1Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStartPipelineStage1Execute'

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage1Execute_Call) Return

type MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call

type MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStartPipelineStage1'

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call) Return

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call) Run

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage1_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesStartPipelineStageExecute_Call

type MockWorkspacesAPI_WorkspacesStartPipelineStageExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStartPipelineStageExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStartPipelineStageExecute'

func (*MockWorkspacesAPI_WorkspacesStartPipelineStageExecute_Call) Return

type MockWorkspacesAPI_WorkspacesStartPipelineStage_Call

type MockWorkspacesAPI_WorkspacesStartPipelineStage_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStartPipelineStage_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStartPipelineStage'

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage_Call) Return

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage_Call) Run

func (*MockWorkspacesAPI_WorkspacesStartPipelineStage_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesStopPipelineStageExecute_Call

type MockWorkspacesAPI_WorkspacesStopPipelineStageExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStopPipelineStageExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStopPipelineStageExecute'

func (*MockWorkspacesAPI_WorkspacesStopPipelineStageExecute_Call) Return

type MockWorkspacesAPI_WorkspacesStopPipelineStage_Call

type MockWorkspacesAPI_WorkspacesStopPipelineStage_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesStopPipelineStage_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesStopPipelineStage'

func (*MockWorkspacesAPI_WorkspacesStopPipelineStage_Call) Return

func (*MockWorkspacesAPI_WorkspacesStopPipelineStage_Call) Run

func (*MockWorkspacesAPI_WorkspacesStopPipelineStage_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesTeardownLandscapeExecute_Call

type MockWorkspacesAPI_WorkspacesTeardownLandscapeExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesTeardownLandscapeExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesTeardownLandscapeExecute'

func (*MockWorkspacesAPI_WorkspacesTeardownLandscapeExecute_Call) Return

type MockWorkspacesAPI_WorkspacesTeardownLandscape_Call

type MockWorkspacesAPI_WorkspacesTeardownLandscape_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesTeardownLandscape_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesTeardownLandscape'

func (*MockWorkspacesAPI_WorkspacesTeardownLandscape_Call) Return

func (*MockWorkspacesAPI_WorkspacesTeardownLandscape_Call) Run

func (*MockWorkspacesAPI_WorkspacesTeardownLandscape_Call) RunAndReturn

type MockWorkspacesAPI_WorkspacesUpdateWorkspaceExecute_Call

type MockWorkspacesAPI_WorkspacesUpdateWorkspaceExecute_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesUpdateWorkspaceExecute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesUpdateWorkspaceExecute'

func (*MockWorkspacesAPI_WorkspacesUpdateWorkspaceExecute_Call) Return

type MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call

type MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call struct {
	*mock.Call
}

MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'WorkspacesUpdateWorkspace'

func (*MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call) Return

func (*MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call) Run

func (*MockWorkspacesAPI_WorkspacesUpdateWorkspace_Call) RunAndReturn

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 NullableDomainsGetDomain200Response

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

func (NullableDomainsGetDomain200Response) Get

func (NullableDomainsGetDomain200Response) IsSet

func (NullableDomainsGetDomain200Response) MarshalJSON

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

func (*NullableDomainsGetDomain200Response) Set

func (*NullableDomainsGetDomain200Response) UnmarshalJSON

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

func (*NullableDomainsGetDomain200Response) Unset

type NullableDomainsGetDomain200ResponseCertificateRequestStatus

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

func (NullableDomainsGetDomain200ResponseCertificateRequestStatus) Get

func (NullableDomainsGetDomain200ResponseCertificateRequestStatus) IsSet

func (NullableDomainsGetDomain200ResponseCertificateRequestStatus) MarshalJSON

func (*NullableDomainsGetDomain200ResponseCertificateRequestStatus) Set

func (*NullableDomainsGetDomain200ResponseCertificateRequestStatus) UnmarshalJSON

func (*NullableDomainsGetDomain200ResponseCertificateRequestStatus) Unset

type NullableDomainsGetDomain200ResponseCustomConfig

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

func (NullableDomainsGetDomain200ResponseCustomConfig) Get

func (NullableDomainsGetDomain200ResponseCustomConfig) IsSet

func (NullableDomainsGetDomain200ResponseCustomConfig) MarshalJSON

func (*NullableDomainsGetDomain200ResponseCustomConfig) Set

func (*NullableDomainsGetDomain200ResponseCustomConfig) UnmarshalJSON

func (*NullableDomainsGetDomain200ResponseCustomConfig) Unset

type NullableDomainsGetDomain200ResponseDnsEntries

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

func (NullableDomainsGetDomain200ResponseDnsEntries) Get

func (NullableDomainsGetDomain200ResponseDnsEntries) IsSet

func (NullableDomainsGetDomain200ResponseDnsEntries) MarshalJSON

func (*NullableDomainsGetDomain200ResponseDnsEntries) Set

func (*NullableDomainsGetDomain200ResponseDnsEntries) UnmarshalJSON

func (*NullableDomainsGetDomain200ResponseDnsEntries) Unset

type NullableDomainsGetDomain200ResponseDomainVerificationStatus

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

func (NullableDomainsGetDomain200ResponseDomainVerificationStatus) Get

func (NullableDomainsGetDomain200ResponseDomainVerificationStatus) IsSet

func (NullableDomainsGetDomain200ResponseDomainVerificationStatus) MarshalJSON

func (*NullableDomainsGetDomain200ResponseDomainVerificationStatus) Set

func (*NullableDomainsGetDomain200ResponseDomainVerificationStatus) UnmarshalJSON

func (*NullableDomainsGetDomain200ResponseDomainVerificationStatus) Unset

type NullableDomainsGetDomain400Response

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

func (NullableDomainsGetDomain400Response) Get

func (NullableDomainsGetDomain400Response) IsSet

func (NullableDomainsGetDomain400Response) MarshalJSON

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

func (*NullableDomainsGetDomain400Response) Set

func (*NullableDomainsGetDomain400Response) UnmarshalJSON

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

func (*NullableDomainsGetDomain400Response) Unset

type NullableDomainsGetDomain401Response

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

func (NullableDomainsGetDomain401Response) Get

func (NullableDomainsGetDomain401Response) IsSet

func (NullableDomainsGetDomain401Response) MarshalJSON

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

func (*NullableDomainsGetDomain401Response) Set

func (*NullableDomainsGetDomain401Response) UnmarshalJSON

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

func (*NullableDomainsGetDomain401Response) Unset

type NullableDomainsGetDomain404Response

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

func (NullableDomainsGetDomain404Response) Get

func (NullableDomainsGetDomain404Response) IsSet

func (NullableDomainsGetDomain404Response) MarshalJSON

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

func (*NullableDomainsGetDomain404Response) Set

func (*NullableDomainsGetDomain404Response) UnmarshalJSON

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

func (*NullableDomainsGetDomain404Response) Unset

type NullableDomainsUpdateDomain409Response

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

func (NullableDomainsUpdateDomain409Response) Get

func (NullableDomainsUpdateDomain409Response) IsSet

func (NullableDomainsUpdateDomain409Response) MarshalJSON

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

func (*NullableDomainsUpdateDomain409Response) Set

func (*NullableDomainsUpdateDomain409Response) UnmarshalJSON

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

func (*NullableDomainsUpdateDomain409Response) 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 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 NullableMetadataGetDatacenters200ResponseInner

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

func (NullableMetadataGetDatacenters200ResponseInner) Get

func (NullableMetadataGetDatacenters200ResponseInner) IsSet

func (NullableMetadataGetDatacenters200ResponseInner) MarshalJSON

func (*NullableMetadataGetDatacenters200ResponseInner) Set

func (*NullableMetadataGetDatacenters200ResponseInner) UnmarshalJSON

func (*NullableMetadataGetDatacenters200ResponseInner) Unset

type NullableMetadataGetWorkspacePlans200ResponseInner

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

func (NullableMetadataGetWorkspacePlans200ResponseInner) Get

func (NullableMetadataGetWorkspacePlans200ResponseInner) IsSet

func (NullableMetadataGetWorkspacePlans200ResponseInner) MarshalJSON

func (*NullableMetadataGetWorkspacePlans200ResponseInner) Set

func (*NullableMetadataGetWorkspacePlans200ResponseInner) UnmarshalJSON

func (*NullableMetadataGetWorkspacePlans200ResponseInner) Unset

type NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics

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

func (NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) Get

func (NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) IsSet

func (NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) MarshalJSON

func (*NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) Set

func (*NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) UnmarshalJSON

func (*NullableMetadataGetWorkspacePlans200ResponseInnerCharacteristics) Unset

type NullableProblem

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

func NewNullableProblem

func NewNullableProblem(val *Problem) *NullableProblem

func (NullableProblem) Get

func (v NullableProblem) Get() *Problem

func (NullableProblem) IsSet

func (v NullableProblem) IsSet() bool

func (NullableProblem) MarshalJSON

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

func (*NullableProblem) Set

func (v *NullableProblem) Set(val *Problem)

func (*NullableProblem) UnmarshalJSON

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

func (*NullableProblem) Unset

func (v *NullableProblem) Unset()

type NullableProblemData

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

func NewNullableProblemData

func NewNullableProblemData(val *ProblemData) *NullableProblemData

func (NullableProblemData) Get

func (NullableProblemData) IsSet

func (v NullableProblemData) IsSet() bool

func (NullableProblemData) MarshalJSON

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

func (*NullableProblemData) Set

func (v *NullableProblemData) Set(val *ProblemData)

func (*NullableProblemData) UnmarshalJSON

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

func (*NullableProblemData) Unset

func (v *NullableProblemData) 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 NullableTeamsCreateTeamRequest

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

func (NullableTeamsCreateTeamRequest) Get

func (NullableTeamsCreateTeamRequest) IsSet

func (NullableTeamsCreateTeamRequest) MarshalJSON

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

func (*NullableTeamsCreateTeamRequest) Set

func (*NullableTeamsCreateTeamRequest) UnmarshalJSON

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

func (*NullableTeamsCreateTeamRequest) Unset

func (v *NullableTeamsCreateTeamRequest) Unset()

type NullableTeamsGetTeam200Response

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

func (NullableTeamsGetTeam200Response) Get

func (NullableTeamsGetTeam200Response) IsSet

func (NullableTeamsGetTeam200Response) MarshalJSON

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

func (*NullableTeamsGetTeam200Response) Set

func (*NullableTeamsGetTeam200Response) UnmarshalJSON

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

func (*NullableTeamsGetTeam200Response) Unset

type NullableTeamsListTeams200ResponseInner

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

func (NullableTeamsListTeams200ResponseInner) Get

func (NullableTeamsListTeams200ResponseInner) IsSet

func (NullableTeamsListTeams200ResponseInner) MarshalJSON

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

func (*NullableTeamsListTeams200ResponseInner) Set

func (*NullableTeamsListTeams200ResponseInner) UnmarshalJSON

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

func (*NullableTeamsListTeams200ResponseInner) 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 NullableWorkspacesCreateWorkspaceRequest

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

func (NullableWorkspacesCreateWorkspaceRequest) Get

func (NullableWorkspacesCreateWorkspaceRequest) IsSet

func (NullableWorkspacesCreateWorkspaceRequest) MarshalJSON

func (*NullableWorkspacesCreateWorkspaceRequest) Set

func (*NullableWorkspacesCreateWorkspaceRequest) UnmarshalJSON

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

func (*NullableWorkspacesCreateWorkspaceRequest) Unset

type NullableWorkspacesExecuteCommand200Response

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

func (NullableWorkspacesExecuteCommand200Response) Get

func (NullableWorkspacesExecuteCommand200Response) IsSet

func (NullableWorkspacesExecuteCommand200Response) MarshalJSON

func (*NullableWorkspacesExecuteCommand200Response) Set

func (*NullableWorkspacesExecuteCommand200Response) UnmarshalJSON

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

func (*NullableWorkspacesExecuteCommand200Response) Unset

type NullableWorkspacesExecuteCommandRequest

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

func (NullableWorkspacesExecuteCommandRequest) Get

func (NullableWorkspacesExecuteCommandRequest) IsSet

func (NullableWorkspacesExecuteCommandRequest) MarshalJSON

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

func (*NullableWorkspacesExecuteCommandRequest) Set

func (*NullableWorkspacesExecuteCommandRequest) UnmarshalJSON

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

func (*NullableWorkspacesExecuteCommandRequest) Unset

type NullableWorkspacesGetWorkspace200Response

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

func (NullableWorkspacesGetWorkspace200Response) Get

func (NullableWorkspacesGetWorkspace200Response) IsSet

func (NullableWorkspacesGetWorkspace200Response) MarshalJSON

func (*NullableWorkspacesGetWorkspace200Response) Set

func (*NullableWorkspacesGetWorkspace200Response) UnmarshalJSON

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

func (*NullableWorkspacesGetWorkspace200Response) Unset

type NullableWorkspacesGetWorkspaceStatus200Response

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

func (NullableWorkspacesGetWorkspaceStatus200Response) Get

func (NullableWorkspacesGetWorkspaceStatus200Response) IsSet

func (NullableWorkspacesGetWorkspaceStatus200Response) MarshalJSON

func (*NullableWorkspacesGetWorkspaceStatus200Response) Set

func (*NullableWorkspacesGetWorkspaceStatus200Response) UnmarshalJSON

func (*NullableWorkspacesGetWorkspaceStatus200Response) Unset

type NullableWorkspacesGitHead200Response

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

func (NullableWorkspacesGitHead200Response) Get

func (NullableWorkspacesGitHead200Response) IsSet

func (NullableWorkspacesGitHead200Response) MarshalJSON

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

func (*NullableWorkspacesGitHead200Response) Set

func (*NullableWorkspacesGitHead200Response) UnmarshalJSON

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

func (*NullableWorkspacesGitHead200Response) Unset

type NullableWorkspacesListEnvVars200ResponseInner

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

func (NullableWorkspacesListEnvVars200ResponseInner) Get

func (NullableWorkspacesListEnvVars200ResponseInner) IsSet

func (NullableWorkspacesListEnvVars200ResponseInner) MarshalJSON

func (*NullableWorkspacesListEnvVars200ResponseInner) Set

func (*NullableWorkspacesListEnvVars200ResponseInner) UnmarshalJSON

func (*NullableWorkspacesListEnvVars200ResponseInner) Unset

type NullableWorkspacesLogs200Response

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

func (NullableWorkspacesLogs200Response) Get

func (NullableWorkspacesLogs200Response) IsSet

func (NullableWorkspacesLogs200Response) MarshalJSON

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

func (*NullableWorkspacesLogs200Response) Set

func (*NullableWorkspacesLogs200Response) UnmarshalJSON

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

func (*NullableWorkspacesLogs200Response) Unset

type NullableWorkspacesLogsGetResponse

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

func (NullableWorkspacesLogsGetResponse) Get

func (NullableWorkspacesLogsGetResponse) IsSet

func (NullableWorkspacesLogsGetResponse) MarshalJSON

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

func (*NullableWorkspacesLogsGetResponse) Set

func (*NullableWorkspacesLogsGetResponse) UnmarshalJSON

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

func (*NullableWorkspacesLogsGetResponse) Unset

type NullableWorkspacesLogsGetResponseDataInner

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

func (NullableWorkspacesLogsGetResponseDataInner) Get

func (NullableWorkspacesLogsGetResponseDataInner) IsSet

func (NullableWorkspacesLogsGetResponseDataInner) MarshalJSON

func (*NullableWorkspacesLogsGetResponseDataInner) Set

func (*NullableWorkspacesLogsGetResponseDataInner) UnmarshalJSON

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

func (*NullableWorkspacesLogsGetResponseDataInner) Unset

type NullableWorkspacesPipelineStatus200ResponseInner

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

func (NullableWorkspacesPipelineStatus200ResponseInner) Get

func (NullableWorkspacesPipelineStatus200ResponseInner) IsSet

func (NullableWorkspacesPipelineStatus200ResponseInner) MarshalJSON

func (*NullableWorkspacesPipelineStatus200ResponseInner) Set

func (*NullableWorkspacesPipelineStatus200ResponseInner) UnmarshalJSON

func (*NullableWorkspacesPipelineStatus200ResponseInner) Unset

type NullableWorkspacesPipelineStatus200ResponseInnerStepsInner

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

func (NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) Get

func (NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) IsSet

func (NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) MarshalJSON

func (*NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) Set

func (*NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) UnmarshalJSON

func (*NullableWorkspacesPipelineStatus200ResponseInnerStepsInner) Unset

type NullableWorkspacesReplicaLogs200Response

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

func (NullableWorkspacesReplicaLogs200Response) Get

func (NullableWorkspacesReplicaLogs200Response) IsSet

func (NullableWorkspacesReplicaLogs200Response) MarshalJSON

func (*NullableWorkspacesReplicaLogs200Response) Set

func (*NullableWorkspacesReplicaLogs200Response) UnmarshalJSON

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

func (*NullableWorkspacesReplicaLogs200Response) Unset

type NullableWorkspacesReplicaLogsGetResponse

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

func (NullableWorkspacesReplicaLogsGetResponse) Get

func (NullableWorkspacesReplicaLogsGetResponse) IsSet

func (NullableWorkspacesReplicaLogsGetResponse) MarshalJSON

func (*NullableWorkspacesReplicaLogsGetResponse) Set

func (*NullableWorkspacesReplicaLogsGetResponse) UnmarshalJSON

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

func (*NullableWorkspacesReplicaLogsGetResponse) Unset

type NullableWorkspacesServerLogs200Response

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

func (NullableWorkspacesServerLogs200Response) Get

func (NullableWorkspacesServerLogs200Response) IsSet

func (NullableWorkspacesServerLogs200Response) MarshalJSON

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

func (*NullableWorkspacesServerLogs200Response) Set

func (*NullableWorkspacesServerLogs200Response) UnmarshalJSON

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

func (*NullableWorkspacesServerLogs200Response) Unset

type NullableWorkspacesServerLogsGetResponse

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

func (NullableWorkspacesServerLogsGetResponse) Get

func (NullableWorkspacesServerLogsGetResponse) IsSet

func (NullableWorkspacesServerLogsGetResponse) MarshalJSON

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

func (*NullableWorkspacesServerLogsGetResponse) Set

func (*NullableWorkspacesServerLogsGetResponse) UnmarshalJSON

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

func (*NullableWorkspacesServerLogsGetResponse) Unset

type NullableWorkspacesUpdateWorkspaceRequest

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

func (NullableWorkspacesUpdateWorkspaceRequest) Get

func (NullableWorkspacesUpdateWorkspaceRequest) IsSet

func (NullableWorkspacesUpdateWorkspaceRequest) MarshalJSON

func (*NullableWorkspacesUpdateWorkspaceRequest) Set

func (*NullableWorkspacesUpdateWorkspaceRequest) UnmarshalJSON

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

func (*NullableWorkspacesUpdateWorkspaceRequest) Unset

type Problem

type Problem struct {
	Data  ProblemData `json:"data"`
	Event string      `json:"event"`
}

Problem An SSE event of type problem. Data contains a JSON object with given properties.

func NewProblem

func NewProblem(data ProblemData, event string) *Problem

NewProblem instantiates a new Problem 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 NewProblemWithDefaults

func NewProblemWithDefaults() *Problem

NewProblemWithDefaults instantiates a new Problem 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 (*Problem) GetData

func (o *Problem) GetData() ProblemData

GetData returns the Data field value

func (*Problem) GetDataOk

func (o *Problem) GetDataOk() (*ProblemData, bool)

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

func (*Problem) GetEvent

func (o *Problem) GetEvent() string

GetEvent returns the Event field value

func (*Problem) GetEventOk

func (o *Problem) GetEventOk() (*string, bool)

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

func (Problem) MarshalJSON

func (o Problem) MarshalJSON() ([]byte, error)

func (*Problem) SetData

func (o *Problem) SetData(v ProblemData)

SetData sets field value

func (*Problem) SetEvent

func (o *Problem) SetEvent(v string)

SetEvent sets field value

func (Problem) ToMap

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

func (*Problem) UnmarshalJSON

func (o *Problem) UnmarshalJSON(data []byte) (err error)

type ProblemData

type ProblemData struct {
	Status  int     `json:"status"`
	Title   string  `json:"title"`
	Detail  *string `json:"detail,omitempty"`
	TraceId string  `json:"traceId"`
}

ProblemData struct for ProblemData

func NewProblemData

func NewProblemData(status int, title string, traceId string) *ProblemData

NewProblemData instantiates a new ProblemData 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 NewProblemDataWithDefaults

func NewProblemDataWithDefaults() *ProblemData

NewProblemDataWithDefaults instantiates a new ProblemData 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 (*ProblemData) GetDetail

func (o *ProblemData) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ProblemData) GetDetailOk

func (o *ProblemData) GetDetailOk() (*string, bool)

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

func (*ProblemData) GetStatus

func (o *ProblemData) GetStatus() int

GetStatus returns the Status field value

func (*ProblemData) GetStatusOk

func (o *ProblemData) GetStatusOk() (*int, bool)

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

func (*ProblemData) GetTitle

func (o *ProblemData) GetTitle() string

GetTitle returns the Title field value

func (*ProblemData) GetTitleOk

func (o *ProblemData) GetTitleOk() (*string, bool)

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

func (*ProblemData) GetTraceId

func (o *ProblemData) GetTraceId() string

GetTraceId returns the TraceId field value

func (*ProblemData) GetTraceIdOk

func (o *ProblemData) GetTraceIdOk() (*string, bool)

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

func (*ProblemData) HasDetail

func (o *ProblemData) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (ProblemData) MarshalJSON

func (o ProblemData) MarshalJSON() ([]byte, error)

func (*ProblemData) SetDetail

func (o *ProblemData) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ProblemData) SetStatus

func (o *ProblemData) SetStatus(v int)

SetStatus sets field value

func (*ProblemData) SetTitle

func (o *ProblemData) SetTitle(v string)

SetTitle sets field value

func (*ProblemData) SetTraceId

func (o *ProblemData) SetTraceId(v string)

SetTraceId sets field value

func (ProblemData) ToMap

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

func (*ProblemData) UnmarshalJSON

func (o *ProblemData) UnmarshalJSON(data []byte) (err error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type TeamsAPI

type TeamsAPI interface {

	/*
		TeamsCreateTeam createTeam

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

	// TeamsCreateTeamExecute executes the request
	//  @return TeamsGetTeam200Response
	TeamsCreateTeamExecute(r ApiTeamsCreateTeamRequest) (*TeamsGetTeam200Response, *http.Response, error)

	/*
		TeamsDeleteTeam deleteTeam

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@return ApiTeamsDeleteTeamRequest
	*/
	TeamsDeleteTeam(ctx context.Context, teamId float32) ApiTeamsDeleteTeamRequest

	// TeamsDeleteTeamExecute executes the request
	TeamsDeleteTeamExecute(r ApiTeamsDeleteTeamRequest) (*http.Response, error)

	/*
		TeamsGetTeam getTeam

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@return ApiTeamsGetTeamRequest
	*/
	TeamsGetTeam(ctx context.Context, teamId float32) ApiTeamsGetTeamRequest

	// TeamsGetTeamExecute executes the request
	//  @return TeamsGetTeam200Response
	TeamsGetTeamExecute(r ApiTeamsGetTeamRequest) (*TeamsGetTeam200Response, *http.Response, error)

	/*
		TeamsListTeams listTeams

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

	// TeamsListTeamsExecute executes the request
	//  @return []TeamsListTeams200ResponseInner
	TeamsListTeamsExecute(r ApiTeamsListTeamsRequest) ([]TeamsListTeams200ResponseInner, *http.Response, error)
}

type TeamsAPIService

type TeamsAPIService service

TeamsAPIService TeamsAPI service

func (*TeamsAPIService) TeamsCreateTeam

func (a *TeamsAPIService) TeamsCreateTeam(ctx context.Context) ApiTeamsCreateTeamRequest

TeamsCreateTeam createTeam

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

func (*TeamsAPIService) TeamsCreateTeamExecute

Execute executes the request

@return TeamsGetTeam200Response

func (*TeamsAPIService) TeamsDeleteTeam

func (a *TeamsAPIService) TeamsDeleteTeam(ctx context.Context, teamId float32) ApiTeamsDeleteTeamRequest

TeamsDeleteTeam deleteTeam

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

func (*TeamsAPIService) TeamsDeleteTeamExecute

func (a *TeamsAPIService) TeamsDeleteTeamExecute(r ApiTeamsDeleteTeamRequest) (*http.Response, error)

Execute executes the request

func (*TeamsAPIService) TeamsGetTeam

func (a *TeamsAPIService) TeamsGetTeam(ctx context.Context, teamId float32) ApiTeamsGetTeamRequest

TeamsGetTeam getTeam

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

func (*TeamsAPIService) TeamsGetTeamExecute

Execute executes the request

@return TeamsGetTeam200Response

func (*TeamsAPIService) TeamsListTeams

TeamsListTeams listTeams

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

func (*TeamsAPIService) TeamsListTeamsExecute

Execute executes the request

@return []TeamsListTeams200ResponseInner

type TeamsCreateTeamRequest

type TeamsCreateTeamRequest struct {
	Name string `json:"name"`
	Dc   int    `json:"dc"`
}

TeamsCreateTeamRequest struct for TeamsCreateTeamRequest

func NewTeamsCreateTeamRequest

func NewTeamsCreateTeamRequest(name string, dc int) *TeamsCreateTeamRequest

NewTeamsCreateTeamRequest instantiates a new TeamsCreateTeamRequest 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 NewTeamsCreateTeamRequestWithDefaults

func NewTeamsCreateTeamRequestWithDefaults() *TeamsCreateTeamRequest

NewTeamsCreateTeamRequestWithDefaults instantiates a new TeamsCreateTeamRequest 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 (*TeamsCreateTeamRequest) GetDc

func (o *TeamsCreateTeamRequest) GetDc() int

GetDc returns the Dc field value

func (*TeamsCreateTeamRequest) GetDcOk

func (o *TeamsCreateTeamRequest) GetDcOk() (*int, bool)

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

func (*TeamsCreateTeamRequest) GetName

func (o *TeamsCreateTeamRequest) GetName() string

GetName returns the Name field value

func (*TeamsCreateTeamRequest) GetNameOk

func (o *TeamsCreateTeamRequest) GetNameOk() (*string, bool)

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

func (TeamsCreateTeamRequest) MarshalJSON

func (o TeamsCreateTeamRequest) MarshalJSON() ([]byte, error)

func (*TeamsCreateTeamRequest) SetDc

func (o *TeamsCreateTeamRequest) SetDc(v int)

SetDc sets field value

func (*TeamsCreateTeamRequest) SetName

func (o *TeamsCreateTeamRequest) SetName(v string)

SetName sets field value

func (TeamsCreateTeamRequest) ToMap

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

func (*TeamsCreateTeamRequest) UnmarshalJSON

func (o *TeamsCreateTeamRequest) UnmarshalJSON(data []byte) (err error)

type TeamsGetTeam200Response

type TeamsGetTeam200Response struct {
	Id                  int            `json:"id"`
	DefaultDataCenterId int            `json:"defaultDataCenterId"`
	Name                string         `json:"name"`
	Description         NullableString `json:"description,omitempty"`
	AvatarId            NullableString `json:"avatarId,omitempty"`
	AvatarUrl           NullableString `json:"avatarUrl,omitempty"`
	IsFirst             *bool          `json:"isFirst,omitempty"`
}

TeamsGetTeam200Response struct for TeamsGetTeam200Response

func NewTeamsGetTeam200Response

func NewTeamsGetTeam200Response(id int, defaultDataCenterId int, name string) *TeamsGetTeam200Response

NewTeamsGetTeam200Response instantiates a new TeamsGetTeam200Response 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 NewTeamsGetTeam200ResponseWithDefaults

func NewTeamsGetTeam200ResponseWithDefaults() *TeamsGetTeam200Response

NewTeamsGetTeam200ResponseWithDefaults instantiates a new TeamsGetTeam200Response 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 (*TeamsGetTeam200Response) GetAvatarId

func (o *TeamsGetTeam200Response) GetAvatarId() string

GetAvatarId returns the AvatarId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsGetTeam200Response) GetAvatarIdOk

func (o *TeamsGetTeam200Response) GetAvatarIdOk() (*string, bool)

GetAvatarIdOk returns a tuple with the AvatarId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsGetTeam200Response) GetAvatarUrl

func (o *TeamsGetTeam200Response) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsGetTeam200Response) GetAvatarUrlOk

func (o *TeamsGetTeam200Response) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsGetTeam200Response) GetDefaultDataCenterId

func (o *TeamsGetTeam200Response) GetDefaultDataCenterId() int

GetDefaultDataCenterId returns the DefaultDataCenterId field value

func (*TeamsGetTeam200Response) GetDefaultDataCenterIdOk

func (o *TeamsGetTeam200Response) GetDefaultDataCenterIdOk() (*int, bool)

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

func (*TeamsGetTeam200Response) GetDescription

func (o *TeamsGetTeam200Response) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsGetTeam200Response) GetDescriptionOk

func (o *TeamsGetTeam200Response) GetDescriptionOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsGetTeam200Response) GetId

func (o *TeamsGetTeam200Response) GetId() int

GetId returns the Id field value

func (*TeamsGetTeam200Response) GetIdOk

func (o *TeamsGetTeam200Response) GetIdOk() (*int, bool)

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

func (*TeamsGetTeam200Response) GetIsFirst

func (o *TeamsGetTeam200Response) GetIsFirst() bool

GetIsFirst returns the IsFirst field value if set, zero value otherwise.

func (*TeamsGetTeam200Response) GetIsFirstOk

func (o *TeamsGetTeam200Response) GetIsFirstOk() (*bool, bool)

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

func (*TeamsGetTeam200Response) GetName

func (o *TeamsGetTeam200Response) GetName() string

GetName returns the Name field value

func (*TeamsGetTeam200Response) GetNameOk

func (o *TeamsGetTeam200Response) GetNameOk() (*string, bool)

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

func (*TeamsGetTeam200Response) HasAvatarId

func (o *TeamsGetTeam200Response) HasAvatarId() bool

HasAvatarId returns a boolean if a field has been set.

func (*TeamsGetTeam200Response) HasAvatarUrl

func (o *TeamsGetTeam200Response) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*TeamsGetTeam200Response) HasDescription

func (o *TeamsGetTeam200Response) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TeamsGetTeam200Response) HasIsFirst

func (o *TeamsGetTeam200Response) HasIsFirst() bool

HasIsFirst returns a boolean if a field has been set.

func (TeamsGetTeam200Response) MarshalJSON

func (o TeamsGetTeam200Response) MarshalJSON() ([]byte, error)

func (*TeamsGetTeam200Response) SetAvatarId

func (o *TeamsGetTeam200Response) SetAvatarId(v string)

SetAvatarId gets a reference to the given NullableString and assigns it to the AvatarId field.

func (*TeamsGetTeam200Response) SetAvatarIdNil

func (o *TeamsGetTeam200Response) SetAvatarIdNil()

SetAvatarIdNil sets the value for AvatarId to be an explicit nil

func (*TeamsGetTeam200Response) SetAvatarUrl

func (o *TeamsGetTeam200Response) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given NullableString and assigns it to the AvatarUrl field.

func (*TeamsGetTeam200Response) SetAvatarUrlNil

func (o *TeamsGetTeam200Response) SetAvatarUrlNil()

SetAvatarUrlNil sets the value for AvatarUrl to be an explicit nil

func (*TeamsGetTeam200Response) SetDefaultDataCenterId

func (o *TeamsGetTeam200Response) SetDefaultDataCenterId(v int)

SetDefaultDataCenterId sets field value

func (*TeamsGetTeam200Response) SetDescription

func (o *TeamsGetTeam200Response) SetDescription(v string)

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

func (*TeamsGetTeam200Response) SetDescriptionNil

func (o *TeamsGetTeam200Response) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TeamsGetTeam200Response) SetId

func (o *TeamsGetTeam200Response) SetId(v int)

SetId sets field value

func (*TeamsGetTeam200Response) SetIsFirst

func (o *TeamsGetTeam200Response) SetIsFirst(v bool)

SetIsFirst gets a reference to the given bool and assigns it to the IsFirst field.

func (*TeamsGetTeam200Response) SetName

func (o *TeamsGetTeam200Response) SetName(v string)

SetName sets field value

func (TeamsGetTeam200Response) ToMap

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

func (*TeamsGetTeam200Response) UnmarshalJSON

func (o *TeamsGetTeam200Response) UnmarshalJSON(data []byte) (err error)

func (*TeamsGetTeam200Response) UnsetAvatarId

func (o *TeamsGetTeam200Response) UnsetAvatarId()

UnsetAvatarId ensures that no value is present for AvatarId, not even an explicit nil

func (*TeamsGetTeam200Response) UnsetAvatarUrl

func (o *TeamsGetTeam200Response) UnsetAvatarUrl()

UnsetAvatarUrl ensures that no value is present for AvatarUrl, not even an explicit nil

func (*TeamsGetTeam200Response) UnsetDescription

func (o *TeamsGetTeam200Response) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type TeamsListTeams200ResponseInner

type TeamsListTeams200ResponseInner struct {
	Id                  int            `json:"id"`
	DefaultDataCenterId int            `json:"defaultDataCenterId"`
	Name                string         `json:"name"`
	Description         NullableString `json:"description,omitempty"`
	AvatarId            NullableString `json:"avatarId,omitempty"`
	AvatarUrl           NullableString `json:"avatarUrl,omitempty"`
	IsFirst             *bool          `json:"isFirst,omitempty"`
	// Role{0:'Admin',1:'Member'}
	Role int `json:"role"`
}

TeamsListTeams200ResponseInner struct for TeamsListTeams200ResponseInner

func NewTeamsListTeams200ResponseInner

func NewTeamsListTeams200ResponseInner(id int, defaultDataCenterId int, name string, role int) *TeamsListTeams200ResponseInner

NewTeamsListTeams200ResponseInner instantiates a new TeamsListTeams200ResponseInner 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 NewTeamsListTeams200ResponseInnerWithDefaults

func NewTeamsListTeams200ResponseInnerWithDefaults() *TeamsListTeams200ResponseInner

NewTeamsListTeams200ResponseInnerWithDefaults instantiates a new TeamsListTeams200ResponseInner 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 (*TeamsListTeams200ResponseInner) GetAvatarId

func (o *TeamsListTeams200ResponseInner) GetAvatarId() string

GetAvatarId returns the AvatarId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsListTeams200ResponseInner) GetAvatarIdOk

func (o *TeamsListTeams200ResponseInner) GetAvatarIdOk() (*string, bool)

GetAvatarIdOk returns a tuple with the AvatarId field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsListTeams200ResponseInner) GetAvatarUrl

func (o *TeamsListTeams200ResponseInner) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsListTeams200ResponseInner) GetAvatarUrlOk

func (o *TeamsListTeams200ResponseInner) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsListTeams200ResponseInner) GetDefaultDataCenterId

func (o *TeamsListTeams200ResponseInner) GetDefaultDataCenterId() int

GetDefaultDataCenterId returns the DefaultDataCenterId field value

func (*TeamsListTeams200ResponseInner) GetDefaultDataCenterIdOk

func (o *TeamsListTeams200ResponseInner) GetDefaultDataCenterIdOk() (*int, bool)

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

func (*TeamsListTeams200ResponseInner) GetDescription

func (o *TeamsListTeams200ResponseInner) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise (both if not set or set to explicit null).

func (*TeamsListTeams200ResponseInner) GetDescriptionOk

func (o *TeamsListTeams200ResponseInner) GetDescriptionOk() (*string, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*TeamsListTeams200ResponseInner) GetId

GetId returns the Id field value

func (*TeamsListTeams200ResponseInner) GetIdOk

func (o *TeamsListTeams200ResponseInner) GetIdOk() (*int, bool)

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

func (*TeamsListTeams200ResponseInner) GetIsFirst

func (o *TeamsListTeams200ResponseInner) GetIsFirst() bool

GetIsFirst returns the IsFirst field value if set, zero value otherwise.

func (*TeamsListTeams200ResponseInner) GetIsFirstOk

func (o *TeamsListTeams200ResponseInner) GetIsFirstOk() (*bool, bool)

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

func (*TeamsListTeams200ResponseInner) GetName

GetName returns the Name field value

func (*TeamsListTeams200ResponseInner) GetNameOk

func (o *TeamsListTeams200ResponseInner) GetNameOk() (*string, bool)

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

func (*TeamsListTeams200ResponseInner) GetRole

func (o *TeamsListTeams200ResponseInner) GetRole() int

GetRole returns the Role field value

func (*TeamsListTeams200ResponseInner) GetRoleOk

func (o *TeamsListTeams200ResponseInner) GetRoleOk() (*int, bool)

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

func (*TeamsListTeams200ResponseInner) HasAvatarId

func (o *TeamsListTeams200ResponseInner) HasAvatarId() bool

HasAvatarId returns a boolean if a field has been set.

func (*TeamsListTeams200ResponseInner) HasAvatarUrl

func (o *TeamsListTeams200ResponseInner) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*TeamsListTeams200ResponseInner) HasDescription

func (o *TeamsListTeams200ResponseInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*TeamsListTeams200ResponseInner) HasIsFirst

func (o *TeamsListTeams200ResponseInner) HasIsFirst() bool

HasIsFirst returns a boolean if a field has been set.

func (TeamsListTeams200ResponseInner) MarshalJSON

func (o TeamsListTeams200ResponseInner) MarshalJSON() ([]byte, error)

func (*TeamsListTeams200ResponseInner) SetAvatarId

func (o *TeamsListTeams200ResponseInner) SetAvatarId(v string)

SetAvatarId gets a reference to the given NullableString and assigns it to the AvatarId field.

func (*TeamsListTeams200ResponseInner) SetAvatarIdNil

func (o *TeamsListTeams200ResponseInner) SetAvatarIdNil()

SetAvatarIdNil sets the value for AvatarId to be an explicit nil

func (*TeamsListTeams200ResponseInner) SetAvatarUrl

func (o *TeamsListTeams200ResponseInner) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given NullableString and assigns it to the AvatarUrl field.

func (*TeamsListTeams200ResponseInner) SetAvatarUrlNil

func (o *TeamsListTeams200ResponseInner) SetAvatarUrlNil()

SetAvatarUrlNil sets the value for AvatarUrl to be an explicit nil

func (*TeamsListTeams200ResponseInner) SetDefaultDataCenterId

func (o *TeamsListTeams200ResponseInner) SetDefaultDataCenterId(v int)

SetDefaultDataCenterId sets field value

func (*TeamsListTeams200ResponseInner) SetDescription

func (o *TeamsListTeams200ResponseInner) SetDescription(v string)

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

func (*TeamsListTeams200ResponseInner) SetDescriptionNil

func (o *TeamsListTeams200ResponseInner) SetDescriptionNil()

SetDescriptionNil sets the value for Description to be an explicit nil

func (*TeamsListTeams200ResponseInner) SetId

func (o *TeamsListTeams200ResponseInner) SetId(v int)

SetId sets field value

func (*TeamsListTeams200ResponseInner) SetIsFirst

func (o *TeamsListTeams200ResponseInner) SetIsFirst(v bool)

SetIsFirst gets a reference to the given bool and assigns it to the IsFirst field.

func (*TeamsListTeams200ResponseInner) SetName

func (o *TeamsListTeams200ResponseInner) SetName(v string)

SetName sets field value

func (*TeamsListTeams200ResponseInner) SetRole

func (o *TeamsListTeams200ResponseInner) SetRole(v int)

SetRole sets field value

func (TeamsListTeams200ResponseInner) ToMap

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

func (*TeamsListTeams200ResponseInner) UnmarshalJSON

func (o *TeamsListTeams200ResponseInner) UnmarshalJSON(data []byte) (err error)

func (*TeamsListTeams200ResponseInner) UnsetAvatarId

func (o *TeamsListTeams200ResponseInner) UnsetAvatarId()

UnsetAvatarId ensures that no value is present for AvatarId, not even an explicit nil

func (*TeamsListTeams200ResponseInner) UnsetAvatarUrl

func (o *TeamsListTeams200ResponseInner) UnsetAvatarUrl()

UnsetAvatarUrl ensures that no value is present for AvatarUrl, not even an explicit nil

func (*TeamsListTeams200ResponseInner) UnsetDescription

func (o *TeamsListTeams200ResponseInner) UnsetDescription()

UnsetDescription ensures that no value is present for Description, not even an explicit nil

type WorkspacesAPI

type WorkspacesAPI interface {

	/*
		WorkspacesCreateWorkspace createWorkspace

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

	// WorkspacesCreateWorkspaceExecute executes the request
	//  @return WorkspacesGetWorkspace200Response
	WorkspacesCreateWorkspaceExecute(r ApiWorkspacesCreateWorkspaceRequest) (*WorkspacesGetWorkspace200Response, *http.Response, error)

	/*
		WorkspacesDeleteEnvVar deleteEnvVar

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesDeleteEnvVarRequest
	*/
	WorkspacesDeleteEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteEnvVarRequest

	// WorkspacesDeleteEnvVarExecute executes the request
	WorkspacesDeleteEnvVarExecute(r ApiWorkspacesDeleteEnvVarRequest) (*http.Response, error)

	/*
		WorkspacesDeleteWorkspace deleteWorkspace

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesDeleteWorkspaceRequest
	*/
	WorkspacesDeleteWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteWorkspaceRequest

	// WorkspacesDeleteWorkspaceExecute executes the request
	WorkspacesDeleteWorkspaceExecute(r ApiWorkspacesDeleteWorkspaceRequest) (*http.Response, error)

	/*
		WorkspacesDeployLandscape deployLandscape

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesDeployLandscapeRequest
	*/
	WorkspacesDeployLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesDeployLandscapeRequest

	// WorkspacesDeployLandscapeExecute executes the request
	WorkspacesDeployLandscapeExecute(r ApiWorkspacesDeployLandscapeRequest) (*http.Response, error)

	/*
		WorkspacesDeployLandscape1 deployLandscape

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param profile
		@return ApiWorkspacesDeployLandscape1Request
	*/
	WorkspacesDeployLandscape1(ctx context.Context, workspaceId float32, profile string) ApiWorkspacesDeployLandscape1Request

	// WorkspacesDeployLandscape1Execute executes the request
	WorkspacesDeployLandscape1Execute(r ApiWorkspacesDeployLandscape1Request) (*http.Response, error)

	/*
		WorkspacesExecuteCommand executeCommand

		Executes the command with "bash -c command". Timeouts after 5000ms.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesExecuteCommandRequest
	*/
	WorkspacesExecuteCommand(ctx context.Context, workspaceId float32) ApiWorkspacesExecuteCommandRequest

	// WorkspacesExecuteCommandExecute executes the request
	//  @return WorkspacesExecuteCommand200Response
	WorkspacesExecuteCommandExecute(r ApiWorkspacesExecuteCommandRequest) (*WorkspacesExecuteCommand200Response, *http.Response, error)

	/*
		WorkspacesGetWorkspace getWorkspace

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesGetWorkspaceRequest
	*/
	WorkspacesGetWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceRequest

	// WorkspacesGetWorkspaceExecute executes the request
	//  @return WorkspacesGetWorkspace200Response
	WorkspacesGetWorkspaceExecute(r ApiWorkspacesGetWorkspaceRequest) (*WorkspacesGetWorkspace200Response, *http.Response, error)

	/*
		WorkspacesGetWorkspaceStatus getWorkspaceStatus

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesGetWorkspaceStatusRequest
	*/
	WorkspacesGetWorkspaceStatus(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceStatusRequest

	// WorkspacesGetWorkspaceStatusExecute executes the request
	//  @return WorkspacesGetWorkspaceStatus200Response
	WorkspacesGetWorkspaceStatusExecute(r ApiWorkspacesGetWorkspaceStatusRequest) (*WorkspacesGetWorkspaceStatus200Response, *http.Response, error)

	/*
		WorkspacesGitHead gitHead

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesGitHeadRequest
	*/
	WorkspacesGitHead(ctx context.Context, workspaceId float32) ApiWorkspacesGitHeadRequest

	// WorkspacesGitHeadExecute executes the request
	//  @return WorkspacesGitHead200Response
	WorkspacesGitHeadExecute(r ApiWorkspacesGitHeadRequest) (*WorkspacesGitHead200Response, *http.Response, error)

	/*
		WorkspacesGitPull gitPull

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesGitPullRequest
	*/
	WorkspacesGitPull(ctx context.Context, workspaceId float32) ApiWorkspacesGitPullRequest

	// WorkspacesGitPullExecute executes the request
	WorkspacesGitPullExecute(r ApiWorkspacesGitPullRequest) (*http.Response, error)

	/*
		WorkspacesGitPull1 gitPull

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param remote
		@return ApiWorkspacesGitPull1Request
	*/
	WorkspacesGitPull1(ctx context.Context, workspaceId float32, remote string) ApiWorkspacesGitPull1Request

	// WorkspacesGitPull1Execute executes the request
	WorkspacesGitPull1Execute(r ApiWorkspacesGitPull1Request) (*http.Response, error)

	/*
		WorkspacesGitPull2 gitPull

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param remote
		@param branch
		@return ApiWorkspacesGitPull2Request
	*/
	WorkspacesGitPull2(ctx context.Context, workspaceId float32, remote string, branch string) ApiWorkspacesGitPull2Request

	// WorkspacesGitPull2Execute executes the request
	WorkspacesGitPull2Execute(r ApiWorkspacesGitPull2Request) (*http.Response, error)

	/*
		WorkspacesListEnvVars listEnvVars

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesListEnvVarsRequest
	*/
	WorkspacesListEnvVars(ctx context.Context, workspaceId float32) ApiWorkspacesListEnvVarsRequest

	// WorkspacesListEnvVarsExecute executes the request
	//  @return []WorkspacesListEnvVars200ResponseInner
	WorkspacesListEnvVarsExecute(r ApiWorkspacesListEnvVarsRequest) ([]WorkspacesListEnvVars200ResponseInner, *http.Response, error)

	/*
		WorkspacesListWorkspaces listWorkspaces

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param teamId
		@return ApiWorkspacesListWorkspacesRequest
	*/
	WorkspacesListWorkspaces(ctx context.Context, teamId float32) ApiWorkspacesListWorkspacesRequest

	// WorkspacesListWorkspacesExecute executes the request
	//  @return []WorkspacesGetWorkspace200Response
	WorkspacesListWorkspacesExecute(r ApiWorkspacesListWorkspacesRequest) ([]WorkspacesGetWorkspace200Response, *http.Response, error)

	/*
		WorkspacesLogs logs

		Returns a stream of logs for a given "stage" and "step". For "run" stage logs of Multi Server Deployments use [serverLogs](#/workspaces/workspaces-serverLogs) or [replicaLogs](#/workspaces/workspaces-replicaLogs).

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param stage
		@param step
		@return ApiWorkspacesLogsRequest
	*/
	WorkspacesLogs(ctx context.Context, workspaceId float32, stage string, step float32) ApiWorkspacesLogsRequest

	// WorkspacesLogsExecute executes the request
	//  @return WorkspacesLogs200Response
	WorkspacesLogsExecute(r ApiWorkspacesLogsRequest) (*WorkspacesLogs200Response, *http.Response, error)

	/*
		WorkspacesPipelineStatus pipelineStatus

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param stage
		@return ApiWorkspacesPipelineStatusRequest
	*/
	WorkspacesPipelineStatus(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesPipelineStatusRequest

	// WorkspacesPipelineStatusExecute executes the request
	//  @return []WorkspacesPipelineStatus200ResponseInner
	WorkspacesPipelineStatusExecute(r ApiWorkspacesPipelineStatusRequest) ([]WorkspacesPipelineStatus200ResponseInner, *http.Response, error)

	/*
		WorkspacesReplicaLogs replicaLogs

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param step
		@param replica
		@return ApiWorkspacesReplicaLogsRequest
	*/
	WorkspacesReplicaLogs(ctx context.Context, workspaceId float32, step float32, replica string) ApiWorkspacesReplicaLogsRequest

	// WorkspacesReplicaLogsExecute executes the request
	//  @return WorkspacesReplicaLogs200Response
	WorkspacesReplicaLogsExecute(r ApiWorkspacesReplicaLogsRequest) (*WorkspacesReplicaLogs200Response, *http.Response, error)

	/*
		WorkspacesServerLogs serverLogs

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param step
		@param server
		@return ApiWorkspacesServerLogsRequest
	*/
	WorkspacesServerLogs(ctx context.Context, workspaceId float32, step float32, server string) ApiWorkspacesServerLogsRequest

	// WorkspacesServerLogsExecute executes the request
	//  @return WorkspacesServerLogs200Response
	WorkspacesServerLogsExecute(r ApiWorkspacesServerLogsRequest) (*WorkspacesServerLogs200Response, *http.Response, error)

	/*
		WorkspacesSetEnvVar setEnvVar

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesSetEnvVarRequest
	*/
	WorkspacesSetEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesSetEnvVarRequest

	// WorkspacesSetEnvVarExecute executes the request
	WorkspacesSetEnvVarExecute(r ApiWorkspacesSetEnvVarRequest) (*http.Response, error)

	/*
		WorkspacesStartPipelineStage startPipelineStage

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param stage
		@return ApiWorkspacesStartPipelineStageRequest
	*/
	WorkspacesStartPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStartPipelineStageRequest

	// WorkspacesStartPipelineStageExecute executes the request
	WorkspacesStartPipelineStageExecute(r ApiWorkspacesStartPipelineStageRequest) (*http.Response, error)

	/*
		WorkspacesStartPipelineStage1 startPipelineStage

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param stage
		@param profile
		@return ApiWorkspacesStartPipelineStage1Request
	*/
	WorkspacesStartPipelineStage1(ctx context.Context, workspaceId float32, stage string, profile string) ApiWorkspacesStartPipelineStage1Request

	// WorkspacesStartPipelineStage1Execute executes the request
	WorkspacesStartPipelineStage1Execute(r ApiWorkspacesStartPipelineStage1Request) (*http.Response, error)

	/*
		WorkspacesStopPipelineStage stopPipelineStage

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@param stage
		@return ApiWorkspacesStopPipelineStageRequest
	*/
	WorkspacesStopPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStopPipelineStageRequest

	// WorkspacesStopPipelineStageExecute executes the request
	WorkspacesStopPipelineStageExecute(r ApiWorkspacesStopPipelineStageRequest) (*http.Response, error)

	/*
		WorkspacesTeardownLandscape teardownLandscape

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesTeardownLandscapeRequest
	*/
	WorkspacesTeardownLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesTeardownLandscapeRequest

	// WorkspacesTeardownLandscapeExecute executes the request
	WorkspacesTeardownLandscapeExecute(r ApiWorkspacesTeardownLandscapeRequest) (*http.Response, error)

	/*
		WorkspacesUpdateWorkspace updateWorkspace

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param workspaceId
		@return ApiWorkspacesUpdateWorkspaceRequest
	*/
	WorkspacesUpdateWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesUpdateWorkspaceRequest

	// WorkspacesUpdateWorkspaceExecute executes the request
	WorkspacesUpdateWorkspaceExecute(r ApiWorkspacesUpdateWorkspaceRequest) (*http.Response, error)
}

type WorkspacesAPIService

type WorkspacesAPIService service

WorkspacesAPIService WorkspacesAPI service

func (*WorkspacesAPIService) WorkspacesCreateWorkspace

func (a *WorkspacesAPIService) WorkspacesCreateWorkspace(ctx context.Context) ApiWorkspacesCreateWorkspaceRequest

WorkspacesCreateWorkspace createWorkspace

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

func (*WorkspacesAPIService) WorkspacesCreateWorkspaceExecute

Execute executes the request

@return WorkspacesGetWorkspace200Response

func (*WorkspacesAPIService) WorkspacesDeleteEnvVar

func (a *WorkspacesAPIService) WorkspacesDeleteEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteEnvVarRequest

WorkspacesDeleteEnvVar deleteEnvVar

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

func (*WorkspacesAPIService) WorkspacesDeleteEnvVarExecute

func (a *WorkspacesAPIService) WorkspacesDeleteEnvVarExecute(r ApiWorkspacesDeleteEnvVarRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesDeleteWorkspace

func (a *WorkspacesAPIService) WorkspacesDeleteWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesDeleteWorkspaceRequest

WorkspacesDeleteWorkspace deleteWorkspace

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

func (*WorkspacesAPIService) WorkspacesDeleteWorkspaceExecute

func (a *WorkspacesAPIService) WorkspacesDeleteWorkspaceExecute(r ApiWorkspacesDeleteWorkspaceRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesDeployLandscape

func (a *WorkspacesAPIService) WorkspacesDeployLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesDeployLandscapeRequest

WorkspacesDeployLandscape deployLandscape

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

func (*WorkspacesAPIService) WorkspacesDeployLandscape1

func (a *WorkspacesAPIService) WorkspacesDeployLandscape1(ctx context.Context, workspaceId float32, profile string) ApiWorkspacesDeployLandscape1Request

WorkspacesDeployLandscape1 deployLandscape

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

func (*WorkspacesAPIService) WorkspacesDeployLandscape1Execute

func (a *WorkspacesAPIService) WorkspacesDeployLandscape1Execute(r ApiWorkspacesDeployLandscape1Request) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesDeployLandscapeExecute

func (a *WorkspacesAPIService) WorkspacesDeployLandscapeExecute(r ApiWorkspacesDeployLandscapeRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesExecuteCommand

func (a *WorkspacesAPIService) WorkspacesExecuteCommand(ctx context.Context, workspaceId float32) ApiWorkspacesExecuteCommandRequest

WorkspacesExecuteCommand executeCommand

Executes the command with "bash -c command". Timeouts after 5000ms.

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

func (*WorkspacesAPIService) WorkspacesExecuteCommandExecute

Execute executes the request

@return WorkspacesExecuteCommand200Response

func (*WorkspacesAPIService) WorkspacesGetWorkspace

func (a *WorkspacesAPIService) WorkspacesGetWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceRequest

WorkspacesGetWorkspace getWorkspace

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

func (*WorkspacesAPIService) WorkspacesGetWorkspaceExecute

Execute executes the request

@return WorkspacesGetWorkspace200Response

func (*WorkspacesAPIService) WorkspacesGetWorkspaceStatus

func (a *WorkspacesAPIService) WorkspacesGetWorkspaceStatus(ctx context.Context, workspaceId float32) ApiWorkspacesGetWorkspaceStatusRequest

WorkspacesGetWorkspaceStatus getWorkspaceStatus

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

func (*WorkspacesAPIService) WorkspacesGetWorkspaceStatusExecute

Execute executes the request

@return WorkspacesGetWorkspaceStatus200Response

func (*WorkspacesAPIService) WorkspacesGitHead

func (a *WorkspacesAPIService) WorkspacesGitHead(ctx context.Context, workspaceId float32) ApiWorkspacesGitHeadRequest

WorkspacesGitHead gitHead

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

func (*WorkspacesAPIService) WorkspacesGitHeadExecute

Execute executes the request

@return WorkspacesGitHead200Response

func (*WorkspacesAPIService) WorkspacesGitPull

func (a *WorkspacesAPIService) WorkspacesGitPull(ctx context.Context, workspaceId float32) ApiWorkspacesGitPullRequest

WorkspacesGitPull gitPull

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

func (*WorkspacesAPIService) WorkspacesGitPull1

func (a *WorkspacesAPIService) WorkspacesGitPull1(ctx context.Context, workspaceId float32, remote string) ApiWorkspacesGitPull1Request

WorkspacesGitPull1 gitPull

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

func (*WorkspacesAPIService) WorkspacesGitPull1Execute

func (a *WorkspacesAPIService) WorkspacesGitPull1Execute(r ApiWorkspacesGitPull1Request) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesGitPull2

func (a *WorkspacesAPIService) WorkspacesGitPull2(ctx context.Context, workspaceId float32, remote string, branch string) ApiWorkspacesGitPull2Request

WorkspacesGitPull2 gitPull

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

func (*WorkspacesAPIService) WorkspacesGitPull2Execute

func (a *WorkspacesAPIService) WorkspacesGitPull2Execute(r ApiWorkspacesGitPull2Request) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesGitPullExecute

func (a *WorkspacesAPIService) WorkspacesGitPullExecute(r ApiWorkspacesGitPullRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesListEnvVars

func (a *WorkspacesAPIService) WorkspacesListEnvVars(ctx context.Context, workspaceId float32) ApiWorkspacesListEnvVarsRequest

WorkspacesListEnvVars listEnvVars

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

func (*WorkspacesAPIService) WorkspacesListEnvVarsExecute

Execute executes the request

@return []WorkspacesListEnvVars200ResponseInner

func (*WorkspacesAPIService) WorkspacesListWorkspaces

func (a *WorkspacesAPIService) WorkspacesListWorkspaces(ctx context.Context, teamId float32) ApiWorkspacesListWorkspacesRequest

WorkspacesListWorkspaces listWorkspaces

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

func (*WorkspacesAPIService) WorkspacesListWorkspacesExecute

Execute executes the request

@return []WorkspacesGetWorkspace200Response

func (*WorkspacesAPIService) WorkspacesLogs

func (a *WorkspacesAPIService) WorkspacesLogs(ctx context.Context, workspaceId float32, stage string, step float32) ApiWorkspacesLogsRequest

WorkspacesLogs logs

Returns a stream of logs for a given "stage" and "step". For "run" stage logs of Multi Server Deployments use [serverLogs](#/workspaces/workspaces-serverLogs) or [replicaLogs](#/workspaces/workspaces-replicaLogs).

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

func (*WorkspacesAPIService) WorkspacesLogsExecute

Execute executes the request

@return WorkspacesLogs200Response

func (*WorkspacesAPIService) WorkspacesPipelineStatus

func (a *WorkspacesAPIService) WorkspacesPipelineStatus(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesPipelineStatusRequest

WorkspacesPipelineStatus pipelineStatus

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

func (*WorkspacesAPIService) WorkspacesPipelineStatusExecute

Execute executes the request

@return []WorkspacesPipelineStatus200ResponseInner

func (*WorkspacesAPIService) WorkspacesReplicaLogs

func (a *WorkspacesAPIService) WorkspacesReplicaLogs(ctx context.Context, workspaceId float32, step float32, replica string) ApiWorkspacesReplicaLogsRequest

WorkspacesReplicaLogs replicaLogs

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

func (*WorkspacesAPIService) WorkspacesReplicaLogsExecute

Execute executes the request

@return WorkspacesReplicaLogs200Response

func (*WorkspacesAPIService) WorkspacesServerLogs

func (a *WorkspacesAPIService) WorkspacesServerLogs(ctx context.Context, workspaceId float32, step float32, server string) ApiWorkspacesServerLogsRequest

WorkspacesServerLogs serverLogs

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

func (*WorkspacesAPIService) WorkspacesServerLogsExecute

Execute executes the request

@return WorkspacesServerLogs200Response

func (*WorkspacesAPIService) WorkspacesSetEnvVar

func (a *WorkspacesAPIService) WorkspacesSetEnvVar(ctx context.Context, workspaceId float32) ApiWorkspacesSetEnvVarRequest

WorkspacesSetEnvVar setEnvVar

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

func (*WorkspacesAPIService) WorkspacesSetEnvVarExecute

func (a *WorkspacesAPIService) WorkspacesSetEnvVarExecute(r ApiWorkspacesSetEnvVarRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesStartPipelineStage

func (a *WorkspacesAPIService) WorkspacesStartPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStartPipelineStageRequest

WorkspacesStartPipelineStage startPipelineStage

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

func (*WorkspacesAPIService) WorkspacesStartPipelineStage1

func (a *WorkspacesAPIService) WorkspacesStartPipelineStage1(ctx context.Context, workspaceId float32, stage string, profile string) ApiWorkspacesStartPipelineStage1Request

WorkspacesStartPipelineStage1 startPipelineStage

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

func (*WorkspacesAPIService) WorkspacesStartPipelineStage1Execute

func (a *WorkspacesAPIService) WorkspacesStartPipelineStage1Execute(r ApiWorkspacesStartPipelineStage1Request) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesStartPipelineStageExecute

func (a *WorkspacesAPIService) WorkspacesStartPipelineStageExecute(r ApiWorkspacesStartPipelineStageRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesStopPipelineStage

func (a *WorkspacesAPIService) WorkspacesStopPipelineStage(ctx context.Context, workspaceId float32, stage string) ApiWorkspacesStopPipelineStageRequest

WorkspacesStopPipelineStage stopPipelineStage

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

func (*WorkspacesAPIService) WorkspacesStopPipelineStageExecute

func (a *WorkspacesAPIService) WorkspacesStopPipelineStageExecute(r ApiWorkspacesStopPipelineStageRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesTeardownLandscape

func (a *WorkspacesAPIService) WorkspacesTeardownLandscape(ctx context.Context, workspaceId float32) ApiWorkspacesTeardownLandscapeRequest

WorkspacesTeardownLandscape teardownLandscape

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

func (*WorkspacesAPIService) WorkspacesTeardownLandscapeExecute

func (a *WorkspacesAPIService) WorkspacesTeardownLandscapeExecute(r ApiWorkspacesTeardownLandscapeRequest) (*http.Response, error)

Execute executes the request

func (*WorkspacesAPIService) WorkspacesUpdateWorkspace

func (a *WorkspacesAPIService) WorkspacesUpdateWorkspace(ctx context.Context, workspaceId float32) ApiWorkspacesUpdateWorkspaceRequest

WorkspacesUpdateWorkspace updateWorkspace

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

func (*WorkspacesAPIService) WorkspacesUpdateWorkspaceExecute

func (a *WorkspacesAPIService) WorkspacesUpdateWorkspaceExecute(r ApiWorkspacesUpdateWorkspaceRequest) (*http.Response, error)

Execute executes the request

type WorkspacesCreateWorkspaceRequest

type WorkspacesCreateWorkspaceRequest struct {
	TeamId            int     `json:"teamId"`
	Name              string  `json:"name"`
	PlanId            int     `json:"planId"`
	IsPrivateRepo     bool    `json:"isPrivateRepo"`
	Replicas          int     `json:"replicas"`
	GitUrl            *string `json:"gitUrl,omitempty"`
	InitialBranch     *string `json:"initialBranch,omitempty"`
	SourceWorkspaceId *int    `json:"sourceWorkspaceId,omitempty"`
	WelcomeMessage    *string `json:"welcomeMessage,omitempty"`
	VpnConfig         *string `json:"vpnConfig,omitempty"`
}

WorkspacesCreateWorkspaceRequest struct for WorkspacesCreateWorkspaceRequest

func NewWorkspacesCreateWorkspaceRequest

func NewWorkspacesCreateWorkspaceRequest(teamId int, name string, planId int, isPrivateRepo bool, replicas int) *WorkspacesCreateWorkspaceRequest

NewWorkspacesCreateWorkspaceRequest instantiates a new WorkspacesCreateWorkspaceRequest 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 NewWorkspacesCreateWorkspaceRequestWithDefaults

func NewWorkspacesCreateWorkspaceRequestWithDefaults() *WorkspacesCreateWorkspaceRequest

NewWorkspacesCreateWorkspaceRequestWithDefaults instantiates a new WorkspacesCreateWorkspaceRequest 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 (*WorkspacesCreateWorkspaceRequest) GetGitUrl

GetGitUrl returns the GitUrl field value if set, zero value otherwise.

func (*WorkspacesCreateWorkspaceRequest) GetGitUrlOk

func (o *WorkspacesCreateWorkspaceRequest) GetGitUrlOk() (*string, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetInitialBranch

func (o *WorkspacesCreateWorkspaceRequest) GetInitialBranch() string

GetInitialBranch returns the InitialBranch field value if set, zero value otherwise.

func (*WorkspacesCreateWorkspaceRequest) GetInitialBranchOk

func (o *WorkspacesCreateWorkspaceRequest) GetInitialBranchOk() (*string, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetIsPrivateRepo

func (o *WorkspacesCreateWorkspaceRequest) GetIsPrivateRepo() bool

GetIsPrivateRepo returns the IsPrivateRepo field value

func (*WorkspacesCreateWorkspaceRequest) GetIsPrivateRepoOk

func (o *WorkspacesCreateWorkspaceRequest) GetIsPrivateRepoOk() (*bool, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetName

GetName returns the Name field value

func (*WorkspacesCreateWorkspaceRequest) GetNameOk

func (o *WorkspacesCreateWorkspaceRequest) GetNameOk() (*string, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetPlanId

func (o *WorkspacesCreateWorkspaceRequest) GetPlanId() int

GetPlanId returns the PlanId field value

func (*WorkspacesCreateWorkspaceRequest) GetPlanIdOk

func (o *WorkspacesCreateWorkspaceRequest) GetPlanIdOk() (*int, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetReplicas

func (o *WorkspacesCreateWorkspaceRequest) GetReplicas() int

GetReplicas returns the Replicas field value

func (*WorkspacesCreateWorkspaceRequest) GetReplicasOk

func (o *WorkspacesCreateWorkspaceRequest) GetReplicasOk() (*int, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetSourceWorkspaceId

func (o *WorkspacesCreateWorkspaceRequest) GetSourceWorkspaceId() int

GetSourceWorkspaceId returns the SourceWorkspaceId field value if set, zero value otherwise.

func (*WorkspacesCreateWorkspaceRequest) GetSourceWorkspaceIdOk

func (o *WorkspacesCreateWorkspaceRequest) GetSourceWorkspaceIdOk() (*int, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetTeamId

func (o *WorkspacesCreateWorkspaceRequest) GetTeamId() int

GetTeamId returns the TeamId field value

func (*WorkspacesCreateWorkspaceRequest) GetTeamIdOk

func (o *WorkspacesCreateWorkspaceRequest) GetTeamIdOk() (*int, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetVpnConfig

func (o *WorkspacesCreateWorkspaceRequest) GetVpnConfig() string

GetVpnConfig returns the VpnConfig field value if set, zero value otherwise.

func (*WorkspacesCreateWorkspaceRequest) GetVpnConfigOk

func (o *WorkspacesCreateWorkspaceRequest) GetVpnConfigOk() (*string, bool)

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

func (*WorkspacesCreateWorkspaceRequest) GetWelcomeMessage

func (o *WorkspacesCreateWorkspaceRequest) GetWelcomeMessage() string

GetWelcomeMessage returns the WelcomeMessage field value if set, zero value otherwise.

func (*WorkspacesCreateWorkspaceRequest) GetWelcomeMessageOk

func (o *WorkspacesCreateWorkspaceRequest) GetWelcomeMessageOk() (*string, bool)

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

func (*WorkspacesCreateWorkspaceRequest) HasGitUrl

func (o *WorkspacesCreateWorkspaceRequest) HasGitUrl() bool

HasGitUrl returns a boolean if a field has been set.

func (*WorkspacesCreateWorkspaceRequest) HasInitialBranch

func (o *WorkspacesCreateWorkspaceRequest) HasInitialBranch() bool

HasInitialBranch returns a boolean if a field has been set.

func (*WorkspacesCreateWorkspaceRequest) HasSourceWorkspaceId

func (o *WorkspacesCreateWorkspaceRequest) HasSourceWorkspaceId() bool

HasSourceWorkspaceId returns a boolean if a field has been set.

func (*WorkspacesCreateWorkspaceRequest) HasVpnConfig

func (o *WorkspacesCreateWorkspaceRequest) HasVpnConfig() bool

HasVpnConfig returns a boolean if a field has been set.

func (*WorkspacesCreateWorkspaceRequest) HasWelcomeMessage

func (o *WorkspacesCreateWorkspaceRequest) HasWelcomeMessage() bool

HasWelcomeMessage returns a boolean if a field has been set.

func (WorkspacesCreateWorkspaceRequest) MarshalJSON

func (o WorkspacesCreateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*WorkspacesCreateWorkspaceRequest) SetGitUrl

func (o *WorkspacesCreateWorkspaceRequest) SetGitUrl(v string)

SetGitUrl gets a reference to the given string and assigns it to the GitUrl field.

func (*WorkspacesCreateWorkspaceRequest) SetInitialBranch

func (o *WorkspacesCreateWorkspaceRequest) SetInitialBranch(v string)

SetInitialBranch gets a reference to the given string and assigns it to the InitialBranch field.

func (*WorkspacesCreateWorkspaceRequest) SetIsPrivateRepo

func (o *WorkspacesCreateWorkspaceRequest) SetIsPrivateRepo(v bool)

SetIsPrivateRepo sets field value

func (*WorkspacesCreateWorkspaceRequest) SetName

SetName sets field value

func (*WorkspacesCreateWorkspaceRequest) SetPlanId

func (o *WorkspacesCreateWorkspaceRequest) SetPlanId(v int)

SetPlanId sets field value

func (*WorkspacesCreateWorkspaceRequest) SetReplicas

func (o *WorkspacesCreateWorkspaceRequest) SetReplicas(v int)

SetReplicas sets field value

func (*WorkspacesCreateWorkspaceRequest) SetSourceWorkspaceId

func (o *WorkspacesCreateWorkspaceRequest) SetSourceWorkspaceId(v int)

SetSourceWorkspaceId gets a reference to the given int and assigns it to the SourceWorkspaceId field.

func (*WorkspacesCreateWorkspaceRequest) SetTeamId

func (o *WorkspacesCreateWorkspaceRequest) SetTeamId(v int)

SetTeamId sets field value

func (*WorkspacesCreateWorkspaceRequest) SetVpnConfig

func (o *WorkspacesCreateWorkspaceRequest) SetVpnConfig(v string)

SetVpnConfig gets a reference to the given string and assigns it to the VpnConfig field.

func (*WorkspacesCreateWorkspaceRequest) SetWelcomeMessage

func (o *WorkspacesCreateWorkspaceRequest) SetWelcomeMessage(v string)

SetWelcomeMessage gets a reference to the given string and assigns it to the WelcomeMessage field.

func (WorkspacesCreateWorkspaceRequest) ToMap

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

func (*WorkspacesCreateWorkspaceRequest) UnmarshalJSON

func (o *WorkspacesCreateWorkspaceRequest) UnmarshalJSON(data []byte) (err error)

type WorkspacesExecuteCommand200Response

type WorkspacesExecuteCommand200Response struct {
	Command    string `json:"command"`
	WorkingDir string `json:"workingDir"`
	Output     string `json:"output"`
	Error      string `json:"error"`
}

WorkspacesExecuteCommand200Response struct for WorkspacesExecuteCommand200Response

func NewWorkspacesExecuteCommand200Response

func NewWorkspacesExecuteCommand200Response(command string, workingDir string, output string, error_ string) *WorkspacesExecuteCommand200Response

NewWorkspacesExecuteCommand200Response instantiates a new WorkspacesExecuteCommand200Response 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 NewWorkspacesExecuteCommand200ResponseWithDefaults

func NewWorkspacesExecuteCommand200ResponseWithDefaults() *WorkspacesExecuteCommand200Response

NewWorkspacesExecuteCommand200ResponseWithDefaults instantiates a new WorkspacesExecuteCommand200Response 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 (*WorkspacesExecuteCommand200Response) GetCommand

GetCommand returns the Command field value

func (*WorkspacesExecuteCommand200Response) GetCommandOk

func (o *WorkspacesExecuteCommand200Response) GetCommandOk() (*string, bool)

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

func (*WorkspacesExecuteCommand200Response) GetError

GetError returns the Error field value

func (*WorkspacesExecuteCommand200Response) GetErrorOk

func (o *WorkspacesExecuteCommand200Response) GetErrorOk() (*string, bool)

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

func (*WorkspacesExecuteCommand200Response) GetOutput

GetOutput returns the Output field value

func (*WorkspacesExecuteCommand200Response) GetOutputOk

func (o *WorkspacesExecuteCommand200Response) GetOutputOk() (*string, bool)

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

func (*WorkspacesExecuteCommand200Response) GetWorkingDir

func (o *WorkspacesExecuteCommand200Response) GetWorkingDir() string

GetWorkingDir returns the WorkingDir field value

func (*WorkspacesExecuteCommand200Response) GetWorkingDirOk

func (o *WorkspacesExecuteCommand200Response) GetWorkingDirOk() (*string, bool)

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

func (WorkspacesExecuteCommand200Response) MarshalJSON

func (o WorkspacesExecuteCommand200Response) MarshalJSON() ([]byte, error)

func (*WorkspacesExecuteCommand200Response) SetCommand

SetCommand sets field value

func (*WorkspacesExecuteCommand200Response) SetError

SetError sets field value

func (*WorkspacesExecuteCommand200Response) SetOutput

SetOutput sets field value

func (*WorkspacesExecuteCommand200Response) SetWorkingDir

func (o *WorkspacesExecuteCommand200Response) SetWorkingDir(v string)

SetWorkingDir sets field value

func (WorkspacesExecuteCommand200Response) ToMap

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

func (*WorkspacesExecuteCommand200Response) UnmarshalJSON

func (o *WorkspacesExecuteCommand200Response) UnmarshalJSON(data []byte) (err error)

type WorkspacesExecuteCommandRequest

type WorkspacesExecuteCommandRequest struct {
	Command    string             `json:"command"`
	WorkingDir *string            `json:"workingDir,omitempty"`
	Env        *map[string]string `json:"env,omitempty"`
}

WorkspacesExecuteCommandRequest struct for WorkspacesExecuteCommandRequest

func NewWorkspacesExecuteCommandRequest

func NewWorkspacesExecuteCommandRequest(command string) *WorkspacesExecuteCommandRequest

NewWorkspacesExecuteCommandRequest instantiates a new WorkspacesExecuteCommandRequest 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 NewWorkspacesExecuteCommandRequestWithDefaults

func NewWorkspacesExecuteCommandRequestWithDefaults() *WorkspacesExecuteCommandRequest

NewWorkspacesExecuteCommandRequestWithDefaults instantiates a new WorkspacesExecuteCommandRequest 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 (*WorkspacesExecuteCommandRequest) GetCommand

func (o *WorkspacesExecuteCommandRequest) GetCommand() string

GetCommand returns the Command field value

func (*WorkspacesExecuteCommandRequest) GetCommandOk

func (o *WorkspacesExecuteCommandRequest) GetCommandOk() (*string, bool)

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

func (*WorkspacesExecuteCommandRequest) GetEnv

GetEnv returns the Env field value if set, zero value otherwise.

func (*WorkspacesExecuteCommandRequest) GetEnvOk

func (o *WorkspacesExecuteCommandRequest) GetEnvOk() (*map[string]string, bool)

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

func (*WorkspacesExecuteCommandRequest) GetWorkingDir

func (o *WorkspacesExecuteCommandRequest) GetWorkingDir() string

GetWorkingDir returns the WorkingDir field value if set, zero value otherwise.

func (*WorkspacesExecuteCommandRequest) GetWorkingDirOk

func (o *WorkspacesExecuteCommandRequest) GetWorkingDirOk() (*string, bool)

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

func (*WorkspacesExecuteCommandRequest) HasEnv

HasEnv returns a boolean if a field has been set.

func (*WorkspacesExecuteCommandRequest) HasWorkingDir

func (o *WorkspacesExecuteCommandRequest) HasWorkingDir() bool

HasWorkingDir returns a boolean if a field has been set.

func (WorkspacesExecuteCommandRequest) MarshalJSON

func (o WorkspacesExecuteCommandRequest) MarshalJSON() ([]byte, error)

func (*WorkspacesExecuteCommandRequest) SetCommand

func (o *WorkspacesExecuteCommandRequest) SetCommand(v string)

SetCommand sets field value

func (*WorkspacesExecuteCommandRequest) SetEnv

SetEnv gets a reference to the given map[string]string and assigns it to the Env field.

func (*WorkspacesExecuteCommandRequest) SetWorkingDir

func (o *WorkspacesExecuteCommandRequest) SetWorkingDir(v string)

SetWorkingDir gets a reference to the given string and assigns it to the WorkingDir field.

func (WorkspacesExecuteCommandRequest) ToMap

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

func (*WorkspacesExecuteCommandRequest) UnmarshalJSON

func (o *WorkspacesExecuteCommandRequest) UnmarshalJSON(data []byte) (err error)

type WorkspacesGetWorkspace200Response

type WorkspacesGetWorkspace200Response struct {
	TeamId            int            `json:"teamId"`
	Name              string         `json:"name"`
	PlanId            int            `json:"planId"`
	IsPrivateRepo     bool           `json:"isPrivateRepo"`
	Replicas          int            `json:"replicas"`
	Id                int            `json:"id"`
	DataCenterId      int            `json:"dataCenterId"`
	UserId            int            `json:"userId"`
	GitUrl            NullableString `json:"gitUrl"`
	InitialBranch     NullableString `json:"initialBranch"`
	SourceWorkspaceId NullableInt    `json:"sourceWorkspaceId"`
	WelcomeMessage    NullableString `json:"welcomeMessage"`
	VpnConfig         NullableString `json:"vpnConfig"`
}

WorkspacesGetWorkspace200Response struct for WorkspacesGetWorkspace200Response

func NewWorkspacesGetWorkspace200Response

func NewWorkspacesGetWorkspace200Response(teamId int, name string, planId int, isPrivateRepo bool, replicas int, id int, dataCenterId int, userId int, gitUrl NullableString, initialBranch NullableString, sourceWorkspaceId NullableInt, welcomeMessage NullableString, vpnConfig NullableString) *WorkspacesGetWorkspace200Response

NewWorkspacesGetWorkspace200Response instantiates a new WorkspacesGetWorkspace200Response 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 NewWorkspacesGetWorkspace200ResponseWithDefaults

func NewWorkspacesGetWorkspace200ResponseWithDefaults() *WorkspacesGetWorkspace200Response

NewWorkspacesGetWorkspace200ResponseWithDefaults instantiates a new WorkspacesGetWorkspace200Response 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 (*WorkspacesGetWorkspace200Response) GetDataCenterId

func (o *WorkspacesGetWorkspace200Response) GetDataCenterId() int

GetDataCenterId returns the DataCenterId field value

func (*WorkspacesGetWorkspace200Response) GetDataCenterIdOk

func (o *WorkspacesGetWorkspace200Response) GetDataCenterIdOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetGitUrl

GetGitUrl returns the GitUrl field value If the value is explicit nil, the zero value for string will be returned

func (*WorkspacesGetWorkspace200Response) GetGitUrlOk

func (o *WorkspacesGetWorkspace200Response) GetGitUrlOk() (*string, bool)

GetGitUrlOk returns a tuple with the GitUrl field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspacesGetWorkspace200Response) GetId

GetId returns the Id field value

func (*WorkspacesGetWorkspace200Response) GetIdOk

func (o *WorkspacesGetWorkspace200Response) GetIdOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetInitialBranch

func (o *WorkspacesGetWorkspace200Response) GetInitialBranch() string

GetInitialBranch returns the InitialBranch field value If the value is explicit nil, the zero value for string will be returned

func (*WorkspacesGetWorkspace200Response) GetInitialBranchOk

func (o *WorkspacesGetWorkspace200Response) GetInitialBranchOk() (*string, bool)

GetInitialBranchOk returns a tuple with the InitialBranch field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspacesGetWorkspace200Response) GetIsPrivateRepo

func (o *WorkspacesGetWorkspace200Response) GetIsPrivateRepo() bool

GetIsPrivateRepo returns the IsPrivateRepo field value

func (*WorkspacesGetWorkspace200Response) GetIsPrivateRepoOk

func (o *WorkspacesGetWorkspace200Response) GetIsPrivateRepoOk() (*bool, bool)

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

func (*WorkspacesGetWorkspace200Response) GetName

GetName returns the Name field value

func (*WorkspacesGetWorkspace200Response) GetNameOk

func (o *WorkspacesGetWorkspace200Response) GetNameOk() (*string, bool)

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

func (*WorkspacesGetWorkspace200Response) GetPlanId

func (o *WorkspacesGetWorkspace200Response) GetPlanId() int

GetPlanId returns the PlanId field value

func (*WorkspacesGetWorkspace200Response) GetPlanIdOk

func (o *WorkspacesGetWorkspace200Response) GetPlanIdOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetReplicas

func (o *WorkspacesGetWorkspace200Response) GetReplicas() int

GetReplicas returns the Replicas field value

func (*WorkspacesGetWorkspace200Response) GetReplicasOk

func (o *WorkspacesGetWorkspace200Response) GetReplicasOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetSourceWorkspaceId

func (o *WorkspacesGetWorkspace200Response) GetSourceWorkspaceId() int

GetSourceWorkspaceId returns the SourceWorkspaceId field value If the value is explicit nil, the zero value for int will be returned

func (*WorkspacesGetWorkspace200Response) GetSourceWorkspaceIdOk

func (o *WorkspacesGetWorkspace200Response) GetSourceWorkspaceIdOk() (*int, bool)

GetSourceWorkspaceIdOk returns a tuple with the SourceWorkspaceId field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspacesGetWorkspace200Response) GetTeamId

func (o *WorkspacesGetWorkspace200Response) GetTeamId() int

GetTeamId returns the TeamId field value

func (*WorkspacesGetWorkspace200Response) GetTeamIdOk

func (o *WorkspacesGetWorkspace200Response) GetTeamIdOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetUserId

func (o *WorkspacesGetWorkspace200Response) GetUserId() int

GetUserId returns the UserId field value

func (*WorkspacesGetWorkspace200Response) GetUserIdOk

func (o *WorkspacesGetWorkspace200Response) GetUserIdOk() (*int, bool)

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

func (*WorkspacesGetWorkspace200Response) GetVpnConfig

func (o *WorkspacesGetWorkspace200Response) GetVpnConfig() string

GetVpnConfig returns the VpnConfig field value If the value is explicit nil, the zero value for string will be returned

func (*WorkspacesGetWorkspace200Response) GetVpnConfigOk

func (o *WorkspacesGetWorkspace200Response) GetVpnConfigOk() (*string, bool)

GetVpnConfigOk returns a tuple with the VpnConfig field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspacesGetWorkspace200Response) GetWelcomeMessage

func (o *WorkspacesGetWorkspace200Response) GetWelcomeMessage() string

GetWelcomeMessage returns the WelcomeMessage field value If the value is explicit nil, the zero value for string will be returned

func (*WorkspacesGetWorkspace200Response) GetWelcomeMessageOk

func (o *WorkspacesGetWorkspace200Response) GetWelcomeMessageOk() (*string, bool)

GetWelcomeMessageOk returns a tuple with the WelcomeMessage field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (WorkspacesGetWorkspace200Response) MarshalJSON

func (o WorkspacesGetWorkspace200Response) MarshalJSON() ([]byte, error)

func (*WorkspacesGetWorkspace200Response) SetDataCenterId

func (o *WorkspacesGetWorkspace200Response) SetDataCenterId(v int)

SetDataCenterId sets field value

func (*WorkspacesGetWorkspace200Response) SetGitUrl

func (o *WorkspacesGetWorkspace200Response) SetGitUrl(v string)

SetGitUrl sets field value

func (*WorkspacesGetWorkspace200Response) SetId

SetId sets field value

func (*WorkspacesGetWorkspace200Response) SetInitialBranch

func (o *WorkspacesGetWorkspace200Response) SetInitialBranch(v string)

SetInitialBranch sets field value

func (*WorkspacesGetWorkspace200Response) SetIsPrivateRepo

func (o *WorkspacesGetWorkspace200Response) SetIsPrivateRepo(v bool)

SetIsPrivateRepo sets field value

func (*WorkspacesGetWorkspace200Response) SetName

SetName sets field value

func (*WorkspacesGetWorkspace200Response) SetPlanId

func (o *WorkspacesGetWorkspace200Response) SetPlanId(v int)

SetPlanId sets field value

func (*WorkspacesGetWorkspace200Response) SetReplicas

func (o *WorkspacesGetWorkspace200Response) SetReplicas(v int)

SetReplicas sets field value

func (*WorkspacesGetWorkspace200Response) SetSourceWorkspaceId

func (o *WorkspacesGetWorkspace200Response) SetSourceWorkspaceId(v int)

SetSourceWorkspaceId sets field value

func (*WorkspacesGetWorkspace200Response) SetTeamId

func (o *WorkspacesGetWorkspace200Response) SetTeamId(v int)

SetTeamId sets field value

func (*WorkspacesGetWorkspace200Response) SetUserId

func (o *WorkspacesGetWorkspace200Response) SetUserId(v int)

SetUserId sets field value

func (*WorkspacesGetWorkspace200Response) SetVpnConfig

func (o *WorkspacesGetWorkspace200Response) SetVpnConfig(v string)

SetVpnConfig sets field value

func (*WorkspacesGetWorkspace200Response) SetWelcomeMessage

func (o *WorkspacesGetWorkspace200Response) SetWelcomeMessage(v string)

SetWelcomeMessage sets field value

func (WorkspacesGetWorkspace200Response) ToMap

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

func (*WorkspacesGetWorkspace200Response) UnmarshalJSON

func (o *WorkspacesGetWorkspace200Response) UnmarshalJSON(data []byte) (err error)

type WorkspacesGetWorkspaceStatus200Response

type WorkspacesGetWorkspaceStatus200Response struct {
	IsRunning bool `json:"isRunning"`
}

WorkspacesGetWorkspaceStatus200Response struct for WorkspacesGetWorkspaceStatus200Response

func NewWorkspacesGetWorkspaceStatus200Response

func NewWorkspacesGetWorkspaceStatus200Response(isRunning bool) *WorkspacesGetWorkspaceStatus200Response

NewWorkspacesGetWorkspaceStatus200Response instantiates a new WorkspacesGetWorkspaceStatus200Response 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 NewWorkspacesGetWorkspaceStatus200ResponseWithDefaults

func NewWorkspacesGetWorkspaceStatus200ResponseWithDefaults() *WorkspacesGetWorkspaceStatus200Response

NewWorkspacesGetWorkspaceStatus200ResponseWithDefaults instantiates a new WorkspacesGetWorkspaceStatus200Response 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 (*WorkspacesGetWorkspaceStatus200Response) GetIsRunning

GetIsRunning returns the IsRunning field value

func (*WorkspacesGetWorkspaceStatus200Response) GetIsRunningOk

func (o *WorkspacesGetWorkspaceStatus200Response) GetIsRunningOk() (*bool, bool)

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

func (WorkspacesGetWorkspaceStatus200Response) MarshalJSON

func (o WorkspacesGetWorkspaceStatus200Response) MarshalJSON() ([]byte, error)

func (*WorkspacesGetWorkspaceStatus200Response) SetIsRunning

func (o *WorkspacesGetWorkspaceStatus200Response) SetIsRunning(v bool)

SetIsRunning sets field value

func (WorkspacesGetWorkspaceStatus200Response) ToMap

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

func (*WorkspacesGetWorkspaceStatus200Response) UnmarshalJSON

func (o *WorkspacesGetWorkspaceStatus200Response) UnmarshalJSON(data []byte) (err error)

type WorkspacesGitHead200Response

type WorkspacesGitHead200Response struct {
	Head string `json:"head"`
}

WorkspacesGitHead200Response struct for WorkspacesGitHead200Response

func NewWorkspacesGitHead200Response

func NewWorkspacesGitHead200Response(head string) *WorkspacesGitHead200Response

NewWorkspacesGitHead200Response instantiates a new WorkspacesGitHead200Response 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 NewWorkspacesGitHead200ResponseWithDefaults

func NewWorkspacesGitHead200ResponseWithDefaults() *WorkspacesGitHead200Response

NewWorkspacesGitHead200ResponseWithDefaults instantiates a new WorkspacesGitHead200Response 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 (*WorkspacesGitHead200Response) GetHead

func (o *WorkspacesGitHead200Response) GetHead() string

GetHead returns the Head field value

func (*WorkspacesGitHead200Response) GetHeadOk

func (o *WorkspacesGitHead200Response) GetHeadOk() (*string, bool)

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

func (WorkspacesGitHead200Response) MarshalJSON

func (o WorkspacesGitHead200Response) MarshalJSON() ([]byte, error)

func (*WorkspacesGitHead200Response) SetHead

func (o *WorkspacesGitHead200Response) SetHead(v string)

SetHead sets field value

func (WorkspacesGitHead200Response) ToMap

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

func (*WorkspacesGitHead200Response) UnmarshalJSON

func (o *WorkspacesGitHead200Response) UnmarshalJSON(data []byte) (err error)

type WorkspacesListEnvVars200ResponseInner

type WorkspacesListEnvVars200ResponseInner struct {
	Name  string `json:"name" validate:"regexp=^[A-Za-z_][A-Za-z0-9_.-]*$"`
	Value string `json:"value"`
}

WorkspacesListEnvVars200ResponseInner struct for WorkspacesListEnvVars200ResponseInner

func NewWorkspacesListEnvVars200ResponseInner

func NewWorkspacesListEnvVars200ResponseInner(name string, value string) *WorkspacesListEnvVars200ResponseInner

NewWorkspacesListEnvVars200ResponseInner instantiates a new WorkspacesListEnvVars200ResponseInner 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 NewWorkspacesListEnvVars200ResponseInnerWithDefaults

func NewWorkspacesListEnvVars200ResponseInnerWithDefaults() *WorkspacesListEnvVars200ResponseInner

NewWorkspacesListEnvVars200ResponseInnerWithDefaults instantiates a new WorkspacesListEnvVars200ResponseInner 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 (*WorkspacesListEnvVars200ResponseInner) GetName

GetName returns the Name field value

func (*WorkspacesListEnvVars200ResponseInner) GetNameOk

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

func (*WorkspacesListEnvVars200ResponseInner) GetValue

GetValue returns the Value field value

func (*WorkspacesListEnvVars200ResponseInner) GetValueOk

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

func (WorkspacesListEnvVars200ResponseInner) MarshalJSON

func (o WorkspacesListEnvVars200ResponseInner) MarshalJSON() ([]byte, error)

func (*WorkspacesListEnvVars200ResponseInner) SetName

SetName sets field value

func (*WorkspacesListEnvVars200ResponseInner) SetValue

SetValue sets field value

func (WorkspacesListEnvVars200ResponseInner) ToMap

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

func (*WorkspacesListEnvVars200ResponseInner) UnmarshalJSON

func (o *WorkspacesListEnvVars200ResponseInner) UnmarshalJSON(data []byte) (err error)

type WorkspacesLogs200Response

type WorkspacesLogs200Response struct {
	Problem                   *Problem
	WorkspacesLogsGetResponse *WorkspacesLogsGetResponse
}

WorkspacesLogs200Response - SSE stream with two event types: \"data\" and \"problem\". Both event data contain JSON objects in the form described by their schemas. Possible problem statuses and reasons:400: Workspace is not running, run stage logs requested for Multi Server Deployment, path or request body variable does not match schema. 401: Authorization information is missing or invalid. 404: Workspace is not found.

func ProblemAsWorkspacesLogs200Response

func ProblemAsWorkspacesLogs200Response(v *Problem) WorkspacesLogs200Response

ProblemAsWorkspacesLogs200Response is a convenience function that returns Problem wrapped in WorkspacesLogs200Response

func WorkspacesLogsGetResponseAsWorkspacesLogs200Response

func WorkspacesLogsGetResponseAsWorkspacesLogs200Response(v *WorkspacesLogsGetResponse) WorkspacesLogs200Response

WorkspacesLogsGetResponseAsWorkspacesLogs200Response is a convenience function that returns WorkspacesLogsGetResponse wrapped in WorkspacesLogs200Response

func (*WorkspacesLogs200Response) GetActualInstance

func (obj *WorkspacesLogs200Response) GetActualInstance() interface{}

Get the actual instance

func (WorkspacesLogs200Response) GetActualInstanceValue

func (obj WorkspacesLogs200Response) GetActualInstanceValue() interface{}

Get the actual instance value

func (WorkspacesLogs200Response) MarshalJSON

func (src WorkspacesLogs200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WorkspacesLogs200Response) UnmarshalJSON

func (dst *WorkspacesLogs200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type WorkspacesLogsGetResponse

type WorkspacesLogsGetResponse struct {
	Data  []WorkspacesLogsGetResponseDataInner `json:"data"`
	Event string                               `json:"event"`
}

WorkspacesLogsGetResponse An SSE event of type data. Data contains a JSON object with given properties.

func NewWorkspacesLogsGetResponse

func NewWorkspacesLogsGetResponse(data []WorkspacesLogsGetResponseDataInner, event string) *WorkspacesLogsGetResponse

NewWorkspacesLogsGetResponse instantiates a new WorkspacesLogsGetResponse 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 NewWorkspacesLogsGetResponseWithDefaults

func NewWorkspacesLogsGetResponseWithDefaults() *WorkspacesLogsGetResponse

NewWorkspacesLogsGetResponseWithDefaults instantiates a new WorkspacesLogsGetResponse 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 (*WorkspacesLogsGetResponse) GetData

GetData returns the Data field value

func (*WorkspacesLogsGetResponse) GetDataOk

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

func (*WorkspacesLogsGetResponse) GetEvent

func (o *WorkspacesLogsGetResponse) GetEvent() string

GetEvent returns the Event field value

func (*WorkspacesLogsGetResponse) GetEventOk

func (o *WorkspacesLogsGetResponse) GetEventOk() (*string, bool)

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

func (WorkspacesLogsGetResponse) MarshalJSON

func (o WorkspacesLogsGetResponse) MarshalJSON() ([]byte, error)

func (*WorkspacesLogsGetResponse) SetData

SetData sets field value

func (*WorkspacesLogsGetResponse) SetEvent

func (o *WorkspacesLogsGetResponse) SetEvent(v string)

SetEvent sets field value

func (WorkspacesLogsGetResponse) ToMap

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

func (*WorkspacesLogsGetResponse) UnmarshalJSON

func (o *WorkspacesLogsGetResponse) UnmarshalJSON(data []byte) (err error)

type WorkspacesLogsGetResponseDataInner

type WorkspacesLogsGetResponseDataInner struct {
	Timestamp time.Time `json:"timestamp"`
	Kind      string    `json:"kind"`
	Data      string    `json:"data"`
}

WorkspacesLogsGetResponseDataInner struct for WorkspacesLogsGetResponseDataInner

func NewWorkspacesLogsGetResponseDataInner

func NewWorkspacesLogsGetResponseDataInner(timestamp time.Time, kind string, data string) *WorkspacesLogsGetResponseDataInner

NewWorkspacesLogsGetResponseDataInner instantiates a new WorkspacesLogsGetResponseDataInner 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 NewWorkspacesLogsGetResponseDataInnerWithDefaults

func NewWorkspacesLogsGetResponseDataInnerWithDefaults() *WorkspacesLogsGetResponseDataInner

NewWorkspacesLogsGetResponseDataInnerWithDefaults instantiates a new WorkspacesLogsGetResponseDataInner 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 (*WorkspacesLogsGetResponseDataInner) GetData

GetData returns the Data field value

func (*WorkspacesLogsGetResponseDataInner) GetDataOk

func (o *WorkspacesLogsGetResponseDataInner) GetDataOk() (*string, bool)

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

func (*WorkspacesLogsGetResponseDataInner) GetKind

GetKind returns the Kind field value

func (*WorkspacesLogsGetResponseDataInner) GetKindOk

func (o *WorkspacesLogsGetResponseDataInner) GetKindOk() (*string, bool)

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

func (*WorkspacesLogsGetResponseDataInner) GetTimestamp

func (o *WorkspacesLogsGetResponseDataInner) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value

func (*WorkspacesLogsGetResponseDataInner) GetTimestampOk

func (o *WorkspacesLogsGetResponseDataInner) GetTimestampOk() (*time.Time, bool)

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

func (WorkspacesLogsGetResponseDataInner) MarshalJSON

func (o WorkspacesLogsGetResponseDataInner) MarshalJSON() ([]byte, error)

func (*WorkspacesLogsGetResponseDataInner) SetData

SetData sets field value

func (*WorkspacesLogsGetResponseDataInner) SetKind

SetKind sets field value

func (*WorkspacesLogsGetResponseDataInner) SetTimestamp

func (o *WorkspacesLogsGetResponseDataInner) SetTimestamp(v time.Time)

SetTimestamp sets field value

func (WorkspacesLogsGetResponseDataInner) ToMap

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

func (*WorkspacesLogsGetResponseDataInner) UnmarshalJSON

func (o *WorkspacesLogsGetResponseDataInner) UnmarshalJSON(data []byte) (err error)

type WorkspacesPipelineStatus200ResponseInner

type WorkspacesPipelineStatus200ResponseInner struct {
	State      string                                               `json:"state"`
	StartedAt  *time.Time                                           `json:"startedAt,omitempty"`
	FinishedAt *time.Time                                           `json:"finishedAt,omitempty"`
	Steps      []WorkspacesPipelineStatus200ResponseInnerStepsInner `json:"steps"`
	Replica    string                                               `json:"replica"`
	Server     string                                               `json:"server" validate:"regexp=^(?:[a-z]|[a-z][-a-z0-9]{0,30}[a-z0-9])$"`
}

WorkspacesPipelineStatus200ResponseInner struct for WorkspacesPipelineStatus200ResponseInner

func NewWorkspacesPipelineStatus200ResponseInner

func NewWorkspacesPipelineStatus200ResponseInner(state string, steps []WorkspacesPipelineStatus200ResponseInnerStepsInner, replica string, server string) *WorkspacesPipelineStatus200ResponseInner

NewWorkspacesPipelineStatus200ResponseInner instantiates a new WorkspacesPipelineStatus200ResponseInner 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 NewWorkspacesPipelineStatus200ResponseInnerWithDefaults

func NewWorkspacesPipelineStatus200ResponseInnerWithDefaults() *WorkspacesPipelineStatus200ResponseInner

NewWorkspacesPipelineStatus200ResponseInnerWithDefaults instantiates a new WorkspacesPipelineStatus200ResponseInner 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 (*WorkspacesPipelineStatus200ResponseInner) GetFinishedAt

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

func (*WorkspacesPipelineStatus200ResponseInner) GetFinishedAtOk

func (o *WorkspacesPipelineStatus200ResponseInner) GetFinishedAtOk() (*time.Time, 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 (*WorkspacesPipelineStatus200ResponseInner) GetReplica

GetReplica returns the Replica field value

func (*WorkspacesPipelineStatus200ResponseInner) GetReplicaOk

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

func (*WorkspacesPipelineStatus200ResponseInner) GetServer

GetServer returns the Server field value

func (*WorkspacesPipelineStatus200ResponseInner) GetServerOk

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

func (*WorkspacesPipelineStatus200ResponseInner) GetStartedAt

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

func (*WorkspacesPipelineStatus200ResponseInner) GetStartedAtOk

func (o *WorkspacesPipelineStatus200ResponseInner) GetStartedAtOk() (*time.Time, 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 (*WorkspacesPipelineStatus200ResponseInner) GetState

GetState returns the State field value

func (*WorkspacesPipelineStatus200ResponseInner) GetStateOk

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

func (*WorkspacesPipelineStatus200ResponseInner) GetSteps

GetSteps returns the Steps field value

func (*WorkspacesPipelineStatus200ResponseInner) GetStepsOk

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

func (*WorkspacesPipelineStatus200ResponseInner) HasFinishedAt

HasFinishedAt returns a boolean if a field has been set.

func (*WorkspacesPipelineStatus200ResponseInner) HasStartedAt

HasStartedAt returns a boolean if a field has been set.

func (WorkspacesPipelineStatus200ResponseInner) MarshalJSON

func (*WorkspacesPipelineStatus200ResponseInner) SetFinishedAt

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

func (*WorkspacesPipelineStatus200ResponseInner) SetReplica

SetReplica sets field value

func (*WorkspacesPipelineStatus200ResponseInner) SetServer

SetServer sets field value

func (*WorkspacesPipelineStatus200ResponseInner) SetStartedAt

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

func (*WorkspacesPipelineStatus200ResponseInner) SetState

SetState sets field value

func (*WorkspacesPipelineStatus200ResponseInner) SetSteps

SetSteps sets field value

func (WorkspacesPipelineStatus200ResponseInner) ToMap

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

func (*WorkspacesPipelineStatus200ResponseInner) UnmarshalJSON

func (o *WorkspacesPipelineStatus200ResponseInner) UnmarshalJSON(data []byte) (err error)

type WorkspacesPipelineStatus200ResponseInnerStepsInner

type WorkspacesPipelineStatus200ResponseInnerStepsInner struct {
	State      string     `json:"state"`
	StartedAt  *time.Time `json:"startedAt,omitempty"`
	FinishedAt *time.Time `json:"finishedAt,omitempty"`
}

WorkspacesPipelineStatus200ResponseInnerStepsInner struct for WorkspacesPipelineStatus200ResponseInnerStepsInner

func NewWorkspacesPipelineStatus200ResponseInnerStepsInner

func NewWorkspacesPipelineStatus200ResponseInnerStepsInner(state string) *WorkspacesPipelineStatus200ResponseInnerStepsInner

NewWorkspacesPipelineStatus200ResponseInnerStepsInner instantiates a new WorkspacesPipelineStatus200ResponseInnerStepsInner 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 NewWorkspacesPipelineStatus200ResponseInnerStepsInnerWithDefaults

func NewWorkspacesPipelineStatus200ResponseInnerStepsInnerWithDefaults() *WorkspacesPipelineStatus200ResponseInnerStepsInner

NewWorkspacesPipelineStatus200ResponseInnerStepsInnerWithDefaults instantiates a new WorkspacesPipelineStatus200ResponseInnerStepsInner 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 (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetFinishedAt

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

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetFinishedAtOk

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 (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetStartedAt

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

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetStartedAtOk

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 (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetState

GetState returns the State field value

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) GetStateOk

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

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) HasFinishedAt

HasFinishedAt returns a boolean if a field has been set.

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) HasStartedAt

HasStartedAt returns a boolean if a field has been set.

func (WorkspacesPipelineStatus200ResponseInnerStepsInner) MarshalJSON

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) SetFinishedAt

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

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) SetStartedAt

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

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) SetState

SetState sets field value

func (WorkspacesPipelineStatus200ResponseInnerStepsInner) ToMap

func (*WorkspacesPipelineStatus200ResponseInnerStepsInner) UnmarshalJSON

func (o *WorkspacesPipelineStatus200ResponseInnerStepsInner) UnmarshalJSON(data []byte) (err error)

type WorkspacesReplicaLogs200Response

type WorkspacesReplicaLogs200Response struct {
	Problem                          *Problem
	WorkspacesReplicaLogsGetResponse *WorkspacesReplicaLogsGetResponse
}

WorkspacesReplicaLogs200Response - SSE stream with two event types: \"data\" and \"problem\". Both event data contain JSON objects in the form described by their schemas. Possible problem statuses and reasons:400: Workspace is not running, path or request body variable does not match schema. 401: Authorization information is missing or invalid. 404: Workspace is not found.

func ProblemAsWorkspacesReplicaLogs200Response

func ProblemAsWorkspacesReplicaLogs200Response(v *Problem) WorkspacesReplicaLogs200Response

ProblemAsWorkspacesReplicaLogs200Response is a convenience function that returns Problem wrapped in WorkspacesReplicaLogs200Response

func WorkspacesReplicaLogsGetResponseAsWorkspacesReplicaLogs200Response

func WorkspacesReplicaLogsGetResponseAsWorkspacesReplicaLogs200Response(v *WorkspacesReplicaLogsGetResponse) WorkspacesReplicaLogs200Response

WorkspacesReplicaLogsGetResponseAsWorkspacesReplicaLogs200Response is a convenience function that returns WorkspacesReplicaLogsGetResponse wrapped in WorkspacesReplicaLogs200Response

func (*WorkspacesReplicaLogs200Response) GetActualInstance

func (obj *WorkspacesReplicaLogs200Response) GetActualInstance() interface{}

Get the actual instance

func (WorkspacesReplicaLogs200Response) GetActualInstanceValue

func (obj WorkspacesReplicaLogs200Response) GetActualInstanceValue() interface{}

Get the actual instance value

func (WorkspacesReplicaLogs200Response) MarshalJSON

func (src WorkspacesReplicaLogs200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WorkspacesReplicaLogs200Response) UnmarshalJSON

func (dst *WorkspacesReplicaLogs200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type WorkspacesReplicaLogsGetResponse

type WorkspacesReplicaLogsGetResponse struct {
	Data  []WorkspacesLogsGetResponseDataInner `json:"data"`
	Event string                               `json:"event"`
}

WorkspacesReplicaLogsGetResponse An SSE event of type data. Data contains a JSON object with given properties.

func NewWorkspacesReplicaLogsGetResponse

func NewWorkspacesReplicaLogsGetResponse(data []WorkspacesLogsGetResponseDataInner, event string) *WorkspacesReplicaLogsGetResponse

NewWorkspacesReplicaLogsGetResponse instantiates a new WorkspacesReplicaLogsGetResponse 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 NewWorkspacesReplicaLogsGetResponseWithDefaults

func NewWorkspacesReplicaLogsGetResponseWithDefaults() *WorkspacesReplicaLogsGetResponse

NewWorkspacesReplicaLogsGetResponseWithDefaults instantiates a new WorkspacesReplicaLogsGetResponse 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 (*WorkspacesReplicaLogsGetResponse) GetData

GetData returns the Data field value

func (*WorkspacesReplicaLogsGetResponse) GetDataOk

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

func (*WorkspacesReplicaLogsGetResponse) GetEvent

GetEvent returns the Event field value

func (*WorkspacesReplicaLogsGetResponse) GetEventOk

func (o *WorkspacesReplicaLogsGetResponse) GetEventOk() (*string, bool)

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

func (WorkspacesReplicaLogsGetResponse) MarshalJSON

func (o WorkspacesReplicaLogsGetResponse) MarshalJSON() ([]byte, error)

func (*WorkspacesReplicaLogsGetResponse) SetData

SetData sets field value

func (*WorkspacesReplicaLogsGetResponse) SetEvent

SetEvent sets field value

func (WorkspacesReplicaLogsGetResponse) ToMap

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

func (*WorkspacesReplicaLogsGetResponse) UnmarshalJSON

func (o *WorkspacesReplicaLogsGetResponse) UnmarshalJSON(data []byte) (err error)

type WorkspacesServerLogs200Response

type WorkspacesServerLogs200Response struct {
	Problem                         *Problem
	WorkspacesServerLogsGetResponse *WorkspacesServerLogsGetResponse
}

WorkspacesServerLogs200Response - SSE stream with two event types: \"data\" and \"problem\". Both event data contain JSON objects in the form described by their schemas. Possible problem statuses and reasons:400: Workspace is not running, path or request body variable does not match schema. 401: Authorization information is missing or invalid. 404: Workspace is not found.

func ProblemAsWorkspacesServerLogs200Response

func ProblemAsWorkspacesServerLogs200Response(v *Problem) WorkspacesServerLogs200Response

ProblemAsWorkspacesServerLogs200Response is a convenience function that returns Problem wrapped in WorkspacesServerLogs200Response

func WorkspacesServerLogsGetResponseAsWorkspacesServerLogs200Response

func WorkspacesServerLogsGetResponseAsWorkspacesServerLogs200Response(v *WorkspacesServerLogsGetResponse) WorkspacesServerLogs200Response

WorkspacesServerLogsGetResponseAsWorkspacesServerLogs200Response is a convenience function that returns WorkspacesServerLogsGetResponse wrapped in WorkspacesServerLogs200Response

func (*WorkspacesServerLogs200Response) GetActualInstance

func (obj *WorkspacesServerLogs200Response) GetActualInstance() interface{}

Get the actual instance

func (WorkspacesServerLogs200Response) GetActualInstanceValue

func (obj WorkspacesServerLogs200Response) GetActualInstanceValue() interface{}

Get the actual instance value

func (WorkspacesServerLogs200Response) MarshalJSON

func (src WorkspacesServerLogs200Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*WorkspacesServerLogs200Response) UnmarshalJSON

func (dst *WorkspacesServerLogs200Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type WorkspacesServerLogsGetResponse

type WorkspacesServerLogsGetResponse struct {
	Data  []WorkspacesLogsGetResponseDataInner `json:"data"`
	Event string                               `json:"event"`
}

WorkspacesServerLogsGetResponse An SSE event of type data. Data contains a JSON object with given properties.

func NewWorkspacesServerLogsGetResponse

func NewWorkspacesServerLogsGetResponse(data []WorkspacesLogsGetResponseDataInner, event string) *WorkspacesServerLogsGetResponse

NewWorkspacesServerLogsGetResponse instantiates a new WorkspacesServerLogsGetResponse 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 NewWorkspacesServerLogsGetResponseWithDefaults

func NewWorkspacesServerLogsGetResponseWithDefaults() *WorkspacesServerLogsGetResponse

NewWorkspacesServerLogsGetResponseWithDefaults instantiates a new WorkspacesServerLogsGetResponse 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 (*WorkspacesServerLogsGetResponse) GetData

GetData returns the Data field value

func (*WorkspacesServerLogsGetResponse) GetDataOk

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

func (*WorkspacesServerLogsGetResponse) GetEvent

GetEvent returns the Event field value

func (*WorkspacesServerLogsGetResponse) GetEventOk

func (o *WorkspacesServerLogsGetResponse) GetEventOk() (*string, bool)

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

func (WorkspacesServerLogsGetResponse) MarshalJSON

func (o WorkspacesServerLogsGetResponse) MarshalJSON() ([]byte, error)

func (*WorkspacesServerLogsGetResponse) SetData

SetData sets field value

func (*WorkspacesServerLogsGetResponse) SetEvent

func (o *WorkspacesServerLogsGetResponse) SetEvent(v string)

SetEvent sets field value

func (WorkspacesServerLogsGetResponse) ToMap

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

func (*WorkspacesServerLogsGetResponse) UnmarshalJSON

func (o *WorkspacesServerLogsGetResponse) UnmarshalJSON(data []byte) (err error)

type WorkspacesUpdateWorkspaceRequest

type WorkspacesUpdateWorkspaceRequest struct {
	PlanId    *int           `json:"planId,omitempty"`
	Name      *string        `json:"name,omitempty"`
	Replicas  *int           `json:"replicas,omitempty"`
	VpnConfig NullableString `json:"vpnConfig,omitempty"`
}

WorkspacesUpdateWorkspaceRequest struct for WorkspacesUpdateWorkspaceRequest

func NewWorkspacesUpdateWorkspaceRequest

func NewWorkspacesUpdateWorkspaceRequest() *WorkspacesUpdateWorkspaceRequest

NewWorkspacesUpdateWorkspaceRequest instantiates a new WorkspacesUpdateWorkspaceRequest 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 NewWorkspacesUpdateWorkspaceRequestWithDefaults

func NewWorkspacesUpdateWorkspaceRequestWithDefaults() *WorkspacesUpdateWorkspaceRequest

NewWorkspacesUpdateWorkspaceRequestWithDefaults instantiates a new WorkspacesUpdateWorkspaceRequest 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 (*WorkspacesUpdateWorkspaceRequest) GetName

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

func (*WorkspacesUpdateWorkspaceRequest) GetNameOk

func (o *WorkspacesUpdateWorkspaceRequest) GetNameOk() (*string, 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 (*WorkspacesUpdateWorkspaceRequest) GetPlanId

func (o *WorkspacesUpdateWorkspaceRequest) GetPlanId() int

GetPlanId returns the PlanId field value if set, zero value otherwise.

func (*WorkspacesUpdateWorkspaceRequest) GetPlanIdOk

func (o *WorkspacesUpdateWorkspaceRequest) GetPlanIdOk() (*int, bool)

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

func (*WorkspacesUpdateWorkspaceRequest) GetReplicas

func (o *WorkspacesUpdateWorkspaceRequest) GetReplicas() int

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*WorkspacesUpdateWorkspaceRequest) GetReplicasOk

func (o *WorkspacesUpdateWorkspaceRequest) GetReplicasOk() (*int, bool)

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

func (*WorkspacesUpdateWorkspaceRequest) GetVpnConfig

func (o *WorkspacesUpdateWorkspaceRequest) GetVpnConfig() string

GetVpnConfig returns the VpnConfig field value if set, zero value otherwise (both if not set or set to explicit null).

func (*WorkspacesUpdateWorkspaceRequest) GetVpnConfigOk

func (o *WorkspacesUpdateWorkspaceRequest) GetVpnConfigOk() (*string, bool)

GetVpnConfigOk returns a tuple with the VpnConfig field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*WorkspacesUpdateWorkspaceRequest) HasName

HasName returns a boolean if a field has been set.

func (*WorkspacesUpdateWorkspaceRequest) HasPlanId

func (o *WorkspacesUpdateWorkspaceRequest) HasPlanId() bool

HasPlanId returns a boolean if a field has been set.

func (*WorkspacesUpdateWorkspaceRequest) HasReplicas

func (o *WorkspacesUpdateWorkspaceRequest) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*WorkspacesUpdateWorkspaceRequest) HasVpnConfig

func (o *WorkspacesUpdateWorkspaceRequest) HasVpnConfig() bool

HasVpnConfig returns a boolean if a field has been set.

func (WorkspacesUpdateWorkspaceRequest) MarshalJSON

func (o WorkspacesUpdateWorkspaceRequest) MarshalJSON() ([]byte, error)

func (*WorkspacesUpdateWorkspaceRequest) SetName

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

func (*WorkspacesUpdateWorkspaceRequest) SetPlanId

func (o *WorkspacesUpdateWorkspaceRequest) SetPlanId(v int)

SetPlanId gets a reference to the given int and assigns it to the PlanId field.

func (*WorkspacesUpdateWorkspaceRequest) SetReplicas

func (o *WorkspacesUpdateWorkspaceRequest) SetReplicas(v int)

SetReplicas gets a reference to the given int and assigns it to the Replicas field.

func (*WorkspacesUpdateWorkspaceRequest) SetVpnConfig

func (o *WorkspacesUpdateWorkspaceRequest) SetVpnConfig(v string)

SetVpnConfig gets a reference to the given NullableString and assigns it to the VpnConfig field.

func (*WorkspacesUpdateWorkspaceRequest) SetVpnConfigNil

func (o *WorkspacesUpdateWorkspaceRequest) SetVpnConfigNil()

SetVpnConfigNil sets the value for VpnConfig to be an explicit nil

func (WorkspacesUpdateWorkspaceRequest) ToMap

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

func (*WorkspacesUpdateWorkspaceRequest) UnsetVpnConfig

func (o *WorkspacesUpdateWorkspaceRequest) UnsetVpnConfig()

UnsetVpnConfig ensures that no value is present for VpnConfig, not even an explicit nil

Source Files

Jump to

Keyboard shortcuts

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