pulumi/sdk/proto/go/languages.pb.go
joeduffy fbfca58a3f Implement components
This change implements core support for "components" in the Pulumi
Fabric.  This work is described further in pulumi/pulumi#340, where
we are still discussing some of the finer points.

In a nutshell, resources no longer imply external providers.  It's
entirely possible to have a resource that logically represents
something but without having a physical manifestation that needs to
be tracked and managed by our typical CRUD operations.

For example, the aws/serverless/Function helper is one such type.
It aggregates Lambda-related resources and exposes a nice interface.
All of the Pulumi Cloud Framework resources are also examples.

To indicate that a resource does participate in the usual CRUD resource
provider, it simply derives from ExternalResource instead of Resource.

All resources now have the ability to adopt children.  This is purely
a metadata/tagging thing, and will help us roll up displays, provide
attribution to the developer, and even hide aspects of the resource
graph as appropriate (e.g., when they are implementation details).

Our use of this capability is ultra limited right now; in fact, the
only place we display children is in the CLI output.  For instance:

    + aws:serverless:Function: (create)
      [urn=urn:pulumi:demo::serverless::aws:serverless:Function::mylambda]
      => urn:pulumi:demo::serverless::aws:iam/role:Role::mylambda-iamrole
      => urn:pulumi:demo::serverless::aws:iam/rolePolicyAttachment:RolePolicyAttachment::mylambda-iampolicy-0
      => urn:pulumi:demo::serverless::aws:lambda/function:Function::mylambda

The bit indicating whether a resource is external or not is tracked
in the resulting checkpoint file, along with any of its children.
2017-10-14 18:30:59 -07:00

406 lines
14 KiB
Go

// Code generated by protoc-gen-go.
// source: languages.proto
// DO NOT EDIT!
package pulumirpc
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/struct"
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
// RunRequest asks the interpreter to execute a program.
type RunRequest struct {
Pwd string `protobuf:"bytes,1,opt,name=pwd" json:"pwd,omitempty"`
Program string `protobuf:"bytes,2,opt,name=program" json:"program,omitempty"`
Args []string `protobuf:"bytes,3,rep,name=args" json:"args,omitempty"`
Config map[string]string `protobuf:"bytes,4,rep,name=config" json:"config,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
DryRun bool `protobuf:"varint,5,opt,name=dryRun" json:"dryRun,omitempty"`
Parallel int32 `protobuf:"varint,6,opt,name=parallel" json:"parallel,omitempty"`
}
func (m *RunRequest) Reset() { *m = RunRequest{} }
func (m *RunRequest) String() string { return proto.CompactTextString(m) }
func (*RunRequest) ProtoMessage() {}
func (*RunRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{0} }
func (m *RunRequest) GetPwd() string {
if m != nil {
return m.Pwd
}
return ""
}
func (m *RunRequest) GetProgram() string {
if m != nil {
return m.Program
}
return ""
}
func (m *RunRequest) GetArgs() []string {
if m != nil {
return m.Args
}
return nil
}
func (m *RunRequest) GetConfig() map[string]string {
if m != nil {
return m.Config
}
return nil
}
func (m *RunRequest) GetDryRun() bool {
if m != nil {
return m.DryRun
}
return false
}
func (m *RunRequest) GetParallel() int32 {
if m != nil {
return m.Parallel
}
return 0
}
// RunResponse is the response back from the interpreter/source back to the monitor.
type RunResponse struct {
Error string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"`
}
func (m *RunResponse) Reset() { *m = RunResponse{} }
func (m *RunResponse) String() string { return proto.CompactTextString(m) }
func (*RunResponse) ProtoMessage() {}
func (*RunResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{1} }
func (m *RunResponse) GetError() string {
if m != nil {
return m.Error
}
return ""
}
// NewResourceRequest contains information about a resource object that was newly allocated.
type NewResourceRequest struct {
Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
Children []string `protobuf:"bytes,3,rep,name=children" json:"children,omitempty"`
External bool `protobuf:"varint,4,opt,name=external" json:"external,omitempty"`
Object *google_protobuf.Struct `protobuf:"bytes,5,opt,name=object" json:"object,omitempty"`
}
func (m *NewResourceRequest) Reset() { *m = NewResourceRequest{} }
func (m *NewResourceRequest) String() string { return proto.CompactTextString(m) }
func (*NewResourceRequest) ProtoMessage() {}
func (*NewResourceRequest) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{2} }
func (m *NewResourceRequest) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *NewResourceRequest) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *NewResourceRequest) GetChildren() []string {
if m != nil {
return m.Children
}
return nil
}
func (m *NewResourceRequest) GetExternal() bool {
if m != nil {
return m.External
}
return false
}
func (m *NewResourceRequest) GetObject() *google_protobuf.Struct {
if m != nil {
return m.Object
}
return nil
}
// NewResourceResponse reflects back the properties initialized during creation, if applicable.
type NewResourceResponse struct {
Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
Urn string `protobuf:"bytes,2,opt,name=urn" json:"urn,omitempty"`
Object *google_protobuf.Struct `protobuf:"bytes,3,opt,name=object" json:"object,omitempty"`
Stable bool `protobuf:"varint,4,opt,name=stable" json:"stable,omitempty"`
Stables []string `protobuf:"bytes,5,rep,name=stables" json:"stables,omitempty"`
}
func (m *NewResourceResponse) Reset() { *m = NewResourceResponse{} }
func (m *NewResourceResponse) String() string { return proto.CompactTextString(m) }
func (*NewResourceResponse) ProtoMessage() {}
func (*NewResourceResponse) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{3} }
func (m *NewResourceResponse) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *NewResourceResponse) GetUrn() string {
if m != nil {
return m.Urn
}
return ""
}
func (m *NewResourceResponse) GetObject() *google_protobuf.Struct {
if m != nil {
return m.Object
}
return nil
}
func (m *NewResourceResponse) GetStable() bool {
if m != nil {
return m.Stable
}
return false
}
func (m *NewResourceResponse) GetStables() []string {
if m != nil {
return m.Stables
}
return nil
}
func init() {
proto.RegisterType((*RunRequest)(nil), "pulumirpc.RunRequest")
proto.RegisterType((*RunResponse)(nil), "pulumirpc.RunResponse")
proto.RegisterType((*NewResourceRequest)(nil), "pulumirpc.NewResourceRequest")
proto.RegisterType((*NewResourceResponse)(nil), "pulumirpc.NewResourceResponse")
}
// 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 LanguageRuntime service
type LanguageRuntimeClient interface {
Run(ctx context.Context, in *RunRequest, opts ...grpc.CallOption) (*RunResponse, error)
}
type languageRuntimeClient struct {
cc *grpc.ClientConn
}
func NewLanguageRuntimeClient(cc *grpc.ClientConn) LanguageRuntimeClient {
return &languageRuntimeClient{cc}
}
func (c *languageRuntimeClient) Run(ctx context.Context, in *RunRequest, opts ...grpc.CallOption) (*RunResponse, error) {
out := new(RunResponse)
err := grpc.Invoke(ctx, "/pulumirpc.LanguageRuntime/Run", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for LanguageRuntime service
type LanguageRuntimeServer interface {
Run(context.Context, *RunRequest) (*RunResponse, error)
}
func RegisterLanguageRuntimeServer(s *grpc.Server, srv LanguageRuntimeServer) {
s.RegisterService(&_LanguageRuntime_serviceDesc, srv)
}
func _LanguageRuntime_Run_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(RunRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(LanguageRuntimeServer).Run(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.LanguageRuntime/Run",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(LanguageRuntimeServer).Run(ctx, req.(*RunRequest))
}
return interceptor(ctx, in, info, handler)
}
var _LanguageRuntime_serviceDesc = grpc.ServiceDesc{
ServiceName: "pulumirpc.LanguageRuntime",
HandlerType: (*LanguageRuntimeServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Run",
Handler: _LanguageRuntime_Run_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "languages.proto",
}
// Client API for ResourceMonitor service
type ResourceMonitorClient interface {
Invoke(ctx context.Context, in *InvokeRequest, opts ...grpc.CallOption) (*InvokeResponse, error)
NewResource(ctx context.Context, in *NewResourceRequest, opts ...grpc.CallOption) (*NewResourceResponse, error)
}
type resourceMonitorClient struct {
cc *grpc.ClientConn
}
func NewResourceMonitorClient(cc *grpc.ClientConn) ResourceMonitorClient {
return &resourceMonitorClient{cc}
}
func (c *resourceMonitorClient) Invoke(ctx context.Context, in *InvokeRequest, opts ...grpc.CallOption) (*InvokeResponse, error) {
out := new(InvokeResponse)
err := grpc.Invoke(ctx, "/pulumirpc.ResourceMonitor/Invoke", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *resourceMonitorClient) NewResource(ctx context.Context, in *NewResourceRequest, opts ...grpc.CallOption) (*NewResourceResponse, error) {
out := new(NewResourceResponse)
err := grpc.Invoke(ctx, "/pulumirpc.ResourceMonitor/NewResource", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for ResourceMonitor service
type ResourceMonitorServer interface {
Invoke(context.Context, *InvokeRequest) (*InvokeResponse, error)
NewResource(context.Context, *NewResourceRequest) (*NewResourceResponse, error)
}
func RegisterResourceMonitorServer(s *grpc.Server, srv ResourceMonitorServer) {
s.RegisterService(&_ResourceMonitor_serviceDesc, srv)
}
func _ResourceMonitor_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(InvokeRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ResourceMonitorServer).Invoke(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.ResourceMonitor/Invoke",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ResourceMonitorServer).Invoke(ctx, req.(*InvokeRequest))
}
return interceptor(ctx, in, info, handler)
}
func _ResourceMonitor_NewResource_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(NewResourceRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(ResourceMonitorServer).NewResource(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/pulumirpc.ResourceMonitor/NewResource",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(ResourceMonitorServer).NewResource(ctx, req.(*NewResourceRequest))
}
return interceptor(ctx, in, info, handler)
}
var _ResourceMonitor_serviceDesc = grpc.ServiceDesc{
ServiceName: "pulumirpc.ResourceMonitor",
HandlerType: (*ResourceMonitorServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Invoke",
Handler: _ResourceMonitor_Invoke_Handler,
},
{
MethodName: "NewResource",
Handler: _ResourceMonitor_NewResource_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "languages.proto",
}
func init() { proto.RegisterFile("languages.proto", fileDescriptor2) }
var fileDescriptor2 = []byte{
// 483 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x52, 0xc1, 0x8e, 0xd3, 0x30,
0x10, 0x25, 0x4d, 0x1b, 0xb6, 0x53, 0x69, 0x8b, 0x0c, 0x2c, 0x26, 0x02, 0x54, 0xca, 0xa5, 0xa7,
0x54, 0x2a, 0x12, 0x62, 0xb9, 0x70, 0x40, 0x1c, 0x56, 0x82, 0x3d, 0x98, 0x2f, 0x70, 0xd3, 0xd9,
0x10, 0xea, 0xda, 0xc1, 0xb1, 0xbb, 0xf4, 0x57, 0x38, 0x22, 0xf1, 0x8b, 0x9c, 0x91, 0x1d, 0xbb,
0x04, 0x58, 0x24, 0x6e, 0xf3, 0x66, 0xc6, 0x33, 0x6f, 0xde, 0x33, 0x4c, 0x05, 0x97, 0x95, 0xe5,
0x15, 0xb6, 0x45, 0xa3, 0x95, 0x51, 0x64, 0xdc, 0x58, 0x61, 0x77, 0xb5, 0x6e, 0xca, 0xfc, 0x51,
0xa5, 0x54, 0x25, 0x70, 0xe9, 0x0b, 0x6b, 0x7b, 0xb5, 0x6c, 0x8d, 0xb6, 0xa5, 0xe9, 0x1a, 0xf3,
0xd3, 0x46, 0xab, 0x7d, 0xbd, 0x41, 0xdd, 0xe1, 0xf9, 0x8f, 0x04, 0x80, 0x59, 0xc9, 0xf0, 0xb3,
0xc5, 0xd6, 0x90, 0x3b, 0x90, 0x36, 0xd7, 0x1b, 0x9a, 0xcc, 0x92, 0xc5, 0x98, 0xb9, 0x90, 0x50,
0xb8, 0xdd, 0x68, 0x55, 0x69, 0xbe, 0xa3, 0x03, 0x9f, 0x8d, 0x90, 0x10, 0x18, 0x72, 0x5d, 0xb5,
0x34, 0x9d, 0xa5, 0x8b, 0x31, 0xf3, 0x31, 0x39, 0x87, 0xac, 0x54, 0xf2, 0xaa, 0xae, 0xe8, 0x70,
0x96, 0x2e, 0x26, 0xab, 0xa7, 0xc5, 0x91, 0x58, 0xf1, 0x6b, 0x4d, 0xf1, 0xc6, 0xf7, 0xbc, 0x95,
0x46, 0x1f, 0x58, 0x78, 0x40, 0xce, 0x20, 0xdb, 0xe8, 0x03, 0xb3, 0x92, 0x8e, 0x66, 0xc9, 0xe2,
0x84, 0x05, 0x44, 0x72, 0x38, 0x69, 0xb8, 0xe6, 0x42, 0xa0, 0xa0, 0xd9, 0x2c, 0x59, 0x8c, 0xd8,
0x11, 0xe7, 0xe7, 0x30, 0xe9, 0x8d, 0x72, 0xec, 0xb7, 0x78, 0x88, 0xec, 0xb7, 0x78, 0x20, 0xf7,
0x60, 0xb4, 0xe7, 0xc2, 0x62, 0xe0, 0xde, 0x81, 0x57, 0x83, 0x97, 0xc9, 0xfc, 0x19, 0x4c, 0x3c,
0xa1, 0xb6, 0x51, 0xb2, 0x45, 0xd7, 0x88, 0x5a, 0x2b, 0x1d, 0x1e, 0x77, 0x60, 0xfe, 0x3d, 0x01,
0x72, 0x89, 0xd7, 0x0c, 0x5b, 0x65, 0x75, 0x89, 0x51, 0x25, 0x02, 0x43, 0x73, 0x68, 0x30, 0xf4,
0xfa, 0xd8, 0xe5, 0x24, 0xdf, 0xc5, 0x45, 0x3e, 0x76, 0xd4, 0xcb, 0x8f, 0xb5, 0xd8, 0x68, 0x94,
0x41, 0xa5, 0x23, 0x76, 0x35, 0xfc, 0x62, 0x50, 0x4b, 0x2e, 0xe8, 0xd0, 0x1f, 0x7c, 0xc4, 0x64,
0x09, 0x99, 0x5a, 0x7f, 0xc2, 0xd2, 0x78, 0x29, 0x26, 0xab, 0x07, 0x45, 0xe7, 0x69, 0x11, 0x3d,
0x2d, 0x3e, 0x78, 0x4f, 0x59, 0x68, 0x9b, 0x7f, 0x4d, 0xe0, 0xee, 0x6f, 0x3c, 0xc3, 0x55, 0xa7,
0x30, 0xa8, 0xa3, 0x9b, 0x83, 0x7a, 0xe3, 0x04, 0xb2, 0x5a, 0x06, 0x8e, 0x2e, 0xec, 0xad, 0x4a,
0xff, 0x6b, 0x95, 0xb3, 0xa9, 0x35, 0x7c, 0x2d, 0x30, 0xb0, 0x0e, 0xc8, 0xfd, 0x93, 0x2e, 0x6a,
0xe9, 0xc8, 0x9f, 0x1a, 0xe1, 0xea, 0x02, 0xa6, 0xef, 0xc2, 0x77, 0x65, 0x56, 0x9a, 0x7a, 0x87,
0xe4, 0x05, 0xa4, 0xce, 0xda, 0xfb, 0x37, 0xfe, 0x8e, 0xfc, 0xec, 0xcf, 0x74, 0x77, 0xcd, 0xfc,
0xd6, 0xea, 0x5b, 0x02, 0xd3, 0x78, 0xe4, 0x7b, 0x25, 0x6b, 0xa3, 0x34, 0x79, 0x0d, 0xd9, 0x85,
0xdc, 0xab, 0x2d, 0x12, 0xda, 0x7b, 0xd7, 0xa5, 0xe2, 0xc4, 0x87, 0x37, 0x54, 0xe2, 0x50, 0x72,
0x09, 0x93, 0x9e, 0x76, 0xe4, 0x71, 0xaf, 0xf7, 0x6f, 0xef, 0xf3, 0x27, 0xff, 0x2a, 0xc7, 0x79,
0xeb, 0xcc, 0x4b, 0xf7, 0xfc, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x27, 0x81, 0xfd, 0xa5,
0x03, 0x00, 0x00,
}