101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
// Code generated by sdkgen. DO NOT EDIT.
|
|
|
|
//nolint
|
|
package endpoint
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
endpoint "github.com/yandex-cloud/go-genproto/yandex/cloud/endpoint"
|
|
)
|
|
|
|
//revive:disable
|
|
|
|
// ApiEndpointServiceClient is a endpoint.ApiEndpointServiceClient with
|
|
// lazy GRPC connection initialization.
|
|
type ApiEndpointServiceClient struct {
|
|
getConn func(ctx context.Context) (*grpc.ClientConn, error)
|
|
}
|
|
|
|
// Get implements endpoint.ApiEndpointServiceClient
|
|
func (c *ApiEndpointServiceClient) Get(ctx context.Context, in *endpoint.GetApiEndpointRequest, opts ...grpc.CallOption) (*endpoint.ApiEndpoint, error) {
|
|
conn, err := c.getConn(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return endpoint.NewApiEndpointServiceClient(conn).Get(ctx, in, opts...)
|
|
}
|
|
|
|
// List implements endpoint.ApiEndpointServiceClient
|
|
func (c *ApiEndpointServiceClient) List(ctx context.Context, in *endpoint.ListApiEndpointsRequest, opts ...grpc.CallOption) (*endpoint.ListApiEndpointsResponse, error) {
|
|
conn, err := c.getConn(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return endpoint.NewApiEndpointServiceClient(conn).List(ctx, in, opts...)
|
|
}
|
|
|
|
type ApiEndpointIterator struct {
|
|
ctx context.Context
|
|
opts []grpc.CallOption
|
|
|
|
err error
|
|
started bool
|
|
|
|
client *ApiEndpointServiceClient
|
|
request *endpoint.ListApiEndpointsRequest
|
|
|
|
items []*endpoint.ApiEndpoint
|
|
}
|
|
|
|
func (c *ApiEndpointServiceClient) ApiEndpointIterator(ctx context.Context, opts ...grpc.CallOption) *ApiEndpointIterator {
|
|
return &ApiEndpointIterator{
|
|
ctx: ctx,
|
|
opts: opts,
|
|
client: c,
|
|
request: &endpoint.ListApiEndpointsRequest{
|
|
PageSize: 1000,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (it *ApiEndpointIterator) 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.Endpoints
|
|
it.request.PageToken = response.NextPageToken
|
|
return len(it.items) > 0
|
|
}
|
|
|
|
func (it *ApiEndpointIterator) Value() *endpoint.ApiEndpoint {
|
|
if len(it.items) == 0 {
|
|
panic("calling Value on empty iterator")
|
|
}
|
|
return it.items[0]
|
|
}
|
|
|
|
func (it *ApiEndpointIterator) Error() error {
|
|
return it.err
|
|
}
|