Repository: beam Updated Branches: refs/heads/master 6dd90d89d -> 8e1caea64
http://git-wip-us.apache.org/repos/asf/beam/blob/5fba6326/sdks/go/pkg/beam/model/org_apache_beam_runner_v1/beam_artifact_api.pb.go ---------------------------------------------------------------------- diff --git a/sdks/go/pkg/beam/model/org_apache_beam_runner_v1/beam_artifact_api.pb.go b/sdks/go/pkg/beam/model/org_apache_beam_runner_v1/beam_artifact_api.pb.go deleted file mode 100644 index 62c29b5..0000000 --- a/sdks/go/pkg/beam/model/org_apache_beam_runner_v1/beam_artifact_api.pb.go +++ /dev/null @@ -1,729 +0,0 @@ -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You under the Apache License, Version 2.0 -// (the "License"); you may not use this file except in compliance with -// the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -// Code generated by protoc-gen-go. DO NOT EDIT. -// source: beam_artifact_api.proto - -/* -Package org_apache_beam_runner_api_v1 is a generated protocol buffer package. - -It is generated from these files: - beam_artifact_api.proto - -It has these top-level messages: - ArtifactMetadata - Manifest - ProxyManifest - GetManifestRequest - GetManifestResponse - GetArtifactRequest - ArtifactChunk - PutArtifactRequest - PutArtifactResponse - CommitManifestRequest - CommitManifestResponse -*/ -package org_apache_beam_runner_api_v1 - -import proto "github.com/golang/protobuf/proto" -import fmt "fmt" -import math "math" - -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 - -// An artifact identifier and associated metadata. -type ArtifactMetadata struct { - // (Required) The name of the artifact. - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - // (Optional) The Unix-like permissions of the artifact - Permissions uint32 `protobuf:"varint,2,opt,name=permissions" json:"permissions,omitempty"` - // (Optional) The base64-encoded md5 checksum of the artifact. Used, among other things, by - // harness boot code to validate the integrity of the artifact. - Md5 string `protobuf:"bytes,3,opt,name=md5" json:"md5,omitempty"` -} - -func (m *ArtifactMetadata) Reset() { *m = ArtifactMetadata{} } -func (m *ArtifactMetadata) String() string { return proto.CompactTextString(m) } -func (*ArtifactMetadata) ProtoMessage() {} -func (*ArtifactMetadata) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } - -func (m *ArtifactMetadata) GetName() string { - if m != nil { - return m.Name - } - return "" -} - -func (m *ArtifactMetadata) GetPermissions() uint32 { - if m != nil { - return m.Permissions - } - return 0 -} - -func (m *ArtifactMetadata) GetMd5() string { - if m != nil { - return m.Md5 - } - return "" -} - -// A collection of artifacts. -type Manifest struct { - Artifact []*ArtifactMetadata `protobuf:"bytes,1,rep,name=artifact" json:"artifact,omitempty"` -} - -func (m *Manifest) Reset() { *m = Manifest{} } -func (m *Manifest) String() string { return proto.CompactTextString(m) } -func (*Manifest) ProtoMessage() {} -func (*Manifest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } - -func (m *Manifest) GetArtifact() []*ArtifactMetadata { - if m != nil { - return m.Artifact - } - return nil -} - -// A manifest with location information. -type ProxyManifest struct { - Manifest *Manifest `protobuf:"bytes,1,opt,name=manifest" json:"manifest,omitempty"` - Location []*ProxyManifest_Location `protobuf:"bytes,2,rep,name=location" json:"location,omitempty"` -} - -func (m *ProxyManifest) Reset() { *m = ProxyManifest{} } -func (m *ProxyManifest) String() string { return proto.CompactTextString(m) } -func (*ProxyManifest) ProtoMessage() {} -func (*ProxyManifest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } - -func (m *ProxyManifest) GetManifest() *Manifest { - if m != nil { - return m.Manifest - } - return nil -} - -func (m *ProxyManifest) GetLocation() []*ProxyManifest_Location { - if m != nil { - return m.Location - } - return nil -} - -type ProxyManifest_Location struct { - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - Uri string `protobuf:"bytes,2,opt,name=uri" json:"uri,omitempty"` -} - -func (m *ProxyManifest_Location) Reset() { *m = ProxyManifest_Location{} } -func (m *ProxyManifest_Location) String() string { return proto.CompactTextString(m) } -func (*ProxyManifest_Location) ProtoMessage() {} -func (*ProxyManifest_Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} } - -func (m *ProxyManifest_Location) GetName() string { - if m != nil { - return m.Name - } - return "" -} - -func (m *ProxyManifest_Location) GetUri() string { - if m != nil { - return m.Uri - } - return "" -} - -// A request to get the manifest of a Job. -type GetManifestRequest struct { -} - -func (m *GetManifestRequest) Reset() { *m = GetManifestRequest{} } -func (m *GetManifestRequest) String() string { return proto.CompactTextString(m) } -func (*GetManifestRequest) ProtoMessage() {} -func (*GetManifestRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } - -// A response containing a job manifest. -type GetManifestResponse struct { - Manifest *Manifest `protobuf:"bytes,1,opt,name=manifest" json:"manifest,omitempty"` -} - -func (m *GetManifestResponse) Reset() { *m = GetManifestResponse{} } -func (m *GetManifestResponse) String() string { return proto.CompactTextString(m) } -func (*GetManifestResponse) ProtoMessage() {} -func (*GetManifestResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } - -func (m *GetManifestResponse) GetManifest() *Manifest { - if m != nil { - return m.Manifest - } - return nil -} - -// A request to get an artifact. The artifact must be present in the manifest for the job. -type GetArtifactRequest struct { - // (Required) The name of the artifact to retrieve. - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` -} - -func (m *GetArtifactRequest) Reset() { *m = GetArtifactRequest{} } -func (m *GetArtifactRequest) String() string { return proto.CompactTextString(m) } -func (*GetArtifactRequest) ProtoMessage() {} -func (*GetArtifactRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } - -func (m *GetArtifactRequest) GetName() string { - if m != nil { - return m.Name - } - return "" -} - -// Part of an artifact. -type ArtifactChunk struct { - Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` -} - -func (m *ArtifactChunk) Reset() { *m = ArtifactChunk{} } -func (m *ArtifactChunk) String() string { return proto.CompactTextString(m) } -func (*ArtifactChunk) ProtoMessage() {} -func (*ArtifactChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } - -func (m *ArtifactChunk) GetData() []byte { - if m != nil { - return m.Data - } - return nil -} - -// A request to stage an artifact. -type PutArtifactRequest struct { - // (Required) - // - // Types that are valid to be assigned to Content: - // *PutArtifactRequest_Metadata - // *PutArtifactRequest_Data - Content isPutArtifactRequest_Content `protobuf_oneof:"content"` -} - -func (m *PutArtifactRequest) Reset() { *m = PutArtifactRequest{} } -func (m *PutArtifactRequest) String() string { return proto.CompactTextString(m) } -func (*PutArtifactRequest) ProtoMessage() {} -func (*PutArtifactRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } - -type isPutArtifactRequest_Content interface { - isPutArtifactRequest_Content() -} - -type PutArtifactRequest_Metadata struct { - Metadata *ArtifactMetadata `protobuf:"bytes,1,opt,name=metadata,oneof"` -} -type PutArtifactRequest_Data struct { - Data *ArtifactChunk `protobuf:"bytes,2,opt,name=data,oneof"` -} - -func (*PutArtifactRequest_Metadata) isPutArtifactRequest_Content() {} -func (*PutArtifactRequest_Data) isPutArtifactRequest_Content() {} - -func (m *PutArtifactRequest) GetContent() isPutArtifactRequest_Content { - if m != nil { - return m.Content - } - return nil -} - -func (m *PutArtifactRequest) GetMetadata() *ArtifactMetadata { - if x, ok := m.GetContent().(*PutArtifactRequest_Metadata); ok { - return x.Metadata - } - return nil -} - -func (m *PutArtifactRequest) GetData() *ArtifactChunk { - if x, ok := m.GetContent().(*PutArtifactRequest_Data); ok { - return x.Data - } - return nil -} - -// XXX_OneofFuncs is for the internal use of the proto package. -func (*PutArtifactRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { - return _PutArtifactRequest_OneofMarshaler, _PutArtifactRequest_OneofUnmarshaler, _PutArtifactRequest_OneofSizer, []interface{}{ - (*PutArtifactRequest_Metadata)(nil), - (*PutArtifactRequest_Data)(nil), - } -} - -func _PutArtifactRequest_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { - m := msg.(*PutArtifactRequest) - // content - switch x := m.Content.(type) { - case *PutArtifactRequest_Metadata: - b.EncodeVarint(1<<3 | proto.WireBytes) - if err := b.EncodeMessage(x.Metadata); err != nil { - return err - } - case *PutArtifactRequest_Data: - b.EncodeVarint(2<<3 | proto.WireBytes) - if err := b.EncodeMessage(x.Data); err != nil { - return err - } - case nil: - default: - return fmt.Errorf("PutArtifactRequest.Content has unexpected type %T", x) - } - return nil -} - -func _PutArtifactRequest_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { - m := msg.(*PutArtifactRequest) - switch tag { - case 1: // content.metadata - if wire != proto.WireBytes { - return true, proto.ErrInternalBadWireType - } - msg := new(ArtifactMetadata) - err := b.DecodeMessage(msg) - m.Content = &PutArtifactRequest_Metadata{msg} - return true, err - case 2: // content.data - if wire != proto.WireBytes { - return true, proto.ErrInternalBadWireType - } - msg := new(ArtifactChunk) - err := b.DecodeMessage(msg) - m.Content = &PutArtifactRequest_Data{msg} - return true, err - default: - return false, nil - } -} - -func _PutArtifactRequest_OneofSizer(msg proto.Message) (n int) { - m := msg.(*PutArtifactRequest) - // content - switch x := m.Content.(type) { - case *PutArtifactRequest_Metadata: - s := proto.Size(x.Metadata) - n += proto.SizeVarint(1<<3 | proto.WireBytes) - n += proto.SizeVarint(uint64(s)) - n += s - case *PutArtifactRequest_Data: - s := proto.Size(x.Data) - n += proto.SizeVarint(2<<3 | proto.WireBytes) - n += proto.SizeVarint(uint64(s)) - n += s - case nil: - default: - panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) - } - return n -} - -type PutArtifactResponse struct { -} - -func (m *PutArtifactResponse) Reset() { *m = PutArtifactResponse{} } -func (m *PutArtifactResponse) String() string { return proto.CompactTextString(m) } -func (*PutArtifactResponse) ProtoMessage() {} -func (*PutArtifactResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } - -// A request to commit the manifest for a Job. All artifacts must have been successfully uploaded -// before this call is made. -type CommitManifestRequest struct { - // (Required) The manifest to commit. - Manifest *Manifest `protobuf:"bytes,1,opt,name=manifest" json:"manifest,omitempty"` -} - -func (m *CommitManifestRequest) Reset() { *m = CommitManifestRequest{} } -func (m *CommitManifestRequest) String() string { return proto.CompactTextString(m) } -func (*CommitManifestRequest) ProtoMessage() {} -func (*CommitManifestRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } - -func (m *CommitManifestRequest) GetManifest() *Manifest { - if m != nil { - return m.Manifest - } - return nil -} - -// The result of committing a manifest. -type CommitManifestResponse struct { - // (Required) An opaque token representing the entirety of the staged artifacts. - StagingToken string `protobuf:"bytes,1,opt,name=staging_token,json=stagingToken" json:"staging_token,omitempty"` -} - -func (m *CommitManifestResponse) Reset() { *m = CommitManifestResponse{} } -func (m *CommitManifestResponse) String() string { return proto.CompactTextString(m) } -func (*CommitManifestResponse) ProtoMessage() {} -func (*CommitManifestResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } - -func (m *CommitManifestResponse) GetStagingToken() string { - if m != nil { - return m.StagingToken - } - return "" -} - -func init() { - proto.RegisterType((*ArtifactMetadata)(nil), "org.apache.beam.runner_api.v1.ArtifactMetadata") - proto.RegisterType((*Manifest)(nil), "org.apache.beam.runner_api.v1.Manifest") - proto.RegisterType((*ProxyManifest)(nil), "org.apache.beam.runner_api.v1.ProxyManifest") - proto.RegisterType((*ProxyManifest_Location)(nil), "org.apache.beam.runner_api.v1.ProxyManifest.Location") - proto.RegisterType((*GetManifestRequest)(nil), "org.apache.beam.runner_api.v1.GetManifestRequest") - proto.RegisterType((*GetManifestResponse)(nil), "org.apache.beam.runner_api.v1.GetManifestResponse") - proto.RegisterType((*GetArtifactRequest)(nil), "org.apache.beam.runner_api.v1.GetArtifactRequest") - proto.RegisterType((*ArtifactChunk)(nil), "org.apache.beam.runner_api.v1.ArtifactChunk") - proto.RegisterType((*PutArtifactRequest)(nil), "org.apache.beam.runner_api.v1.PutArtifactRequest") - proto.RegisterType((*PutArtifactResponse)(nil), "org.apache.beam.runner_api.v1.PutArtifactResponse") - proto.RegisterType((*CommitManifestRequest)(nil), "org.apache.beam.runner_api.v1.CommitManifestRequest") - proto.RegisterType((*CommitManifestResponse)(nil), "org.apache.beam.runner_api.v1.CommitManifestResponse") -} - -// 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 ArtifactStagingService service - -type ArtifactStagingServiceClient interface { - // Stage an artifact to be available during job execution. The first request must contain the - // name of the artifact. All future requests must contain sequential chunks of the content of - // the artifact. - PutArtifact(ctx context.Context, opts ...grpc.CallOption) (ArtifactStagingService_PutArtifactClient, error) - // Commit the manifest for a Job. All artifacts must have been successfully uploaded - // before this call is made. - // - // Throws error INVALID_ARGUMENT if not all of the members of the manifest are present - CommitManifest(ctx context.Context, in *CommitManifestRequest, opts ...grpc.CallOption) (*CommitManifestResponse, error) -} - -type artifactStagingServiceClient struct { - cc *grpc.ClientConn -} - -func NewArtifactStagingServiceClient(cc *grpc.ClientConn) ArtifactStagingServiceClient { - return &artifactStagingServiceClient{cc} -} - -func (c *artifactStagingServiceClient) PutArtifact(ctx context.Context, opts ...grpc.CallOption) (ArtifactStagingService_PutArtifactClient, error) { - stream, err := grpc.NewClientStream(ctx, &_ArtifactStagingService_serviceDesc.Streams[0], c.cc, "/org.apache.beam.runner_api.v1.ArtifactStagingService/PutArtifact", opts...) - if err != nil { - return nil, err - } - x := &artifactStagingServicePutArtifactClient{stream} - return x, nil -} - -type ArtifactStagingService_PutArtifactClient interface { - Send(*PutArtifactRequest) error - CloseAndRecv() (*PutArtifactResponse, error) - grpc.ClientStream -} - -type artifactStagingServicePutArtifactClient struct { - grpc.ClientStream -} - -func (x *artifactStagingServicePutArtifactClient) Send(m *PutArtifactRequest) error { - return x.ClientStream.SendMsg(m) -} - -func (x *artifactStagingServicePutArtifactClient) CloseAndRecv() (*PutArtifactResponse, error) { - if err := x.ClientStream.CloseSend(); err != nil { - return nil, err - } - m := new(PutArtifactResponse) - if err := x.ClientStream.RecvMsg(m); err != nil { - return nil, err - } - return m, nil -} - -func (c *artifactStagingServiceClient) CommitManifest(ctx context.Context, in *CommitManifestRequest, opts ...grpc.CallOption) (*CommitManifestResponse, error) { - out := new(CommitManifestResponse) - err := grpc.Invoke(ctx, "/org.apache.beam.runner_api.v1.ArtifactStagingService/CommitManifest", in, out, c.cc, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -// Server API for ArtifactStagingService service - -type ArtifactStagingServiceServer interface { - // Stage an artifact to be available during job execution. The first request must contain the - // name of the artifact. All future requests must contain sequential chunks of the content of - // the artifact. - PutArtifact(ArtifactStagingService_PutArtifactServer) error - // Commit the manifest for a Job. All artifacts must have been successfully uploaded - // before this call is made. - // - // Throws error INVALID_ARGUMENT if not all of the members of the manifest are present - CommitManifest(context.Context, *CommitManifestRequest) (*CommitManifestResponse, error) -} - -func RegisterArtifactStagingServiceServer(s *grpc.Server, srv ArtifactStagingServiceServer) { - s.RegisterService(&_ArtifactStagingService_serviceDesc, srv) -} - -func _ArtifactStagingService_PutArtifact_Handler(srv interface{}, stream grpc.ServerStream) error { - return srv.(ArtifactStagingServiceServer).PutArtifact(&artifactStagingServicePutArtifactServer{stream}) -} - -type ArtifactStagingService_PutArtifactServer interface { - SendAndClose(*PutArtifactResponse) error - Recv() (*PutArtifactRequest, error) - grpc.ServerStream -} - -type artifactStagingServicePutArtifactServer struct { - grpc.ServerStream -} - -func (x *artifactStagingServicePutArtifactServer) SendAndClose(m *PutArtifactResponse) error { - return x.ServerStream.SendMsg(m) -} - -func (x *artifactStagingServicePutArtifactServer) Recv() (*PutArtifactRequest, error) { - m := new(PutArtifactRequest) - if err := x.ServerStream.RecvMsg(m); err != nil { - return nil, err - } - return m, nil -} - -func _ArtifactStagingService_CommitManifest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(CommitManifestRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ArtifactStagingServiceServer).CommitManifest(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/org.apache.beam.runner_api.v1.ArtifactStagingService/CommitManifest", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ArtifactStagingServiceServer).CommitManifest(ctx, req.(*CommitManifestRequest)) - } - return interceptor(ctx, in, info, handler) -} - -var _ArtifactStagingService_serviceDesc = grpc.ServiceDesc{ - ServiceName: "org.apache.beam.runner_api.v1.ArtifactStagingService", - HandlerType: (*ArtifactStagingServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "CommitManifest", - Handler: _ArtifactStagingService_CommitManifest_Handler, - }, - }, - Streams: []grpc.StreamDesc{ - { - StreamName: "PutArtifact", - Handler: _ArtifactStagingService_PutArtifact_Handler, - ClientStreams: true, - }, - }, - Metadata: "beam_artifact_api.proto", -} - -// Client API for ArtifactRetrievalService service - -type ArtifactRetrievalServiceClient interface { - // Get the manifest for the job - GetManifest(ctx context.Context, in *GetManifestRequest, opts ...grpc.CallOption) (*GetManifestResponse, error) - // Get an artifact staged for the job. The requested artifact must be within the manifest - GetArtifact(ctx context.Context, in *GetArtifactRequest, opts ...grpc.CallOption) (ArtifactRetrievalService_GetArtifactClient, error) -} - -type artifactRetrievalServiceClient struct { - cc *grpc.ClientConn -} - -func NewArtifactRetrievalServiceClient(cc *grpc.ClientConn) ArtifactRetrievalServiceClient { - return &artifactRetrievalServiceClient{cc} -} - -func (c *artifactRetrievalServiceClient) GetManifest(ctx context.Context, in *GetManifestRequest, opts ...grpc.CallOption) (*GetManifestResponse, error) { - out := new(GetManifestResponse) - err := grpc.Invoke(ctx, "/org.apache.beam.runner_api.v1.ArtifactRetrievalService/GetManifest", in, out, c.cc, opts...) - if err != nil { - return nil, err - } - return out, nil -} - -func (c *artifactRetrievalServiceClient) GetArtifact(ctx context.Context, in *GetArtifactRequest, opts ...grpc.CallOption) (ArtifactRetrievalService_GetArtifactClient, error) { - stream, err := grpc.NewClientStream(ctx, &_ArtifactRetrievalService_serviceDesc.Streams[0], c.cc, "/org.apache.beam.runner_api.v1.ArtifactRetrievalService/GetArtifact", opts...) - if err != nil { - return nil, err - } - x := &artifactRetrievalServiceGetArtifactClient{stream} - if err := x.ClientStream.SendMsg(in); err != nil { - return nil, err - } - if err := x.ClientStream.CloseSend(); err != nil { - return nil, err - } - return x, nil -} - -type ArtifactRetrievalService_GetArtifactClient interface { - Recv() (*ArtifactChunk, error) - grpc.ClientStream -} - -type artifactRetrievalServiceGetArtifactClient struct { - grpc.ClientStream -} - -func (x *artifactRetrievalServiceGetArtifactClient) Recv() (*ArtifactChunk, error) { - m := new(ArtifactChunk) - if err := x.ClientStream.RecvMsg(m); err != nil { - return nil, err - } - return m, nil -} - -// Server API for ArtifactRetrievalService service - -type ArtifactRetrievalServiceServer interface { - // Get the manifest for the job - GetManifest(context.Context, *GetManifestRequest) (*GetManifestResponse, error) - // Get an artifact staged for the job. The requested artifact must be within the manifest - GetArtifact(*GetArtifactRequest, ArtifactRetrievalService_GetArtifactServer) error -} - -func RegisterArtifactRetrievalServiceServer(s *grpc.Server, srv ArtifactRetrievalServiceServer) { - s.RegisterService(&_ArtifactRetrievalService_serviceDesc, srv) -} - -func _ArtifactRetrievalService_GetManifest_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(GetManifestRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(ArtifactRetrievalServiceServer).GetManifest(ctx, in) - } - info := &grpc.UnaryServerInfo{ - Server: srv, - FullMethod: "/org.apache.beam.runner_api.v1.ArtifactRetrievalService/GetManifest", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(ArtifactRetrievalServiceServer).GetManifest(ctx, req.(*GetManifestRequest)) - } - return interceptor(ctx, in, info, handler) -} - -func _ArtifactRetrievalService_GetArtifact_Handler(srv interface{}, stream grpc.ServerStream) error { - m := new(GetArtifactRequest) - if err := stream.RecvMsg(m); err != nil { - return err - } - return srv.(ArtifactRetrievalServiceServer).GetArtifact(m, &artifactRetrievalServiceGetArtifactServer{stream}) -} - -type ArtifactRetrievalService_GetArtifactServer interface { - Send(*ArtifactChunk) error - grpc.ServerStream -} - -type artifactRetrievalServiceGetArtifactServer struct { - grpc.ServerStream -} - -func (x *artifactRetrievalServiceGetArtifactServer) Send(m *ArtifactChunk) error { - return x.ServerStream.SendMsg(m) -} - -var _ArtifactRetrievalService_serviceDesc = grpc.ServiceDesc{ - ServiceName: "org.apache.beam.runner_api.v1.ArtifactRetrievalService", - HandlerType: (*ArtifactRetrievalServiceServer)(nil), - Methods: []grpc.MethodDesc{ - { - MethodName: "GetManifest", - Handler: _ArtifactRetrievalService_GetManifest_Handler, - }, - }, - Streams: []grpc.StreamDesc{ - { - StreamName: "GetArtifact", - Handler: _ArtifactRetrievalService_GetArtifact_Handler, - ServerStreams: true, - }, - }, - Metadata: "beam_artifact_api.proto", -} - -func init() { proto.RegisterFile("beam_artifact_api.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 540 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x95, 0x5f, 0x6b, 0xdb, 0x3c, - 0x14, 0xc6, 0xeb, 0xe4, 0xe5, 0x9d, 0x73, 0xdc, 0x8c, 0xa0, 0xae, 0x9d, 0x09, 0x0c, 0x82, 0x3a, - 0x58, 0x2e, 0x86, 0xd7, 0xa4, 0xcb, 0xe5, 0x2e, 0x9a, 0x5c, 0xac, 0xb0, 0x05, 0x3a, 0x77, 0x30, - 0x28, 0x83, 0xa0, 0x3a, 0x6a, 0x2a, 0x52, 0x49, 0x9e, 0xac, 0x98, 0xed, 0x62, 0x37, 0xfb, 0x02, - 0xfb, 0x2e, 0xfb, 0x36, 0xfb, 0x36, 0xc3, 0xb2, 0xec, 0xe5, 0x1f, 0x73, 0x03, 0xbd, 0x3b, 0x9c, - 0x9c, 0xe7, 0xd1, 0xcf, 0xcf, 0x91, 0x08, 0x3c, 0xbd, 0xa6, 0x84, 0x4f, 0x88, 0xd2, 0xec, 0x86, - 0x44, 0x7a, 0x42, 0x62, 0x16, 0xc4, 0x4a, 0x6a, 0x89, 0x9e, 0x49, 0x35, 0x0b, 0x48, 0x4c, 0xa2, - 0x5b, 0x1a, 0x64, 0x33, 0x81, 0x5a, 0x08, 0x41, 0x95, 0x99, 0x48, 0x7b, 0xf8, 0x0a, 0x5a, 0x67, - 0x56, 0x34, 0xa6, 0x9a, 0x4c, 0x89, 0x26, 0x08, 0xc1, 0x7f, 0x82, 0x70, 0xea, 0x3b, 0x1d, 0xa7, - 0xdb, 0x08, 0x4d, 0x8d, 0x3a, 0xe0, 0xc5, 0x54, 0x71, 0x96, 0x24, 0x4c, 0x8a, 0xc4, 0xaf, 0x75, - 0x9c, 0x6e, 0x33, 0x5c, 0x6e, 0xa1, 0x16, 0xd4, 0xf9, 0x74, 0xe0, 0xd7, 0x8d, 0x28, 0x2b, 0xf1, - 0x27, 0x70, 0xc7, 0x44, 0xb0, 0x1b, 0x9a, 0x68, 0xf4, 0x0e, 0xdc, 0x02, 0xce, 0x77, 0x3a, 0xf5, - 0xae, 0xd7, 0x7f, 0x15, 0xfc, 0x93, 0x2c, 0x58, 0xc7, 0x0a, 0x4b, 0x03, 0xfc, 0xdb, 0x81, 0xe6, - 0x85, 0x92, 0x5f, 0xbf, 0x95, 0xf6, 0x23, 0x70, 0xb9, 0xad, 0x0d, 0xb6, 0xd7, 0x7f, 0x51, 0x61, - 0x5f, 0x48, 0xc3, 0x52, 0x88, 0x3e, 0x80, 0x7b, 0x27, 0x23, 0xa2, 0x99, 0x14, 0x7e, 0xcd, 0x30, - 0x0e, 0x2a, 0x4c, 0x56, 0x20, 0x82, 0xf7, 0x56, 0x1c, 0x96, 0x36, 0xed, 0x13, 0x70, 0x8b, 0xee, - 0xd6, 0x58, 0x5b, 0x50, 0x5f, 0x28, 0x66, 0xe2, 0x6c, 0x84, 0x59, 0x89, 0x9f, 0x00, 0x7a, 0x4b, - 0x75, 0x49, 0x47, 0xbf, 0x2c, 0x68, 0xa2, 0xf1, 0x15, 0x1c, 0xac, 0x74, 0x93, 0x58, 0x8a, 0x84, - 0x3e, 0xc8, 0x67, 0xe3, 0xae, 0x39, 0xb1, 0x88, 0xdb, 0x9e, 0xb8, 0x8d, 0x16, 0x1f, 0x43, 0xb3, - 0x18, 0x1b, 0xdd, 0x2e, 0xc4, 0x3c, 0x1b, 0xca, 0x56, 0x63, 0x86, 0xf6, 0x43, 0x53, 0xe3, 0x5f, - 0x0e, 0xa0, 0x8b, 0xc5, 0x86, 0xdf, 0x18, 0x5c, 0x6e, 0x37, 0x69, 0x51, 0x77, 0xbd, 0x00, 0xe7, - 0x7b, 0x61, 0x69, 0x81, 0x86, 0xf6, 0xe4, 0x9a, 0xb1, 0x7a, 0x79, 0x4f, 0x2b, 0x43, 0x7d, 0xbe, - 0x97, 0x93, 0x0e, 0x1b, 0xf0, 0x28, 0x92, 0x42, 0x53, 0xa1, 0xf1, 0x21, 0x1c, 0xac, 0x30, 0xe7, - 0xf9, 0xe2, 0xcf, 0x70, 0x38, 0x92, 0x9c, 0xb3, 0xf5, 0x7d, 0x3c, 0x4c, 0xf0, 0x6f, 0xe0, 0x68, - 0xdd, 0xdd, 0xee, 0xf5, 0x18, 0x9a, 0x89, 0x26, 0x33, 0x26, 0x66, 0x13, 0x2d, 0xe7, 0x54, 0xd8, - 0x2d, 0xec, 0xdb, 0xe6, 0xc7, 0xac, 0xd7, 0xff, 0x59, 0x83, 0xa3, 0x82, 0xf8, 0x32, 0xff, 0xe1, - 0x92, 0xaa, 0x94, 0x45, 0x14, 0xa5, 0xe0, 0x2d, 0x7d, 0x0e, 0xea, 0x55, 0x5d, 0xe3, 0x8d, 0x75, - 0xb5, 0xfb, 0xbb, 0x48, 0x72, 0xea, 0xae, 0x83, 0xbe, 0xc3, 0xe3, 0xd5, 0x2f, 0x42, 0xaf, 0x2b, - 0x7c, 0xb6, 0xc6, 0xdb, 0x1e, 0xec, 0xa8, 0xca, 0x01, 0xfa, 0x3f, 0x6a, 0xe0, 0xff, 0xa5, 0xd2, - 0x8a, 0xd1, 0x94, 0xdc, 0x15, 0x99, 0x68, 0xf0, 0x96, 0x9e, 0x50, 0x65, 0x26, 0x9b, 0x8f, 0xb0, - 0x32, 0x93, 0x6d, 0x2f, 0x34, 0x36, 0xa7, 0xde, 0x7b, 0x13, 0x9b, 0x0f, 0xb1, 0xbd, 0xd3, 0xdd, - 0x3e, 0x71, 0x86, 0xa7, 0xf0, 0x7c, 0x5d, 0x90, 0x4c, 0xe7, 0x41, 0x24, 0x39, 0x97, 0xc2, 0x6a, - 0x83, 0xb4, 0x37, 0xf4, 0x0a, 0xe1, 0x59, 0xcc, 0xae, 0xff, 0x37, 0x7f, 0x16, 0xa7, 0x7f, 0x02, - 0x00, 0x00, 0xff, 0xff, 0x72, 0x5b, 0xc8, 0xd5, 0x47, 0x06, 0x00, 0x00, -} http://git-wip-us.apache.org/repos/asf/beam/blob/5fba6326/sdks/go/pkg/beam/provision/provison.go ---------------------------------------------------------------------- diff --git a/sdks/go/pkg/beam/provision/provison.go b/sdks/go/pkg/beam/provision/provison.go index efc418f..4fbfd23 100644 --- a/sdks/go/pkg/beam/provision/provison.go +++ b/sdks/go/pkg/beam/provision/provison.go @@ -24,7 +24,7 @@ import ( "time" - pb "github.com/apache/beam/sdks/go/pkg/beam/model/org_apache_beam_fn_v1" + pb "github.com/apache/beam/sdks/go/pkg/beam/model/fnexecution_v1" "github.com/apache/beam/sdks/go/pkg/beam/util/grpcx" "github.com/golang/protobuf/jsonpb" google_protobuf "github.com/golang/protobuf/ptypes/struct"
