Documentation ¶
Index ¶
- type Client
- func (c *Client) Create(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, ...) error
- func (c *Client) Delete(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, ...) error
- func (c *Client) Get(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, ...) (*generated.KubernetesCluster, error)
- func (c *Client) GetKubeconfig(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, ...) ([]byte, error)
- func (c *Client) List(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter) ([]*generated.KubernetesCluster, error)
- func (c *Client) Update(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client wraps up cluster related management handling.
func NewClient ¶
func NewClient(client client.Client, request *http.Request, authenticator *authorization.Authenticator, openstack *openstack.Openstack) *Client
NewClient returns a new client with required parameters.
func (*Client) Create ¶
func (c *Client) Create(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, options *generated.KubernetesCluster) error
Create creates the implicit cluster indentified by the JTW claims.
func (*Client) Delete ¶
func (c *Client) Delete(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, name generated.ClusterNameParameter) error
Delete deletes the implicit cluster indentified by the JTW claims.
func (*Client) Get ¶
func (c *Client) Get(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, name generated.ClusterNameParameter) (*generated.KubernetesCluster, error)
Get returns the cluster.
func (*Client) GetKubeconfig ¶
func (c *Client) GetKubeconfig(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, name generated.ClusterNameParameter) ([]byte, error)
GetKubeconfig returns the kubernetes configuation associated with a cluster.
func (*Client) List ¶
func (c *Client) List(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter) ([]*generated.KubernetesCluster, error)
List returns all clusters owned by the implicit control plane.
func (*Client) Update ¶
func (c *Client) Update(ctx context.Context, controlPlaneName generated.ControlPlaneNameParameter, name generated.ClusterNameParameter, request *generated.KubernetesCluster) error
Update implements read/modify/write for the cluster.
Click to show internal directories.
Click to hide internal directories.