Documentation ¶
Overview ¶
Package project provides primitives to interact with the openapi HTTP API.
Code generated by github.com/do87/oapi-codegen version v0.5.1 DO NOT EDIT.
Index ¶
- Constants
- func NewCreateProjectRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
- func NewDeleteProjectRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
- func NewGetProjectRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
- type Client
- func (c *Client) CreateProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) DeleteProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- func (c *Client) GetProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error)
- type ClientInterface
- type ClientWithResponses
- func (c *ClientWithResponses) CreateProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*CreateProjectResponse, error)
- func (c *ClientWithResponses) DeleteProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*DeleteProjectResponse, error)
- func (c *ClientWithResponses) GetProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetProjectResponse, error)
- func (c *ClientWithResponses) ParseCreateProjectResponse(rsp *http.Response) (*CreateProjectResponse, error)
- func (c *ClientWithResponses) ParseDeleteProjectResponse(rsp *http.Response) (*DeleteProjectResponse, error)
- func (c *ClientWithResponses) ParseGetProjectResponse(rsp *http.Response) (*GetProjectResponse, error)
- type ClientWithResponsesInterface
- type CreateProjectResponse
- type DeleteProjectResponse
- type GetProjectResponse
- type Project
- type ProjectState
- type RequestEditorFn
- type RuntimeError
- type RuntimeErrorCode
Constants ¶
const (
BearerAuthScopes = "bearerAuth.Scopes"
)
Variables ¶
This section is empty.
Functions ¶
func NewCreateProjectRequest ¶
func NewCreateProjectRequest(ctx context.Context, server string, projectID string) (*http.Request, error)
NewCreateProjectRequest generates requests for CreateProject
Types ¶
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 common.Client }
Client which conforms to the OpenAPI3 specification for this service.
func (*Client) CreateProject ¶
func (*Client) DeleteProject ¶
func (*Client) GetProject ¶
type ClientInterface ¶
type ClientInterface interface { // DeleteProject request DeleteProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error) // GetProject request GetProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error) // CreateProject request CreateProject(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*http.Response, error) }
The interface specification for the client above.
type ClientWithResponses ¶
type ClientWithResponses struct {
ClientInterface
}
ClientWithResponses builds on ClientInterface to offer response payloads
func NewClientWithResponses ¶
func NewClientWithResponses(server string, httpClient common.Client) *ClientWithResponses
NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling
func (*ClientWithResponses) CreateProjectWithResponse ¶
func (c *ClientWithResponses) CreateProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*CreateProjectResponse, error)
CreateProjectWithResponse request returning *CreateProjectResponse
func (*ClientWithResponses) DeleteProjectWithResponse ¶
func (c *ClientWithResponses) DeleteProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*DeleteProjectResponse, error)
DeleteProjectWithResponse request returning *DeleteProjectResponse
func (*ClientWithResponses) GetProjectWithResponse ¶
func (c *ClientWithResponses) GetProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetProjectResponse, error)
GetProjectWithResponse request returning *GetProjectResponse
func (*ClientWithResponses) ParseCreateProjectResponse ¶
func (c *ClientWithResponses) ParseCreateProjectResponse(rsp *http.Response) (*CreateProjectResponse, error)
ParseCreateProjectResponse parses an HTTP response from a CreateProjectWithResponse call
func (*ClientWithResponses) ParseDeleteProjectResponse ¶
func (c *ClientWithResponses) ParseDeleteProjectResponse(rsp *http.Response) (*DeleteProjectResponse, error)
ParseDeleteProjectResponse parses an HTTP response from a DeleteProjectWithResponse call
func (*ClientWithResponses) ParseGetProjectResponse ¶
func (c *ClientWithResponses) ParseGetProjectResponse(rsp *http.Response) (*GetProjectResponse, error)
ParseGetProjectResponse parses an HTTP response from a GetProjectWithResponse call
type ClientWithResponsesInterface ¶
type ClientWithResponsesInterface interface { // DeleteProject request DeleteProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*DeleteProjectResponse, error) // GetProject request GetProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*GetProjectResponse, error) // CreateProject request CreateProjectWithResponse(ctx context.Context, projectID string, reqEditors ...RequestEditorFn) (*CreateProjectResponse, error) }
ClientWithResponsesInterface is the interface specification for the client with responses above.
type CreateProjectResponse ¶
type CreateProjectResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Project JSON400 *map[string]interface{} JSONDefault *RuntimeError HasError error // Aggregated error }
func (CreateProjectResponse) Status ¶
func (r CreateProjectResponse) Status() string
Status returns HTTPResponse.Status
func (CreateProjectResponse) StatusCode ¶
func (r CreateProjectResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
func (CreateProjectResponse) WaitHandler ¶ added in v1.3.1
func (r CreateProjectResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID string) *wait.Handler
type DeleteProjectResponse ¶
type DeleteProjectResponse struct { Body []byte HTTPResponse *http.Response JSON200 *map[string]interface{} JSON202 *map[string]interface{} JSON400 *map[string]interface{} JSONDefault *RuntimeError HasError error // Aggregated error }
func (DeleteProjectResponse) Status ¶
func (r DeleteProjectResponse) Status() string
Status returns HTTPResponse.Status
func (DeleteProjectResponse) StatusCode ¶
func (r DeleteProjectResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
func (DeleteProjectResponse) WaitHandler ¶ added in v1.3.1
func (r DeleteProjectResponse) WaitHandler(ctx context.Context, c *ClientWithResponses, projectID string) *wait.Handler
type GetProjectResponse ¶
type GetProjectResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Project JSON404 *map[string]interface{} JSONDefault *RuntimeError HasError error // Aggregated error }
func (GetProjectResponse) Status ¶
func (r GetProjectResponse) Status() string
Status returns HTTPResponse.Status
func (GetProjectResponse) StatusCode ¶
func (r GetProjectResponse) StatusCode() int
StatusCode returns HTTPResponse.StatusCode
type Project ¶
type Project struct { ProjectID *string `json:"projectId,omitempty"` State *ProjectState `json:"state,omitempty"` }
Project defines model for Project.
type ProjectState ¶
type ProjectState string
ProjectState defines model for ProjectState.
const ( STATE_CREATED ProjectState = "STATE_CREATED" STATE_CREATING ProjectState = "STATE_CREATING" STATE_DELETING ProjectState = "STATE_DELETING" STATE_FAILED ProjectState = "STATE_FAILED" STATE_UNSPECIFIED ProjectState = "STATE_UNSPECIFIED" )
Defines values for ProjectState.
type RequestEditorFn ¶
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.