Merge branch 'dev' into 'main'

1.5.8-k8s-extnet-branch
stSolo 3 years ago
parent c33e0cc5fc
commit 6271fa6d45

@ -9,9 +9,9 @@ import (
) )
type ListRequest struct { type ListRequest struct {
IncludeDeleted bool `json:"includedeleted"` IncludeDeleted bool `url:"includedeleted"`
Page uint64 `json:"page"` Page uint64 `url:"page"`
Size uint64 `json:"size"` Size uint64 `url:"size"`
} }
func (k8s K8S) List(ctx context.Context, req ListRequest, options ...opts.DecortOpts) (K8SList, error) { func (k8s K8S) List(ctx context.Context, req ListRequest, options ...opts.DecortOpts) (K8SList, error) {

@ -9,8 +9,8 @@ import (
) )
type ListDeletedRequest struct { type ListDeletedRequest struct {
Page uint64 `json:"page"` Page uint64 `url:"page"`
Size uint64 `json:"size"` Size uint64 `url:"size"`
} }
func (k8s K8S) ListDeleted(ctx context.Context, req ListDeletedRequest, options ...opts.DecortOpts) (K8SList, error) { func (k8s K8S) ListDeleted(ctx context.Context, req ListDeletedRequest, options ...opts.DecortOpts) (K8SList, error) {

Loading…
Cancel
Save