pricing

package
v0.71.25 Latest Latest
Warning

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

Go to latest
Published: Jul 3, 2024 License: Apache-2.0 Imports: 19 Imported by: 0

Documentation

Overview

Package pricing is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	Pricing_GetInfo_FullMethodName    = "/blueapi.pricing.v1.Pricing/GetInfo"
	Pricing_GetPricing_FullMethodName = "/blueapi.pricing.v1.Pricing/GetPricing"
)

Variables

View Source
var File_pricing_v1_pricing_proto protoreflect.FileDescriptor
View Source
var Pricing_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "blueapi.pricing.v1.Pricing",
	HandlerType: (*PricingServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetInfo",
			Handler:    _Pricing_GetInfo_Handler,
		},
		{
			MethodName: "GetPricing",
			Handler:    _Pricing_GetPricing_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "pricing/v1/pricing.proto",
}

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

Functions

func RegisterPricingHandler

func RegisterPricingHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterPricingHandler registers the http handlers for service Pricing to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterPricingHandlerClient

func RegisterPricingHandlerClient(ctx context.Context, mux *runtime.ServeMux, client PricingClient) error

RegisterPricingHandlerClient registers the http handlers for service Pricing to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "PricingClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "PricingClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "PricingClient" to call the correct interceptors.

func RegisterPricingHandlerFromEndpoint

func RegisterPricingHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterPricingHandlerFromEndpoint is same as RegisterPricingHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterPricingHandlerServer

func RegisterPricingHandlerServer(ctx context.Context, mux *runtime.ServeMux, server PricingServer) error

RegisterPricingHandlerServer registers the http handlers for service Pricing to "mux". UnaryRPC :call PricingServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterPricingHandlerFromEndpoint instead.

func RegisterPricingServer

func RegisterPricingServer(s grpc.ServiceRegistrar, srv PricingServer)

Types

type ClientOptions added in v0.71.1

type ClientOptions struct {
	Conn *conn.GrpcClientConn
}

ClientOptions represents the optional options to NewClient.

type GetInfoRequest

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

Request message for the Pricing.GetInfo rpc.

func (*GetInfoRequest) Descriptor deprecated

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

Deprecated: Use GetInfoRequest.ProtoReflect.Descriptor instead.

func (*GetInfoRequest) ProtoMessage

func (*GetInfoRequest) ProtoMessage()

func (*GetInfoRequest) ProtoReflect

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

func (*GetInfoRequest) Reset

func (x *GetInfoRequest) Reset()

func (*GetInfoRequest) String

func (x *GetInfoRequest) String() string

type GetInfoResponse

type GetInfoResponse struct {
	Response string `protobuf:"bytes,1,opt,name=response,proto3" json:"response,omitempty"`
	// contains filtered or unexported fields
}

Response message for the Pricing.GetInfo rpc.

func (*GetInfoResponse) Descriptor deprecated

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

Deprecated: Use GetInfoResponse.ProtoReflect.Descriptor instead.

func (*GetInfoResponse) GetResponse

func (x *GetInfoResponse) GetResponse() string

func (*GetInfoResponse) ProtoMessage

func (*GetInfoResponse) ProtoMessage()

func (*GetInfoResponse) ProtoReflect

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

func (*GetInfoResponse) Reset

func (x *GetInfoResponse) Reset()

func (*GetInfoResponse) String

func (x *GetInfoResponse) String() string

type GetPricingRequest added in v0.71.20

type GetPricingRequest struct {

	// Required. Cloud vendor, only `aws` and `azure` are supported for now.
	Vendor string `protobuf:"bytes,1,opt,name=vendor,proto3" json:"vendor,omitempty"`
	// Required. Cloud vendor service.
	// Valid values are `ec2`, `lambda`, `s3`, `ebs`, `dataTransfer`, `rds`, `dynamoDb`, and `cloudWatch` for AWS.
	// Valid values are `vm`, `functions`, `blobStorage`, `storageAccount`, `dataTransfer`, `sqlDb`,`cosmosDb`, and `monitor` for Azure.
	Service string `protobuf:"bytes,2,opt,name=service,proto3" json:"service,omitempty"`
	// Required. Region.
	Region string `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
	// Required. Token for continuing request.
	Token string `protobuf:"bytes,4,opt,name=token,proto3" json:"token,omitempty"`
	// Optional. This string represent valid columns which will serve as basis as to what columns will be returned by the API.
	// All columns will be returned if this array is empty.
	// This is not yet implemented.
	Columns []string `protobuf:"bytes,5,rep,name=columns,proto3" json:"columns,omitempty"`
	// contains filtered or unexported fields
}

Request message for GetPricing

func (*GetPricingRequest) Descriptor deprecated added in v0.71.20

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

Deprecated: Use GetPricingRequest.ProtoReflect.Descriptor instead.

func (*GetPricingRequest) GetColumns added in v0.71.20

func (x *GetPricingRequest) GetColumns() []string

func (*GetPricingRequest) GetRegion added in v0.71.20

func (x *GetPricingRequest) GetRegion() string

func (*GetPricingRequest) GetService added in v0.71.20

func (x *GetPricingRequest) GetService() string

func (*GetPricingRequest) GetToken added in v0.71.20

func (x *GetPricingRequest) GetToken() string

func (*GetPricingRequest) GetVendor added in v0.71.22

func (x *GetPricingRequest) GetVendor() string

func (*GetPricingRequest) ProtoMessage added in v0.71.20

func (*GetPricingRequest) ProtoMessage()

func (*GetPricingRequest) ProtoReflect added in v0.71.20

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

func (*GetPricingRequest) Reset added in v0.71.20

func (x *GetPricingRequest) Reset()

func (*GetPricingRequest) String added in v0.71.20

func (x *GetPricingRequest) String() string

type GetPricingResponse added in v0.71.20

type GetPricingResponse struct {
	Token       string                 `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	PricingData []*pricing.PricingData `protobuf:"bytes,2,rep,name=pricingData,proto3" json:"pricingData,omitempty"`
	// contains filtered or unexported fields
}

Response message for GetPricing

func (*GetPricingResponse) Descriptor deprecated added in v0.71.20

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

Deprecated: Use GetPricingResponse.ProtoReflect.Descriptor instead.

func (*GetPricingResponse) GetPricingData added in v0.71.22

func (x *GetPricingResponse) GetPricingData() []*pricing.PricingData

func (*GetPricingResponse) GetToken added in v0.71.20

func (x *GetPricingResponse) GetToken() string

func (*GetPricingResponse) ProtoMessage added in v0.71.20

func (*GetPricingResponse) ProtoMessage()

func (*GetPricingResponse) ProtoReflect added in v0.71.20

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

func (*GetPricingResponse) Reset added in v0.71.20

func (x *GetPricingResponse) Reset()

func (*GetPricingResponse) String added in v0.71.20

func (x *GetPricingResponse) String() string

type GrpcClient added in v0.71.1

type GrpcClient struct {
	PricingClient
	// contains filtered or unexported fields
}

func NewClient added in v0.71.1

func NewClient(ctx context.Context, opts ...*ClientOptions) (*GrpcClient, error)

NewClient returns a client connection to the 'pricing' service.

func (*GrpcClient) Close added in v0.71.1

func (c *GrpcClient) Close()

type PricingClient

type PricingClient interface {
	// Test endpoint only.
	GetInfo(ctx context.Context, in *GetInfoRequest, opts ...grpc.CallOption) (*GetInfoResponse, error)
	// WORK-IN-PROGRESS: Get cloud pricing information
	GetPricing(ctx context.Context, in *GetPricingRequest, opts ...grpc.CallOption) (*GetPricingResponse, error)
}

PricingClient is the client API for Pricing 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.

Pricing service definition.

func NewPricingClient

func NewPricingClient(cc grpc.ClientConnInterface) PricingClient

type PricingServer

type PricingServer interface {
	// Test endpoint only.
	GetInfo(context.Context, *GetInfoRequest) (*GetInfoResponse, error)
	// WORK-IN-PROGRESS: Get cloud pricing information
	GetPricing(context.Context, *GetPricingRequest) (*GetPricingResponse, error)
	// contains filtered or unexported methods
}

PricingServer is the server API for Pricing service. All implementations must embed UnimplementedPricingServer for forward compatibility

Pricing service definition.

type UnimplementedPricingServer

type UnimplementedPricingServer struct {
}

UnimplementedPricingServer must be embedded to have forward compatible implementations.

func (UnimplementedPricingServer) GetInfo

func (UnimplementedPricingServer) GetPricing added in v0.71.20

type UnsafePricingServer

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

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

Jump to

Keyboard shortcuts

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