batch_exporters

package
v1.31.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 16, 2021 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BatchExportersService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "streammachine.api.batch_exporters.v1.BatchExportersService",
	HandlerType: (*BatchExportersServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ListBatchExporters",
			Handler:    _BatchExportersService_ListBatchExporters_Handler,
		},
		{
			MethodName: "GetBatchExporter",
			Handler:    _BatchExportersService_GetBatchExporter_Handler,
		},
		{
			MethodName: "DeleteBatchExporter",
			Handler:    _BatchExportersService_DeleteBatchExporter_Handler,
		},
		{
			MethodName: "CreateBatchExporter",
			Handler:    _BatchExportersService_CreateBatchExporter_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "streammachine/api/batch_exporters/v1/batch_exporters_v1.proto",
}

BatchExportersService_ServiceDesc is the grpc.ServiceDesc for BatchExportersService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_streammachine_api_batch_exporters_v1_batch_exporters_v1_proto protoreflect.FileDescriptor

Functions

func RegisterBatchExportersServiceServer

func RegisterBatchExportersServiceServer(s grpc.ServiceRegistrar, srv BatchExportersServiceServer)

Types

type BatchExportersServiceClient

type BatchExportersServiceClient interface {
	ListBatchExporters(ctx context.Context, in *ListBatchExportersRequest, opts ...grpc.CallOption) (*ListBatchExportersResponse, error)
	GetBatchExporter(ctx context.Context, in *GetBatchExporterRequest, opts ...grpc.CallOption) (*GetBatchExporterResponse, error)
	DeleteBatchExporter(ctx context.Context, in *DeleteBatchExporterRequest, opts ...grpc.CallOption) (*DeleteBatchExporterResponse, error)
	CreateBatchExporter(ctx context.Context, in *CreateBatchExporterRequest, opts ...grpc.CallOption) (*CreateBatchExporterResponse, error)
}

BatchExportersServiceClient is the client API for BatchExportersService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type BatchExportersServiceServer

type BatchExportersServiceServer interface {
	ListBatchExporters(context.Context, *ListBatchExportersRequest) (*ListBatchExportersResponse, error)
	GetBatchExporter(context.Context, *GetBatchExporterRequest) (*GetBatchExporterResponse, error)
	DeleteBatchExporter(context.Context, *DeleteBatchExporterRequest) (*DeleteBatchExporterResponse, error)
	CreateBatchExporter(context.Context, *CreateBatchExporterRequest) (*CreateBatchExporterResponse, error)
	// contains filtered or unexported methods
}

BatchExportersServiceServer is the server API for BatchExportersService service. All implementations must embed UnimplementedBatchExportersServiceServer for forward compatibility

type CreateBatchExporterRequest

type CreateBatchExporterRequest struct {
	BatchExporter *v1.BatchExporter `protobuf:"bytes,1,opt,name=batch_exporter,json=batchExporter,proto3" json:"batch_exporter,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBatchExporterRequest) Descriptor deprecated

func (*CreateBatchExporterRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateBatchExporterRequest.ProtoReflect.Descriptor instead.

func (*CreateBatchExporterRequest) GetBatchExporter

func (x *CreateBatchExporterRequest) GetBatchExporter() *v1.BatchExporter

func (*CreateBatchExporterRequest) ProtoMessage

func (*CreateBatchExporterRequest) ProtoMessage()

func (*CreateBatchExporterRequest) ProtoReflect

func (*CreateBatchExporterRequest) Reset

func (x *CreateBatchExporterRequest) Reset()

func (*CreateBatchExporterRequest) String

func (x *CreateBatchExporterRequest) String() string

type CreateBatchExporterResponse

type CreateBatchExporterResponse struct {
	BatchExporter *v1.BatchExporter `protobuf:"bytes,1,opt,name=batch_exporter,json=batchExporter,proto3" json:"batch_exporter,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBatchExporterResponse) Descriptor deprecated

func (*CreateBatchExporterResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateBatchExporterResponse.ProtoReflect.Descriptor instead.

func (*CreateBatchExporterResponse) GetBatchExporter

func (x *CreateBatchExporterResponse) GetBatchExporter() *v1.BatchExporter

func (*CreateBatchExporterResponse) ProtoMessage

func (*CreateBatchExporterResponse) ProtoMessage()

func (*CreateBatchExporterResponse) ProtoReflect

func (*CreateBatchExporterResponse) Reset

func (x *CreateBatchExporterResponse) Reset()

func (*CreateBatchExporterResponse) String

func (x *CreateBatchExporterResponse) String() string

type DeleteBatchExporterRequest

type DeleteBatchExporterRequest struct {
	Ref *v1.BatchExporterRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteBatchExporterRequest) Descriptor deprecated

func (*DeleteBatchExporterRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteBatchExporterRequest.ProtoReflect.Descriptor instead.

func (*DeleteBatchExporterRequest) GetRef

func (*DeleteBatchExporterRequest) ProtoMessage

func (*DeleteBatchExporterRequest) ProtoMessage()

func (*DeleteBatchExporterRequest) ProtoReflect

func (*DeleteBatchExporterRequest) Reset

func (x *DeleteBatchExporterRequest) Reset()

func (*DeleteBatchExporterRequest) String

func (x *DeleteBatchExporterRequest) String() string

type DeleteBatchExporterResponse

type DeleteBatchExporterResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteBatchExporterResponse) Descriptor deprecated

func (*DeleteBatchExporterResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteBatchExporterResponse.ProtoReflect.Descriptor instead.

func (*DeleteBatchExporterResponse) ProtoMessage

func (*DeleteBatchExporterResponse) ProtoMessage()

func (*DeleteBatchExporterResponse) ProtoReflect

func (*DeleteBatchExporterResponse) Reset

func (x *DeleteBatchExporterResponse) Reset()

func (*DeleteBatchExporterResponse) String

func (x *DeleteBatchExporterResponse) String() string

type GetBatchExporterRequest

type GetBatchExporterRequest struct {
	Ref *v1.BatchExporterRef `protobuf:"bytes,1,opt,name=ref,proto3" json:"ref,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchExporterRequest) Descriptor deprecated

func (*GetBatchExporterRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetBatchExporterRequest.ProtoReflect.Descriptor instead.

func (*GetBatchExporterRequest) GetRef

func (*GetBatchExporterRequest) ProtoMessage

func (*GetBatchExporterRequest) ProtoMessage()

func (*GetBatchExporterRequest) ProtoReflect

func (x *GetBatchExporterRequest) ProtoReflect() protoreflect.Message

func (*GetBatchExporterRequest) Reset

func (x *GetBatchExporterRequest) Reset()

func (*GetBatchExporterRequest) String

func (x *GetBatchExporterRequest) String() string

type GetBatchExporterResponse

type GetBatchExporterResponse struct {
	BatchExporter *v1.BatchExporter `protobuf:"bytes,1,opt,name=batch_exporter,json=batchExporter,proto3" json:"batch_exporter,omitempty"`
	// contains filtered or unexported fields
}

func (*GetBatchExporterResponse) Descriptor deprecated

func (*GetBatchExporterResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetBatchExporterResponse.ProtoReflect.Descriptor instead.

func (*GetBatchExporterResponse) GetBatchExporter

func (x *GetBatchExporterResponse) GetBatchExporter() *v1.BatchExporter

func (*GetBatchExporterResponse) ProtoMessage

func (*GetBatchExporterResponse) ProtoMessage()

func (*GetBatchExporterResponse) ProtoReflect

func (x *GetBatchExporterResponse) ProtoReflect() protoreflect.Message

func (*GetBatchExporterResponse) Reset

func (x *GetBatchExporterResponse) Reset()

func (*GetBatchExporterResponse) String

func (x *GetBatchExporterResponse) String() string

type ListBatchExportersRequest

type ListBatchExportersRequest struct {
	BillingId string `protobuf:"bytes,1,opt,name=billing_id,json=billingId,proto3" json:"billing_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ListBatchExportersRequest) Descriptor deprecated

func (*ListBatchExportersRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListBatchExportersRequest.ProtoReflect.Descriptor instead.

func (*ListBatchExportersRequest) GetBillingId

func (x *ListBatchExportersRequest) GetBillingId() string

func (*ListBatchExportersRequest) ProtoMessage

func (*ListBatchExportersRequest) ProtoMessage()

func (*ListBatchExportersRequest) ProtoReflect

func (*ListBatchExportersRequest) Reset

func (x *ListBatchExportersRequest) Reset()

func (*ListBatchExportersRequest) String

func (x *ListBatchExportersRequest) String() string

type ListBatchExportersResponse

type ListBatchExportersResponse struct {
	BatchExporters []*v1.BatchExporter `protobuf:"bytes,1,rep,name=batch_exporters,json=batchExporters,proto3" json:"batch_exporters,omitempty"`
	// contains filtered or unexported fields
}

func (*ListBatchExportersResponse) Descriptor deprecated

func (*ListBatchExportersResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListBatchExportersResponse.ProtoReflect.Descriptor instead.

func (*ListBatchExportersResponse) GetBatchExporters

func (x *ListBatchExportersResponse) GetBatchExporters() []*v1.BatchExporter

func (*ListBatchExportersResponse) ProtoMessage

func (*ListBatchExportersResponse) ProtoMessage()

func (*ListBatchExportersResponse) ProtoReflect

func (*ListBatchExportersResponse) Reset

func (x *ListBatchExportersResponse) Reset()

func (*ListBatchExportersResponse) String

func (x *ListBatchExportersResponse) String() string

type UnimplementedBatchExportersServiceServer

type UnimplementedBatchExportersServiceServer struct {
}

UnimplementedBatchExportersServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedBatchExportersServiceServer) CreateBatchExporter

func (UnimplementedBatchExportersServiceServer) DeleteBatchExporter

func (UnimplementedBatchExportersServiceServer) GetBatchExporter

func (UnimplementedBatchExportersServiceServer) ListBatchExporters

type UnsafeBatchExportersServiceServer

type UnsafeBatchExportersServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeBatchExportersServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to BatchExportersServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL