231 lines
8.2 KiB
Go
231 lines
8.2 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: backend/api/resource_reference.proto
|
|
|
|
package go_client
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// 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.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type ResourceType int32
|
|
|
|
const (
|
|
ResourceType_UNKNOWN_RESOURCE_TYPE ResourceType = 0
|
|
ResourceType_EXPERIMENT ResourceType = 1
|
|
ResourceType_JOB ResourceType = 2
|
|
ResourceType_PIPELINE ResourceType = 3
|
|
ResourceType_PIPELINE_VERSION ResourceType = 4
|
|
ResourceType_NAMESPACE ResourceType = 5
|
|
)
|
|
|
|
var ResourceType_name = map[int32]string{
|
|
0: "UNKNOWN_RESOURCE_TYPE",
|
|
1: "EXPERIMENT",
|
|
2: "JOB",
|
|
3: "PIPELINE",
|
|
4: "PIPELINE_VERSION",
|
|
5: "NAMESPACE",
|
|
}
|
|
|
|
var ResourceType_value = map[string]int32{
|
|
"UNKNOWN_RESOURCE_TYPE": 0,
|
|
"EXPERIMENT": 1,
|
|
"JOB": 2,
|
|
"PIPELINE": 3,
|
|
"PIPELINE_VERSION": 4,
|
|
"NAMESPACE": 5,
|
|
}
|
|
|
|
func (x ResourceType) String() string {
|
|
return proto.EnumName(ResourceType_name, int32(x))
|
|
}
|
|
|
|
func (ResourceType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_465b210f45a041b3, []int{0}
|
|
}
|
|
|
|
type Relationship int32
|
|
|
|
const (
|
|
Relationship_UNKNOWN_RELATIONSHIP Relationship = 0
|
|
Relationship_OWNER Relationship = 1
|
|
Relationship_CREATOR Relationship = 2
|
|
)
|
|
|
|
var Relationship_name = map[int32]string{
|
|
0: "UNKNOWN_RELATIONSHIP",
|
|
1: "OWNER",
|
|
2: "CREATOR",
|
|
}
|
|
|
|
var Relationship_value = map[string]int32{
|
|
"UNKNOWN_RELATIONSHIP": 0,
|
|
"OWNER": 1,
|
|
"CREATOR": 2,
|
|
}
|
|
|
|
func (x Relationship) String() string {
|
|
return proto.EnumName(Relationship_name, int32(x))
|
|
}
|
|
|
|
func (Relationship) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_465b210f45a041b3, []int{1}
|
|
}
|
|
|
|
type ResourceKey struct {
|
|
// The type of the resource that referred to.
|
|
Type ResourceType `protobuf:"varint,1,opt,name=type,proto3,enum=api.ResourceType" json:"type,omitempty"`
|
|
// The ID of the resource that referred to.
|
|
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ResourceKey) Reset() { *m = ResourceKey{} }
|
|
func (m *ResourceKey) String() string { return proto.CompactTextString(m) }
|
|
func (*ResourceKey) ProtoMessage() {}
|
|
func (*ResourceKey) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_465b210f45a041b3, []int{0}
|
|
}
|
|
|
|
func (m *ResourceKey) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ResourceKey.Unmarshal(m, b)
|
|
}
|
|
func (m *ResourceKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ResourceKey.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ResourceKey) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ResourceKey.Merge(m, src)
|
|
}
|
|
func (m *ResourceKey) XXX_Size() int {
|
|
return xxx_messageInfo_ResourceKey.Size(m)
|
|
}
|
|
func (m *ResourceKey) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ResourceKey.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ResourceKey proto.InternalMessageInfo
|
|
|
|
func (m *ResourceKey) GetType() ResourceType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ResourceType_UNKNOWN_RESOURCE_TYPE
|
|
}
|
|
|
|
func (m *ResourceKey) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ResourceReference struct {
|
|
Key *ResourceKey `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
// The name of the resource that referred to.
|
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
|
// Required field. The relationship from referred resource to the object.
|
|
Relationship Relationship `protobuf:"varint,2,opt,name=relationship,proto3,enum=api.Relationship" json:"relationship,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ResourceReference) Reset() { *m = ResourceReference{} }
|
|
func (m *ResourceReference) String() string { return proto.CompactTextString(m) }
|
|
func (*ResourceReference) ProtoMessage() {}
|
|
func (*ResourceReference) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_465b210f45a041b3, []int{1}
|
|
}
|
|
|
|
func (m *ResourceReference) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ResourceReference.Unmarshal(m, b)
|
|
}
|
|
func (m *ResourceReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ResourceReference.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ResourceReference) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ResourceReference.Merge(m, src)
|
|
}
|
|
func (m *ResourceReference) XXX_Size() int {
|
|
return xxx_messageInfo_ResourceReference.Size(m)
|
|
}
|
|
func (m *ResourceReference) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ResourceReference.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ResourceReference proto.InternalMessageInfo
|
|
|
|
func (m *ResourceReference) GetKey() *ResourceKey {
|
|
if m != nil {
|
|
return m.Key
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ResourceReference) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ResourceReference) GetRelationship() Relationship {
|
|
if m != nil {
|
|
return m.Relationship
|
|
}
|
|
return Relationship_UNKNOWN_RELATIONSHIP
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("api.ResourceType", ResourceType_name, ResourceType_value)
|
|
proto.RegisterEnum("api.Relationship", Relationship_name, Relationship_value)
|
|
proto.RegisterType((*ResourceKey)(nil), "api.ResourceKey")
|
|
proto.RegisterType((*ResourceReference)(nil), "api.ResourceReference")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("backend/api/resource_reference.proto", fileDescriptor_465b210f45a041b3)
|
|
}
|
|
|
|
var fileDescriptor_465b210f45a041b3 = []byte{
|
|
// 366 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xc1, 0x6b, 0x9c, 0x40,
|
|
0x14, 0xc6, 0xa3, 0x6e, 0x9a, 0xee, 0xdb, 0xed, 0x32, 0x79, 0xa4, 0x60, 0x6f, 0x61, 0x69, 0x21,
|
|
0xe4, 0xa0, 0x90, 0x90, 0x7b, 0xcd, 0x76, 0xa0, 0x76, 0x93, 0x51, 0x46, 0xd3, 0xb4, 0xbd, 0x88,
|
|
0xba, 0x2f, 0xc9, 0xb0, 0x46, 0x07, 0x57, 0x29, 0x5e, 0xfb, 0x97, 0x97, 0x48, 0xc4, 0xec, 0x6d,
|
|
0x86, 0xdf, 0xc7, 0xf7, 0xfb, 0xe0, 0xc1, 0xe7, 0x2c, 0xcd, 0xb7, 0x54, 0x6e, 0xdc, 0x54, 0x2b,
|
|
0xb7, 0xa6, 0x5d, 0xd5, 0xd6, 0x39, 0x25, 0x35, 0x3d, 0x50, 0x4d, 0x65, 0x4e, 0x8e, 0xae, 0xab,
|
|
0xa6, 0x42, 0x2b, 0xd5, 0x6a, 0xf9, 0x0d, 0x66, 0xf2, 0x35, 0xb0, 0xa6, 0x0e, 0xbf, 0xc0, 0xa4,
|
|
0xe9, 0x34, 0xd9, 0xc6, 0xa9, 0x71, 0xb6, 0xb8, 0x38, 0x76, 0x52, 0xad, 0x9c, 0x81, 0xc7, 0x9d,
|
|
0x26, 0xd9, 0x63, 0x5c, 0x80, 0xa9, 0x36, 0xb6, 0x79, 0x6a, 0x9c, 0x4d, 0xa5, 0xa9, 0x36, 0xcb,
|
|
0x7f, 0x06, 0x1c, 0x0f, 0x31, 0x39, 0x68, 0x70, 0x09, 0xd6, 0x96, 0xba, 0xbe, 0x6b, 0x76, 0xc1,
|
|
0xf6, 0xba, 0xd6, 0xd4, 0xc9, 0x17, 0x88, 0x08, 0x93, 0x32, 0x7d, 0x26, 0xdb, 0xea, 0xbb, 0xfa,
|
|
0x37, 0x5e, 0xc1, 0xbc, 0xa6, 0x22, 0x6d, 0x54, 0x55, 0xee, 0x9e, 0x94, 0xee, 0x3d, 0xe3, 0x98,
|
|
0x11, 0xc8, 0xbd, 0xd8, 0x79, 0x0b, 0xf3, 0xb7, 0x53, 0xf1, 0x13, 0x7c, 0xbc, 0x13, 0x6b, 0x11,
|
|
0xdc, 0x8b, 0x44, 0xf2, 0x28, 0xb8, 0x93, 0x2b, 0x9e, 0xc4, 0xbf, 0x43, 0xce, 0x0e, 0x70, 0x01,
|
|
0xc0, 0x7f, 0x85, 0x5c, 0xfa, 0xb7, 0x5c, 0xc4, 0xcc, 0xc0, 0x23, 0xb0, 0x7e, 0x04, 0xd7, 0xcc,
|
|
0xc4, 0x39, 0xbc, 0x0f, 0xfd, 0x90, 0xdf, 0xf8, 0x82, 0x33, 0x0b, 0x4f, 0x80, 0x0d, 0xbf, 0xe4,
|
|
0x27, 0x97, 0x91, 0x1f, 0x08, 0x36, 0xc1, 0x0f, 0x30, 0x15, 0xde, 0x2d, 0x8f, 0x42, 0x6f, 0xc5,
|
|
0xd9, 0xe1, 0xf9, 0xd7, 0x17, 0xed, 0x38, 0x03, 0x6d, 0x38, 0x19, 0xb5, 0x37, 0x5e, 0xec, 0x07,
|
|
0x22, 0xfa, 0xee, 0x87, 0xec, 0x00, 0xa7, 0x70, 0x18, 0xdc, 0x0b, 0x2e, 0x99, 0x81, 0x33, 0x38,
|
|
0x5a, 0x49, 0xee, 0xc5, 0x81, 0x64, 0xe6, 0xf5, 0xd5, 0x9f, 0xcb, 0x47, 0xd5, 0x3c, 0xb5, 0x99,
|
|
0x93, 0x57, 0xcf, 0xee, 0xb6, 0xcd, 0xe8, 0xa1, 0xa8, 0xfe, 0xba, 0x5a, 0x69, 0x2a, 0x54, 0x49,
|
|
0x3b, 0xf7, 0xed, 0x39, 0x1f, 0xab, 0x24, 0x2f, 0x14, 0x95, 0x4d, 0xf6, 0xae, 0x3f, 0xe3, 0xe5,
|
|
0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x58, 0x92, 0x1b, 0xee, 0x01, 0x00, 0x00,
|
|
}
|