Gennady Lipenkov fcfbdc6b08 Update Yandex.Cloud go packages "go-genproto" and "go-sdk"
'go mod vendor' included
2020-06-17 12:35:43 +03:00

508 lines
14 KiB
Go

// Code generated by sdkgen. DO NOT EDIT.
//nolint
package postgresql
import (
"context"
"google.golang.org/grpc"
postgresql "github.com/yandex-cloud/go-genproto/yandex/cloud/mdb/postgresql/v1"
"github.com/yandex-cloud/go-genproto/yandex/cloud/operation"
)
//revive:disable
// ClusterServiceClient is a postgresql.ClusterServiceClient with
// lazy GRPC connection initialization.
type ClusterServiceClient struct {
getConn func(ctx context.Context) (*grpc.ClientConn, error)
}
// AddHosts implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) AddHosts(ctx context.Context, in *postgresql.AddClusterHostsRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).AddHosts(ctx, in, opts...)
}
// Backup implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Backup(ctx context.Context, in *postgresql.BackupClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Backup(ctx, in, opts...)
}
// Create implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Create(ctx context.Context, in *postgresql.CreateClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Create(ctx, in, opts...)
}
// Delete implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Delete(ctx context.Context, in *postgresql.DeleteClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Delete(ctx, in, opts...)
}
// DeleteHosts implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) DeleteHosts(ctx context.Context, in *postgresql.DeleteClusterHostsRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).DeleteHosts(ctx, in, opts...)
}
// Get implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Get(ctx context.Context, in *postgresql.GetClusterRequest, opts ...grpc.CallOption) (*postgresql.Cluster, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Get(ctx, in, opts...)
}
// List implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) List(ctx context.Context, in *postgresql.ListClustersRequest, opts ...grpc.CallOption) (*postgresql.ListClustersResponse, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).List(ctx, in, opts...)
}
type ClusterIterator struct {
ctx context.Context
opts []grpc.CallOption
err error
started bool
client *ClusterServiceClient
request *postgresql.ListClustersRequest
items []*postgresql.Cluster
}
func (c *ClusterServiceClient) ClusterIterator(ctx context.Context, folderId string, opts ...grpc.CallOption) *ClusterIterator {
return &ClusterIterator{
ctx: ctx,
opts: opts,
client: c,
request: &postgresql.ListClustersRequest{
FolderId: folderId,
PageSize: 1000,
},
}
}
func (it *ClusterIterator) Next() bool {
if it.err != nil {
return false
}
if len(it.items) > 1 {
it.items[0] = nil
it.items = it.items[1:]
return true
}
it.items = nil // consume last item, if any
if it.started && it.request.PageToken == "" {
return false
}
it.started = true
response, err := it.client.List(it.ctx, it.request, it.opts...)
it.err = err
if err != nil {
return false
}
it.items = response.Clusters
it.request.PageToken = response.NextPageToken
return len(it.items) > 0
}
func (it *ClusterIterator) Value() *postgresql.Cluster {
if len(it.items) == 0 {
panic("calling Value on empty iterator")
}
return it.items[0]
}
func (it *ClusterIterator) Error() error {
return it.err
}
// ListBackups implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) ListBackups(ctx context.Context, in *postgresql.ListClusterBackupsRequest, opts ...grpc.CallOption) (*postgresql.ListClusterBackupsResponse, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).ListBackups(ctx, in, opts...)
}
type ClusterBackupsIterator struct {
ctx context.Context
opts []grpc.CallOption
err error
started bool
client *ClusterServiceClient
request *postgresql.ListClusterBackupsRequest
items []*postgresql.Backup
}
func (c *ClusterServiceClient) ClusterBackupsIterator(ctx context.Context, clusterId string, opts ...grpc.CallOption) *ClusterBackupsIterator {
return &ClusterBackupsIterator{
ctx: ctx,
opts: opts,
client: c,
request: &postgresql.ListClusterBackupsRequest{
ClusterId: clusterId,
PageSize: 1000,
},
}
}
func (it *ClusterBackupsIterator) Next() bool {
if it.err != nil {
return false
}
if len(it.items) > 1 {
it.items[0] = nil
it.items = it.items[1:]
return true
}
it.items = nil // consume last item, if any
if it.started && it.request.PageToken == "" {
return false
}
it.started = true
response, err := it.client.ListBackups(it.ctx, it.request, it.opts...)
it.err = err
if err != nil {
return false
}
it.items = response.Backups
it.request.PageToken = response.NextPageToken
return len(it.items) > 0
}
func (it *ClusterBackupsIterator) Value() *postgresql.Backup {
if len(it.items) == 0 {
panic("calling Value on empty iterator")
}
return it.items[0]
}
func (it *ClusterBackupsIterator) Error() error {
return it.err
}
// ListHosts implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) ListHosts(ctx context.Context, in *postgresql.ListClusterHostsRequest, opts ...grpc.CallOption) (*postgresql.ListClusterHostsResponse, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).ListHosts(ctx, in, opts...)
}
type ClusterHostsIterator struct {
ctx context.Context
opts []grpc.CallOption
err error
started bool
client *ClusterServiceClient
request *postgresql.ListClusterHostsRequest
items []*postgresql.Host
}
func (c *ClusterServiceClient) ClusterHostsIterator(ctx context.Context, clusterId string, opts ...grpc.CallOption) *ClusterHostsIterator {
return &ClusterHostsIterator{
ctx: ctx,
opts: opts,
client: c,
request: &postgresql.ListClusterHostsRequest{
ClusterId: clusterId,
PageSize: 1000,
},
}
}
func (it *ClusterHostsIterator) Next() bool {
if it.err != nil {
return false
}
if len(it.items) > 1 {
it.items[0] = nil
it.items = it.items[1:]
return true
}
it.items = nil // consume last item, if any
if it.started && it.request.PageToken == "" {
return false
}
it.started = true
response, err := it.client.ListHosts(it.ctx, it.request, it.opts...)
it.err = err
if err != nil {
return false
}
it.items = response.Hosts
it.request.PageToken = response.NextPageToken
return len(it.items) > 0
}
func (it *ClusterHostsIterator) Value() *postgresql.Host {
if len(it.items) == 0 {
panic("calling Value on empty iterator")
}
return it.items[0]
}
func (it *ClusterHostsIterator) Error() error {
return it.err
}
// ListLogs implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) ListLogs(ctx context.Context, in *postgresql.ListClusterLogsRequest, opts ...grpc.CallOption) (*postgresql.ListClusterLogsResponse, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).ListLogs(ctx, in, opts...)
}
type ClusterLogsIterator struct {
ctx context.Context
opts []grpc.CallOption
err error
started bool
client *ClusterServiceClient
request *postgresql.ListClusterLogsRequest
items []*postgresql.LogRecord
}
func (c *ClusterServiceClient) ClusterLogsIterator(ctx context.Context, clusterId string, opts ...grpc.CallOption) *ClusterLogsIterator {
return &ClusterLogsIterator{
ctx: ctx,
opts: opts,
client: c,
request: &postgresql.ListClusterLogsRequest{
ClusterId: clusterId,
PageSize: 1000,
},
}
}
func (it *ClusterLogsIterator) Next() bool {
if it.err != nil {
return false
}
if len(it.items) > 1 {
it.items[0] = nil
it.items = it.items[1:]
return true
}
it.items = nil // consume last item, if any
if it.started && it.request.PageToken == "" {
return false
}
it.started = true
response, err := it.client.ListLogs(it.ctx, it.request, it.opts...)
it.err = err
if err != nil {
return false
}
it.items = response.Logs
it.request.PageToken = response.NextPageToken
return len(it.items) > 0
}
func (it *ClusterLogsIterator) Value() *postgresql.LogRecord {
if len(it.items) == 0 {
panic("calling Value on empty iterator")
}
return it.items[0]
}
func (it *ClusterLogsIterator) Error() error {
return it.err
}
// ListOperations implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) ListOperations(ctx context.Context, in *postgresql.ListClusterOperationsRequest, opts ...grpc.CallOption) (*postgresql.ListClusterOperationsResponse, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).ListOperations(ctx, in, opts...)
}
type ClusterOperationsIterator struct {
ctx context.Context
opts []grpc.CallOption
err error
started bool
client *ClusterServiceClient
request *postgresql.ListClusterOperationsRequest
items []*operation.Operation
}
func (c *ClusterServiceClient) ClusterOperationsIterator(ctx context.Context, clusterId string, opts ...grpc.CallOption) *ClusterOperationsIterator {
return &ClusterOperationsIterator{
ctx: ctx,
opts: opts,
client: c,
request: &postgresql.ListClusterOperationsRequest{
ClusterId: clusterId,
PageSize: 1000,
},
}
}
func (it *ClusterOperationsIterator) Next() bool {
if it.err != nil {
return false
}
if len(it.items) > 1 {
it.items[0] = nil
it.items = it.items[1:]
return true
}
it.items = nil // consume last item, if any
if it.started && it.request.PageToken == "" {
return false
}
it.started = true
response, err := it.client.ListOperations(it.ctx, it.request, it.opts...)
it.err = err
if err != nil {
return false
}
it.items = response.Operations
it.request.PageToken = response.NextPageToken
return len(it.items) > 0
}
func (it *ClusterOperationsIterator) Value() *operation.Operation {
if len(it.items) == 0 {
panic("calling Value on empty iterator")
}
return it.items[0]
}
func (it *ClusterOperationsIterator) Error() error {
return it.err
}
// Move implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Move(ctx context.Context, in *postgresql.MoveClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Move(ctx, in, opts...)
}
// Restore implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Restore(ctx context.Context, in *postgresql.RestoreClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Restore(ctx, in, opts...)
}
// Start implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Start(ctx context.Context, in *postgresql.StartClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Start(ctx, in, opts...)
}
// StartFailover implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) StartFailover(ctx context.Context, in *postgresql.StartClusterFailoverRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).StartFailover(ctx, in, opts...)
}
// Stop implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Stop(ctx context.Context, in *postgresql.StopClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Stop(ctx, in, opts...)
}
// StreamLogs implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) StreamLogs(ctx context.Context, in *postgresql.StreamClusterLogsRequest, opts ...grpc.CallOption) (postgresql.ClusterService_StreamLogsClient, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).StreamLogs(ctx, in, opts...)
}
// Update implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) Update(ctx context.Context, in *postgresql.UpdateClusterRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).Update(ctx, in, opts...)
}
// UpdateHosts implements postgresql.ClusterServiceClient
func (c *ClusterServiceClient) UpdateHosts(ctx context.Context, in *postgresql.UpdateClusterHostsRequest, opts ...grpc.CallOption) (*operation.Operation, error) {
conn, err := c.getConn(ctx)
if err != nil {
return nil, err
}
return postgresql.NewClusterServiceClient(conn).UpdateHosts(ctx, in, opts...)
}