route/vendor/google.golang.org/genproto/googleapis/bigtable/admin/v2/bigtable_instance_admin.pb.go

963 lines
40 KiB
Go

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/bigtable/admin/v2/bigtable_instance_admin.proto
/*
Package admin is a generated protocol buffer package.
It is generated from these files:
google/bigtable/admin/v2/bigtable_instance_admin.proto
google/bigtable/admin/v2/bigtable_table_admin.proto
google/bigtable/admin/v2/common.proto
google/bigtable/admin/v2/instance.proto
google/bigtable/admin/v2/table.proto
It has these top-level messages:
CreateInstanceRequest
GetInstanceRequest
ListInstancesRequest
ListInstancesResponse
DeleteInstanceRequest
CreateClusterRequest
GetClusterRequest
ListClustersRequest
ListClustersResponse
DeleteClusterRequest
CreateInstanceMetadata
CreateClusterMetadata
UpdateClusterMetadata
CreateTableRequest
DropRowRangeRequest
ListTablesRequest
ListTablesResponse
GetTableRequest
DeleteTableRequest
ModifyColumnFamiliesRequest
Instance
Cluster
Table
ColumnFamily
GcRule
*/
package admin
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import _ "google.golang.org/genproto/googleapis/api/annotations"
import google_longrunning "google.golang.org/genproto/googleapis/longrunning"
import google_protobuf3 "github.com/golang/protobuf/ptypes/empty"
import google_protobuf1 "github.com/golang/protobuf/ptypes/timestamp"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
// Request message for BigtableInstanceAdmin.CreateInstance.
type CreateInstanceRequest struct {
// The unique name of the project in which to create the new instance.
// Values are of the form `projects/<project>`.
Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
// The ID to be used when referring to the new instance within its project,
// e.g., just `myinstance` rather than
// `projects/myproject/instances/myinstance`.
InstanceId string `protobuf:"bytes,2,opt,name=instance_id,json=instanceId" json:"instance_id,omitempty"`
// The instance to create.
// Fields marked `OutputOnly` must be left blank.
Instance *Instance `protobuf:"bytes,3,opt,name=instance" json:"instance,omitempty"`
// The clusters to be created within the instance, mapped by desired
// cluster ID, e.g., just `mycluster` rather than
// `projects/myproject/instances/myinstance/clusters/mycluster`.
// Fields marked `OutputOnly` must be left blank.
// Currently exactly one cluster must be specified.
Clusters map[string]*Cluster `protobuf:"bytes,4,rep,name=clusters" json:"clusters,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
}
func (m *CreateInstanceRequest) Reset() { *m = CreateInstanceRequest{} }
func (m *CreateInstanceRequest) String() string { return proto.CompactTextString(m) }
func (*CreateInstanceRequest) ProtoMessage() {}
func (*CreateInstanceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
func (m *CreateInstanceRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *CreateInstanceRequest) GetInstanceId() string {
if m != nil {
return m.InstanceId
}
return ""
}
func (m *CreateInstanceRequest) GetInstance() *Instance {
if m != nil {
return m.Instance
}
return nil
}
func (m *CreateInstanceRequest) GetClusters() map[string]*Cluster {
if m != nil {
return m.Clusters
}
return nil
}
// Request message for BigtableInstanceAdmin.GetInstance.
type GetInstanceRequest struct {
// The unique name of the requested instance. Values are of the form
// `projects/<project>/instances/<instance>`.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
}
func (m *GetInstanceRequest) Reset() { *m = GetInstanceRequest{} }
func (m *GetInstanceRequest) String() string { return proto.CompactTextString(m) }
func (*GetInstanceRequest) ProtoMessage() {}
func (*GetInstanceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *GetInstanceRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
// Request message for BigtableInstanceAdmin.ListInstances.
type ListInstancesRequest struct {
// The unique name of the project for which a list of instances is requested.
// Values are of the form `projects/<project>`.
Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
// The value of `next_page_token` returned by a previous call.
PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken" json:"page_token,omitempty"`
}
func (m *ListInstancesRequest) Reset() { *m = ListInstancesRequest{} }
func (m *ListInstancesRequest) String() string { return proto.CompactTextString(m) }
func (*ListInstancesRequest) ProtoMessage() {}
func (*ListInstancesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
func (m *ListInstancesRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *ListInstancesRequest) GetPageToken() string {
if m != nil {
return m.PageToken
}
return ""
}
// Response message for BigtableInstanceAdmin.ListInstances.
type ListInstancesResponse struct {
// The list of requested instances.
Instances []*Instance `protobuf:"bytes,1,rep,name=instances" json:"instances,omitempty"`
// Locations from which Instance information could not be retrieved,
// due to an outage or some other transient condition.
// Instances whose Clusters are all in one of the failed locations
// may be missing from `instances`, and Instances with at least one
// Cluster in a failed location may only have partial information returned.
FailedLocations []string `protobuf:"bytes,2,rep,name=failed_locations,json=failedLocations" json:"failed_locations,omitempty"`
// Set if not all instances could be returned in a single response.
// Pass this value to `page_token` in another request to get the next
// page of results.
NextPageToken string `protobuf:"bytes,3,opt,name=next_page_token,json=nextPageToken" json:"next_page_token,omitempty"`
}
func (m *ListInstancesResponse) Reset() { *m = ListInstancesResponse{} }
func (m *ListInstancesResponse) String() string { return proto.CompactTextString(m) }
func (*ListInstancesResponse) ProtoMessage() {}
func (*ListInstancesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *ListInstancesResponse) GetInstances() []*Instance {
if m != nil {
return m.Instances
}
return nil
}
func (m *ListInstancesResponse) GetFailedLocations() []string {
if m != nil {
return m.FailedLocations
}
return nil
}
func (m *ListInstancesResponse) GetNextPageToken() string {
if m != nil {
return m.NextPageToken
}
return ""
}
// Request message for BigtableInstanceAdmin.DeleteInstance.
type DeleteInstanceRequest struct {
// The unique name of the instance to be deleted.
// Values are of the form `projects/<project>/instances/<instance>`.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
}
func (m *DeleteInstanceRequest) Reset() { *m = DeleteInstanceRequest{} }
func (m *DeleteInstanceRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteInstanceRequest) ProtoMessage() {}
func (*DeleteInstanceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
func (m *DeleteInstanceRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
// Request message for BigtableInstanceAdmin.CreateCluster.
type CreateClusterRequest struct {
// The unique name of the instance in which to create the new cluster.
// Values are of the form
// `projects/<project>/instances/<instance>`.
Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
// The ID to be used when referring to the new cluster within its instance,
// e.g., just `mycluster` rather than
// `projects/myproject/instances/myinstance/clusters/mycluster`.
ClusterId string `protobuf:"bytes,2,opt,name=cluster_id,json=clusterId" json:"cluster_id,omitempty"`
// The cluster to be created.
// Fields marked `OutputOnly` must be left blank.
Cluster *Cluster `protobuf:"bytes,3,opt,name=cluster" json:"cluster,omitempty"`
}
func (m *CreateClusterRequest) Reset() { *m = CreateClusterRequest{} }
func (m *CreateClusterRequest) String() string { return proto.CompactTextString(m) }
func (*CreateClusterRequest) ProtoMessage() {}
func (*CreateClusterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *CreateClusterRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *CreateClusterRequest) GetClusterId() string {
if m != nil {
return m.ClusterId
}
return ""
}
func (m *CreateClusterRequest) GetCluster() *Cluster {
if m != nil {
return m.Cluster
}
return nil
}
// Request message for BigtableInstanceAdmin.GetCluster.
type GetClusterRequest struct {
// The unique name of the requested cluster. Values are of the form
// `projects/<project>/instances/<instance>/clusters/<cluster>`.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
}
func (m *GetClusterRequest) Reset() { *m = GetClusterRequest{} }
func (m *GetClusterRequest) String() string { return proto.CompactTextString(m) }
func (*GetClusterRequest) ProtoMessage() {}
func (*GetClusterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
func (m *GetClusterRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
// Request message for BigtableInstanceAdmin.ListClusters.
type ListClustersRequest struct {
// The unique name of the instance for which a list of clusters is requested.
// Values are of the form `projects/<project>/instances/<instance>`.
// Use `<instance> = '-'` to list Clusters for all Instances in a project,
// e.g., `projects/myproject/instances/-`.
Parent string `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"`
// The value of `next_page_token` returned by a previous call.
PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken" json:"page_token,omitempty"`
}
func (m *ListClustersRequest) Reset() { *m = ListClustersRequest{} }
func (m *ListClustersRequest) String() string { return proto.CompactTextString(m) }
func (*ListClustersRequest) ProtoMessage() {}
func (*ListClustersRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
func (m *ListClustersRequest) GetParent() string {
if m != nil {
return m.Parent
}
return ""
}
func (m *ListClustersRequest) GetPageToken() string {
if m != nil {
return m.PageToken
}
return ""
}
// Response message for BigtableInstanceAdmin.ListClusters.
type ListClustersResponse struct {
// The list of requested clusters.
Clusters []*Cluster `protobuf:"bytes,1,rep,name=clusters" json:"clusters,omitempty"`
// Locations from which Cluster information could not be retrieved,
// due to an outage or some other transient condition.
// Clusters from these locations may be missing from `clusters`,
// or may only have partial information returned.
FailedLocations []string `protobuf:"bytes,2,rep,name=failed_locations,json=failedLocations" json:"failed_locations,omitempty"`
// Set if not all clusters could be returned in a single response.
// Pass this value to `page_token` in another request to get the next
// page of results.
NextPageToken string `protobuf:"bytes,3,opt,name=next_page_token,json=nextPageToken" json:"next_page_token,omitempty"`
}
func (m *ListClustersResponse) Reset() { *m = ListClustersResponse{} }
func (m *ListClustersResponse) String() string { return proto.CompactTextString(m) }
func (*ListClustersResponse) ProtoMessage() {}
func (*ListClustersResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
func (m *ListClustersResponse) GetClusters() []*Cluster {
if m != nil {
return m.Clusters
}
return nil
}
func (m *ListClustersResponse) GetFailedLocations() []string {
if m != nil {
return m.FailedLocations
}
return nil
}
func (m *ListClustersResponse) GetNextPageToken() string {
if m != nil {
return m.NextPageToken
}
return ""
}
// Request message for BigtableInstanceAdmin.DeleteCluster.
type DeleteClusterRequest struct {
// The unique name of the cluster to be deleted. Values are of the form
// `projects/<project>/instances/<instance>/clusters/<cluster>`.
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
}
func (m *DeleteClusterRequest) Reset() { *m = DeleteClusterRequest{} }
func (m *DeleteClusterRequest) String() string { return proto.CompactTextString(m) }
func (*DeleteClusterRequest) ProtoMessage() {}
func (*DeleteClusterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
func (m *DeleteClusterRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
// The metadata for the Operation returned by CreateInstance.
type CreateInstanceMetadata struct {
// The request that prompted the initiation of this CreateInstance operation.
OriginalRequest *CreateInstanceRequest `protobuf:"bytes,1,opt,name=original_request,json=originalRequest" json:"original_request,omitempty"`
// The time at which the original request was received.
RequestTime *google_protobuf1.Timestamp `protobuf:"bytes,2,opt,name=request_time,json=requestTime" json:"request_time,omitempty"`
// The time at which the operation failed or was completed successfully.
FinishTime *google_protobuf1.Timestamp `protobuf:"bytes,3,opt,name=finish_time,json=finishTime" json:"finish_time,omitempty"`
}
func (m *CreateInstanceMetadata) Reset() { *m = CreateInstanceMetadata{} }
func (m *CreateInstanceMetadata) String() string { return proto.CompactTextString(m) }
func (*CreateInstanceMetadata) ProtoMessage() {}
func (*CreateInstanceMetadata) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
func (m *CreateInstanceMetadata) GetOriginalRequest() *CreateInstanceRequest {
if m != nil {
return m.OriginalRequest
}
return nil
}
func (m *CreateInstanceMetadata) GetRequestTime() *google_protobuf1.Timestamp {
if m != nil {
return m.RequestTime
}
return nil
}
func (m *CreateInstanceMetadata) GetFinishTime() *google_protobuf1.Timestamp {
if m != nil {
return m.FinishTime
}
return nil
}
// The metadata for the Operation returned by CreateCluster.
type CreateClusterMetadata struct {
// The request that prompted the initiation of this CreateCluster operation.
OriginalRequest *CreateClusterRequest `protobuf:"bytes,1,opt,name=original_request,json=originalRequest" json:"original_request,omitempty"`
// The time at which the original request was received.
RequestTime *google_protobuf1.Timestamp `protobuf:"bytes,2,opt,name=request_time,json=requestTime" json:"request_time,omitempty"`
// The time at which the operation failed or was completed successfully.
FinishTime *google_protobuf1.Timestamp `protobuf:"bytes,3,opt,name=finish_time,json=finishTime" json:"finish_time,omitempty"`
}
func (m *CreateClusterMetadata) Reset() { *m = CreateClusterMetadata{} }
func (m *CreateClusterMetadata) String() string { return proto.CompactTextString(m) }
func (*CreateClusterMetadata) ProtoMessage() {}
func (*CreateClusterMetadata) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
func (m *CreateClusterMetadata) GetOriginalRequest() *CreateClusterRequest {
if m != nil {
return m.OriginalRequest
}
return nil
}
func (m *CreateClusterMetadata) GetRequestTime() *google_protobuf1.Timestamp {
if m != nil {
return m.RequestTime
}
return nil
}
func (m *CreateClusterMetadata) GetFinishTime() *google_protobuf1.Timestamp {
if m != nil {
return m.FinishTime
}
return nil
}
// The metadata for the Operation returned by UpdateCluster.
type UpdateClusterMetadata struct {
// The request that prompted the initiation of this UpdateCluster operation.
OriginalRequest *Cluster `protobuf:"bytes,1,opt,name=original_request,json=originalRequest" json:"original_request,omitempty"`
// The time at which the original request was received.
RequestTime *google_protobuf1.Timestamp `protobuf:"bytes,2,opt,name=request_time,json=requestTime" json:"request_time,omitempty"`
// The time at which the operation failed or was completed successfully.
FinishTime *google_protobuf1.Timestamp `protobuf:"bytes,3,opt,name=finish_time,json=finishTime" json:"finish_time,omitempty"`
}
func (m *UpdateClusterMetadata) Reset() { *m = UpdateClusterMetadata{} }
func (m *UpdateClusterMetadata) String() string { return proto.CompactTextString(m) }
func (*UpdateClusterMetadata) ProtoMessage() {}
func (*UpdateClusterMetadata) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
func (m *UpdateClusterMetadata) GetOriginalRequest() *Cluster {
if m != nil {
return m.OriginalRequest
}
return nil
}
func (m *UpdateClusterMetadata) GetRequestTime() *google_protobuf1.Timestamp {
if m != nil {
return m.RequestTime
}
return nil
}
func (m *UpdateClusterMetadata) GetFinishTime() *google_protobuf1.Timestamp {
if m != nil {
return m.FinishTime
}
return nil
}
func init() {
proto.RegisterType((*CreateInstanceRequest)(nil), "google.bigtable.admin.v2.CreateInstanceRequest")
proto.RegisterType((*GetInstanceRequest)(nil), "google.bigtable.admin.v2.GetInstanceRequest")
proto.RegisterType((*ListInstancesRequest)(nil), "google.bigtable.admin.v2.ListInstancesRequest")
proto.RegisterType((*ListInstancesResponse)(nil), "google.bigtable.admin.v2.ListInstancesResponse")
proto.RegisterType((*DeleteInstanceRequest)(nil), "google.bigtable.admin.v2.DeleteInstanceRequest")
proto.RegisterType((*CreateClusterRequest)(nil), "google.bigtable.admin.v2.CreateClusterRequest")
proto.RegisterType((*GetClusterRequest)(nil), "google.bigtable.admin.v2.GetClusterRequest")
proto.RegisterType((*ListClustersRequest)(nil), "google.bigtable.admin.v2.ListClustersRequest")
proto.RegisterType((*ListClustersResponse)(nil), "google.bigtable.admin.v2.ListClustersResponse")
proto.RegisterType((*DeleteClusterRequest)(nil), "google.bigtable.admin.v2.DeleteClusterRequest")
proto.RegisterType((*CreateInstanceMetadata)(nil), "google.bigtable.admin.v2.CreateInstanceMetadata")
proto.RegisterType((*CreateClusterMetadata)(nil), "google.bigtable.admin.v2.CreateClusterMetadata")
proto.RegisterType((*UpdateClusterMetadata)(nil), "google.bigtable.admin.v2.UpdateClusterMetadata")
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// Client API for BigtableInstanceAdmin service
type BigtableInstanceAdminClient interface {
// Create an instance within a project.
CreateInstance(ctx context.Context, in *CreateInstanceRequest, opts ...grpc.CallOption) (*google_longrunning.Operation, error)
// Gets information about an instance.
GetInstance(ctx context.Context, in *GetInstanceRequest, opts ...grpc.CallOption) (*Instance, error)
// Lists information about instances in a project.
ListInstances(ctx context.Context, in *ListInstancesRequest, opts ...grpc.CallOption) (*ListInstancesResponse, error)
// Updates an instance within a project.
UpdateInstance(ctx context.Context, in *Instance, opts ...grpc.CallOption) (*Instance, error)
// Delete an instance from a project.
DeleteInstance(ctx context.Context, in *DeleteInstanceRequest, opts ...grpc.CallOption) (*google_protobuf3.Empty, error)
// Creates a cluster within an instance.
CreateCluster(ctx context.Context, in *CreateClusterRequest, opts ...grpc.CallOption) (*google_longrunning.Operation, error)
// Gets information about a cluster.
GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error)
// Lists information about clusters in an instance.
ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error)
// Updates a cluster within an instance.
UpdateCluster(ctx context.Context, in *Cluster, opts ...grpc.CallOption) (*google_longrunning.Operation, error)
// Deletes a cluster from an instance.
DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*google_protobuf3.Empty, error)
}
type bigtableInstanceAdminClient struct {
cc *grpc.ClientConn
}
func NewBigtableInstanceAdminClient(cc *grpc.ClientConn) BigtableInstanceAdminClient {
return &bigtableInstanceAdminClient{cc}
}
func (c *bigtableInstanceAdminClient) CreateInstance(ctx context.Context, in *CreateInstanceRequest, opts ...grpc.CallOption) (*google_longrunning.Operation, error) {
out := new(google_longrunning.Operation)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/CreateInstance", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) GetInstance(ctx context.Context, in *GetInstanceRequest, opts ...grpc.CallOption) (*Instance, error) {
out := new(Instance)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/GetInstance", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) ListInstances(ctx context.Context, in *ListInstancesRequest, opts ...grpc.CallOption) (*ListInstancesResponse, error) {
out := new(ListInstancesResponse)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/ListInstances", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) UpdateInstance(ctx context.Context, in *Instance, opts ...grpc.CallOption) (*Instance, error) {
out := new(Instance)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateInstance", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) DeleteInstance(ctx context.Context, in *DeleteInstanceRequest, opts ...grpc.CallOption) (*google_protobuf3.Empty, error) {
out := new(google_protobuf3.Empty)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/DeleteInstance", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) CreateCluster(ctx context.Context, in *CreateClusterRequest, opts ...grpc.CallOption) (*google_longrunning.Operation, error) {
out := new(google_longrunning.Operation)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/CreateCluster", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) GetCluster(ctx context.Context, in *GetClusterRequest, opts ...grpc.CallOption) (*Cluster, error) {
out := new(Cluster)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/GetCluster", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) ListClusters(ctx context.Context, in *ListClustersRequest, opts ...grpc.CallOption) (*ListClustersResponse, error) {
out := new(ListClustersResponse)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/ListClusters", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) UpdateCluster(ctx context.Context, in *Cluster, opts ...grpc.CallOption) (*google_longrunning.Operation, error) {
out := new(google_longrunning.Operation)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateCluster", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *bigtableInstanceAdminClient) DeleteCluster(ctx context.Context, in *DeleteClusterRequest, opts ...grpc.CallOption) (*google_protobuf3.Empty, error) {
out := new(google_protobuf3.Empty)
err := grpc.Invoke(ctx, "/google.bigtable.admin.v2.BigtableInstanceAdmin/DeleteCluster", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for BigtableInstanceAdmin service
type BigtableInstanceAdminServer interface {
// Create an instance within a project.
CreateInstance(context.Context, *CreateInstanceRequest) (*google_longrunning.Operation, error)
// Gets information about an instance.
GetInstance(context.Context, *GetInstanceRequest) (*Instance, error)
// Lists information about instances in a project.
ListInstances(context.Context, *ListInstancesRequest) (*ListInstancesResponse, error)
// Updates an instance within a project.
UpdateInstance(context.Context, *Instance) (*Instance, error)
// Delete an instance from a project.
DeleteInstance(context.Context, *DeleteInstanceRequest) (*google_protobuf3.Empty, error)
// Creates a cluster within an instance.
CreateCluster(context.Context, *CreateClusterRequest) (*google_longrunning.Operation, error)
// Gets information about a cluster.
GetCluster(context.Context, *GetClusterRequest) (*Cluster, error)
// Lists information about clusters in an instance.
ListClusters(context.Context, *ListClustersRequest) (*ListClustersResponse, error)
// Updates a cluster within an instance.
UpdateCluster(context.Context, *Cluster) (*google_longrunning.Operation, error)
// Deletes a cluster from an instance.
DeleteCluster(context.Context, *DeleteClusterRequest) (*google_protobuf3.Empty, error)
}
func RegisterBigtableInstanceAdminServer(s *grpc.Server, srv BigtableInstanceAdminServer) {
s.RegisterService(&_BigtableInstanceAdmin_serviceDesc, srv)
}
func _BigtableInstanceAdmin_CreateInstance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateInstanceRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).CreateInstance(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/CreateInstance",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).CreateInstance(ctx, req.(*CreateInstanceRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_GetInstance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetInstanceRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).GetInstance(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/GetInstance",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).GetInstance(ctx, req.(*GetInstanceRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_ListInstances_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ListInstancesRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).ListInstances(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/ListInstances",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).ListInstances(ctx, req.(*ListInstancesRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_UpdateInstance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Instance)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).UpdateInstance(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateInstance",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).UpdateInstance(ctx, req.(*Instance))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_DeleteInstance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteInstanceRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).DeleteInstance(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/DeleteInstance",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).DeleteInstance(ctx, req.(*DeleteInstanceRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_CreateCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CreateClusterRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).CreateCluster(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/CreateCluster",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).CreateCluster(ctx, req.(*CreateClusterRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_GetCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetClusterRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).GetCluster(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/GetCluster",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).GetCluster(ctx, req.(*GetClusterRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_ListClusters_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ListClustersRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).ListClusters(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/ListClusters",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).ListClusters(ctx, req.(*ListClustersRequest))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_UpdateCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Cluster)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).UpdateCluster(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/UpdateCluster",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).UpdateCluster(ctx, req.(*Cluster))
}
return interceptor(ctx, in, info, handler)
}
func _BigtableInstanceAdmin_DeleteCluster_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteClusterRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(BigtableInstanceAdminServer).DeleteCluster(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/google.bigtable.admin.v2.BigtableInstanceAdmin/DeleteCluster",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(BigtableInstanceAdminServer).DeleteCluster(ctx, req.(*DeleteClusterRequest))
}
return interceptor(ctx, in, info, handler)
}
var _BigtableInstanceAdmin_serviceDesc = grpc.ServiceDesc{
ServiceName: "google.bigtable.admin.v2.BigtableInstanceAdmin",
HandlerType: (*BigtableInstanceAdminServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "CreateInstance",
Handler: _BigtableInstanceAdmin_CreateInstance_Handler,
},
{
MethodName: "GetInstance",
Handler: _BigtableInstanceAdmin_GetInstance_Handler,
},
{
MethodName: "ListInstances",
Handler: _BigtableInstanceAdmin_ListInstances_Handler,
},
{
MethodName: "UpdateInstance",
Handler: _BigtableInstanceAdmin_UpdateInstance_Handler,
},
{
MethodName: "DeleteInstance",
Handler: _BigtableInstanceAdmin_DeleteInstance_Handler,
},
{
MethodName: "CreateCluster",
Handler: _BigtableInstanceAdmin_CreateCluster_Handler,
},
{
MethodName: "GetCluster",
Handler: _BigtableInstanceAdmin_GetCluster_Handler,
},
{
MethodName: "ListClusters",
Handler: _BigtableInstanceAdmin_ListClusters_Handler,
},
{
MethodName: "UpdateCluster",
Handler: _BigtableInstanceAdmin_UpdateCluster_Handler,
},
{
MethodName: "DeleteCluster",
Handler: _BigtableInstanceAdmin_DeleteCluster_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "google/bigtable/admin/v2/bigtable_instance_admin.proto",
}
func init() {
proto.RegisterFile("google/bigtable/admin/v2/bigtable_instance_admin.proto", fileDescriptor0)
}
var fileDescriptor0 = []byte{
// 1026 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xc1, 0x6f, 0x1b, 0xc5,
0x17, 0xd6, 0xd8, 0xfd, 0xf5, 0x57, 0xbf, 0xad, 0x93, 0x30, 0xc4, 0x91, 0xb5, 0xb4, 0x34, 0xdd,
0x4a, 0xad, 0xeb, 0x86, 0x5d, 0x61, 0x10, 0x41, 0x89, 0x8c, 0x20, 0xa1, 0x8a, 0x22, 0xa5, 0x22,
0xb2, 0x0a, 0x52, 0x7b, 0xc0, 0x9a, 0xd8, 0x93, 0x65, 0xe9, 0x7a, 0x76, 0xd9, 0x1d, 0x47, 0x44,
0xa8, 0x17, 0x84, 0x38, 0x54, 0x82, 0x03, 0x1c, 0x81, 0x13, 0x17, 0x84, 0xf8, 0x4f, 0x38, 0x72,
0xe4, 0x84, 0xc4, 0x19, 0xf1, 0x27, 0xa0, 0xd9, 0x99, 0x59, 0x7b, 0x9d, 0xb5, 0x77, 0x2d, 0x84,
0xd4, 0x9b, 0x77, 0xe6, 0xbd, 0x37, 0xdf, 0xfb, 0xde, 0x37, 0xef, 0x8d, 0xe1, 0x0d, 0x37, 0x08,
0x5c, 0x9f, 0x3a, 0x27, 0x9e, 0xcb, 0xc9, 0x89, 0x4f, 0x1d, 0x32, 0x1c, 0x79, 0xcc, 0x39, 0xeb,
0xa4, 0x2b, 0x7d, 0x8f, 0xc5, 0x9c, 0xb0, 0x01, 0xed, 0x27, 0x5b, 0x76, 0x18, 0x05, 0x3c, 0xc0,
0x4d, 0xe9, 0x67, 0x6b, 0x2b, 0x5b, 0x6e, 0x9e, 0x75, 0xcc, 0x6b, 0x2a, 0x22, 0x09, 0x3d, 0x87,
0x30, 0x16, 0x70, 0xc2, 0xbd, 0x80, 0xc5, 0xd2, 0xcf, 0xbc, 0x33, 0xf7, 0x3c, 0x7d, 0x8c, 0x32,
0xbc, 0xa5, 0x0c, 0xfd, 0x80, 0xb9, 0xd1, 0x98, 0x31, 0x8f, 0xb9, 0x4e, 0x10, 0xd2, 0x28, 0x13,
0xed, 0x25, 0x65, 0x94, 0x7c, 0x9d, 0x8c, 0x4f, 0x1d, 0x3a, 0x0a, 0xf9, 0xb9, 0xda, 0xbc, 0x31,
0xbb, 0xc9, 0xbd, 0x11, 0x8d, 0x39, 0x19, 0x85, 0xd2, 0xc0, 0xfa, 0xb5, 0x02, 0x8d, 0xfd, 0x88,
0x12, 0x4e, 0x0f, 0xd5, 0xd9, 0x3d, 0xfa, 0xc9, 0x98, 0xc6, 0x1c, 0x6f, 0xc0, 0xe5, 0x90, 0x44,
0x94, 0xf1, 0x26, 0xda, 0x44, 0xad, 0x5a, 0x4f, 0x7d, 0xe1, 0x1b, 0x60, 0xa4, 0x6c, 0x78, 0xc3,
0x66, 0x25, 0xd9, 0x04, 0xbd, 0x74, 0x38, 0xc4, 0x6f, 0xc1, 0x15, 0xfd, 0xd5, 0xac, 0x6e, 0xa2,
0x96, 0xd1, 0xb1, 0xec, 0x79, 0x4c, 0xd9, 0xe9, 0xa9, 0xa9, 0x0f, 0x7e, 0x04, 0x57, 0x06, 0xfe,
0x38, 0xe6, 0x34, 0x8a, 0x9b, 0x97, 0x36, 0xab, 0x2d, 0xa3, 0xd3, 0x9d, 0xef, 0x9f, 0x8b, 0xdd,
0xde, 0x57, 0xfe, 0xf7, 0x19, 0x8f, 0xce, 0x7b, 0x69, 0x38, 0xf3, 0x43, 0xa8, 0x67, 0xb6, 0xf0,
0x1a, 0x54, 0x9f, 0xd0, 0x73, 0x95, 0xa1, 0xf8, 0x89, 0xb7, 0xe1, 0x7f, 0x67, 0xc4, 0x1f, 0xd3,
0x24, 0x31, 0xa3, 0x73, 0x73, 0xc1, 0xd1, 0x32, 0x52, 0x4f, 0xda, 0xef, 0x54, 0xde, 0x44, 0x56,
0x0b, 0xf0, 0x01, 0xe5, 0xb3, 0x4c, 0x62, 0xb8, 0xc4, 0xc8, 0x88, 0xaa, 0x53, 0x92, 0xdf, 0xd6,
0x03, 0x58, 0x3f, 0xf2, 0xe2, 0xd4, 0x34, 0x2e, 0x62, 0xfd, 0x3a, 0x40, 0x48, 0x5c, 0xda, 0xe7,
0xc1, 0x13, 0xca, 0x14, 0xe9, 0x35, 0xb1, 0xf2, 0x50, 0x2c, 0x58, 0xbf, 0x20, 0x68, 0xcc, 0xc4,
0x8b, 0xc3, 0x80, 0xc5, 0x14, 0xbf, 0x0d, 0x35, 0xcd, 0x6c, 0xdc, 0x44, 0x09, 0x9d, 0x65, 0xca,
0x31, 0x71, 0xc2, 0x77, 0x61, 0xed, 0x94, 0x78, 0x3e, 0x1d, 0xf6, 0xfd, 0x60, 0x20, 0xa5, 0xd7,
0xac, 0x6c, 0x56, 0x5b, 0xb5, 0xde, 0xaa, 0x5c, 0x3f, 0xd2, 0xcb, 0xf8, 0x36, 0xac, 0x32, 0xfa,
0x29, 0xef, 0x4f, 0x41, 0xad, 0x26, 0x50, 0xeb, 0x62, 0xf9, 0x38, 0x85, 0x7b, 0x0f, 0x1a, 0xef,
0x52, 0x9f, 0x5e, 0x14, 0x5d, 0x1e, 0x55, 0xcf, 0x10, 0xac, 0xcb, 0x32, 0x6b, 0xc6, 0x8b, 0xb9,
0x52, 0x15, 0x9f, 0x08, 0xb4, 0xa6, 0x56, 0x0e, 0x87, 0x78, 0x17, 0xfe, 0xaf, 0x3e, 0x94, 0x3c,
0x4b, 0xd4, 0x58, 0x7b, 0x58, 0x77, 0xe0, 0x85, 0x03, 0xca, 0x67, 0x80, 0xe4, 0xa1, 0x3e, 0x82,
0x17, 0x45, 0x41, 0xb4, 0xdc, 0xfe, 0x65, 0x7d, 0x7f, 0x42, 0x52, 0x2f, 0x93, 0x70, 0xaa, 0xbc,
0xdd, 0xa9, 0xcb, 0x22, 0xab, 0x5b, 0x22, 0x9b, 0xd4, 0xe5, 0xbf, 0xa8, 0x6d, 0x1b, 0xd6, 0x65,
0x6d, 0x4b, 0x90, 0xf4, 0x37, 0x82, 0x8d, 0xec, 0x0d, 0x7e, 0x40, 0x39, 0x19, 0x12, 0x4e, 0xf0,
0x63, 0x58, 0x0b, 0x22, 0xcf, 0xf5, 0x18, 0xf1, 0xfb, 0x91, 0x0c, 0x91, 0xb8, 0x1a, 0x1d, 0x67,
0xc9, 0x6e, 0xd0, 0x5b, 0xd5, 0x81, 0x34, 0x94, 0x2e, 0x5c, 0x55, 0x21, 0xfb, 0xa2, 0x1f, 0xaa,
0xab, 0x6e, 0xea, 0xb8, 0xba, 0x59, 0xda, 0x0f, 0x75, 0xb3, 0xec, 0x19, 0xca, 0x5e, 0xac, 0xe0,
0x5d, 0x30, 0x4e, 0x3d, 0xe6, 0xc5, 0x1f, 0x49, 0xef, 0x6a, 0xa1, 0x37, 0x48, 0x73, 0xb1, 0x60,
0xfd, 0x85, 0x74, 0xc3, 0x55, 0xfc, 0xa4, 0x19, 0x3f, 0x9a, 0x9b, 0xb1, 0x5d, 0x94, 0x71, 0x96,
0xea, 0xe7, 0x2b, 0xe1, 0x3f, 0x10, 0x34, 0xde, 0x0f, 0x87, 0x39, 0x09, 0x1f, 0xcd, 0x4d, 0xb8,
0x84, 0x86, 0x9f, 0xa7, 0x1c, 0x3b, 0xbf, 0x1b, 0xd0, 0xd8, 0x53, 0x50, 0xb5, 0xfa, 0xde, 0x11,
0x88, 0xf1, 0xd7, 0x08, 0x56, 0xb2, 0xaa, 0xc4, 0xcb, 0xea, 0xd7, 0xbc, 0xae, 0x1d, 0xa6, 0xde,
0x01, 0xf6, 0x7b, 0xfa, 0x1d, 0x60, 0x6d, 0x7d, 0xfe, 0xdb, 0x9f, 0xdf, 0x56, 0x6e, 0x5b, 0x37,
0xc5, 0x0b, 0xe2, 0x33, 0xd9, 0x4f, 0xba, 0x61, 0x14, 0x7c, 0x4c, 0x07, 0x3c, 0x76, 0xda, 0x4f,
0xd3, 0x57, 0x45, 0xbc, 0x83, 0xda, 0xf8, 0x19, 0x02, 0x63, 0x6a, 0x46, 0xe1, 0xad, 0xf9, 0x68,
0x2e, 0x8e, 0x32, 0xb3, 0xc4, 0xe8, 0xb0, 0xee, 0x26, 0x78, 0x6e, 0x61, 0x89, 0x47, 0xdc, 0xf3,
0x29, 0x34, 0x13, 0x30, 0x4e, 0xfb, 0x29, 0xfe, 0x0e, 0x41, 0x3d, 0x33, 0xb6, 0xf0, 0x02, 0xa9,
0xe7, 0xcd, 0x4b, 0xd3, 0x29, 0x6d, 0x2f, 0x1b, 0xe6, 0x0c, 0xba, 0x45, 0x6c, 0xe1, 0x2f, 0x11,
0xac, 0x48, 0xe5, 0xa6, 0x6c, 0x95, 0xc8, 0xbf, 0x14, 0x47, 0xaa, 0x66, 0x66, 0x31, 0x47, 0xa2,
0x66, 0x5f, 0x20, 0x58, 0xc9, 0xce, 0xcb, 0x45, 0x22, 0xca, 0x9d, 0xac, 0xe6, 0xc6, 0x05, 0x29,
0xdf, 0x17, 0xef, 0x44, 0xcd, 0x47, 0xbb, 0x44, 0xb5, 0x7e, 0x40, 0x50, 0xcf, 0xf4, 0x1b, 0xbc,
0x64, 0x63, 0x2a, 0x52, 0x72, 0x37, 0xc1, 0xb2, 0x6d, 0x6d, 0xe5, 0xd7, 0x26, 0x83, 0xc6, 0xd1,
0x33, 0x6c, 0x47, 0xcf, 0x66, 0xfc, 0x0d, 0x02, 0x98, 0x0c, 0x67, 0x7c, 0x6f, 0xa1, 0xb2, 0x67,
0x90, 0x15, 0x77, 0x1c, 0xeb, 0xf5, 0x04, 0x9d, 0x8d, 0xb7, 0x8a, 0x98, 0x4a, 0xa1, 0x09, 0xd2,
0x7e, 0x44, 0x70, 0x75, 0x7a, 0x72, 0xe3, 0x57, 0x16, 0x2b, 0x76, 0xe6, 0xc1, 0x60, 0xda, 0x65,
0xcd, 0x95, 0xbe, 0xb3, 0x28, 0x4b, 0x72, 0x28, 0xba, 0x42, 0x3d, 0xd3, 0xa4, 0x71, 0x31, 0x21,
0x45, 0xd5, 0xdc, 0x4e, 0x90, 0xbc, 0x6a, 0x2e, 0xc5, 0x97, 0x90, 0xfb, 0x57, 0x08, 0xea, 0x99,
0x27, 0xc4, 0x22, 0x9d, 0xe5, 0xbd, 0x35, 0xe6, 0x8a, 0x5d, 0x91, 0xd3, 0x5e, 0x0a, 0xd2, 0xde,
0xf7, 0x08, 0xae, 0x0d, 0x82, 0xd1, 0x5c, 0x0c, 0x7b, 0x66, 0x6e, 0xef, 0x3f, 0x16, 0x67, 0x1f,
0xa3, 0xc7, 0x5d, 0xe5, 0xe7, 0x06, 0x3e, 0x61, 0xae, 0x1d, 0x44, 0xae, 0xe3, 0x52, 0x96, 0x20,
0x73, 0xe4, 0x16, 0x09, 0xbd, 0xf8, 0xe2, 0xbf, 0xc1, 0xdd, 0xe4, 0xc7, 0xcf, 0x95, 0x97, 0x0f,
0xa4, 0xff, 0xbe, 0x1f, 0x8c, 0x87, 0xb6, 0x3e, 0xca, 0x4e, 0xce, 0xb0, 0x3f, 0xe8, 0x9c, 0x5c,
0x4e, 0x42, 0xbd, 0xf6, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x55, 0x18, 0xc5, 0x74, 0xc7, 0x0e,
0x00, 0x00,
}