-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhmacauthcredentials_i.go
More file actions
34 lines (30 loc) · 2.35 KB
/
hmacauthcredentials_i.go
File metadata and controls
34 lines (30 loc) · 2.35 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
30
31
32
33
34
// Code generated by ifacemaker; DO NOT EDIT.
package sdkkonnectgo
import (
"context"
"github.com/Kong/sdk-konnect-go/models/operations"
)
// HMACAuthCredentialsSDK is a generated interface.
type HMACAuthCredentialsSDK interface {
// ListHmacAuthWithConsumer - List all HMAC-auth credentials associated with a Consumer
// List all HMAC-auth credentials associated with a Consumer
ListHmacAuthWithConsumer(ctx context.Context, request operations.ListHmacAuthWithConsumerRequest, opts ...operations.Option) (*operations.ListHmacAuthWithConsumerResponse, error)
// CreateHmacAuthWithConsumer - Create a new HMAC-auth credential associated with a Consumer
// Create a new HMAC-auth credential associated with a Consumer
CreateHmacAuthWithConsumer(ctx context.Context, request operations.CreateHmacAuthWithConsumerRequest, opts ...operations.Option) (*operations.CreateHmacAuthWithConsumerResponse, error)
// DeleteHmacAuthWithConsumer - Delete a a HMAC-auth credential associated with a Consumer
// Delete a a HMAC-auth credential associated with a Consumer using ID.
DeleteHmacAuthWithConsumer(ctx context.Context, request operations.DeleteHmacAuthWithConsumerRequest, opts ...operations.Option) (*operations.DeleteHmacAuthWithConsumerResponse, error)
// GetHmacAuthWithConsumer - Get a HMAC-auth credential associated with a Consumer
// Get a HMAC-auth credential associated with a Consumer using ID.
GetHmacAuthWithConsumer(ctx context.Context, request operations.GetHmacAuthWithConsumerRequest, opts ...operations.Option) (*operations.GetHmacAuthWithConsumerResponse, error)
// UpsertHmacAuthWithConsumer - Upsert a HMAC-auth credential associated with a Consumer
// Create or Update a HMAC-auth credential associated with a Consumer using ID.
UpsertHmacAuthWithConsumer(ctx context.Context, request operations.UpsertHmacAuthWithConsumerRequest, opts ...operations.Option) (*operations.UpsertHmacAuthWithConsumerResponse, error)
// ListHmacAuth - List all HMAC-auth credentials
// List all HMAC-auth credentials
ListHmacAuth(ctx context.Context, request operations.ListHmacAuthRequest, opts ...operations.Option) (*operations.ListHmacAuthResponse, error)
// GetHmacAuth - Get a HMAC-auth credential
// Get a HMAC-auth credential using ID.
GetHmacAuth(ctx context.Context, hmacAuthID string, controlPlaneID string, opts ...operations.Option) (*operations.GetHmacAuthResponse, error)
}