admin

package
v0.48.2 Latest Latest
Warning

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

Go to latest
Published: Oct 22, 2021 License: Apache-2.0 Imports: 21 Imported by: 1

Documentation

Overview

Package admin is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var Admin_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "blueapi.admin.v1.Admin",
	HandlerType: (*AdminServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetAccountGroup",
			Handler:    _Admin_GetAccountGroup_Handler,
		},
		{
			MethodName: "CreateResellerAccount",
			Handler:    _Admin_CreateResellerAccount_Handler,
		},
		{
			MethodName: "GetResellerAccount",
			Handler:    _Admin_GetResellerAccount_Handler,
		},
		{
			MethodName: "DeleteResellerAccount",
			Handler:    _Admin_DeleteResellerAccount_Handler,
		},
		{
			MethodName: "GetFeatureFlags",
			Handler:    _Admin_GetFeatureFlags_Handler,
		},
		{
			MethodName: "UpdateFeatureFlags",
			Handler:    _Admin_UpdateFeatureFlags_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "ListAccountGroups",
			Handler:       _Admin_ListAccountGroups_Handler,
			ServerStreams: true,
		},
		{
			StreamName:    "ListResellerAccounts",
			Handler:       _Admin_ListResellerAccounts_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "admin/v1/admin.proto",
}

Admin_ServiceDesc is the grpc.ServiceDesc for Admin 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_admin_v1_admin_proto protoreflect.FileDescriptor

Functions

func RegisterAdminHandler

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

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

func RegisterAdminHandlerClient

func RegisterAdminHandlerClient(ctx context.Context, mux *runtime.ServeMux, client AdminClient) error

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

func RegisterAdminHandlerFromEndpoint

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

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

func RegisterAdminHandlerServer

func RegisterAdminHandlerServer(ctx context.Context, mux *runtime.ServeMux, server AdminServer) error

RegisterAdminHandlerServer registers the http handlers for service Admin to "mux". UnaryRPC :call AdminServer 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 RegisterAdminHandlerFromEndpoint instead.

func RegisterAdminServer

func RegisterAdminServer(s grpc.ServiceRegistrar, srv AdminServer)

Types

type AdminClient

type AdminClient interface {
	// Lists all account groups.
	ListAccountGroups(ctx context.Context, in *ListAccountGroupsRequest, opts ...grpc.CallOption) (Admin_ListAccountGroupsClient, error)
	// Gets an account group.
	GetAccountGroup(ctx context.Context, in *GetAccountGroupRequest, opts ...grpc.CallOption) (*GetAccountGroupResponse, error)
	// WORK IN PROGRESS:
	// Create a new Wave root account (also referred to as a reseller)
	CreateResellerAccount(ctx context.Context, in *CreateResellerRequest, opts ...grpc.CallOption) (*ripple.Reseller, error)
	// WORK IN PROGRESS
	// Retrieve all the existing Wave root accounts (also referred to as resellers)
	// asscoiated with the organization
	ListResellerAccounts(ctx context.Context, in *ListResellersRequest, opts ...grpc.CallOption) (Admin_ListResellerAccountsClient, error)
	// WORK IN PROGRESS:
	// Retrieve an existing Wave root account (also referred to as a reseller)
	GetResellerAccount(ctx context.Context, in *GetResellerRequest, opts ...grpc.CallOption) (*ripple.Reseller, error)
	// WORK IN PROGRESS
	// Delete an existing Wave root account (also referred to as a reseller)
	DeleteResellerAccount(ctx context.Context, in *DeleteResellerRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	// WORK IN PROGRESS:
	// Retrieve the features available to a user on an Alphaus product. Currently,
	// only values of "wave" and "aqua" are supported for {product}. For a list of
	// valid feature flags, see our documentation at https://alphauslabs.github.io/blueapi/apis/admin.html.
	GetFeatureFlags(ctx context.Context, in *GetFeatureFlagsRequest, opts ...grpc.CallOption) (*api.FeatureFlags, error)
	// WORK IN PROGRESS:
	// Update the features available to a user on an Alphaus product. Currently,
	// only values of "wave" and "aqua" are supported for {product}. For a list of
	// valid feature flags, see our documentation at https://alphauslabs.github.io/blueapi/apis/admin.html.
	UpdateFeatureFlags(ctx context.Context, in *UpdateFeatureFlagsRequest, opts ...grpc.CallOption) (*api.FeatureFlags, error)
}

AdminClient is the client API for Admin 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 NewAdminClient

func NewAdminClient(cc grpc.ClientConnInterface) AdminClient

type AdminServer

type AdminServer interface {
	// Lists all account groups.
	ListAccountGroups(*ListAccountGroupsRequest, Admin_ListAccountGroupsServer) error
	// Gets an account group.
	GetAccountGroup(context.Context, *GetAccountGroupRequest) (*GetAccountGroupResponse, error)
	// WORK IN PROGRESS:
	// Create a new Wave root account (also referred to as a reseller)
	CreateResellerAccount(context.Context, *CreateResellerRequest) (*ripple.Reseller, error)
	// WORK IN PROGRESS
	// Retrieve all the existing Wave root accounts (also referred to as resellers)
	// asscoiated with the organization
	ListResellerAccounts(*ListResellersRequest, Admin_ListResellerAccountsServer) error
	// WORK IN PROGRESS:
	// Retrieve an existing Wave root account (also referred to as a reseller)
	GetResellerAccount(context.Context, *GetResellerRequest) (*ripple.Reseller, error)
	// WORK IN PROGRESS
	// Delete an existing Wave root account (also referred to as a reseller)
	DeleteResellerAccount(context.Context, *DeleteResellerRequest) (*emptypb.Empty, error)
	// WORK IN PROGRESS:
	// Retrieve the features available to a user on an Alphaus product. Currently,
	// only values of "wave" and "aqua" are supported for {product}. For a list of
	// valid feature flags, see our documentation at https://alphauslabs.github.io/blueapi/apis/admin.html.
	GetFeatureFlags(context.Context, *GetFeatureFlagsRequest) (*api.FeatureFlags, error)
	// WORK IN PROGRESS:
	// Update the features available to a user on an Alphaus product. Currently,
	// only values of "wave" and "aqua" are supported for {product}. For a list of
	// valid feature flags, see our documentation at https://alphauslabs.github.io/blueapi/apis/admin.html.
	UpdateFeatureFlags(context.Context, *UpdateFeatureFlagsRequest) (*api.FeatureFlags, error)
	// contains filtered or unexported methods
}

AdminServer is the server API for Admin service. All implementations must embed UnimplementedAdminServer for forward compatibility

type Admin_ListAccountGroupsClient

type Admin_ListAccountGroupsClient interface {
	Recv() (*ListAccountGroupsResponse, error)
	grpc.ClientStream
}

type Admin_ListAccountGroupsServer

type Admin_ListAccountGroupsServer interface {
	Send(*ListAccountGroupsResponse) error
	grpc.ServerStream
}

type Admin_ListResellerAccountsClient added in v0.48.2

type Admin_ListResellerAccountsClient interface {
	Recv() (*ripple.Reseller, error)
	grpc.ClientStream
}

type Admin_ListResellerAccountsServer added in v0.48.2

type Admin_ListResellerAccountsServer interface {
	Send(*ripple.Reseller) error
	grpc.ServerStream
}

type ClientOptions

type ClientOptions struct {
	Conn *conn.GrpcClientConn
}

ClientOptions represents the optional options to NewClient.

type CreateResellerRequest added in v0.48.2

type CreateResellerRequest struct {

	// The email address of the account being created
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
	// The ID of the group to which the user will be added. This must
	// either be a billing group ID or an access group ID
	GroupId string `protobuf:"bytes,2,opt,name=groupId,proto3" json:"groupId,omitempty"`
	// The type of group which is represented by the group ID. Valid values
	// include "billing_group" or "access_group"
	GroupType string `protobuf:"bytes,3,opt,name=groupType,proto3" json:"groupType,omitempty"`
	// This value determines whether the password should be auto-generated
	// or if the plaintext value received with the request should be used. A
	// value of "Auto" will result in an auto-generated password whereas a
	// value of "Custom" will result in the password included with the request
	// being used
	InputType string `protobuf:"bytes,4,opt,name=inputType,proto3" json:"inputType,omitempty"`
	// The plan associated with the reseller account. Valid values include
	// "trial", "limited3" and "limited4"
	Plan string `protobuf:"bytes,5,opt,name=plan,proto3" json:"plan,omitempty"`
	// Whether or not a notification should be sent to the provided email after
	// the account has been created
	EmailNotification bool `protobuf:"varint,6,opt,name=emailNotification,proto3" json:"emailNotification,omitempty"`
	// A collection of feature flags for Wave and whether or not they should be enabled.
	// Any omitted values will be treated as being disabled. For a full list of such
	// flags, see https://alphauslabs.github.io/blueapi/apis/admin.html.
	WaveFeatureFlags *api.FeatureFlags `protobuf:"bytes,7,opt,name=waveFeatureFlags,proto3" json:"waveFeatureFlags,omitempty"`
	// A collection of feature flags for Aqua and whether or not they should be enabled.
	// Any omitted values will be treated as being disabled. For a full list of such
	// flags, see https://alphauslabs.github.io/blueapi/apis/admin.html.
	AquaFeatureFlags *api.FeatureFlags `protobuf:"bytes,8,opt,name=aquaFeatureFlags,proto3" json:"aquaFeatureFlags,omitempty"`
	// contains filtered or unexported fields
}

Request message for the Admin.CreateResellerAccount rpc

func (*CreateResellerRequest) Descriptor deprecated added in v0.48.2

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

Deprecated: Use CreateResellerRequest.ProtoReflect.Descriptor instead.

func (*CreateResellerRequest) GetAquaFeatureFlags added in v0.48.2

func (x *CreateResellerRequest) GetAquaFeatureFlags() *api.FeatureFlags

func (*CreateResellerRequest) GetEmail added in v0.48.2

func (x *CreateResellerRequest) GetEmail() string

func (*CreateResellerRequest) GetEmailNotification added in v0.48.2

func (x *CreateResellerRequest) GetEmailNotification() bool

func (*CreateResellerRequest) GetGroupId added in v0.48.2

func (x *CreateResellerRequest) GetGroupId() string

func (*CreateResellerRequest) GetGroupType added in v0.48.2

func (x *CreateResellerRequest) GetGroupType() string

func (*CreateResellerRequest) GetInputType added in v0.48.2

func (x *CreateResellerRequest) GetInputType() string

func (*CreateResellerRequest) GetPlan added in v0.48.2

func (x *CreateResellerRequest) GetPlan() string

func (*CreateResellerRequest) GetWaveFeatureFlags added in v0.48.2

func (x *CreateResellerRequest) GetWaveFeatureFlags() *api.FeatureFlags

func (*CreateResellerRequest) ProtoMessage added in v0.48.2

func (*CreateResellerRequest) ProtoMessage()

func (*CreateResellerRequest) ProtoReflect added in v0.48.2

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

func (*CreateResellerRequest) Reset added in v0.48.2

func (x *CreateResellerRequest) Reset()

func (*CreateResellerRequest) String added in v0.48.2

func (x *CreateResellerRequest) String() string

type DeleteResellerRequest added in v0.48.2

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

Request message for the Admin.DeleteResellerAccount rpc

func (*DeleteResellerRequest) Descriptor deprecated added in v0.48.2

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

Deprecated: Use DeleteResellerRequest.ProtoReflect.Descriptor instead.

func (*DeleteResellerRequest) GetId added in v0.48.2

func (x *DeleteResellerRequest) GetId() string

func (*DeleteResellerRequest) ProtoMessage added in v0.48.2

func (*DeleteResellerRequest) ProtoMessage()

func (*DeleteResellerRequest) ProtoReflect added in v0.48.2

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

func (*DeleteResellerRequest) Reset added in v0.48.2

func (x *DeleteResellerRequest) Reset()

func (*DeleteResellerRequest) String added in v0.48.2

func (x *DeleteResellerRequest) String() string

type GetAccountGroupRequest added in v0.36.3

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

Request message for the Admin.GetAccountGroup rpc.

func (*GetAccountGroupRequest) Descriptor deprecated added in v0.36.3

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

Deprecated: Use GetAccountGroupRequest.ProtoReflect.Descriptor instead.

func (*GetAccountGroupRequest) GetId added in v0.36.3

func (x *GetAccountGroupRequest) GetId() string

func (*GetAccountGroupRequest) ProtoMessage added in v0.36.3

func (*GetAccountGroupRequest) ProtoMessage()

func (*GetAccountGroupRequest) ProtoReflect added in v0.36.3

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

func (*GetAccountGroupRequest) Reset added in v0.36.3

func (x *GetAccountGroupRequest) Reset()

func (*GetAccountGroupRequest) String added in v0.36.3

func (x *GetAccountGroupRequest) String() string

type GetAccountGroupResponse added in v0.36.3

type GetAccountGroupResponse struct {
	AcctGroup *api.AccountGroup `protobuf:"bytes,1,opt,name=acctGroup,proto3" json:"acctGroup,omitempty"`
	// contains filtered or unexported fields
}

Response message for the Admin.GetAccountGroup rpc.

func (*GetAccountGroupResponse) Descriptor deprecated added in v0.36.3

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

Deprecated: Use GetAccountGroupResponse.ProtoReflect.Descriptor instead.

func (*GetAccountGroupResponse) GetAcctGroup added in v0.36.3

func (x *GetAccountGroupResponse) GetAcctGroup() *api.AccountGroup

func (*GetAccountGroupResponse) ProtoMessage added in v0.36.3

func (*GetAccountGroupResponse) ProtoMessage()

func (*GetAccountGroupResponse) ProtoReflect added in v0.36.3

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

func (*GetAccountGroupResponse) Reset added in v0.36.3

func (x *GetAccountGroupResponse) Reset()

func (*GetAccountGroupResponse) String added in v0.36.3

func (x *GetAccountGroupResponse) String() string

type GetFeatureFlagsRequest added in v0.48.2

type GetFeatureFlagsRequest struct {
	Id      string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Product string `protobuf:"bytes,2,opt,name=product,proto3" json:"product,omitempty"`
	// contains filtered or unexported fields
}

Request message for the Admin.GetUpdateFeatureFlags rpc

func (*GetFeatureFlagsRequest) Descriptor deprecated added in v0.48.2

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

Deprecated: Use GetFeatureFlagsRequest.ProtoReflect.Descriptor instead.

func (*GetFeatureFlagsRequest) GetId added in v0.48.2

func (x *GetFeatureFlagsRequest) GetId() string

func (*GetFeatureFlagsRequest) GetProduct added in v0.48.2

func (x *GetFeatureFlagsRequest) GetProduct() string

func (*GetFeatureFlagsRequest) ProtoMessage added in v0.48.2

func (*GetFeatureFlagsRequest) ProtoMessage()

func (*GetFeatureFlagsRequest) ProtoReflect added in v0.48.2

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

func (*GetFeatureFlagsRequest) Reset added in v0.48.2

func (x *GetFeatureFlagsRequest) Reset()

func (*GetFeatureFlagsRequest) String added in v0.48.2

func (x *GetFeatureFlagsRequest) String() string

type GetResellerRequest added in v0.48.2

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

Request message for the Admin.GetResellerAccount rpc

func (*GetResellerRequest) Descriptor deprecated added in v0.48.2

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

Deprecated: Use GetResellerRequest.ProtoReflect.Descriptor instead.

func (*GetResellerRequest) GetId added in v0.48.2

func (x *GetResellerRequest) GetId() string

func (*GetResellerRequest) ProtoMessage added in v0.48.2

func (*GetResellerRequest) ProtoMessage()

func (*GetResellerRequest) ProtoReflect added in v0.48.2

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

func (*GetResellerRequest) Reset added in v0.48.2

func (x *GetResellerRequest) Reset()

func (*GetResellerRequest) String added in v0.48.2

func (x *GetResellerRequest) String() string

type GrpcClient

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

func NewClient

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

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

func (*GrpcClient) Close

func (c *GrpcClient) Close()

type ListAccountGroupsRequest

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

Request message for the Admin.ListAccountGroups rpc.

func (*ListAccountGroupsRequest) Descriptor deprecated

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

Deprecated: Use ListAccountGroupsRequest.ProtoReflect.Descriptor instead.

func (*ListAccountGroupsRequest) ProtoMessage

func (*ListAccountGroupsRequest) ProtoMessage()

func (*ListAccountGroupsRequest) ProtoReflect

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

func (*ListAccountGroupsRequest) Reset

func (x *ListAccountGroupsRequest) Reset()

func (*ListAccountGroupsRequest) String

func (x *ListAccountGroupsRequest) String() string

type ListAccountGroupsResponse

type ListAccountGroupsResponse struct {
	AccountGroups []*api.AccountGroup `protobuf:"bytes,1,rep,name=accountGroups,proto3" json:"accountGroups,omitempty"`
	// contains filtered or unexported fields
}

Response message for the Admin.ListAccountGroups rpc.

func (*ListAccountGroupsResponse) Descriptor deprecated

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

Deprecated: Use ListAccountGroupsResponse.ProtoReflect.Descriptor instead.

func (*ListAccountGroupsResponse) GetAccountGroups added in v0.36.1

func (x *ListAccountGroupsResponse) GetAccountGroups() []*api.AccountGroup

func (*ListAccountGroupsResponse) ProtoMessage

func (*ListAccountGroupsResponse) ProtoMessage()

func (*ListAccountGroupsResponse) ProtoReflect

func (*ListAccountGroupsResponse) Reset

func (x *ListAccountGroupsResponse) Reset()

func (*ListAccountGroupsResponse) String

func (x *ListAccountGroupsResponse) String() string

type ListResellersRequest added in v0.48.2

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

Request message for the Admin.ListResellerAccounts rpc

func (*ListResellersRequest) Descriptor deprecated added in v0.48.2

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

Deprecated: Use ListResellersRequest.ProtoReflect.Descriptor instead.

func (*ListResellersRequest) ProtoMessage added in v0.48.2

func (*ListResellersRequest) ProtoMessage()

func (*ListResellersRequest) ProtoReflect added in v0.48.2

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

func (*ListResellersRequest) Reset added in v0.48.2

func (x *ListResellersRequest) Reset()

func (*ListResellersRequest) String added in v0.48.2

func (x *ListResellersRequest) String() string

type UnimplementedAdminServer

type UnimplementedAdminServer struct {
}

UnimplementedAdminServer must be embedded to have forward compatible implementations.

func (UnimplementedAdminServer) CreateResellerAccount added in v0.48.2

func (UnimplementedAdminServer) DeleteResellerAccount added in v0.48.2

func (UnimplementedAdminServer) GetAccountGroup added in v0.36.3

func (UnimplementedAdminServer) GetFeatureFlags added in v0.48.2

func (UnimplementedAdminServer) GetResellerAccount added in v0.48.2

func (UnimplementedAdminServer) ListResellerAccounts added in v0.48.2

func (UnimplementedAdminServer) UpdateFeatureFlags added in v0.48.0

type UnsafeAdminServer

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

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

type UpdateFeatureFlagsRequest added in v0.48.0

type UpdateFeatureFlagsRequest struct {
	Id           string          `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Product      string          `protobuf:"bytes,2,opt,name=product,proto3" json:"product,omitempty"`
	FeatureFlags map[string]bool `` /* 166-byte string literal not displayed */
	// contains filtered or unexported fields
}

Request message for the Admin.UpdateFeatureFlags rpc

func (*UpdateFeatureFlagsRequest) Descriptor deprecated added in v0.48.0

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

Deprecated: Use UpdateFeatureFlagsRequest.ProtoReflect.Descriptor instead.

func (*UpdateFeatureFlagsRequest) GetFeatureFlags added in v0.48.0

func (x *UpdateFeatureFlagsRequest) GetFeatureFlags() map[string]bool

func (*UpdateFeatureFlagsRequest) GetId added in v0.48.0

func (x *UpdateFeatureFlagsRequest) GetId() string

func (*UpdateFeatureFlagsRequest) GetProduct added in v0.48.0

func (x *UpdateFeatureFlagsRequest) GetProduct() string

func (*UpdateFeatureFlagsRequest) ProtoMessage added in v0.48.0

func (*UpdateFeatureFlagsRequest) ProtoMessage()

func (*UpdateFeatureFlagsRequest) ProtoReflect added in v0.48.0

func (*UpdateFeatureFlagsRequest) Reset added in v0.48.0

func (x *UpdateFeatureFlagsRequest) Reset()

func (*UpdateFeatureFlagsRequest) String added in v0.48.0

func (x *UpdateFeatureFlagsRequest) String() string

Jump to

Keyboard shortcuts

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