cluster

package
v1.29.11 Latest Latest
Warning

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

Go to latest
Published: Mar 3, 2024 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

Package cluster provides primitives to interact with the openapi HTTP API.

Code generated by github.com/do87/stackit-client-generator version v0.0.2 DO NOT EDIT.

Index

Constants

View Source
const (
	BearerAuthScopes = "bearerAuth.Scopes"
)

Variables

This section is empty.

Functions

func NewCreateOrUpdateRequest

func NewCreateOrUpdateRequest(ctx context.Context, server string, projectID string, clusterName string, body CreateOrUpdateJSONRequestBody) (*http.Request, error)

NewCreateOrUpdateRequest calls the generic CreateOrUpdate builder with application/json body

func NewCreateOrUpdateRequestWithBody

func NewCreateOrUpdateRequestWithBody(ctx context.Context, server string, projectID string, clusterName string, contentType string, body io.Reader) (*http.Request, error)

NewCreateOrUpdateRequestWithBody generates requests for CreateOrUpdate with any type of body

func NewDeleteRequest

func NewDeleteRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewDeleteRequest generates requests for Delete

func NewGetRequest

func NewGetRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewGetRequest generates requests for Get

func NewListRequest

func NewListRequest(ctx context.Context, server string, projectID string) (*http.Request, error)

NewListRequest generates requests for List

func NewTriggerHibernationRequest

func NewTriggerHibernationRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewTriggerHibernationRequest generates requests for TriggerHibernation

func NewTriggerMaintenanceRequest

func NewTriggerMaintenanceRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewTriggerMaintenanceRequest generates requests for TriggerMaintenance

func NewTriggerReconciliationRequest

func NewTriggerReconciliationRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewTriggerReconciliationRequest generates requests for TriggerReconciliation

func NewTriggerWakeupRequest

func NewTriggerWakeupRequest(ctx context.Context, server string, projectID string, clusterName string) (*http.Request, error)

NewTriggerWakeupRequest generates requests for TriggerWakeup

func Validate

func Validate(
	clusterName string,
	clusterConfig Kubernetes,
	nodePools []Nodepool,
	maintenance *Maintenance,
	hibernation *Hibernation,
	extensions *Extension,
) error

Validate validates the given cluster data (dry validation)

func ValidateCRI

func ValidateCRI(c *CRI) error

ValidateCRI validates the given cri struct

func ValidateClusterName

func ValidateClusterName(name string) error

ValidateClusterName validates a given cluster name

func ValidateExtensions

func ValidateExtensions(e *Extension) error

ValidateExtensions validates a given cluster extensions

func ValidateHibernation

func ValidateHibernation(h *Hibernation) error

ValidateHibernation validates a given cluster hibernation

func ValidateMaintenance

func ValidateMaintenance(m *Maintenance) error

ValidateMaintenance validates a given cluster maintenance

func ValidateNodePool

func ValidateNodePool(np Nodepool) error

ValidateNodePool validates a given node pool

func ValidateNodePoolName

func ValidateNodePoolName(name string) error

ValidateNodePoolName validates a given pool name

func ValidateTaint

func ValidateTaint(t Taint) error

ValidateTaint validates a given node pool taint

Types

type ACL

type ACL struct {
	// AllowedCidrs Array of CIDRs to allow access to the kubernetes API.
	AllowedCidrs []string `json:"allowedCidrs"`

	// Enabled Enables the acl extension.
	Enabled bool `json:"enabled"`
}

ACL defines model for ACL.

type Argus

type Argus struct {
	// ArgusInstanceId Argus instance ID to choose which Argus instance is used.
	ArgusInstanceID string `json:"argusInstanceId"`

	// Enabled Enables the argus extension.
	Enabled bool `json:"enabled"`
}

Argus defines model for Argus.

type CRI

type CRI struct {
	Name *CRIName `json:"name,omitempty"`
}

CRI defines model for CRI.

type CRIName

type CRIName string

CRIName defines model for CRI.Name.

const (
	CONTAINERD CRIName = "containerd"
	DOCKER     CRIName = "docker"
)

Defines values for CRIName.

type Client

type Client struct {
	// The endpoint of the server conforming to this interface, with scheme,
	// https://api.deepmap.com for example. This can contain a path relative
	// to the server, such as https://api.deepmap.com/dev-test, and all the
	// paths in the swagger spec will be appended to the server.
	Server string

	// Doer for performing requests, typically a *http.Client with any
	// customized settings, such as certificate chains.
	Client contracts.BaseClientInterface
}

Client which conforms to the OpenAPI3 specification for this service.

func NewRawClient

func NewRawClient(server string, httpClient contracts.BaseClientInterface) *Client

NewRawClient Creates a new Client, with reasonable defaults

func (*Client) CreateOrUpdateRaw

func (c *Client) CreateOrUpdateRaw(ctx context.Context, projectID string, clusterName string, body CreateOrUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CreateOrUpdateRawWithBody

func (c *Client) CreateOrUpdateRawWithBody(ctx context.Context, projectID string, clusterName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DeleteRaw

func (c *Client) DeleteRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GetRaw

func (c *Client) GetRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ListRaw

func (c *Client) ListRaw(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TriggerHibernationRaw

func (c *Client) TriggerHibernationRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TriggerMaintenanceRaw

func (c *Client) TriggerMaintenanceRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TriggerReconciliationRaw

func (c *Client) TriggerReconciliationRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TriggerWakeupRaw

func (c *Client) TriggerWakeupRaw(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*http.Response, error)

type ClientWithResponses

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

ClientWithResponses builds on rawClientInterface to offer response payloads

func NewClient

func NewClient(server string, httpClient contracts.BaseClientInterface) *ClientWithResponses

NewClient creates a new ClientWithResponses, which wraps Client with return type handling

func (*ClientWithResponses) CreateOrUpdate

func (c *ClientWithResponses) CreateOrUpdate(ctx context.Context, projectID string, clusterName string, body CreateOrUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateOrUpdateResponse, error)

func (*ClientWithResponses) CreateOrUpdateWithBody

func (c *ClientWithResponses) CreateOrUpdateWithBody(ctx context.Context, projectID string, clusterName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateOrUpdateResponse, error)

CreateOrUpdateWithBody request with arbitrary body returning *CreateOrUpdateResponse

func (*ClientWithResponses) Delete

func (c *ClientWithResponses) Delete(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*DeleteResponse, error)

Delete request returning *DeleteResponse

func (*ClientWithResponses) Get

func (c *ClientWithResponses) Get(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*GetResponse, error)

Get request returning *GetResponse

func (*ClientWithResponses) List

func (c *ClientWithResponses) List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error)

List request returning *ListResponse

func (*ClientWithResponses) ParseCreateOrUpdateResponse

func (c *ClientWithResponses) ParseCreateOrUpdateResponse(rsp *http.Response) (*CreateOrUpdateResponse, error)

ParseCreateOrUpdateResponse parses an HTTP response from a CreateOrUpdate call

func (*ClientWithResponses) ParseDeleteResponse

func (c *ClientWithResponses) ParseDeleteResponse(rsp *http.Response) (*DeleteResponse, error)

ParseDeleteResponse parses an HTTP response from a Delete call

func (*ClientWithResponses) ParseGetResponse

func (c *ClientWithResponses) ParseGetResponse(rsp *http.Response) (*GetResponse, error)

ParseGetResponse parses an HTTP response from a Get call

func (*ClientWithResponses) ParseListResponse

func (c *ClientWithResponses) ParseListResponse(rsp *http.Response) (*ListResponse, error)

ParseListResponse parses an HTTP response from a List call

func (*ClientWithResponses) ParseTriggerHibernationResponse

func (c *ClientWithResponses) ParseTriggerHibernationResponse(rsp *http.Response) (*TriggerHibernationResponse, error)

ParseTriggerHibernationResponse parses an HTTP response from a TriggerHibernation call

func (*ClientWithResponses) ParseTriggerMaintenanceResponse

func (c *ClientWithResponses) ParseTriggerMaintenanceResponse(rsp *http.Response) (*TriggerMaintenanceResponse, error)

ParseTriggerMaintenanceResponse parses an HTTP response from a TriggerMaintenance call

func (*ClientWithResponses) ParseTriggerReconciliationResponse

func (c *ClientWithResponses) ParseTriggerReconciliationResponse(rsp *http.Response) (*TriggerReconciliationResponse, error)

ParseTriggerReconciliationResponse parses an HTTP response from a TriggerReconciliation call

func (*ClientWithResponses) ParseTriggerWakeupResponse

func (c *ClientWithResponses) ParseTriggerWakeupResponse(rsp *http.Response) (*TriggerWakeupResponse, error)

ParseTriggerWakeupResponse parses an HTTP response from a TriggerWakeup call

func (*ClientWithResponses) TriggerHibernation

func (c *ClientWithResponses) TriggerHibernation(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerHibernationResponse, error)

TriggerHibernation request returning *TriggerHibernationResponse

func (*ClientWithResponses) TriggerMaintenance

func (c *ClientWithResponses) TriggerMaintenance(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerMaintenanceResponse, error)

TriggerMaintenance request returning *TriggerMaintenanceResponse

func (*ClientWithResponses) TriggerReconciliation

func (c *ClientWithResponses) TriggerReconciliation(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerReconciliationResponse, error)

TriggerReconciliation request returning *TriggerReconciliationResponse

func (*ClientWithResponses) TriggerWakeup

func (c *ClientWithResponses) TriggerWakeup(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerWakeupResponse, error)

TriggerWakeup request returning *TriggerWakeupResponse

type ClientWithResponsesInterface

type ClientWithResponsesInterface interface {
	// List request
	List(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*ListResponse, error)

	// Delete request
	Delete(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*DeleteResponse, error)

	// Get request
	Get(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*GetResponse, error)

	// CreateOrUpdate request with any body
	CreateOrUpdateWithBody(ctx context.Context, projectID string, clusterName string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateOrUpdateResponse, error)

	CreateOrUpdate(ctx context.Context, projectID string, clusterName string, body CreateOrUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateOrUpdateResponse, error)

	// TriggerHibernation request
	TriggerHibernation(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerHibernationResponse, error)

	// TriggerMaintenance request
	TriggerMaintenance(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerMaintenanceResponse, error)

	// TriggerReconciliation request
	TriggerReconciliation(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerReconciliationResponse, error)

	// TriggerWakeup request
	TriggerWakeup(ctx context.Context, projectID string, clusterName string, reqEditors ...RequestEditorFn) (*TriggerWakeupResponse, error)
}

ClientWithResponsesInterface is the interface specification for the client with responses above.

type Cluster

type Cluster struct {
	Extensions  *Extension   `json:"extensions,omitempty"`
	Hibernation *Hibernation `json:"hibernation,omitempty"`

	// Kubernetes For valid versions please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `kubernetesVersions`.
	Kubernetes  Kubernetes     `json:"kubernetes"`
	Maintenance *Maintenance   `json:"maintenance,omitempty"`
	Name        *string        `json:"name,omitempty"`
	Network     *Network       `json:"network,omitempty"`
	Nodepools   []Nodepool     `json:"nodepools"`
	Status      *ClusterStatus `json:"status,omitempty"`
}

Cluster defines model for Cluster.

type ClusterStatus

type ClusterStatus struct {
	Aggregated *ClusterStatusState `json:"aggregated,omitempty"`

	// CreationTime Format: `2024-02-15T11:06:29Z`
	CreationTime        *string              `json:"creationTime,omitempty"`
	CredentialsRotation *CredentialsRotation `json:"credentialsRotation,omitempty"`
	Error               *RuntimeError        `json:"error,omitempty"`
	Hibernated          *bool                `json:"hibernated,omitempty"`
}

ClusterStatus defines model for ClusterStatus.

type ClusterStatusState

type ClusterStatusState string

ClusterStatusState defines model for ClusterStatusState.

const (
	STATE_CREATING    ClusterStatusState = "STATE_CREATING"
	STATE_DELETING    ClusterStatusState = "STATE_DELETING"
	STATE_HEALTHY     ClusterStatusState = "STATE_HEALTHY"
	STATE_HIBERNATED  ClusterStatusState = "STATE_HIBERNATED"
	STATE_HIBERNATING ClusterStatusState = "STATE_HIBERNATING"
	STATE_RECONCILING ClusterStatusState = "STATE_RECONCILING"
	STATE_UNHEALTHY   ClusterStatusState = "STATE_UNHEALTHY"
	STATE_UNSPECIFIED ClusterStatusState = "STATE_UNSPECIFIED"
	STATE_WAKINGUP    ClusterStatusState = "STATE_WAKINGUP"
)

Defines values for ClusterStatusState.

type Clusters

type Clusters struct {
	Items *[]Cluster `json:"items,omitempty"`
}

Clusters defines model for Clusters.

type CreateOrUpdateJSONRequestBody

type CreateOrUpdateJSONRequestBody = SkeServiceCreateOrUpdateClusterRequest

CreateOrUpdateJSONRequestBody defines body for CreateOrUpdate for application/json ContentType.

type CreateOrUpdateResponse

type CreateOrUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Cluster
	JSON202      *map[string]interface{}
	JSON400      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (CreateOrUpdateResponse) Status

func (r CreateOrUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (CreateOrUpdateResponse) StatusCode

func (r CreateOrUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

func (*CreateOrUpdateResponse) WaitHandler

func (*CreateOrUpdateResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID, clusterName string) *wait.Handler

type CredentialsRotation

type CredentialsRotation struct {
	// LastCompletionTime Format: `2024-02-15T11:06:29Z`
	LastCompletionTime *string `json:"lastCompletionTime,omitempty"`

	// LastInitiationTime Format: `2024-02-15T11:06:29Z`
	LastInitiationTime *string `json:"lastInitiationTime,omitempty"`

	// Phase Phase of the credentials rotation. `NEVER` indicates that no credentials rotation has been performed using the new credentials rotation endpoints yet. Using the deprecated [rotate-credentials](#tag/Credentials/operation/SkeService_GetClusterCredentials) endpoint will not update this status field.
	Phase *CredentialsRotationPhase `json:"phase,omitempty"`
}

CredentialsRotation defines model for CredentialsRotation.

type CredentialsRotationPhase

type CredentialsRotationPhase string

CredentialsRotationPhase Phase of the credentials rotation. `NEVER` indicates that no credentials rotation has been performed using the new credentials rotation endpoints yet. Using the deprecated [rotate-credentials](#tag/Credentials/operation/SkeService_GetClusterCredentials) endpoint will not update this status field.

const (
	COMPLETED  CredentialsRotationPhase = "COMPLETED"
	COMPLETING CredentialsRotationPhase = "COMPLETING"
	NEVER      CredentialsRotationPhase = "NEVER"
	PREPARED   CredentialsRotationPhase = "PREPARED"
	PREPARING  CredentialsRotationPhase = "PREPARING"
)

Defines values for CredentialsRotationPhase.

type DeleteResponse

type DeleteResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON202      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (DeleteResponse) Status

func (r DeleteResponse) Status() string

Status returns HTTPResponse.Status

func (DeleteResponse) StatusCode

func (r DeleteResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

func (*DeleteResponse) WaitHandler

func (*DeleteResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID, clusterName string) *wait.Handler

type Extension

type Extension struct {
	Acl   *ACL   `json:"acl,omitempty"`
	Argus *Argus `json:"argus,omitempty"`
}

Extension defines model for Extension.

type GetResponse

type GetResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Cluster
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (GetResponse) Status

func (r GetResponse) Status() string

Status returns HTTPResponse.Status

func (GetResponse) StatusCode

func (r GetResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Hibernation

type Hibernation struct {
	Schedules []HibernationSchedule `json:"schedules"`
}

Hibernation defines model for Hibernation.

type HibernationSchedule

type HibernationSchedule struct {
	End      string  `json:"end"`
	Start    string  `json:"start"`
	Timezone *string `json:"timezone,omitempty"`
}

HibernationSchedule defines model for HibernationSchedule.

type Image

type Image struct {
	Name    *string `json:"name,omitempty"`
	Version string  `json:"version"`
}

Image For valid names and versions please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `machineImages`.

type Kubernetes

type Kubernetes struct {
	// AllowPrivilegedContainers DEPRECATED as of Kubernetes 1.25+
	// Flag to specify if privileged mode for containers is enabled or not.
	// This should be used with care since it also disables a couple of other features like the use of some volume type (e.g. PVCs).
	// By default this is set to true.
	AllowPrivilegedContainers *bool  `json:"allowPrivilegedContainers,omitempty"`
	Version                   string `json:"version"`
}

Kubernetes For valid versions please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `kubernetesVersions`.

type ListResponse

type ListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Clusters
	JSON400      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (ListResponse) Status

func (r ListResponse) Status() string

Status returns HTTPResponse.Status

func (ListResponse) StatusCode

func (r ListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Machine

type Machine struct {
	// Image For valid names and versions please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `machineImages`.
	Image Image `json:"image"`

	// Type For valid types please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `machineTypes`.
	Type string `json:"type"`
}

Machine defines model for Machine.

type Maintenance

type Maintenance struct {
	AutoUpdate MaintenanceAutoUpdate `json:"autoUpdate"`
	TimeWindow TimeWindow            `json:"timeWindow"`
}

Maintenance defines model for Maintenance.

type MaintenanceAutoUpdate

type MaintenanceAutoUpdate struct {
	KubernetesVersion   *bool `json:"kubernetesVersion,omitempty"`
	MachineImageVersion *bool `json:"machineImageVersion,omitempty"`
}

MaintenanceAutoUpdate defines model for MaintenanceAutoUpdate.

type Network

type Network struct {
	ID *string `json:"id,omitempty"`
}

Network defines model for Network.

type Nodepool

type Nodepool struct {
	AvailabilityZones []string           `json:"availabilityZones"`
	CRI               *CRI               `json:"cri,omitempty"`
	Labels            *map[string]string `json:"labels,omitempty"`
	Machine           Machine            `json:"machine"`
	MaxSurge          *int               `json:"maxSurge,omitempty"`
	MaxUnavailable    *int               `json:"maxUnavailable,omitempty"`
	Maximum           int                `json:"maximum"`
	Minimum           int                `json:"minimum"`

	// Name Maximum 15 chars
	Name   string   `json:"name"`
	Taints *[]Taint `json:"taints,omitempty"`
	Volume Volume   `json:"volume"`
}

Nodepool defines model for Nodepool.

type RequestEditorFn

type RequestEditorFn func(ctx context.Context, req *http.Request) error

RequestEditorFn is the function signature for the RequestEditor callback function

type RuntimeError

type RuntimeError struct {
	// Code - Code:    `SKE_UNSPECIFIED`
	//   Message: "An error occurred. Please open a support ticket if this error persists."
	// - Code:    `SKE_TMP_AUTH_ERROR`
	//   Message: "Authentication failed. This is a temporary error. Please wait while the system recovers."
	// - Code:    `SKE_QUOTA_EXCEEDED`
	//   Message: "Your project's resource quotas are exhausted. Please make sure your quota is sufficient for the ordered cluster."
	// - Code:    `SKE_ARGUS_INSTANCE_NOT_FOUND`
	//   Message: "The provided Argus instance could not be found."
	// - Code:    `SKE_RATE_LIMITS`
	//   Message: "While provisioning your cluster, request rate limits where incurred. Please wait while the system recovers."
	// - Code:    `SKE_INFRA_ERROR`
	//   Message: "An error occurred with the underlying infrastructure. Please open a support ticket if this error persists."
	// - Code:    `SKE_REMAINING_RESOURCES`
	//   Message: "There are remaining Kubernetes resources in your cluster that prevent deletion. Please make sure to remove them."
	// - Code:    `SKE_CONFIGURATION_PROBLEM`
	//   Message: "A configuration error occurred. Please open a support ticket if this error persists."
	// - Code:    `SKE_UNREADY_NODES`
	//   Message: "Not all worker nodes are ready. Please open a support ticket if this error persists."
	// - Code:    `SKE_API_SERVER_ERROR`
	//   Message: "The Kubernetes API server is not reporting readiness. Please open a support ticket if this error persists."
	Code    *RuntimeErrorCode `json:"code,omitempty"`
	Details *string           `json:"details,omitempty"`
	Message *string           `json:"message,omitempty"`
}

RuntimeError defines model for RuntimeError.

type RuntimeErrorCode

type RuntimeErrorCode string

RuntimeErrorCode - Code: `SKE_UNSPECIFIED`

	Message: "An error occurred. Please open a support ticket if this error persists."
  - Code:    `SKE_TMP_AUTH_ERROR`
    Message: "Authentication failed. This is a temporary error. Please wait while the system recovers."
  - Code:    `SKE_QUOTA_EXCEEDED`
    Message: "Your project's resource quotas are exhausted. Please make sure your quota is sufficient for the ordered cluster."
  - Code:    `SKE_ARGUS_INSTANCE_NOT_FOUND`
    Message: "The provided Argus instance could not be found."
  - Code:    `SKE_RATE_LIMITS`
    Message: "While provisioning your cluster, request rate limits where incurred. Please wait while the system recovers."
  - Code:    `SKE_INFRA_ERROR`
    Message: "An error occurred with the underlying infrastructure. Please open a support ticket if this error persists."
  - Code:    `SKE_REMAINING_RESOURCES`
    Message: "There are remaining Kubernetes resources in your cluster that prevent deletion. Please make sure to remove them."
  - Code:    `SKE_CONFIGURATION_PROBLEM`
    Message: "A configuration error occurred. Please open a support ticket if this error persists."
  - Code:    `SKE_UNREADY_NODES`
    Message: "Not all worker nodes are ready. Please open a support ticket if this error persists."
  - Code:    `SKE_API_SERVER_ERROR`
    Message: "The Kubernetes API server is not reporting readiness. Please open a support ticket if this error persists."
const (
	SKE_API_SERVER_ERROR         RuntimeErrorCode = "SKE_API_SERVER_ERROR"
	SKE_ARGUS_INSTANCE_NOT_FOUND RuntimeErrorCode = "SKE_ARGUS_INSTANCE_NOT_FOUND"
	SKE_CONFIGURATION_PROBLEM    RuntimeErrorCode = "SKE_CONFIGURATION_PROBLEM"
	SKE_INFRA_ERROR              RuntimeErrorCode = "SKE_INFRA_ERROR"
	SKE_QUOTA_EXCEEDED           RuntimeErrorCode = "SKE_QUOTA_EXCEEDED"
	SKE_RATE_LIMITS              RuntimeErrorCode = "SKE_RATE_LIMITS"
	SKE_REMAINING_RESOURCES      RuntimeErrorCode = "SKE_REMAINING_RESOURCES"
	SKE_TMP_AUTH_ERROR           RuntimeErrorCode = "SKE_TMP_AUTH_ERROR"
	SKE_UNREADY_NODES            RuntimeErrorCode = "SKE_UNREADY_NODES"
	SKE_UNSPECIFIED              RuntimeErrorCode = "SKE_UNSPECIFIED"
)

Defines values for RuntimeErrorCode.

type SkeServiceCreateOrUpdateClusterRequest

type SkeServiceCreateOrUpdateClusterRequest struct {
	Extensions  *Extension   `json:"extensions,omitempty"`
	Hibernation *Hibernation `json:"hibernation,omitempty"`

	// Kubernetes For valid versions please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `kubernetesVersions`.
	Kubernetes  Kubernetes     `json:"kubernetes"`
	Maintenance *Maintenance   `json:"maintenance,omitempty"`
	Network     *Network       `json:"network,omitempty"`
	Nodepools   []Nodepool     `json:"nodepools"`
	Status      *ClusterStatus `json:"status,omitempty"`
}

SkeServiceCreateOrUpdateClusterRequest defines model for SkeService_CreateOrUpdateCluster_request.

type Taint

type Taint struct {
	Effect TaintEffect `json:"effect"`
	Key    string      `json:"key"`
	Value  *string     `json:"value,omitempty"`
}

Taint defines model for Taint.

type TaintEffect

type TaintEffect string

TaintEffect defines model for Taint.Effect.

const (
	NO_EXECUTE         TaintEffect = "NoExecute"
	NO_SCHEDULE        TaintEffect = "NoSchedule"
	PREFER_NO_SCHEDULE TaintEffect = "PreferNoSchedule"
)

Defines values for TaintEffect.

type TimeWindow

type TimeWindow struct {
	End   string `json:"end"`
	Start string `json:"start"`
}

TimeWindow defines model for TimeWindow.

type TriggerHibernationResponse

type TriggerHibernationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON202      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (TriggerHibernationResponse) Status

Status returns HTTPResponse.Status

func (TriggerHibernationResponse) StatusCode

func (r TriggerHibernationResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TriggerMaintenanceResponse

type TriggerMaintenanceResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON202      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (TriggerMaintenanceResponse) Status

Status returns HTTPResponse.Status

func (TriggerMaintenanceResponse) StatusCode

func (r TriggerMaintenanceResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TriggerReconciliationResponse

type TriggerReconciliationResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON202      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (TriggerReconciliationResponse) Status

Status returns HTTPResponse.Status

func (TriggerReconciliationResponse) StatusCode

func (r TriggerReconciliationResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TriggerWakeupResponse

type TriggerWakeupResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *map[string]interface{}
	JSON202      *map[string]interface{}
	JSON404      *map[string]interface{}
	JSONDefault  *RuntimeError
	Error        error // Aggregated error
}

func (TriggerWakeupResponse) Status

func (r TriggerWakeupResponse) Status() string

Status returns HTTPResponse.Status

func (TriggerWakeupResponse) StatusCode

func (r TriggerWakeupResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Volume

type Volume struct {
	Size int `json:"size"`

	// Type For valid values please take a look at [provider-options](#tag/ProviderOptions/operation/SkeService_GetProviderOptions) `volumeTypes`.
	Type *string `json:"type,omitempty"`
}

Volume defines model for Volume.

Jump to

Keyboard shortcuts

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