Documentation ¶
Index ¶
- Variables
- func RegisterBatchExportersServiceServer(s grpc.ServiceRegistrar, srv BatchExportersServiceServer)
- type BatchExportersServiceClient
- type BatchExportersServiceServer
- type CreateBatchExporterRequest
- func (*CreateBatchExporterRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateBatchExporterRequest) GetBatchExporter() *v1.BatchExporter
- func (*CreateBatchExporterRequest) ProtoMessage()
- func (x *CreateBatchExporterRequest) ProtoReflect() protoreflect.Message
- func (x *CreateBatchExporterRequest) Reset()
- func (x *CreateBatchExporterRequest) String() string
- type CreateBatchExporterResponse
- func (*CreateBatchExporterResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CreateBatchExporterResponse) GetBatchExporter() *v1.BatchExporter
- func (*CreateBatchExporterResponse) ProtoMessage()
- func (x *CreateBatchExporterResponse) ProtoReflect() protoreflect.Message
- func (x *CreateBatchExporterResponse) Reset()
- func (x *CreateBatchExporterResponse) String() string
- type DeleteBatchExporterRequest
- func (*DeleteBatchExporterRequest) Descriptor() ([]byte, []int)deprecated
- func (x *DeleteBatchExporterRequest) GetRef() *v1.BatchExporterRef
- func (*DeleteBatchExporterRequest) ProtoMessage()
- func (x *DeleteBatchExporterRequest) ProtoReflect() protoreflect.Message
- func (x *DeleteBatchExporterRequest) Reset()
- func (x *DeleteBatchExporterRequest) String() string
- type DeleteBatchExporterResponse
- type GetBatchExporterRequest
- func (*GetBatchExporterRequest) Descriptor() ([]byte, []int)deprecated
- func (x *GetBatchExporterRequest) GetRef() *v1.BatchExporterRef
- func (*GetBatchExporterRequest) ProtoMessage()
- func (x *GetBatchExporterRequest) ProtoReflect() protoreflect.Message
- func (x *GetBatchExporterRequest) Reset()
- func (x *GetBatchExporterRequest) String() string
- type GetBatchExporterResponse
- func (*GetBatchExporterResponse) Descriptor() ([]byte, []int)deprecated
- func (x *GetBatchExporterResponse) GetBatchExporter() *v1.BatchExporter
- func (*GetBatchExporterResponse) ProtoMessage()
- func (x *GetBatchExporterResponse) ProtoReflect() protoreflect.Message
- func (x *GetBatchExporterResponse) Reset()
- func (x *GetBatchExporterResponse) String() string
- type ListBatchExportersRequest
- func (*ListBatchExportersRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ListBatchExportersRequest) GetBillingId() stringdeprecated
- func (x *ListBatchExportersRequest) GetProjectId() string
- func (*ListBatchExportersRequest) ProtoMessage()
- func (x *ListBatchExportersRequest) ProtoReflect() protoreflect.Message
- func (x *ListBatchExportersRequest) Reset()
- func (x *ListBatchExportersRequest) String() string
- type ListBatchExportersResponse
- func (*ListBatchExportersResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ListBatchExportersResponse) GetBatchExporters() []*v1.BatchExporter
- func (*ListBatchExportersResponse) ProtoMessage()
- func (x *ListBatchExportersResponse) ProtoReflect() protoreflect.Message
- func (x *ListBatchExportersResponse) Reset()
- func (x *ListBatchExportersResponse) String() string
- type UnimplementedBatchExportersServiceServer
- func (UnimplementedBatchExportersServiceServer) CreateBatchExporter(context.Context, *CreateBatchExporterRequest) (*CreateBatchExporterResponse, error)
- func (UnimplementedBatchExportersServiceServer) DeleteBatchExporter(context.Context, *DeleteBatchExporterRequest) (*DeleteBatchExporterResponse, error)
- func (UnimplementedBatchExportersServiceServer) GetBatchExporter(context.Context, *GetBatchExporterRequest) (*GetBatchExporterResponse, error)
- func (UnimplementedBatchExportersServiceServer) ListBatchExporters(context.Context, *ListBatchExportersRequest) (*ListBatchExportersResponse, error)
- type UnsafeBatchExportersServiceServer
Constants ¶
This section is empty.
Variables ¶
var BatchExportersService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "strmprivacy.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: "strmprivacy/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)
var File_strmprivacy_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.
func NewBatchExportersServiceClient ¶
func NewBatchExportersServiceClient(cc grpc.ClientConnInterface) BatchExportersServiceClient
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) }
BatchExportersServiceServer is the server API for BatchExportersService service. All implementations should 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 (x *CreateBatchExporterRequest) ProtoReflect() protoreflect.Message
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 (x *CreateBatchExporterResponse) ProtoReflect() protoreflect.Message
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 (x *DeleteBatchExporterRequest) GetRef() *v1.BatchExporterRef
func (*DeleteBatchExporterRequest) ProtoMessage ¶
func (*DeleteBatchExporterRequest) ProtoMessage()
func (*DeleteBatchExporterRequest) ProtoReflect ¶
func (x *DeleteBatchExporterRequest) ProtoReflect() protoreflect.Message
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 (x *DeleteBatchExporterResponse) ProtoReflect() protoreflect.Message
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 (x *GetBatchExporterRequest) GetRef() *v1.BatchExporterRef
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 { // Deprecated: Do not use. BillingId string `protobuf:"bytes,1,opt,name=billing_id,json=billingId,proto3" json:"billing_id,omitempty"` ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_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
deprecated
func (x *ListBatchExportersRequest) GetBillingId() string
Deprecated: Do not use.
func (*ListBatchExportersRequest) GetProjectId ¶ added in v2.38.0
func (x *ListBatchExportersRequest) GetProjectId() string
func (*ListBatchExportersRequest) ProtoMessage ¶
func (*ListBatchExportersRequest) ProtoMessage()
func (*ListBatchExportersRequest) ProtoReflect ¶
func (x *ListBatchExportersRequest) ProtoReflect() protoreflect.Message
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 (x *ListBatchExportersResponse) ProtoReflect() protoreflect.Message
func (*ListBatchExportersResponse) Reset ¶
func (x *ListBatchExportersResponse) Reset()
func (*ListBatchExportersResponse) String ¶
func (x *ListBatchExportersResponse) String() string
type UnimplementedBatchExportersServiceServer ¶
type UnimplementedBatchExportersServiceServer struct { }
UnimplementedBatchExportersServiceServer should be embedded to have forward compatible implementations.
func (UnimplementedBatchExportersServiceServer) CreateBatchExporter ¶
func (UnimplementedBatchExportersServiceServer) CreateBatchExporter(context.Context, *CreateBatchExporterRequest) (*CreateBatchExporterResponse, error)
func (UnimplementedBatchExportersServiceServer) DeleteBatchExporter ¶
func (UnimplementedBatchExportersServiceServer) DeleteBatchExporter(context.Context, *DeleteBatchExporterRequest) (*DeleteBatchExporterResponse, error)
func (UnimplementedBatchExportersServiceServer) GetBatchExporter ¶
func (UnimplementedBatchExportersServiceServer) GetBatchExporter(context.Context, *GetBatchExporterRequest) (*GetBatchExporterResponse, error)
func (UnimplementedBatchExportersServiceServer) ListBatchExporters ¶
func (UnimplementedBatchExportersServiceServer) ListBatchExporters(context.Context, *ListBatchExportersRequest) (*ListBatchExportersResponse, error)
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.