-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontrolplanes_i.go
More file actions
29 lines (25 loc) · 1.52 KB
/
controlplanes_i.go
File metadata and controls
29 lines (25 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Code generated by ifacemaker; DO NOT EDIT.
package sdkkonnectgo
import (
"context"
"github.com/Kong/sdk-konnect-go/models/components"
"github.com/Kong/sdk-konnect-go/models/operations"
)
// ControlPlanesSDK is a generated interface.
type ControlPlanesSDK interface {
// ListControlPlanes - List Control Planes
// Returns an array of control plane objects containing information about the Konnect Control Planes.
ListControlPlanes(ctx context.Context, request operations.ListControlPlanesRequest, opts ...operations.Option) (*operations.ListControlPlanesResponse, error)
// CreateControlPlane - Create Control Plane
// Create a control plane in the Konnect Organization.
CreateControlPlane(ctx context.Context, request components.CreateControlPlaneRequest, opts ...operations.Option) (*operations.CreateControlPlaneResponse, error)
// GetControlPlane - Get a Control Plane
// Returns information about an individual control plane.
GetControlPlane(ctx context.Context, id string, opts ...operations.Option) (*operations.GetControlPlaneResponse, error)
// UpdateControlPlane - Update Control Plane
// Update an individual control plane.
UpdateControlPlane(ctx context.Context, id string, updateControlPlaneRequest components.UpdateControlPlaneRequest, opts ...operations.Option) (*operations.UpdateControlPlaneResponse, error)
// DeleteControlPlane - Delete Control Plane
// Delete an individual control plane.
DeleteControlPlane(ctx context.Context, id string, opts ...operations.Option) (*operations.DeleteControlPlaneResponse, error)
}