Versions in this module Expand all Collapse all v3 v3.1.1 Feb 20, 2026 Changes in this version + var ServerList = []string + func Bool(b bool) *bool + func Float32(f float32) *float32 + func Float64(f float64) *float64 + func Int(i int) *int + func Int64(i int64) *int64 + func Pointer[T any](v T) *T + func String(s string) *string + type DeployServer struct + SDKVersion string + func New(opts ...SDKOption) *DeployServer + func (s *DeployServer) CreateApp(ctx context.Context, request components.CreateAppRequest, ...) (*operations.CreateAppResponse, error) + func (s *DeployServer) CreateAppVariable(ctx context.Context, id string, ...) (*operations.CreateAppVariableResponse, error) + func (s *DeployServer) DeleteApp(ctx context.Context, id string, opts ...operations.Option) (*operations.DeleteAppResponse, error) + func (s *DeployServer) DeleteAppVariable(ctx context.Context, id string, variableID string, opts ...operations.Option) (*operations.DeleteAppVariableResponse, error) + func (s *DeployServer) DeployAppConfiguration(ctx context.Context, id string, application components.Application, ...) (*operations.DeployAppConfigurationResponse, error) + func (s *DeployServer) DeployAppConfigurationRaw(ctx context.Context, id string, requestBody any, opts ...operations.Option) (*operations.DeployAppConfigurationRawResponse, error) + func (s *DeployServer) ListApps(ctx context.Context, organizationID string, pageNumber *int64, pageSize *int64, ...) (*operations.ListAppsResponse, error) + func (s *DeployServer) ReadApp(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadAppResponse, error) + func (s *DeployServer) ReadAppCurrentStateVersion(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadAppCurrentStateVersionResponse, error) + func (s *DeployServer) ReadAppRuns(ctx context.Context, id string, pageNumber *int64, pageSize *int64, ...) (*operations.ReadAppRunsResponse, error) + func (s *DeployServer) ReadAppVariables(ctx context.Context, id string, pageNumber *int64, pageSize *int64, ...) (*operations.ReadAppVariablesResponse, error) + func (s *DeployServer) ReadAppVersions(ctx context.Context, id string, pageNumber *int64, pageSize *int64, ...) (*operations.ReadAppVersionsResponse, error) + func (s *DeployServer) ReadCurrentAppVersion(ctx context.Context, id string, from *operations.From, ...) (*operations.ReadCurrentAppVersionResponse, error) + func (s *DeployServer) ReadCurrentRun(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadCurrentRunResponse, error) + func (s *DeployServer) ReadCurrentRunLogs(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadCurrentRunLogsResponse, error) + func (s *DeployServer) ReadRun(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadRunResponse, error) + func (s *DeployServer) ReadRunLogs(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadRunLogsResponse, error) + func (s *DeployServer) ReadVersion(ctx context.Context, id string, opts ...operations.Option) (*operations.ReadVersionResponse, error) + func (s *DeployServer) UpdateApp(ctx context.Context, id string, updateAppRequest components.UpdateAppRequest, ...) (*operations.UpdateAppResponse, error) + type HTTPClient interface + Do func(req *http.Request) (*http.Response, error) + type SDKOption func(*DeployServer) + func WithClient(client HTTPClient) SDKOption + func WithRetryConfig(retryConfig retry.Config) SDKOption + func WithServerIndex(serverIndex int) SDKOption + func WithServerURL(serverURL string) SDKOption + func WithTemplatedServerURL(serverURL string, params map[string]string) SDKOption + func WithTimeout(timeout time.Duration) SDKOption