Documentation
¶
Index ¶
- type AuthClient
- func (c *AuthClient) Create(ctx context.Context, Auth *v1beta1.Auth) (*v1beta1.Auth, error)
- func (c *AuthClient) Delete(ctx context.Context, name string) error
- func (c *AuthClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Auth, error)
- func (c *AuthClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.AuthList, error)
- func (c *AuthClient) Update(ctx context.Context, o *v1beta1.Auth) (*v1beta1.Auth, error)
- func (c *AuthClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type AuthInterface
- type Client
- func (c *Client) Auths() AuthInterface
- func (c *Client) Databases() DatabaseInterface
- func (c *Client) Gateways() GatewayInterface
- func (c *Client) Ledgers() LedgerInterface
- func (c *Client) Orchestrations() OrchestrationInterface
- func (c *Client) Payments() PaymentsInterface
- func (c *Client) Reconciliations() ReconciliationInterface
- func (c *Client) Searches() SearchInterface
- func (c *Client) Stacks() StackInterface
- func (c *Client) Versions() VersionsInterface
- func (c *Client) Wallets() WalletsInterface
- func (c *Client) Webhooks() WebhooksInterface
- type DatabaseInterface
- type GatewayInterface
- type LedgerClient
- func (c *LedgerClient) Create(ctx context.Context, Ledger *v1beta1.Ledger) (*v1beta1.Ledger, error)
- func (c *LedgerClient) Delete(ctx context.Context, name string) error
- func (c *LedgerClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Ledger, error)
- func (c *LedgerClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.LedgerList, error)
- func (c *LedgerClient) Update(ctx context.Context, o *v1beta1.Ledger) (*v1beta1.Ledger, error)
- func (c *LedgerClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type LedgerInterface
- type OrchestrationClient
- func (c *OrchestrationClient) Create(ctx context.Context, Orchestration *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
- func (c *OrchestrationClient) Delete(ctx context.Context, name string) error
- func (c *OrchestrationClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Orchestration, error)
- func (c *OrchestrationClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.OrchestrationList, error)
- func (c *OrchestrationClient) Update(ctx context.Context, o *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
- func (c *OrchestrationClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type OrchestrationInterface
- type PaymentsInterface
- type ReconciliationInterface
- type SearchClient
- func (c *SearchClient) Create(ctx context.Context, Search *v1beta1.Search) (*v1beta1.Search, error)
- func (c *SearchClient) Delete(ctx context.Context, name string) error
- func (c *SearchClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Search, error)
- func (c *SearchClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.SearchList, error)
- func (c *SearchClient) Update(ctx context.Context, o *v1beta1.Search) (*v1beta1.Search, error)
- func (c *SearchClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type SearchInterface
- type StackInterface
- type VersionsClient
- func (c *VersionsClient) Create(ctx context.Context, Versions *v1beta1.Versions) (*v1beta1.Versions, error)
- func (c *VersionsClient) Delete(ctx context.Context, name string) error
- func (c *VersionsClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Versions, error)
- func (c *VersionsClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.VersionsList, error)
- func (c *VersionsClient) Update(ctx context.Context, o *v1beta1.Versions) (*v1beta1.Versions, error)
- func (c *VersionsClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
- type VersionsInterface
- type WalletsInterface
- type WebhooksInterface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthClient ¶
type AuthClient struct {
// contains filtered or unexported fields
}
func (*AuthClient) Get ¶
func (c *AuthClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Auth, error)
func (*AuthClient) List ¶
func (c *AuthClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.AuthList, error)
func (*AuthClient) Watch ¶
func (c *AuthClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type AuthInterface ¶
type AuthInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.AuthList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Auth, error)
Create(ctx context.Context, Auth *v1beta1.Auth) (*v1beta1.Auth, error)
Update(ctx context.Context, Auth *v1beta1.Auth) (*v1beta1.Auth, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type Client ¶
func (*Client) Auths ¶
func (c *Client) Auths() AuthInterface
func (*Client) Databases ¶
func (c *Client) Databases() DatabaseInterface
func (*Client) Gateways ¶
func (c *Client) Gateways() GatewayInterface
func (*Client) Ledgers ¶
func (c *Client) Ledgers() LedgerInterface
func (*Client) Orchestrations ¶
func (c *Client) Orchestrations() OrchestrationInterface
func (*Client) Payments ¶
func (c *Client) Payments() PaymentsInterface
func (*Client) Reconciliations ¶
func (c *Client) Reconciliations() ReconciliationInterface
func (*Client) Searches ¶
func (c *Client) Searches() SearchInterface
func (*Client) Stacks ¶
func (c *Client) Stacks() StackInterface
func (*Client) Versions ¶
func (c *Client) Versions() VersionsInterface
func (*Client) Wallets ¶
func (c *Client) Wallets() WalletsInterface
func (*Client) Webhooks ¶
func (c *Client) Webhooks() WebhooksInterface
type DatabaseInterface ¶
type GatewayInterface ¶
type GatewayInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.GatewayList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Gateway, error)
Create(ctx context.Context, Gateway *v1beta1.Gateway) (*v1beta1.Gateway, error)
Update(ctx context.Context, Gateway *v1beta1.Gateway) (*v1beta1.Gateway, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type LedgerClient ¶
type LedgerClient struct {
// contains filtered or unexported fields
}
func (*LedgerClient) Get ¶
func (c *LedgerClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Ledger, error)
func (*LedgerClient) List ¶
func (c *LedgerClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.LedgerList, error)
func (*LedgerClient) Watch ¶
func (c *LedgerClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type LedgerInterface ¶
type LedgerInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.LedgerList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Ledger, error)
Create(ctx context.Context, Ledger *v1beta1.Ledger) (*v1beta1.Ledger, error)
Update(ctx context.Context, Ledger *v1beta1.Ledger) (*v1beta1.Ledger, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type OrchestrationClient ¶
type OrchestrationClient struct {
// contains filtered or unexported fields
}
func (*OrchestrationClient) Create ¶
func (c *OrchestrationClient) Create(ctx context.Context, Orchestration *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
func (*OrchestrationClient) Delete ¶
func (c *OrchestrationClient) Delete(ctx context.Context, name string) error
func (*OrchestrationClient) Get ¶
func (c *OrchestrationClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Orchestration, error)
func (*OrchestrationClient) List ¶
func (c *OrchestrationClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.OrchestrationList, error)
func (*OrchestrationClient) Update ¶
func (c *OrchestrationClient) Update(ctx context.Context, o *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
func (*OrchestrationClient) Watch ¶
func (c *OrchestrationClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type OrchestrationInterface ¶
type OrchestrationInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.OrchestrationList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Orchestration, error)
Create(ctx context.Context, Orchestration *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
Update(ctx context.Context, Orchestration *v1beta1.Orchestration) (*v1beta1.Orchestration, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type PaymentsInterface ¶
type PaymentsInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.PaymentsList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Payments, error)
Create(ctx context.Context, Payments *v1beta1.Payments) (*v1beta1.Payments, error)
Update(ctx context.Context, Payments *v1beta1.Payments) (*v1beta1.Payments, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type ReconciliationInterface ¶
type ReconciliationInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.ReconciliationList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Reconciliation, error)
Create(ctx context.Context, Reconciliation *v1beta1.Reconciliation) (*v1beta1.Reconciliation, error)
Update(ctx context.Context, Reconciliation *v1beta1.Reconciliation) (*v1beta1.Reconciliation, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type SearchClient ¶
type SearchClient struct {
// contains filtered or unexported fields
}
func (*SearchClient) Get ¶
func (c *SearchClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Search, error)
func (*SearchClient) List ¶
func (c *SearchClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.SearchList, error)
func (*SearchClient) Watch ¶
func (c *SearchClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type SearchInterface ¶
type SearchInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.SearchList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Search, error)
Create(ctx context.Context, Search *v1beta1.Search) (*v1beta1.Search, error)
Update(ctx context.Context, Search *v1beta1.Search) (*v1beta1.Search, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type StackInterface ¶
type StackInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.StackList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Stack, error)
Create(ctx context.Context, stack *v1beta1.Stack) (*v1beta1.Stack, error)
Update(ctx context.Context, stack *v1beta1.Stack) (*v1beta1.Stack, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Patch(ctx context.Context, name string, patchType types.PatchType, body any) (*v1beta1.Stack, error)
Delete(ctx context.Context, name string) error
}
type VersionsClient ¶
type VersionsClient struct {
// contains filtered or unexported fields
}
func (*VersionsClient) Delete ¶
func (c *VersionsClient) Delete(ctx context.Context, name string) error
func (*VersionsClient) Get ¶
func (c *VersionsClient) Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1beta1.Versions, error)
func (*VersionsClient) List ¶
func (c *VersionsClient) List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.VersionsList, error)
func (*VersionsClient) Watch ¶
func (c *VersionsClient) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
type VersionsInterface ¶
type VersionsInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.VersionsList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Versions, error)
Create(ctx context.Context, Versions *v1beta1.Versions) (*v1beta1.Versions, error)
Update(ctx context.Context, Versions *v1beta1.Versions) (*v1beta1.Versions, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type WalletsInterface ¶
type WalletsInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.WalletsList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Wallets, error)
Create(ctx context.Context, Wallets *v1beta1.Wallets) (*v1beta1.Wallets, error)
Update(ctx context.Context, Wallets *v1beta1.Wallets) (*v1beta1.Wallets, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
type WebhooksInterface ¶
type WebhooksInterface interface {
List(ctx context.Context, opts metav1.ListOptions) (*v1beta1.WebhooksList, error)
Get(ctx context.Context, name string, options metav1.GetOptions) (*v1beta1.Webhooks, error)
Create(ctx context.Context, Webhooks *v1beta1.Webhooks) (*v1beta1.Webhooks, error)
Update(ctx context.Context, Webhooks *v1beta1.Webhooks) (*v1beta1.Webhooks, error)
Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
Delete(ctx context.Context, name string) error
}
Click to show internal directories.
Click to hide internal directories.