api

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jul 30, 2019 License: Apache-2.0 Imports: 16 Imported by: 0

README

Metadata Service API

API definitions for the Metadata service will live here.

Generating proto files.

Run the script generate_proto.sh to re-generate Go libraries based on the proto files in this directory.

Documentation

Overview

Package api is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var Execution_State_name = map[int32]string{
	0: "UNKNOWN",
	1: "NEW",
	2: "RUNNING",
	3: "COMPLETE",
	4: "FAILED",
}
View Source
var Execution_State_value = map[string]int32{
	"UNKNOWN":  0,
	"NEW":      1,
	"RUNNING":  2,
	"COMPLETE": 3,
	"FAILED":   4,
}
View Source
var PropertyType_name = map[int32]string{
	0: "UNKNOWN",
	1: "INT",
	2: "DOUBLE",
	3: "STRING",
}
View Source
var PropertyType_value = map[string]int32{
	"UNKNOWN": 0,
	"INT":     1,
	"DOUBLE":  2,
	"STRING":  3,
}

Functions

func RegisterMetadataServiceHandler

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

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

func RegisterMetadataServiceHandlerClient

func RegisterMetadataServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client MetadataServiceClient) error

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

func RegisterMetadataServiceHandlerFromEndpoint

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

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

func RegisterMetadataServiceServer

func RegisterMetadataServiceServer(s *grpc.Server, srv MetadataServiceServer)

Types

type Artifact

type Artifact struct {
	Id                   int64                `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TypeId               int64                `protobuf:"varint,2,opt,name=type_id,json=typeId,proto3" json:"type_id,omitempty"`
	Uri                  string               `protobuf:"bytes,3,opt,name=uri,proto3" json:"uri,omitempty"`
	Properties           map[string]*Value    `` /* 161-byte string literal not displayed */
	CustomProperties     map[string]*Value    `` /* 197-byte string literal not displayed */
	Name                 string               `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Workspace            *Workspace           `protobuf:"bytes,7,opt,name=workspace,proto3" json:"workspace,omitempty"`
	Labels               map[string]string    `` /* 153-byte string literal not displayed */
	CreateTime           *timestamp.Timestamp `protobuf:"bytes,9,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	UpdateTime           *timestamp.Timestamp `protobuf:"bytes,10,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Artifact) Descriptor

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

func (*Artifact) GetCreateTime

func (m *Artifact) GetCreateTime() *timestamp.Timestamp

func (*Artifact) GetCustomProperties

func (m *Artifact) GetCustomProperties() map[string]*Value

func (*Artifact) GetId

func (m *Artifact) GetId() int64

func (*Artifact) GetLabels

func (m *Artifact) GetLabels() map[string]string

func (*Artifact) GetName

func (m *Artifact) GetName() string

func (*Artifact) GetProperties

func (m *Artifact) GetProperties() map[string]*Value

func (*Artifact) GetTypeId

func (m *Artifact) GetTypeId() int64

func (*Artifact) GetUpdateTime

func (m *Artifact) GetUpdateTime() *timestamp.Timestamp

func (*Artifact) GetUri

func (m *Artifact) GetUri() string

func (*Artifact) GetWorkspace

func (m *Artifact) GetWorkspace() *Workspace

func (*Artifact) ProtoMessage

func (*Artifact) ProtoMessage()

func (*Artifact) Reset

func (m *Artifact) Reset()

func (*Artifact) String

func (m *Artifact) String() string

func (*Artifact) XXX_DiscardUnknown

func (m *Artifact) XXX_DiscardUnknown()

func (*Artifact) XXX_Marshal

func (m *Artifact) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Artifact) XXX_Merge

func (m *Artifact) XXX_Merge(src proto.Message)

func (*Artifact) XXX_Size

func (m *Artifact) XXX_Size() int

func (*Artifact) XXX_Unmarshal

func (m *Artifact) XXX_Unmarshal(b []byte) error

type ArtifactType

type ArtifactType struct {
	Id                   int64                   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string                  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Properties           map[string]PropertyType `` /* 184-byte string literal not displayed */
	Description          string                  `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*ArtifactType) Descriptor

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

func (*ArtifactType) GetDescription

func (m *ArtifactType) GetDescription() string

func (*ArtifactType) GetId

func (m *ArtifactType) GetId() int64

func (*ArtifactType) GetName

func (m *ArtifactType) GetName() string

func (*ArtifactType) GetProperties

func (m *ArtifactType) GetProperties() map[string]PropertyType

func (*ArtifactType) ProtoMessage

func (*ArtifactType) ProtoMessage()

func (*ArtifactType) Reset

func (m *ArtifactType) Reset()

func (*ArtifactType) String

func (m *ArtifactType) String() string

func (*ArtifactType) XXX_DiscardUnknown

func (m *ArtifactType) XXX_DiscardUnknown()

func (*ArtifactType) XXX_Marshal

func (m *ArtifactType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ArtifactType) XXX_Merge

func (m *ArtifactType) XXX_Merge(src proto.Message)

func (*ArtifactType) XXX_Size

func (m *ArtifactType) XXX_Size() int

func (*ArtifactType) XXX_Unmarshal

func (m *ArtifactType) XXX_Unmarshal(b []byte) error

type CreateArtifactRequest

type CreateArtifactRequest struct {
	Parent               string                            `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	Artifact             *metadata_store_go_proto.Artifact `protobuf:"bytes,2,opt,name=artifact,proto3" json:"artifact,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                          `json:"-"`
	XXX_unrecognized     []byte                            `json:"-"`
	XXX_sizecache        int32                             `json:"-"`
}

func (*CreateArtifactRequest) Descriptor

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

func (*CreateArtifactRequest) GetArtifact

func (*CreateArtifactRequest) GetParent

func (m *CreateArtifactRequest) GetParent() string

func (*CreateArtifactRequest) ProtoMessage

func (*CreateArtifactRequest) ProtoMessage()

func (*CreateArtifactRequest) Reset

func (m *CreateArtifactRequest) Reset()

func (*CreateArtifactRequest) String

func (m *CreateArtifactRequest) String() string

func (*CreateArtifactRequest) XXX_DiscardUnknown

func (m *CreateArtifactRequest) XXX_DiscardUnknown()

func (*CreateArtifactRequest) XXX_Marshal

func (m *CreateArtifactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateArtifactRequest) XXX_Merge

func (m *CreateArtifactRequest) XXX_Merge(src proto.Message)

func (*CreateArtifactRequest) XXX_Size

func (m *CreateArtifactRequest) XXX_Size() int

func (*CreateArtifactRequest) XXX_Unmarshal

func (m *CreateArtifactRequest) XXX_Unmarshal(b []byte) error

type CreateArtifactResponse

type CreateArtifactResponse struct {
	Artifact             *metadata_store_go_proto.Artifact `protobuf:"bytes,1,opt,name=artifact,proto3" json:"artifact,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                          `json:"-"`
	XXX_unrecognized     []byte                            `json:"-"`
	XXX_sizecache        int32                             `json:"-"`
}

func (*CreateArtifactResponse) Descriptor

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

func (*CreateArtifactResponse) GetArtifact

func (*CreateArtifactResponse) ProtoMessage

func (*CreateArtifactResponse) ProtoMessage()

func (*CreateArtifactResponse) Reset

func (m *CreateArtifactResponse) Reset()

func (*CreateArtifactResponse) String

func (m *CreateArtifactResponse) String() string

func (*CreateArtifactResponse) XXX_DiscardUnknown

func (m *CreateArtifactResponse) XXX_DiscardUnknown()

func (*CreateArtifactResponse) XXX_Marshal

func (m *CreateArtifactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateArtifactResponse) XXX_Merge

func (m *CreateArtifactResponse) XXX_Merge(src proto.Message)

func (*CreateArtifactResponse) XXX_Size

func (m *CreateArtifactResponse) XXX_Size() int

func (*CreateArtifactResponse) XXX_Unmarshal

func (m *CreateArtifactResponse) XXX_Unmarshal(b []byte) error

type CreateArtifactTypeRequest

type CreateArtifactTypeRequest struct {
	ArtifactType         *metadata_store_go_proto.ArtifactType `protobuf:"bytes,1,opt,name=artifact_type,json=artifactType,proto3" json:"artifact_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                              `json:"-"`
	XXX_unrecognized     []byte                                `json:"-"`
	XXX_sizecache        int32                                 `json:"-"`
}

func (*CreateArtifactTypeRequest) Descriptor

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

func (*CreateArtifactTypeRequest) GetArtifactType

func (*CreateArtifactTypeRequest) ProtoMessage

func (*CreateArtifactTypeRequest) ProtoMessage()

func (*CreateArtifactTypeRequest) Reset

func (m *CreateArtifactTypeRequest) Reset()

func (*CreateArtifactTypeRequest) String

func (m *CreateArtifactTypeRequest) String() string

func (*CreateArtifactTypeRequest) XXX_DiscardUnknown

func (m *CreateArtifactTypeRequest) XXX_DiscardUnknown()

func (*CreateArtifactTypeRequest) XXX_Marshal

func (m *CreateArtifactTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateArtifactTypeRequest) XXX_Merge

func (m *CreateArtifactTypeRequest) XXX_Merge(src proto.Message)

func (*CreateArtifactTypeRequest) XXX_Size

func (m *CreateArtifactTypeRequest) XXX_Size() int

func (*CreateArtifactTypeRequest) XXX_Unmarshal

func (m *CreateArtifactTypeRequest) XXX_Unmarshal(b []byte) error

type CreateArtifactTypeResponse

type CreateArtifactTypeResponse struct {
	ArtifactType         *metadata_store_go_proto.ArtifactType `protobuf:"bytes,1,opt,name=artifact_type,json=artifactType,proto3" json:"artifact_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                              `json:"-"`
	XXX_unrecognized     []byte                                `json:"-"`
	XXX_sizecache        int32                                 `json:"-"`
}

func (*CreateArtifactTypeResponse) Descriptor

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

func (*CreateArtifactTypeResponse) GetArtifactType

func (*CreateArtifactTypeResponse) ProtoMessage

func (*CreateArtifactTypeResponse) ProtoMessage()

func (*CreateArtifactTypeResponse) Reset

func (m *CreateArtifactTypeResponse) Reset()

func (*CreateArtifactTypeResponse) String

func (m *CreateArtifactTypeResponse) String() string

func (*CreateArtifactTypeResponse) XXX_DiscardUnknown

func (m *CreateArtifactTypeResponse) XXX_DiscardUnknown()

func (*CreateArtifactTypeResponse) XXX_Marshal

func (m *CreateArtifactTypeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateArtifactTypeResponse) XXX_Merge

func (m *CreateArtifactTypeResponse) XXX_Merge(src proto.Message)

func (*CreateArtifactTypeResponse) XXX_Size

func (m *CreateArtifactTypeResponse) XXX_Size() int

func (*CreateArtifactTypeResponse) XXX_Unmarshal

func (m *CreateArtifactTypeResponse) XXX_Unmarshal(b []byte) error

type CreateEventRequest

type CreateEventRequest struct {
	Event                *metadata_store_go_proto.Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*CreateEventRequest) Descriptor

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

func (*CreateEventRequest) GetEvent

func (*CreateEventRequest) ProtoMessage

func (*CreateEventRequest) ProtoMessage()

func (*CreateEventRequest) Reset

func (m *CreateEventRequest) Reset()

func (*CreateEventRequest) String

func (m *CreateEventRequest) String() string

func (*CreateEventRequest) XXX_DiscardUnknown

func (m *CreateEventRequest) XXX_DiscardUnknown()

func (*CreateEventRequest) XXX_Marshal

func (m *CreateEventRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateEventRequest) XXX_Merge

func (m *CreateEventRequest) XXX_Merge(src proto.Message)

func (*CreateEventRequest) XXX_Size

func (m *CreateEventRequest) XXX_Size() int

func (*CreateEventRequest) XXX_Unmarshal

func (m *CreateEventRequest) XXX_Unmarshal(b []byte) error

type CreateExecutionRequest

type CreateExecutionRequest struct {
	Parent               string                             `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	Execution            *metadata_store_go_proto.Execution `protobuf:"bytes,2,opt,name=execution,proto3" json:"execution,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                           `json:"-"`
	XXX_unrecognized     []byte                             `json:"-"`
	XXX_sizecache        int32                              `json:"-"`
}

func (*CreateExecutionRequest) Descriptor

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

func (*CreateExecutionRequest) GetExecution

func (*CreateExecutionRequest) GetParent

func (m *CreateExecutionRequest) GetParent() string

func (*CreateExecutionRequest) ProtoMessage

func (*CreateExecutionRequest) ProtoMessage()

func (*CreateExecutionRequest) Reset

func (m *CreateExecutionRequest) Reset()

func (*CreateExecutionRequest) String

func (m *CreateExecutionRequest) String() string

func (*CreateExecutionRequest) XXX_DiscardUnknown

func (m *CreateExecutionRequest) XXX_DiscardUnknown()

func (*CreateExecutionRequest) XXX_Marshal

func (m *CreateExecutionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateExecutionRequest) XXX_Merge

func (m *CreateExecutionRequest) XXX_Merge(src proto.Message)

func (*CreateExecutionRequest) XXX_Size

func (m *CreateExecutionRequest) XXX_Size() int

func (*CreateExecutionRequest) XXX_Unmarshal

func (m *CreateExecutionRequest) XXX_Unmarshal(b []byte) error

type CreateExecutionResponse

type CreateExecutionResponse struct {
	Execution            *metadata_store_go_proto.Execution `protobuf:"bytes,1,opt,name=execution,proto3" json:"execution,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                           `json:"-"`
	XXX_unrecognized     []byte                             `json:"-"`
	XXX_sizecache        int32                              `json:"-"`
}

func (*CreateExecutionResponse) Descriptor

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

func (*CreateExecutionResponse) GetExecution

func (*CreateExecutionResponse) ProtoMessage

func (*CreateExecutionResponse) ProtoMessage()

func (*CreateExecutionResponse) Reset

func (m *CreateExecutionResponse) Reset()

func (*CreateExecutionResponse) String

func (m *CreateExecutionResponse) String() string

func (*CreateExecutionResponse) XXX_DiscardUnknown

func (m *CreateExecutionResponse) XXX_DiscardUnknown()

func (*CreateExecutionResponse) XXX_Marshal

func (m *CreateExecutionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateExecutionResponse) XXX_Merge

func (m *CreateExecutionResponse) XXX_Merge(src proto.Message)

func (*CreateExecutionResponse) XXX_Size

func (m *CreateExecutionResponse) XXX_Size() int

func (*CreateExecutionResponse) XXX_Unmarshal

func (m *CreateExecutionResponse) XXX_Unmarshal(b []byte) error

type CreateExecutionTypeRequest

type CreateExecutionTypeRequest struct {
	ExecutionType        *metadata_store_go_proto.ExecutionType `protobuf:"bytes,1,opt,name=execution_type,json=executionType,proto3" json:"execution_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                               `json:"-"`
	XXX_unrecognized     []byte                                 `json:"-"`
	XXX_sizecache        int32                                  `json:"-"`
}

func (*CreateExecutionTypeRequest) Descriptor

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

func (*CreateExecutionTypeRequest) GetExecutionType

func (*CreateExecutionTypeRequest) ProtoMessage

func (*CreateExecutionTypeRequest) ProtoMessage()

func (*CreateExecutionTypeRequest) Reset

func (m *CreateExecutionTypeRequest) Reset()

func (*CreateExecutionTypeRequest) String

func (m *CreateExecutionTypeRequest) String() string

func (*CreateExecutionTypeRequest) XXX_DiscardUnknown

func (m *CreateExecutionTypeRequest) XXX_DiscardUnknown()

func (*CreateExecutionTypeRequest) XXX_Marshal

func (m *CreateExecutionTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateExecutionTypeRequest) XXX_Merge

func (m *CreateExecutionTypeRequest) XXX_Merge(src proto.Message)

func (*CreateExecutionTypeRequest) XXX_Size

func (m *CreateExecutionTypeRequest) XXX_Size() int

func (*CreateExecutionTypeRequest) XXX_Unmarshal

func (m *CreateExecutionTypeRequest) XXX_Unmarshal(b []byte) error

type CreateExecutionTypeResponse

type CreateExecutionTypeResponse struct {
	ExecutionType        *metadata_store_go_proto.ExecutionType `protobuf:"bytes,1,opt,name=execution_type,json=executionType,proto3" json:"execution_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                               `json:"-"`
	XXX_unrecognized     []byte                                 `json:"-"`
	XXX_sizecache        int32                                  `json:"-"`
}

func (*CreateExecutionTypeResponse) Descriptor

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

func (*CreateExecutionTypeResponse) GetExecutionType

func (*CreateExecutionTypeResponse) ProtoMessage

func (*CreateExecutionTypeResponse) ProtoMessage()

func (*CreateExecutionTypeResponse) Reset

func (m *CreateExecutionTypeResponse) Reset()

func (*CreateExecutionTypeResponse) String

func (m *CreateExecutionTypeResponse) String() string

func (*CreateExecutionTypeResponse) XXX_DiscardUnknown

func (m *CreateExecutionTypeResponse) XXX_DiscardUnknown()

func (*CreateExecutionTypeResponse) XXX_Marshal

func (m *CreateExecutionTypeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateExecutionTypeResponse) XXX_Merge

func (m *CreateExecutionTypeResponse) XXX_Merge(src proto.Message)

func (*CreateExecutionTypeResponse) XXX_Size

func (m *CreateExecutionTypeResponse) XXX_Size() int

func (*CreateExecutionTypeResponse) XXX_Unmarshal

func (m *CreateExecutionTypeResponse) XXX_Unmarshal(b []byte) error

type DeleteArtifactRequest

type DeleteArtifactRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteArtifactRequest) Descriptor

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

func (*DeleteArtifactRequest) GetName

func (m *DeleteArtifactRequest) GetName() string

func (*DeleteArtifactRequest) ProtoMessage

func (*DeleteArtifactRequest) ProtoMessage()

func (*DeleteArtifactRequest) Reset

func (m *DeleteArtifactRequest) Reset()

func (*DeleteArtifactRequest) String

func (m *DeleteArtifactRequest) String() string

func (*DeleteArtifactRequest) XXX_DiscardUnknown

func (m *DeleteArtifactRequest) XXX_DiscardUnknown()

func (*DeleteArtifactRequest) XXX_Marshal

func (m *DeleteArtifactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteArtifactRequest) XXX_Merge

func (m *DeleteArtifactRequest) XXX_Merge(src proto.Message)

func (*DeleteArtifactRequest) XXX_Size

func (m *DeleteArtifactRequest) XXX_Size() int

func (*DeleteArtifactRequest) XXX_Unmarshal

func (m *DeleteArtifactRequest) XXX_Unmarshal(b []byte) error

type DeleteArtifactTypeRequest

type DeleteArtifactTypeRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteArtifactTypeRequest) Descriptor

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

func (*DeleteArtifactTypeRequest) GetName

func (m *DeleteArtifactTypeRequest) GetName() string

func (*DeleteArtifactTypeRequest) ProtoMessage

func (*DeleteArtifactTypeRequest) ProtoMessage()

func (*DeleteArtifactTypeRequest) Reset

func (m *DeleteArtifactTypeRequest) Reset()

func (*DeleteArtifactTypeRequest) String

func (m *DeleteArtifactTypeRequest) String() string

func (*DeleteArtifactTypeRequest) XXX_DiscardUnknown

func (m *DeleteArtifactTypeRequest) XXX_DiscardUnknown()

func (*DeleteArtifactTypeRequest) XXX_Marshal

func (m *DeleteArtifactTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteArtifactTypeRequest) XXX_Merge

func (m *DeleteArtifactTypeRequest) XXX_Merge(src proto.Message)

func (*DeleteArtifactTypeRequest) XXX_Size

func (m *DeleteArtifactTypeRequest) XXX_Size() int

func (*DeleteArtifactTypeRequest) XXX_Unmarshal

func (m *DeleteArtifactTypeRequest) XXX_Unmarshal(b []byte) error

type DeleteExecutionRequest

type DeleteExecutionRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteExecutionRequest) Descriptor

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

func (*DeleteExecutionRequest) GetName

func (m *DeleteExecutionRequest) GetName() string

func (*DeleteExecutionRequest) ProtoMessage

func (*DeleteExecutionRequest) ProtoMessage()

func (*DeleteExecutionRequest) Reset

func (m *DeleteExecutionRequest) Reset()

func (*DeleteExecutionRequest) String

func (m *DeleteExecutionRequest) String() string

func (*DeleteExecutionRequest) XXX_DiscardUnknown

func (m *DeleteExecutionRequest) XXX_DiscardUnknown()

func (*DeleteExecutionRequest) XXX_Marshal

func (m *DeleteExecutionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteExecutionRequest) XXX_Merge

func (m *DeleteExecutionRequest) XXX_Merge(src proto.Message)

func (*DeleteExecutionRequest) XXX_Size

func (m *DeleteExecutionRequest) XXX_Size() int

func (*DeleteExecutionRequest) XXX_Unmarshal

func (m *DeleteExecutionRequest) XXX_Unmarshal(b []byte) error

type DeleteExecutionTypeRequest

type DeleteExecutionTypeRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteExecutionTypeRequest) Descriptor

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

func (*DeleteExecutionTypeRequest) GetName

func (m *DeleteExecutionTypeRequest) GetName() string

func (*DeleteExecutionTypeRequest) ProtoMessage

func (*DeleteExecutionTypeRequest) ProtoMessage()

func (*DeleteExecutionTypeRequest) Reset

func (m *DeleteExecutionTypeRequest) Reset()

func (*DeleteExecutionTypeRequest) String

func (m *DeleteExecutionTypeRequest) String() string

func (*DeleteExecutionTypeRequest) XXX_DiscardUnknown

func (m *DeleteExecutionTypeRequest) XXX_DiscardUnknown()

func (*DeleteExecutionTypeRequest) XXX_Marshal

func (m *DeleteExecutionTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteExecutionTypeRequest) XXX_Merge

func (m *DeleteExecutionTypeRequest) XXX_Merge(src proto.Message)

func (*DeleteExecutionTypeRequest) XXX_Size

func (m *DeleteExecutionTypeRequest) XXX_Size() int

func (*DeleteExecutionTypeRequest) XXX_Unmarshal

func (m *DeleteExecutionTypeRequest) XXX_Unmarshal(b []byte) error

type DoubleType

type DoubleType struct {
	Validator            string   `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DoubleType) Descriptor

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

func (*DoubleType) GetValidator

func (m *DoubleType) GetValidator() string

func (*DoubleType) ProtoMessage

func (*DoubleType) ProtoMessage()

func (*DoubleType) Reset

func (m *DoubleType) Reset()

func (*DoubleType) String

func (m *DoubleType) String() string

func (*DoubleType) XXX_DiscardUnknown

func (m *DoubleType) XXX_DiscardUnknown()

func (*DoubleType) XXX_Marshal

func (m *DoubleType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DoubleType) XXX_Merge

func (m *DoubleType) XXX_Merge(src proto.Message)

func (*DoubleType) XXX_Size

func (m *DoubleType) XXX_Size() int

func (*DoubleType) XXX_Unmarshal

func (m *DoubleType) XXX_Unmarshal(b []byte) error

type DoubleValue

type DoubleValue struct {
	Value                int64    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DoubleValue) Descriptor

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

func (*DoubleValue) GetValue

func (m *DoubleValue) GetValue() int64

func (*DoubleValue) ProtoMessage

func (*DoubleValue) ProtoMessage()

func (*DoubleValue) Reset

func (m *DoubleValue) Reset()

func (*DoubleValue) String

func (m *DoubleValue) String() string

func (*DoubleValue) XXX_DiscardUnknown

func (m *DoubleValue) XXX_DiscardUnknown()

func (*DoubleValue) XXX_Marshal

func (m *DoubleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DoubleValue) XXX_Merge

func (m *DoubleValue) XXX_Merge(src proto.Message)

func (*DoubleValue) XXX_Size

func (m *DoubleValue) XXX_Size() int

func (*DoubleValue) XXX_Unmarshal

func (m *DoubleValue) XXX_Unmarshal(b []byte) error

type Execution

type Execution struct {
	Id                   int64                `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	TypeId               int64                `protobuf:"varint,2,opt,name=type_id,json=typeId,proto3" json:"type_id,omitempty"`
	LastKnownState       Execution_State      `` /* 131-byte string literal not displayed */
	Properties           map[string]*Value    `` /* 161-byte string literal not displayed */
	CustomProperties     map[string]*Value    `` /* 197-byte string literal not displayed */
	Name                 string               `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Workspace            *Workspace           `protobuf:"bytes,7,opt,name=workspace,proto3" json:"workspace,omitempty"`
	Labels               map[string]string    `` /* 153-byte string literal not displayed */
	CreateTime           *timestamp.Timestamp `protobuf:"bytes,9,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	UpdateTime           *timestamp.Timestamp `protobuf:"bytes,10,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	StartTime            *timestamp.Timestamp `protobuf:"bytes,11,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	EndTime              *timestamp.Timestamp `protobuf:"bytes,12,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*Execution) Descriptor

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

func (*Execution) GetCreateTime

func (m *Execution) GetCreateTime() *timestamp.Timestamp

func (*Execution) GetCustomProperties

func (m *Execution) GetCustomProperties() map[string]*Value

func (*Execution) GetEndTime

func (m *Execution) GetEndTime() *timestamp.Timestamp

func (*Execution) GetId

func (m *Execution) GetId() int64

func (*Execution) GetLabels

func (m *Execution) GetLabels() map[string]string

func (*Execution) GetLastKnownState

func (m *Execution) GetLastKnownState() Execution_State

func (*Execution) GetName

func (m *Execution) GetName() string

func (*Execution) GetProperties

func (m *Execution) GetProperties() map[string]*Value

func (*Execution) GetStartTime

func (m *Execution) GetStartTime() *timestamp.Timestamp

func (*Execution) GetTypeId

func (m *Execution) GetTypeId() int64

func (*Execution) GetUpdateTime

func (m *Execution) GetUpdateTime() *timestamp.Timestamp

func (*Execution) GetWorkspace

func (m *Execution) GetWorkspace() *Workspace

func (*Execution) ProtoMessage

func (*Execution) ProtoMessage()

func (*Execution) Reset

func (m *Execution) Reset()

func (*Execution) String

func (m *Execution) String() string

func (*Execution) XXX_DiscardUnknown

func (m *Execution) XXX_DiscardUnknown()

func (*Execution) XXX_Marshal

func (m *Execution) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Execution) XXX_Merge

func (m *Execution) XXX_Merge(src proto.Message)

func (*Execution) XXX_Size

func (m *Execution) XXX_Size() int

func (*Execution) XXX_Unmarshal

func (m *Execution) XXX_Unmarshal(b []byte) error

type ExecutionType

type ExecutionType struct {
	Id                   int64                   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name                 string                  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Properties           map[string]PropertyType `` /* 184-byte string literal not displayed */
	Description          string                  `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*ExecutionType) Descriptor

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

func (*ExecutionType) GetDescription

func (m *ExecutionType) GetDescription() string

func (*ExecutionType) GetId

func (m *ExecutionType) GetId() int64

func (*ExecutionType) GetName

func (m *ExecutionType) GetName() string

func (*ExecutionType) GetProperties

func (m *ExecutionType) GetProperties() map[string]PropertyType

func (*ExecutionType) ProtoMessage

func (*ExecutionType) ProtoMessage()

func (*ExecutionType) Reset

func (m *ExecutionType) Reset()

func (*ExecutionType) String

func (m *ExecutionType) String() string

func (*ExecutionType) XXX_DiscardUnknown

func (m *ExecutionType) XXX_DiscardUnknown()

func (*ExecutionType) XXX_Marshal

func (m *ExecutionType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExecutionType) XXX_Merge

func (m *ExecutionType) XXX_Merge(src proto.Message)

func (*ExecutionType) XXX_Size

func (m *ExecutionType) XXX_Size() int

func (*ExecutionType) XXX_Unmarshal

func (m *ExecutionType) XXX_Unmarshal(b []byte) error

type Execution_State

type Execution_State int32
const (
	Execution_UNKNOWN  Execution_State = 0
	Execution_NEW      Execution_State = 1
	Execution_RUNNING  Execution_State = 2
	Execution_COMPLETE Execution_State = 3
	Execution_FAILED   Execution_State = 4
)

func (Execution_State) EnumDescriptor

func (Execution_State) EnumDescriptor() ([]byte, []int)

func (Execution_State) String

func (x Execution_State) String() string

type GetArtifactRequest

type GetArtifactRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetArtifactRequest) Descriptor

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

func (*GetArtifactRequest) GetName

func (m *GetArtifactRequest) GetName() string

func (*GetArtifactRequest) ProtoMessage

func (*GetArtifactRequest) ProtoMessage()

func (*GetArtifactRequest) Reset

func (m *GetArtifactRequest) Reset()

func (*GetArtifactRequest) String

func (m *GetArtifactRequest) String() string

func (*GetArtifactRequest) XXX_DiscardUnknown

func (m *GetArtifactRequest) XXX_DiscardUnknown()

func (*GetArtifactRequest) XXX_Marshal

func (m *GetArtifactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetArtifactRequest) XXX_Merge

func (m *GetArtifactRequest) XXX_Merge(src proto.Message)

func (*GetArtifactRequest) XXX_Size

func (m *GetArtifactRequest) XXX_Size() int

func (*GetArtifactRequest) XXX_Unmarshal

func (m *GetArtifactRequest) XXX_Unmarshal(b []byte) error

type GetArtifactResponse

type GetArtifactResponse struct {
	Artifact             *metadata_store_go_proto.Artifact `protobuf:"bytes,1,opt,name=artifact,proto3" json:"artifact,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                          `json:"-"`
	XXX_unrecognized     []byte                            `json:"-"`
	XXX_sizecache        int32                             `json:"-"`
}

func (*GetArtifactResponse) Descriptor

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

func (*GetArtifactResponse) GetArtifact

func (*GetArtifactResponse) ProtoMessage

func (*GetArtifactResponse) ProtoMessage()

func (*GetArtifactResponse) Reset

func (m *GetArtifactResponse) Reset()

func (*GetArtifactResponse) String

func (m *GetArtifactResponse) String() string

func (*GetArtifactResponse) XXX_DiscardUnknown

func (m *GetArtifactResponse) XXX_DiscardUnknown()

func (*GetArtifactResponse) XXX_Marshal

func (m *GetArtifactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetArtifactResponse) XXX_Merge

func (m *GetArtifactResponse) XXX_Merge(src proto.Message)

func (*GetArtifactResponse) XXX_Size

func (m *GetArtifactResponse) XXX_Size() int

func (*GetArtifactResponse) XXX_Unmarshal

func (m *GetArtifactResponse) XXX_Unmarshal(b []byte) error

type GetArtifactTypeRequest

type GetArtifactTypeRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetArtifactTypeRequest) Descriptor

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

func (*GetArtifactTypeRequest) GetName

func (m *GetArtifactTypeRequest) GetName() string

func (*GetArtifactTypeRequest) ProtoMessage

func (*GetArtifactTypeRequest) ProtoMessage()

func (*GetArtifactTypeRequest) Reset

func (m *GetArtifactTypeRequest) Reset()

func (*GetArtifactTypeRequest) String

func (m *GetArtifactTypeRequest) String() string

func (*GetArtifactTypeRequest) XXX_DiscardUnknown

func (m *GetArtifactTypeRequest) XXX_DiscardUnknown()

func (*GetArtifactTypeRequest) XXX_Marshal

func (m *GetArtifactTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetArtifactTypeRequest) XXX_Merge

func (m *GetArtifactTypeRequest) XXX_Merge(src proto.Message)

func (*GetArtifactTypeRequest) XXX_Size

func (m *GetArtifactTypeRequest) XXX_Size() int

func (*GetArtifactTypeRequest) XXX_Unmarshal

func (m *GetArtifactTypeRequest) XXX_Unmarshal(b []byte) error

type GetArtifactTypeResponse

type GetArtifactTypeResponse struct {
	ArtifactType         *metadata_store_go_proto.ArtifactType `protobuf:"bytes,1,opt,name=artifact_type,json=artifactType,proto3" json:"artifact_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                              `json:"-"`
	XXX_unrecognized     []byte                                `json:"-"`
	XXX_sizecache        int32                                 `json:"-"`
}

func (*GetArtifactTypeResponse) Descriptor

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

func (*GetArtifactTypeResponse) GetArtifactType

func (*GetArtifactTypeResponse) ProtoMessage

func (*GetArtifactTypeResponse) ProtoMessage()

func (*GetArtifactTypeResponse) Reset

func (m *GetArtifactTypeResponse) Reset()

func (*GetArtifactTypeResponse) String

func (m *GetArtifactTypeResponse) String() string

func (*GetArtifactTypeResponse) XXX_DiscardUnknown

func (m *GetArtifactTypeResponse) XXX_DiscardUnknown()

func (*GetArtifactTypeResponse) XXX_Marshal

func (m *GetArtifactTypeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetArtifactTypeResponse) XXX_Merge

func (m *GetArtifactTypeResponse) XXX_Merge(src proto.Message)

func (*GetArtifactTypeResponse) XXX_Size

func (m *GetArtifactTypeResponse) XXX_Size() int

func (*GetArtifactTypeResponse) XXX_Unmarshal

func (m *GetArtifactTypeResponse) XXX_Unmarshal(b []byte) error

type GetExecutionRequest

type GetExecutionRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetExecutionRequest) Descriptor

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

func (*GetExecutionRequest) GetName

func (m *GetExecutionRequest) GetName() string

func (*GetExecutionRequest) ProtoMessage

func (*GetExecutionRequest) ProtoMessage()

func (*GetExecutionRequest) Reset

func (m *GetExecutionRequest) Reset()

func (*GetExecutionRequest) String

func (m *GetExecutionRequest) String() string

func (*GetExecutionRequest) XXX_DiscardUnknown

func (m *GetExecutionRequest) XXX_DiscardUnknown()

func (*GetExecutionRequest) XXX_Marshal

func (m *GetExecutionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetExecutionRequest) XXX_Merge

func (m *GetExecutionRequest) XXX_Merge(src proto.Message)

func (*GetExecutionRequest) XXX_Size

func (m *GetExecutionRequest) XXX_Size() int

func (*GetExecutionRequest) XXX_Unmarshal

func (m *GetExecutionRequest) XXX_Unmarshal(b []byte) error

type GetExecutionResponse

type GetExecutionResponse struct {
	Execution            *metadata_store_go_proto.Execution `protobuf:"bytes,1,opt,name=execution,proto3" json:"execution,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                           `json:"-"`
	XXX_unrecognized     []byte                             `json:"-"`
	XXX_sizecache        int32                              `json:"-"`
}

func (*GetExecutionResponse) Descriptor

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

func (*GetExecutionResponse) GetExecution

func (*GetExecutionResponse) ProtoMessage

func (*GetExecutionResponse) ProtoMessage()

func (*GetExecutionResponse) Reset

func (m *GetExecutionResponse) Reset()

func (*GetExecutionResponse) String

func (m *GetExecutionResponse) String() string

func (*GetExecutionResponse) XXX_DiscardUnknown

func (m *GetExecutionResponse) XXX_DiscardUnknown()

func (*GetExecutionResponse) XXX_Marshal

func (m *GetExecutionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetExecutionResponse) XXX_Merge

func (m *GetExecutionResponse) XXX_Merge(src proto.Message)

func (*GetExecutionResponse) XXX_Size

func (m *GetExecutionResponse) XXX_Size() int

func (*GetExecutionResponse) XXX_Unmarshal

func (m *GetExecutionResponse) XXX_Unmarshal(b []byte) error

type GetExecutionTypeRequest

type GetExecutionTypeRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*GetExecutionTypeRequest) Descriptor

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

func (*GetExecutionTypeRequest) GetName

func (m *GetExecutionTypeRequest) GetName() string

func (*GetExecutionTypeRequest) ProtoMessage

func (*GetExecutionTypeRequest) ProtoMessage()

func (*GetExecutionTypeRequest) Reset

func (m *GetExecutionTypeRequest) Reset()

func (*GetExecutionTypeRequest) String

func (m *GetExecutionTypeRequest) String() string

func (*GetExecutionTypeRequest) XXX_DiscardUnknown

func (m *GetExecutionTypeRequest) XXX_DiscardUnknown()

func (*GetExecutionTypeRequest) XXX_Marshal

func (m *GetExecutionTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetExecutionTypeRequest) XXX_Merge

func (m *GetExecutionTypeRequest) XXX_Merge(src proto.Message)

func (*GetExecutionTypeRequest) XXX_Size

func (m *GetExecutionTypeRequest) XXX_Size() int

func (*GetExecutionTypeRequest) XXX_Unmarshal

func (m *GetExecutionTypeRequest) XXX_Unmarshal(b []byte) error

type GetExecutionTypeResponse

type GetExecutionTypeResponse struct {
	ExecutionType        *metadata_store_go_proto.ExecutionType `protobuf:"bytes,1,opt,name=execution_type,json=executionType,proto3" json:"execution_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                               `json:"-"`
	XXX_unrecognized     []byte                                 `json:"-"`
	XXX_sizecache        int32                                  `json:"-"`
}

func (*GetExecutionTypeResponse) Descriptor

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

func (*GetExecutionTypeResponse) GetExecutionType

func (*GetExecutionTypeResponse) ProtoMessage

func (*GetExecutionTypeResponse) ProtoMessage()

func (*GetExecutionTypeResponse) Reset

func (m *GetExecutionTypeResponse) Reset()

func (*GetExecutionTypeResponse) String

func (m *GetExecutionTypeResponse) String() string

func (*GetExecutionTypeResponse) XXX_DiscardUnknown

func (m *GetExecutionTypeResponse) XXX_DiscardUnknown()

func (*GetExecutionTypeResponse) XXX_Marshal

func (m *GetExecutionTypeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetExecutionTypeResponse) XXX_Merge

func (m *GetExecutionTypeResponse) XXX_Merge(src proto.Message)

func (*GetExecutionTypeResponse) XXX_Size

func (m *GetExecutionTypeResponse) XXX_Size() int

func (*GetExecutionTypeResponse) XXX_Unmarshal

func (m *GetExecutionTypeResponse) XXX_Unmarshal(b []byte) error

type IntType

type IntType struct {
	Validator            string   `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IntType) Descriptor

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

func (*IntType) GetValidator

func (m *IntType) GetValidator() string

func (*IntType) ProtoMessage

func (*IntType) ProtoMessage()

func (*IntType) Reset

func (m *IntType) Reset()

func (*IntType) String

func (m *IntType) String() string

func (*IntType) XXX_DiscardUnknown

func (m *IntType) XXX_DiscardUnknown()

func (*IntType) XXX_Marshal

func (m *IntType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IntType) XXX_Merge

func (m *IntType) XXX_Merge(src proto.Message)

func (*IntType) XXX_Size

func (m *IntType) XXX_Size() int

func (*IntType) XXX_Unmarshal

func (m *IntType) XXX_Unmarshal(b []byte) error

type IntValue

type IntValue struct {
	Value                int64    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IntValue) Descriptor

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

func (*IntValue) GetValue

func (m *IntValue) GetValue() int64

func (*IntValue) ProtoMessage

func (*IntValue) ProtoMessage()

func (*IntValue) Reset

func (m *IntValue) Reset()

func (*IntValue) String

func (m *IntValue) String() string

func (*IntValue) XXX_DiscardUnknown

func (m *IntValue) XXX_DiscardUnknown()

func (*IntValue) XXX_Marshal

func (m *IntValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IntValue) XXX_Merge

func (m *IntValue) XXX_Merge(src proto.Message)

func (*IntValue) XXX_Size

func (m *IntValue) XXX_Size() int

func (*IntValue) XXX_Unmarshal

func (m *IntValue) XXX_Unmarshal(b []byte) error

type ListArtifactTypesRequest

type ListArtifactTypesRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListArtifactTypesRequest) Descriptor

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

func (*ListArtifactTypesRequest) ProtoMessage

func (*ListArtifactTypesRequest) ProtoMessage()

func (*ListArtifactTypesRequest) Reset

func (m *ListArtifactTypesRequest) Reset()

func (*ListArtifactTypesRequest) String

func (m *ListArtifactTypesRequest) String() string

func (*ListArtifactTypesRequest) XXX_DiscardUnknown

func (m *ListArtifactTypesRequest) XXX_DiscardUnknown()

func (*ListArtifactTypesRequest) XXX_Marshal

func (m *ListArtifactTypesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListArtifactTypesRequest) XXX_Merge

func (m *ListArtifactTypesRequest) XXX_Merge(src proto.Message)

func (*ListArtifactTypesRequest) XXX_Size

func (m *ListArtifactTypesRequest) XXX_Size() int

func (*ListArtifactTypesRequest) XXX_Unmarshal

func (m *ListArtifactTypesRequest) XXX_Unmarshal(b []byte) error

type ListArtifactTypesResponse

type ListArtifactTypesResponse struct {
	ArtifactTypes        []*metadata_store_go_proto.ArtifactType `protobuf:"bytes,1,rep,name=artifact_types,json=artifactTypes,proto3" json:"artifact_types,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                `json:"-"`
	XXX_unrecognized     []byte                                  `json:"-"`
	XXX_sizecache        int32                                   `json:"-"`
}

func (*ListArtifactTypesResponse) Descriptor

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

func (*ListArtifactTypesResponse) GetArtifactTypes

func (*ListArtifactTypesResponse) ProtoMessage

func (*ListArtifactTypesResponse) ProtoMessage()

func (*ListArtifactTypesResponse) Reset

func (m *ListArtifactTypesResponse) Reset()

func (*ListArtifactTypesResponse) String

func (m *ListArtifactTypesResponse) String() string

func (*ListArtifactTypesResponse) XXX_DiscardUnknown

func (m *ListArtifactTypesResponse) XXX_DiscardUnknown()

func (*ListArtifactTypesResponse) XXX_Marshal

func (m *ListArtifactTypesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListArtifactTypesResponse) XXX_Merge

func (m *ListArtifactTypesResponse) XXX_Merge(src proto.Message)

func (*ListArtifactTypesResponse) XXX_Size

func (m *ListArtifactTypesResponse) XXX_Size() int

func (*ListArtifactTypesResponse) XXX_Unmarshal

func (m *ListArtifactTypesResponse) XXX_Unmarshal(b []byte) error

type ListArtifactsRequest

type ListArtifactsRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListArtifactsRequest) Descriptor

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

func (*ListArtifactsRequest) GetName

func (m *ListArtifactsRequest) GetName() string

func (*ListArtifactsRequest) ProtoMessage

func (*ListArtifactsRequest) ProtoMessage()

func (*ListArtifactsRequest) Reset

func (m *ListArtifactsRequest) Reset()

func (*ListArtifactsRequest) String

func (m *ListArtifactsRequest) String() string

func (*ListArtifactsRequest) XXX_DiscardUnknown

func (m *ListArtifactsRequest) XXX_DiscardUnknown()

func (*ListArtifactsRequest) XXX_Marshal

func (m *ListArtifactsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListArtifactsRequest) XXX_Merge

func (m *ListArtifactsRequest) XXX_Merge(src proto.Message)

func (*ListArtifactsRequest) XXX_Size

func (m *ListArtifactsRequest) XXX_Size() int

func (*ListArtifactsRequest) XXX_Unmarshal

func (m *ListArtifactsRequest) XXX_Unmarshal(b []byte) error

type ListArtifactsResponse

type ListArtifactsResponse struct {
	Artifacts            []*metadata_store_go_proto.Artifact `protobuf:"bytes,1,rep,name=artifacts,proto3" json:"artifacts,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                            `json:"-"`
	XXX_unrecognized     []byte                              `json:"-"`
	XXX_sizecache        int32                               `json:"-"`
}

func (*ListArtifactsResponse) Descriptor

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

func (*ListArtifactsResponse) GetArtifacts

func (*ListArtifactsResponse) ProtoMessage

func (*ListArtifactsResponse) ProtoMessage()

func (*ListArtifactsResponse) Reset

func (m *ListArtifactsResponse) Reset()

func (*ListArtifactsResponse) String

func (m *ListArtifactsResponse) String() string

func (*ListArtifactsResponse) XXX_DiscardUnknown

func (m *ListArtifactsResponse) XXX_DiscardUnknown()

func (*ListArtifactsResponse) XXX_Marshal

func (m *ListArtifactsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListArtifactsResponse) XXX_Merge

func (m *ListArtifactsResponse) XXX_Merge(src proto.Message)

func (*ListArtifactsResponse) XXX_Size

func (m *ListArtifactsResponse) XXX_Size() int

func (*ListArtifactsResponse) XXX_Unmarshal

func (m *ListArtifactsResponse) XXX_Unmarshal(b []byte) error

type ListEventsRequest

type ListEventsRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListEventsRequest) Descriptor

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

func (*ListEventsRequest) GetName

func (m *ListEventsRequest) GetName() string

func (*ListEventsRequest) ProtoMessage

func (*ListEventsRequest) ProtoMessage()

func (*ListEventsRequest) Reset

func (m *ListEventsRequest) Reset()

func (*ListEventsRequest) String

func (m *ListEventsRequest) String() string

func (*ListEventsRequest) XXX_DiscardUnknown

func (m *ListEventsRequest) XXX_DiscardUnknown()

func (*ListEventsRequest) XXX_Marshal

func (m *ListEventsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListEventsRequest) XXX_Merge

func (m *ListEventsRequest) XXX_Merge(src proto.Message)

func (*ListEventsRequest) XXX_Size

func (m *ListEventsRequest) XXX_Size() int

func (*ListEventsRequest) XXX_Unmarshal

func (m *ListEventsRequest) XXX_Unmarshal(b []byte) error

type ListEventsResponse

type ListEventsResponse struct {
	Events               []*metadata_store_go_proto.Event             `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	Artifacts            map[int64]*metadata_store_go_proto.Artifact  `` /* 160-byte string literal not displayed */
	Executions           map[int64]*metadata_store_go_proto.Execution `` /* 162-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                                     `json:"-"`
	XXX_unrecognized     []byte                                       `json:"-"`
	XXX_sizecache        int32                                        `json:"-"`
}

func (*ListEventsResponse) Descriptor

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

func (*ListEventsResponse) GetArtifacts

func (*ListEventsResponse) GetEvents

func (*ListEventsResponse) GetExecutions

func (*ListEventsResponse) ProtoMessage

func (*ListEventsResponse) ProtoMessage()

func (*ListEventsResponse) Reset

func (m *ListEventsResponse) Reset()

func (*ListEventsResponse) String

func (m *ListEventsResponse) String() string

func (*ListEventsResponse) XXX_DiscardUnknown

func (m *ListEventsResponse) XXX_DiscardUnknown()

func (*ListEventsResponse) XXX_Marshal

func (m *ListEventsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListEventsResponse) XXX_Merge

func (m *ListEventsResponse) XXX_Merge(src proto.Message)

func (*ListEventsResponse) XXX_Size

func (m *ListEventsResponse) XXX_Size() int

func (*ListEventsResponse) XXX_Unmarshal

func (m *ListEventsResponse) XXX_Unmarshal(b []byte) error

type ListExecutionTypesRequest

type ListExecutionTypesRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListExecutionTypesRequest) Descriptor

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

func (*ListExecutionTypesRequest) ProtoMessage

func (*ListExecutionTypesRequest) ProtoMessage()

func (*ListExecutionTypesRequest) Reset

func (m *ListExecutionTypesRequest) Reset()

func (*ListExecutionTypesRequest) String

func (m *ListExecutionTypesRequest) String() string

func (*ListExecutionTypesRequest) XXX_DiscardUnknown

func (m *ListExecutionTypesRequest) XXX_DiscardUnknown()

func (*ListExecutionTypesRequest) XXX_Marshal

func (m *ListExecutionTypesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListExecutionTypesRequest) XXX_Merge

func (m *ListExecutionTypesRequest) XXX_Merge(src proto.Message)

func (*ListExecutionTypesRequest) XXX_Size

func (m *ListExecutionTypesRequest) XXX_Size() int

func (*ListExecutionTypesRequest) XXX_Unmarshal

func (m *ListExecutionTypesRequest) XXX_Unmarshal(b []byte) error

type ListExecutionTypesResponse

type ListExecutionTypesResponse struct {
	ExecutionTypes       []*metadata_store_go_proto.ExecutionType `protobuf:"bytes,1,rep,name=execution_types,json=executionTypes,proto3" json:"execution_types,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                 `json:"-"`
	XXX_unrecognized     []byte                                   `json:"-"`
	XXX_sizecache        int32                                    `json:"-"`
}

func (*ListExecutionTypesResponse) Descriptor

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

func (*ListExecutionTypesResponse) GetExecutionTypes

func (*ListExecutionTypesResponse) ProtoMessage

func (*ListExecutionTypesResponse) ProtoMessage()

func (*ListExecutionTypesResponse) Reset

func (m *ListExecutionTypesResponse) Reset()

func (*ListExecutionTypesResponse) String

func (m *ListExecutionTypesResponse) String() string

func (*ListExecutionTypesResponse) XXX_DiscardUnknown

func (m *ListExecutionTypesResponse) XXX_DiscardUnknown()

func (*ListExecutionTypesResponse) XXX_Marshal

func (m *ListExecutionTypesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListExecutionTypesResponse) XXX_Merge

func (m *ListExecutionTypesResponse) XXX_Merge(src proto.Message)

func (*ListExecutionTypesResponse) XXX_Size

func (m *ListExecutionTypesResponse) XXX_Size() int

func (*ListExecutionTypesResponse) XXX_Unmarshal

func (m *ListExecutionTypesResponse) XXX_Unmarshal(b []byte) error

type ListExecutionsRequest

type ListExecutionsRequest struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ListExecutionsRequest) Descriptor

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

func (*ListExecutionsRequest) GetName

func (m *ListExecutionsRequest) GetName() string

func (*ListExecutionsRequest) ProtoMessage

func (*ListExecutionsRequest) ProtoMessage()

func (*ListExecutionsRequest) Reset

func (m *ListExecutionsRequest) Reset()

func (*ListExecutionsRequest) String

func (m *ListExecutionsRequest) String() string

func (*ListExecutionsRequest) XXX_DiscardUnknown

func (m *ListExecutionsRequest) XXX_DiscardUnknown()

func (*ListExecutionsRequest) XXX_Marshal

func (m *ListExecutionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListExecutionsRequest) XXX_Merge

func (m *ListExecutionsRequest) XXX_Merge(src proto.Message)

func (*ListExecutionsRequest) XXX_Size

func (m *ListExecutionsRequest) XXX_Size() int

func (*ListExecutionsRequest) XXX_Unmarshal

func (m *ListExecutionsRequest) XXX_Unmarshal(b []byte) error

type ListExecutionsResponse

type ListExecutionsResponse struct {
	Executions           []*metadata_store_go_proto.Execution `protobuf:"bytes,1,rep,name=executions,proto3" json:"executions,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                             `json:"-"`
	XXX_unrecognized     []byte                               `json:"-"`
	XXX_sizecache        int32                                `json:"-"`
}

func (*ListExecutionsResponse) Descriptor

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

func (*ListExecutionsResponse) GetExecutions

func (*ListExecutionsResponse) ProtoMessage

func (*ListExecutionsResponse) ProtoMessage()

func (*ListExecutionsResponse) Reset

func (m *ListExecutionsResponse) Reset()

func (*ListExecutionsResponse) String

func (m *ListExecutionsResponse) String() string

func (*ListExecutionsResponse) XXX_DiscardUnknown

func (m *ListExecutionsResponse) XXX_DiscardUnknown()

func (*ListExecutionsResponse) XXX_Marshal

func (m *ListExecutionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListExecutionsResponse) XXX_Merge

func (m *ListExecutionsResponse) XXX_Merge(src proto.Message)

func (*ListExecutionsResponse) XXX_Size

func (m *ListExecutionsResponse) XXX_Size() int

func (*ListExecutionsResponse) XXX_Unmarshal

func (m *ListExecutionsResponse) XXX_Unmarshal(b []byte) error

type MetadataServiceClient

type MetadataServiceClient interface {
	CreateArtifact(ctx context.Context, in *CreateArtifactRequest, opts ...grpc.CallOption) (*CreateArtifactResponse, error)
	GetArtifact(ctx context.Context, in *GetArtifactRequest, opts ...grpc.CallOption) (*GetArtifactResponse, error)
	ListArtifacts(ctx context.Context, in *ListArtifactsRequest, opts ...grpc.CallOption) (*ListArtifactsResponse, error)
	DeleteArtifact(ctx context.Context, in *DeleteArtifactRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CreateExecution(ctx context.Context, in *CreateExecutionRequest, opts ...grpc.CallOption) (*CreateExecutionResponse, error)
	GetExecution(ctx context.Context, in *GetExecutionRequest, opts ...grpc.CallOption) (*GetExecutionResponse, error)
	ListExecutions(ctx context.Context, in *ListExecutionsRequest, opts ...grpc.CallOption) (*ListExecutionsResponse, error)
	DeleteExecution(ctx context.Context, in *DeleteExecutionRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CreateArtifactType(ctx context.Context, in *CreateArtifactTypeRequest, opts ...grpc.CallOption) (*CreateArtifactTypeResponse, error)
	ListArtifactTypes(ctx context.Context, in *ListArtifactTypesRequest, opts ...grpc.CallOption) (*ListArtifactTypesResponse, error)
	GetArtifactType(ctx context.Context, in *GetArtifactTypeRequest, opts ...grpc.CallOption) (*GetArtifactTypeResponse, error)
	DeleteArtifactType(ctx context.Context, in *DeleteArtifactTypeRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CreateExecutionType(ctx context.Context, in *CreateExecutionTypeRequest, opts ...grpc.CallOption) (*CreateExecutionTypeResponse, error)
	ListExecutionTypes(ctx context.Context, in *ListExecutionTypesRequest, opts ...grpc.CallOption) (*ListExecutionTypesResponse, error)
	GetExecutionType(ctx context.Context, in *GetExecutionTypeRequest, opts ...grpc.CallOption) (*GetExecutionTypeResponse, error)
	DeleteExecutionType(ctx context.Context, in *DeleteExecutionTypeRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	CreateEvent(ctx context.Context, in *CreateEventRequest, opts ...grpc.CallOption) (*empty.Empty, error)
	ListEvents(ctx context.Context, in *ListEventsRequest, opts ...grpc.CallOption) (*ListEventsResponse, error)
}

MetadataServiceClient is the client API for MetadataService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewMetadataServiceClient

func NewMetadataServiceClient(cc *grpc.ClientConn) MetadataServiceClient

type MetadataServiceServer

type MetadataServiceServer interface {
	CreateArtifact(context.Context, *CreateArtifactRequest) (*CreateArtifactResponse, error)
	GetArtifact(context.Context, *GetArtifactRequest) (*GetArtifactResponse, error)
	ListArtifacts(context.Context, *ListArtifactsRequest) (*ListArtifactsResponse, error)
	DeleteArtifact(context.Context, *DeleteArtifactRequest) (*empty.Empty, error)
	CreateExecution(context.Context, *CreateExecutionRequest) (*CreateExecutionResponse, error)
	GetExecution(context.Context, *GetExecutionRequest) (*GetExecutionResponse, error)
	ListExecutions(context.Context, *ListExecutionsRequest) (*ListExecutionsResponse, error)
	DeleteExecution(context.Context, *DeleteExecutionRequest) (*empty.Empty, error)
	CreateArtifactType(context.Context, *CreateArtifactTypeRequest) (*CreateArtifactTypeResponse, error)
	ListArtifactTypes(context.Context, *ListArtifactTypesRequest) (*ListArtifactTypesResponse, error)
	GetArtifactType(context.Context, *GetArtifactTypeRequest) (*GetArtifactTypeResponse, error)
	DeleteArtifactType(context.Context, *DeleteArtifactTypeRequest) (*empty.Empty, error)
	CreateExecutionType(context.Context, *CreateExecutionTypeRequest) (*CreateExecutionTypeResponse, error)
	ListExecutionTypes(context.Context, *ListExecutionTypesRequest) (*ListExecutionTypesResponse, error)
	GetExecutionType(context.Context, *GetExecutionTypeRequest) (*GetExecutionTypeResponse, error)
	DeleteExecutionType(context.Context, *DeleteExecutionTypeRequest) (*empty.Empty, error)
	CreateEvent(context.Context, *CreateEventRequest) (*empty.Empty, error)
	ListEvents(context.Context, *ListEventsRequest) (*ListEventsResponse, error)
}

MetadataServiceServer is the server API for MetadataService service.

type PropertyType

type PropertyType int32
const (
	PropertyType_UNKNOWN PropertyType = 0
	PropertyType_INT     PropertyType = 1
	PropertyType_DOUBLE  PropertyType = 2
	PropertyType_STRING  PropertyType = 3
)

func (PropertyType) EnumDescriptor

func (PropertyType) EnumDescriptor() ([]byte, []int)

func (PropertyType) String

func (x PropertyType) String() string

type StringType

type StringType struct {
	Validator            string   `protobuf:"bytes,1,opt,name=validator,proto3" json:"validator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StringType) Descriptor

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

func (*StringType) GetValidator

func (m *StringType) GetValidator() string

func (*StringType) ProtoMessage

func (*StringType) ProtoMessage()

func (*StringType) Reset

func (m *StringType) Reset()

func (*StringType) String

func (m *StringType) String() string

func (*StringType) XXX_DiscardUnknown

func (m *StringType) XXX_DiscardUnknown()

func (*StringType) XXX_Marshal

func (m *StringType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StringType) XXX_Merge

func (m *StringType) XXX_Merge(src proto.Message)

func (*StringType) XXX_Size

func (m *StringType) XXX_Size() int

func (*StringType) XXX_Unmarshal

func (m *StringType) XXX_Unmarshal(b []byte) error

type StringValue

type StringValue struct {
	Value                string   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StringValue) Descriptor

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

func (*StringValue) GetValue

func (m *StringValue) GetValue() string

func (*StringValue) ProtoMessage

func (*StringValue) ProtoMessage()

func (*StringValue) Reset

func (m *StringValue) Reset()

func (*StringValue) String

func (m *StringValue) String() string

func (*StringValue) XXX_DiscardUnknown

func (m *StringValue) XXX_DiscardUnknown()

func (*StringValue) XXX_Marshal

func (m *StringValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StringValue) XXX_Merge

func (m *StringValue) XXX_Merge(src proto.Message)

func (*StringValue) XXX_Size

func (m *StringValue) XXX_Size() int

func (*StringValue) XXX_Unmarshal

func (m *StringValue) XXX_Unmarshal(b []byte) error

type Value

type Value struct {
	// Types that are valid to be assigned to Value:
	//	*Value_IntValue
	//	*Value_DoubleValue
	//	*Value_StringValue
	Value                isValue_Value `protobuf_oneof:"value"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*Value) Descriptor

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

func (*Value) GetDoubleValue

func (m *Value) GetDoubleValue() float64

func (*Value) GetIntValue

func (m *Value) GetIntValue() int64

func (*Value) GetStringValue

func (m *Value) GetStringValue() string

func (*Value) GetValue

func (m *Value) GetValue() isValue_Value

func (*Value) ProtoMessage

func (*Value) ProtoMessage()

func (*Value) Reset

func (m *Value) Reset()

func (*Value) String

func (m *Value) String() string

func (*Value) XXX_DiscardUnknown

func (m *Value) XXX_DiscardUnknown()

func (*Value) XXX_Marshal

func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Value) XXX_Merge

func (m *Value) XXX_Merge(src proto.Message)

func (*Value) XXX_OneofWrappers

func (*Value) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Value) XXX_Size

func (m *Value) XXX_Size() int

func (*Value) XXX_Unmarshal

func (m *Value) XXX_Unmarshal(b []byte) error

type Value_DoubleValue

type Value_DoubleValue struct {
	DoubleValue float64 `protobuf:"fixed64,2,opt,name=double_value,json=doubleValue,proto3,oneof"`
}

type Value_IntValue

type Value_IntValue struct {
	IntValue int64 `protobuf:"varint,1,opt,name=int_value,json=intValue,proto3,oneof"`
}

type Value_StringValue

type Value_StringValue struct {
	StringValue string `protobuf:"bytes,3,opt,name=string_value,json=stringValue,proto3,oneof"`
}

type Workspace

type Workspace struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Workspace) Descriptor

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

func (*Workspace) GetName

func (m *Workspace) GetName() string

func (*Workspace) ProtoMessage

func (*Workspace) ProtoMessage()

func (*Workspace) Reset

func (m *Workspace) Reset()

func (*Workspace) String

func (m *Workspace) String() string

func (*Workspace) XXX_DiscardUnknown

func (m *Workspace) XXX_DiscardUnknown()

func (*Workspace) XXX_Marshal

func (m *Workspace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Workspace) XXX_Merge

func (m *Workspace) XXX_Merge(src proto.Message)

func (*Workspace) XXX_Size

func (m *Workspace) XXX_Size() int

func (*Workspace) XXX_Unmarshal

func (m *Workspace) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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