Added code for listing checkpoints

This commit is contained in:
Ravi Prakash Pandey 2024-04-26 17:48:39 -07:00
Родитель 72662246ad
Коммит 104a8dc727
2 изменённых файлов: 199 добавлений и 122 удалений

Просмотреть файл

@ -871,6 +871,69 @@ func (m *SecurityConfiguration) GetSecurityType() common.SecurityType {
return common.SecurityType_NOTCONFIGURED
}
type Checkpoint struct {
CheckpointName string `protobuf:"bytes,1,opt,name=checkpointName,proto3" json:"checkpointName,omitempty"`
CheckpointId string `protobuf:"bytes,2,opt,name=checkpointId,proto3" json:"checkpointId,omitempty"`
ParentCheckpointId string `protobuf:"bytes,3,opt,name=parentCheckpointId,proto3" json:"parentCheckpointId,omitempty"`
CreationTime string `protobuf:"bytes,4,opt,name=creationTime,proto3" json:"creationTime,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Checkpoint) Reset() { *m = Checkpoint{} }
func (m *Checkpoint) String() string { return proto.CompactTextString(m) }
func (*Checkpoint) ProtoMessage() {}
func (*Checkpoint) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{16}
}
func (m *Checkpoint) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Checkpoint.Unmarshal(m, b)
}
func (m *Checkpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Checkpoint.Marshal(b, m, deterministic)
}
func (m *Checkpoint) XXX_Merge(src proto.Message) {
xxx_messageInfo_Checkpoint.Merge(m, src)
}
func (m *Checkpoint) XXX_Size() int {
return xxx_messageInfo_Checkpoint.Size(m)
}
func (m *Checkpoint) XXX_DiscardUnknown() {
xxx_messageInfo_Checkpoint.DiscardUnknown(m)
}
var xxx_messageInfo_Checkpoint proto.InternalMessageInfo
func (m *Checkpoint) GetCheckpointName() string {
if m != nil {
return m.CheckpointName
}
return ""
}
func (m *Checkpoint) GetCheckpointId() string {
if m != nil {
return m.CheckpointId
}
return ""
}
func (m *Checkpoint) GetParentCheckpointId() string {
if m != nil {
return m.ParentCheckpointId
}
return ""
}
func (m *Checkpoint) GetCreationTime() string {
if m != nil {
return m.CreationTime
}
return ""
}
type VirtualMachine struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
@ -889,6 +952,7 @@ type VirtualMachine struct {
GuestAgent *common.GuestAgentConfiguration `protobuf:"bytes,15,opt,name=guestAgent,proto3" json:"guestAgent,omitempty"`
GuestAgentInstanceView *common.VirtualMachineAgentInstanceView `protobuf:"bytes,16,opt,name=guestAgentInstanceView,proto3" json:"guestAgentInstanceView,omitempty"`
CheckpointType common.CheckpointType `protobuf:"varint,17,opt,name=checkpointType,proto3,enum=moc.CheckpointType" json:"checkpointType,omitempty"`
Checkpoints []*Checkpoint `protobuf:"bytes,18,rep,name=checkpoints,proto3" json:"checkpoints,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -898,7 +962,7 @@ func (m *VirtualMachine) Reset() { *m = VirtualMachine{} }
func (m *VirtualMachine) String() string { return proto.CompactTextString(m) }
func (*VirtualMachine) ProtoMessage() {}
func (*VirtualMachine) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{16}
return fileDescriptor_9f3eecb05bcac3b7, []int{17}
}
func (m *VirtualMachine) XXX_Unmarshal(b []byte) error {
@ -1038,6 +1102,13 @@ func (m *VirtualMachine) GetCheckpointType() common.CheckpointType {
return common.CheckpointType_Production
}
func (m *VirtualMachine) GetCheckpoints() []*Checkpoint {
if m != nil {
return m.Checkpoints
}
return nil
}
type VirtualMachineOperationRequest struct {
VirtualMachines []*VirtualMachine `protobuf:"bytes,1,rep,name=VirtualMachines,proto3" json:"VirtualMachines,omitempty"`
OperationType common.VirtualMachineOperation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.VirtualMachineOperation" json:"OperationType,omitempty"`
@ -1050,7 +1121,7 @@ func (m *VirtualMachineOperationRequest) Reset() { *m = VirtualMachineOp
func (m *VirtualMachineOperationRequest) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineOperationRequest) ProtoMessage() {}
func (*VirtualMachineOperationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{17}
return fileDescriptor_9f3eecb05bcac3b7, []int{18}
}
func (m *VirtualMachineOperationRequest) XXX_Unmarshal(b []byte) error {
@ -1098,7 +1169,7 @@ func (m *VirtualMachineOperationResponse) Reset() { *m = VirtualMachineO
func (m *VirtualMachineOperationResponse) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineOperationResponse) ProtoMessage() {}
func (*VirtualMachineOperationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{18}
return fileDescriptor_9f3eecb05bcac3b7, []int{19}
}
func (m *VirtualMachineOperationResponse) XXX_Unmarshal(b []byte) error {
@ -1155,7 +1226,7 @@ func (m *VirtualMachineCheckpointOperationRequest) Reset() {
func (m *VirtualMachineCheckpointOperationRequest) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineCheckpointOperationRequest) ProtoMessage() {}
func (*VirtualMachineCheckpointOperationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{19}
return fileDescriptor_9f3eecb05bcac3b7, []int{20}
}
func (m *VirtualMachineCheckpointOperationRequest) XXX_Unmarshal(b []byte) error {
@ -1214,7 +1285,7 @@ func (m *VirtualMachineCheckpointOperationResponse) String() string {
}
func (*VirtualMachineCheckpointOperationResponse) ProtoMessage() {}
func (*VirtualMachineCheckpointOperationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{20}
return fileDescriptor_9f3eecb05bcac3b7, []int{21}
}
func (m *VirtualMachineCheckpointOperationResponse) XXX_Unmarshal(b []byte) error {
@ -1271,7 +1342,7 @@ func (m *VirtualMachineRunCommandRequest) Reset() { *m = VirtualMachineR
func (m *VirtualMachineRunCommandRequest) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineRunCommandRequest) ProtoMessage() {}
func (*VirtualMachineRunCommandRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{21}
return fileDescriptor_9f3eecb05bcac3b7, []int{22}
}
func (m *VirtualMachineRunCommandRequest) XXX_Unmarshal(b []byte) error {
@ -1339,7 +1410,7 @@ func (m *VirtualMachineRunCommandResponse) Reset() { *m = VirtualMachine
func (m *VirtualMachineRunCommandResponse) String() string { return proto.CompactTextString(m) }
func (*VirtualMachineRunCommandResponse) ProtoMessage() {}
func (*VirtualMachineRunCommandResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9f3eecb05bcac3b7, []int{22}
return fileDescriptor_9f3eecb05bcac3b7, []int{23}
}
func (m *VirtualMachineRunCommandResponse) XXX_Unmarshal(b []byte) error {
@ -1391,6 +1462,7 @@ func init() {
proto.RegisterType((*HardwareConfiguration)(nil), "moc.nodeagent.compute.HardwareConfiguration")
proto.RegisterType((*UefiSettings)(nil), "moc.nodeagent.compute.UefiSettings")
proto.RegisterType((*SecurityConfiguration)(nil), "moc.nodeagent.compute.SecurityConfiguration")
proto.RegisterType((*Checkpoint)(nil), "moc.nodeagent.compute.Checkpoint")
proto.RegisterType((*VirtualMachine)(nil), "moc.nodeagent.compute.VirtualMachine")
proto.RegisterType((*VirtualMachineOperationRequest)(nil), "moc.nodeagent.compute.VirtualMachineOperationRequest")
proto.RegisterType((*VirtualMachineOperationResponse)(nil), "moc.nodeagent.compute.VirtualMachineOperationResponse")
@ -1405,120 +1477,125 @@ func init() {
}
var fileDescriptor_9f3eecb05bcac3b7 = []byte{
// 1801 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdd, 0x6e, 0x1b, 0xc7,
0x15, 0x2e, 0xa9, 0x5f, 0x1e, 0x49, 0x74, 0x34, 0x96, 0xec, 0x0d, 0x63, 0x3b, 0xc2, 0x3a, 0x4d,
0xe5, 0xc6, 0xa5, 0x02, 0x3a, 0x49, 0x5b, 0x34, 0xfd, 0xd1, 0x5f, 0x2c, 0xb5, 0x95, 0xac, 0x0e,
0x6d, 0x07, 0x4d, 0x0b, 0xa8, 0xa3, 0xdd, 0x11, 0x39, 0x10, 0x77, 0x67, 0x3b, 0x33, 0x6b, 0x86,
0xbe, 0x29, 0x50, 0xa0, 0x68, 0x1e, 0xa1, 0x4f, 0xd0, 0x8b, 0xde, 0xe7, 0xae, 0x40, 0x7b, 0xd5,
0xf6, 0x31, 0xfa, 0x00, 0x45, 0x9f, 0xa1, 0x98, 0xd9, 0x59, 0x72, 0x77, 0xb9, 0x2b, 0xd0, 0x85,
0x03, 0xe4, 0x4a, 0xdc, 0x73, 0xce, 0xf7, 0xcd, 0x99, 0xf3, 0x37, 0x33, 0x02, 0x37, 0xe0, 0xde,
0x79, 0xc8, 0x7d, 0x4a, 0x7a, 0x34, 0x54, 0xe7, 0x2f, 0x98, 0x50, 0x31, 0x19, 0x04, 0xc4, 0xeb,
0xb3, 0x90, 0xb6, 0x23, 0xc1, 0x15, 0x47, 0x9b, 0x01, 0xf7, 0xda, 0x63, 0x9b, 0xb6, 0xc7, 0x83,
0x28, 0x56, 0xb4, 0xf5, 0x56, 0x8f, 0xf3, 0xde, 0x80, 0xee, 0x18, 0xa3, 0x8b, 0xf8, 0x72, 0x87,
0x06, 0x91, 0x1a, 0x25, 0x98, 0xd6, 0xbd, 0xa2, 0x72, 0x28, 0x48, 0x14, 0x51, 0x21, 0xad, 0xfe,
0xb6, 0x5e, 0xd7, 0xe3, 0x41, 0xc0, 0x43, 0xfb, 0x27, 0x05, 0xe6, 0x15, 0x7a, 0xa5, 0x9c, 0xfe,
0x6e, 0x46, 0x1f, 0x72, 0xc5, 0x2e, 0x99, 0x47, 0x14, 0x4b, 0xd5, 0xee, 0x5f, 0x6a, 0xb0, 0xf9,
0x3c, 0xd9, 0xc4, 0x49, 0xb2, 0x09, 0x4c, 0x7f, 0x1b, 0x53, 0xa9, 0xd0, 0xaf, 0x8a, 0x8a, 0xee,
0x48, 0x2a, 0x1a, 0x48, 0xa7, 0xb6, 0x35, 0xb7, 0xbd, 0xd2, 0xf9, 0x66, 0xbb, 0x74, 0x97, 0xed,
0x02, 0x59, 0x39, 0x07, 0xfa, 0x00, 0xd6, 0x9e, 0x44, 0x54, 0x18, 0x4f, 0x9e, 0x8e, 0x22, 0xea,
0xd4, 0xb7, 0x6a, 0xdb, 0xcd, 0x4e, 0xd3, 0x90, 0x8e, 0x35, 0x38, 0x6f, 0xe4, 0xfe, 0xad, 0x06,
0xb7, 0x8a, 0xce, 0xca, 0x88, 0x87, 0x92, 0x7e, 0xb5, 0xde, 0x76, 0x60, 0x11, 0x53, 0x19, 0x0f,
0x94, 0x71, 0x73, 0xa5, 0xd3, 0x6a, 0x27, 0xd9, 0x6a, 0xa7, 0xd9, 0x6a, 0xef, 0x71, 0x3e, 0x78,
0x4e, 0x06, 0x31, 0xc5, 0xd6, 0x12, 0x6d, 0xc0, 0xc2, 0xa1, 0x10, 0x5c, 0x38, 0x73, 0x5b, 0xb5,
0xed, 0x06, 0x4e, 0x3e, 0xdc, 0x36, 0xac, 0x76, 0xbb, 0x47, 0x67, 0xf1, 0xc5, 0x80, 0x79, 0x3f,
0xa3, 0x23, 0x74, 0x0f, 0x96, 0xae, 0xe8, 0xc8, 0x27, 0x8a, 0x38, 0x35, 0x6d, 0xb7, 0x37, 0xff,
0xc5, 0x97, 0x4e, 0x0d, 0xa7, 0x42, 0xd7, 0x85, 0xf9, 0x03, 0x26, 0xaf, 0x50, 0x0b, 0x96, 0x7d,
0x26, 0xaf, 0x42, 0x12, 0xd0, 0xc4, 0x10, 0x8f, 0xbf, 0xdd, 0x01, 0xac, 0x76, 0xfb, 0x44, 0x50,
0xff, 0x13, 0x3e, 0xf0, 0xa9, 0x40, 0x1f, 0xc0, 0xa6, 0x34, 0xdf, 0x97, 0xe6, 0x5b, 0xd0, 0x4b,
0x2a, 0x68, 0xe8, 0xa5, 0xc0, 0x72, 0x25, 0x7a, 0x17, 0x9a, 0x3d, 0x9d, 0xf7, 0x80, 0xc7, 0xa1,
0x8a, 0x88, 0xea, 0x9b, 0xbd, 0x36, 0x70, 0x41, 0xea, 0xfe, 0xb1, 0x0e, 0x1b, 0x5d, 0xc5, 0x05,
0xe9, 0xd1, 0x7d, 0x1e, 0x5e, 0xb2, 0x5e, 0x9c, 0x24, 0x08, 0x3d, 0x82, 0x45, 0x2e, 0xb5, 0x53,
0x66, 0x9d, 0x95, 0xce, 0x5b, 0x15, 0x21, 0xd7, 0xfb, 0xc1, 0xd6, 0x14, 0x7d, 0x1f, 0x1a, 0x7a,
0x9f, 0xfa, 0xb7, 0x74, 0xea, 0x26, 0x55, 0xd7, 0xe2, 0x26, 0xd6, 0x7a, 0x9b, 0x2f, 0x82, 0xc4,
0x85, 0x7d, 0x1e, 0x2a, 0xc2, 0x42, 0x2a, 0x4e, 0x75, 0x7c, 0x92, 0x80, 0x97, 0x2b, 0xd1, 0x31,
0xac, 0xc9, 0x4c, 0xb0, 0xa4, 0x33, 0x6f, 0x16, 0xbd, 0x5f, 0xb1, 0x68, 0x36, 0xb0, 0x38, 0x8f,
0x74, 0x3f, 0x81, 0x37, 0x4e, 0xa9, 0x1a, 0x72, 0x71, 0x75, 0x1c, 0x2a, 0x2a, 0x2e, 0x89, 0x47,
0x51, 0x07, 0x36, 0xc2, 0x82, 0xec, 0x74, 0x92, 0xb3, 0x52, 0x9d, 0x7b, 0x0e, 0x1b, 0x96, 0x27,
0x1f, 0xd0, 0xc7, 0x00, 0x2c, 0x35, 0x4c, 0xeb, 0xf8, 0x5b, 0x15, 0x7e, 0x16, 0x1d, 0xc1, 0x19,
0xa8, 0xfb, 0xfb, 0x1a, 0xac, 0x3f, 0x93, 0x54, 0xe4, 0xe9, 0xb7, 0x60, 0x39, 0x96, 0x54, 0x4c,
0x4a, 0xca, 0xd6, 0xde, 0x58, 0xaa, 0x2d, 0x22, 0x22, 0xe5, 0x90, 0x0b, 0x3f, 0x29, 0x86, 0xd4,
0x22, 0x95, 0xa2, 0x07, 0x09, 0x87, 0xd2, 0x1d, 0x3c, 0x67, 0x3a, 0x78, 0xcd, 0x38, 0xa8, 0x57,
0xd3, 0x1d, 0x8b, 0xc7, 0x6a, 0x1d, 0x2d, 0x7c, 0x70, 0x96, 0x77, 0xe1, 0x1e, 0x80, 0xcf, 0x24,
0xb9, 0x18, 0x50, 0x7c, 0x70, 0x66, 0x9c, 0x58, 0xc6, 0x19, 0x09, 0x42, 0x30, 0x1f, 0x71, 0x91,
0x74, 0xdd, 0x1a, 0x36, 0xbf, 0xdd, 0x3f, 0xd7, 0x00, 0xfd, 0x9c, 0x85, 0xf1, 0xe7, 0x79, 0xaa,
0x03, 0xb8, 0x6b, 0x81, 0x67, 0xd6, 0xb9, 0xdd, 0x58, 0xf5, 0x69, 0xa8, 0xec, 0xb8, 0xb3, 0xec,
0xd7, 0x1b, 0xa1, 0x9f, 0xc2, 0x4d, 0x6f, 0xc0, 0x63, 0xff, 0x38, 0x64, 0xea, 0x80, 0x28, 0xd2,
0xe5, 0xb1, 0xf0, 0xd2, 0xe1, 0xe4, 0x98, 0xad, 0xed, 0x4f, 0xeb, 0x71, 0x19, 0xc8, 0xfd, 0xa2,
0x0e, 0x1b, 0x9f, 0xb2, 0xd0, 0xe7, 0x43, 0x99, 0x77, 0xf5, 0x23, 0xb8, 0x45, 0x43, 0xed, 0xc4,
0x6e, 0xac, 0x78, 0x40, 0x14, 0xf3, 0x9e, 0x45, 0x3e, 0x51, 0x26, 0xc7, 0xda, 0xc7, 0x0a, 0xad,
0x9e, 0x01, 0x8a, 0x05, 0xf4, 0x33, 0x1e, 0x52, 0xdb, 0x9b, 0xe3, 0x6f, 0xd4, 0x9d, 0x8e, 0xae,
0x49, 0x48, 0x75, 0xc5, 0x14, 0xcd, 0xf1, 0x74, 0x7a, 0x1e, 0x03, 0xfa, 0x94, 0x85, 0xf8, 0x24,
0x4f, 0x3b, 0x6f, 0x68, 0x6f, 0x1b, 0xda, 0x69, 0x35, 0x2e, 0x81, 0xb8, 0xff, 0x5c, 0x80, 0x3b,
0x76, 0x92, 0x87, 0xbd, 0x64, 0xa8, 0xe6, 0x57, 0x72, 0x61, 0xd5, 0xfa, 0x25, 0x32, 0xed, 0x92,
0x93, 0xa1, 0x53, 0x58, 0x23, 0x7e, 0xc0, 0x42, 0x26, 0x95, 0x20, 0x8a, 0x0b, 0x3b, 0x8b, 0xb7,
0x2b, 0xf6, 0x37, 0x55, 0xf0, 0x38, 0x0f, 0x47, 0x3f, 0x82, 0x05, 0x5d, 0x9c, 0xd2, 0x99, 0x33,
0x9d, 0x35, 0x3b, 0x4f, 0x02, 0x43, 0xef, 0x00, 0x78, 0xb1, 0x54, 0x3c, 0xd0, 0x39, 0x37, 0x51,
0x49, 0xfb, 0x23, 0x23, 0x47, 0xfb, 0x00, 0x91, 0x99, 0xf6, 0x57, 0x74, 0x24, 0x9d, 0x85, 0xeb,
0x87, 0x4d, 0xe6, 0x64, 0xc0, 0x19, 0x18, 0x7a, 0x5f, 0x8f, 0x56, 0xd3, 0x64, 0x8b, 0x99, 0x4a,
0x2c, 0x44, 0xd4, 0xf4, 0x9b, 0xb5, 0x43, 0xbf, 0x80, 0x75, 0x2e, 0xf7, 0x38, 0x57, 0x7a, 0xb7,
0xd1, 0x61, 0xd8, 0x63, 0x21, 0x75, 0x96, 0x0c, 0xf8, 0x7e, 0x19, 0xb8, 0x60, 0x8a, 0xa7, 0xd1,
0xe8, 0x97, 0x80, 0x06, 0x53, 0x7d, 0xe7, 0x2c, 0x9b, 0x24, 0x3c, 0xa8, 0xd8, 0xd1, 0x74, 0xa3,
0xe2, 0x12, 0x12, 0x74, 0x0e, 0x1b, 0xc3, 0x92, 0x4e, 0x71, 0x1a, 0x86, 0xfc, 0xbd, 0x0a, 0xf2,
0xb2, 0xe6, 0xc2, 0xa5, 0x44, 0xba, 0x92, 0x23, 0xc1, 0x3f, 0x1f, 0xe5, 0xe9, 0x21, 0x53, 0xc9,
0x67, 0x53, 0x6a, 0x5c, 0x02, 0x71, 0xff, 0x53, 0x83, 0xcd, 0x23, 0x22, 0xfc, 0x21, 0x11, 0xd3,
0xc7, 0xdf, 0xf3, 0x93, 0x2e, 0x7b, 0x99, 0x14, 0x6f, 0xd3, 0x1e, 0x63, 0x85, 0xfb, 0x04, 0x7b,
0x49, 0x93, 0x34, 0x25, 0xa6, 0xe8, 0x87, 0x69, 0x0d, 0x19, 0x60, 0x52, 0xd0, 0x77, 0x4b, 0x80,
0xfb, 0x63, 0x23, 0x9c, 0x01, 0xa0, 0x73, 0x68, 0xf9, 0xa3, 0x90, 0x04, 0xcc, 0x3b, 0xa1, 0x01,
0x17, 0xa3, 0xb2, 0xfe, 0x7f, 0xdb, 0xd0, 0x1d, 0x54, 0x9a, 0xe1, 0x6b, 0x28, 0xdc, 0x8f, 0x61,
0xf5, 0x19, 0xbd, 0x64, 0x5d, 0xaa, 0x74, 0xa9, 0x48, 0xf4, 0x10, 0xd6, 0x25, 0xf5, 0x62, 0x41,
0x75, 0x71, 0x1c, 0x9a, 0x31, 0xe5, 0xdb, 0xa9, 0x35, 0xad, 0x70, 0xbf, 0xac, 0xc1, 0x66, 0x57,
0x4b, 0x99, 0xca, 0xf3, 0xa2, 0x3b, 0xd0, 0x48, 0x86, 0xdc, 0xd3, 0xb3, 0x13, 0x8b, 0x9f, 0x08,
0xd0, 0x63, 0x58, 0x8d, 0x33, 0xab, 0xda, 0xb8, 0x54, 0x75, 0x4d, 0xd6, 0x41, 0x9c, 0x03, 0xa2,
0x0f, 0x61, 0x55, 0xda, 0xf5, 0x9f, 0x4e, 0x8e, 0xa8, 0x75, 0x43, 0xd4, 0xcd, 0x28, 0x70, 0xce,
0xcc, 0xfd, 0xd7, 0x12, 0x34, 0xf3, 0xf1, 0xd7, 0x27, 0x51, 0xe6, 0xee, 0x65, 0x7e, 0xa3, 0x26,
0xd4, 0x99, 0x3d, 0x18, 0x71, 0x9d, 0xf9, 0xe8, 0x10, 0x96, 0x64, 0x72, 0x31, 0xb2, 0xa1, 0xaf,
0x2a, 0xdc, 0xb2, 0xeb, 0x13, 0x4e, 0xb1, 0x68, 0x1f, 0xea, 0x5c, 0xda, 0x29, 0xfb, 0xa8, 0x82,
0xe1, 0xba, 0x61, 0x8a, 0xeb, 0x5c, 0x6a, 0x5f, 0xec, 0x5d, 0xc3, 0x59, 0xb8, 0xd6, 0x97, 0xb2,
0x9b, 0x07, 0x4e, 0xb1, 0xe8, 0x08, 0x96, 0xfb, 0xb6, 0xda, 0xcd, 0xe8, 0x59, 0xe9, 0x3c, 0xac,
0xe0, 0x29, 0x6d, 0x0a, 0x3c, 0x46, 0xa3, 0xfb, 0xb0, 0x28, 0x15, 0x51, 0xb1, 0x34, 0x53, 0x68,
0xa5, 0xb3, 0x92, 0x24, 0xc1, 0x88, 0xb0, 0x55, 0xa1, 0xef, 0xc1, 0x6d, 0x7b, 0x3e, 0x1f, 0xb1,
0x5e, 0x7f, 0xf7, 0x05, 0x61, 0x03, 0x72, 0xc1, 0x06, 0x4c, 0x8d, 0xcc, 0x9c, 0x59, 0xc6, 0x55,
0x6a, 0x5d, 0x98, 0x64, 0x30, 0xe0, 0x43, 0xea, 0x3f, 0x19, 0xea, 0xab, 0x1e, 0xf7, 0xa9, 0x74,
0x1a, 0x5b, 0x73, 0xdb, 0x0d, 0x3c, 0xad, 0x40, 0x3b, 0x00, 0x11, 0x1f, 0x52, 0xa1, 0x97, 0xa7,
0x66, 0x0c, 0x34, 0x3b, 0x37, 0x92, 0x31, 0x30, 0x16, 0xe3, 0x8c, 0x89, 0x8e, 0x43, 0x5a, 0x21,
0xce, 0xca, 0xb5, 0x71, 0x28, 0xad, 0x77, 0x3c, 0x46, 0xeb, 0x38, 0xe8, 0xfb, 0x86, 0x1a, 0x39,
0xab, 0x99, 0x38, 0x1c, 0x1a, 0x11, 0xb6, 0x2a, 0x74, 0x06, 0x9b, 0xfd, 0xc2, 0x0e, 0x13, 0x57,
0xd7, 0x8c, 0xab, 0x2d, 0x83, 0x39, 0x2a, 0xb3, 0xc0, 0xe5, 0x40, 0x74, 0x17, 0xe6, 0x15, 0xe9,
0x49, 0xa7, 0x69, 0x16, 0x6d, 0x18, 0x82, 0xa7, 0xa4, 0x27, 0xb1, 0x11, 0xa3, 0x8f, 0x01, 0xcc,
0x35, 0x7f, 0x57, 0xef, 0xc5, 0xb9, 0x61, 0x8c, 0xee, 0x18, 0xa3, 0xc7, 0x63, 0x71, 0x7e, 0x47,
0x19, 0x7b, 0xf4, 0x6b, 0xb8, 0x35, 0xf9, 0x3a, 0x0e, 0xa5, 0x22, 0xa1, 0x47, 0x9f, 0x33, 0x3a,
0x74, 0xde, 0x30, 0x4c, 0xef, 0x94, 0x4c, 0xb4, 0x29, 0x5b, 0x5c, 0xc1, 0x81, 0x7e, 0x00, 0x4d,
0xaf, 0x4f, 0xbd, 0xab, 0x88, 0xb3, 0x50, 0x99, 0x36, 0x5e, 0x37, 0x51, 0xb8, 0x99, 0x5c, 0xc7,
0x72, 0x2a, 0x5c, 0x30, 0xd5, 0x23, 0xe8, 0x5e, 0x7e, 0xe1, 0xc9, 0xe3, 0xd2, 0xbe, 0x73, 0x9f,
0xc0, 0x8d, 0xbc, 0xc5, 0x2b, 0xbe, 0x19, 0x8b, 0x68, 0xb4, 0x57, 0xfe, 0xb6, 0xbd, 0x53, 0x12,
0x85, 0xca, 0x97, 0xee, 0x5f, 0x6b, 0xf0, 0x76, 0xa5, 0xdf, 0xf6, 0xc9, 0xfb, 0xda, 0x1d, 0x7f,
0x7d, 0xcf, 0xdc, 0x3f, 0xd4, 0x61, 0xbb, 0x70, 0x82, 0x8d, 0xf3, 0xf2, 0xd5, 0x27, 0xe0, 0x37,
0x70, 0xbb, 0x64, 0xb9, 0x4c, 0x2a, 0xde, 0x2d, 0x3b, 0x62, 0x4b, 0x1c, 0xac, 0xa2, 0xd1, 0x8f,
0xe5, 0x89, 0x2a, 0xf3, 0xe8, 0x2c, 0x48, 0xdd, 0x7f, 0xd4, 0xe0, 0xc1, 0x0c, 0x71, 0xf8, 0xfa,
0x27, 0xf4, 0xbf, 0xf5, 0x62, 0x3d, 0xe2, 0x38, 0xdc, 0xe7, 0x41, 0x40, 0x42, 0x3f, 0xcd, 0xe3,
0x49, 0xf1, 0xd4, 0xb4, 0xff, 0x08, 0x98, 0xd1, 0xfb, 0xe2, 0x91, 0xbb, 0x0b, 0x8b, 0x99, 0xe7,
0x57, 0x7a, 0xc7, 0xac, 0x72, 0xa2, 0xeb, 0x09, 0x16, 0x29, 0xfb, 0x1e, 0xb3, 0x40, 0xc4, 0xe0,
0xcd, 0x89, 0xc5, 0x71, 0x18, 0xc5, 0xea, 0x8c, 0x08, 0x12, 0x50, 0x35, 0xb9, 0xf6, 0xbf, 0x77,
0x2d, 0x6b, 0x1e, 0x83, 0xab, 0xd9, 0x90, 0x0b, 0x0d, 0x1c, 0x87, 0xbb, 0x52, 0x3f, 0x17, 0x72,
0x8f, 0x81, 0x89, 0x18, 0x7d, 0x1b, 0xd6, 0xcc, 0x47, 0xfa, 0xf8, 0x34, 0x47, 0x73, 0x6a, 0x97,
0x57, 0xb9, 0x7f, 0xaf, 0xc1, 0x56, 0x75, 0xc0, 0x6d, 0xc1, 0xbc, 0xe6, 0x88, 0x9f, 0xc0, 0x6a,
0x6e, 0x7a, 0xcf, 0x12, 0xf7, 0xdc, 0x08, 0xcf, 0xc1, 0x3b, 0xff, 0x9e, 0x87, 0x9b, 0x25, 0x43,
0x1f, 0xf5, 0x60, 0xf1, 0x38, 0x7c, 0xc1, 0xaf, 0x28, 0x7a, 0x38, 0x9b, 0x9f, 0x49, 0x7d, 0xb5,
0xbe, 0x33, 0xa3, 0x75, 0x12, 0x1c, 0xf7, 0x1b, 0xe8, 0x25, 0x2c, 0x25, 0x4d, 0x46, 0xd1, 0x87,
0x33, 0x61, 0x8b, 0xa3, 0xa9, 0xf5, 0xd1, 0xab, 0xc2, 0xc6, 0x6b, 0xff, 0xa9, 0x06, 0xeb, 0xc5,
0x5e, 0xa7, 0xe8, 0xc7, 0x33, 0xf1, 0x55, 0xcf, 0xca, 0xd6, 0x4f, 0xfe, 0x7f, 0x82, 0xb1, 0x6b,
0x47, 0xd6, 0xb3, 0xd3, 0xcc, 0x7f, 0x83, 0xd1, 0xad, 0xa9, 0xd1, 0x70, 0x18, 0x44, 0x6a, 0xd4,
0x7a, 0xd3, 0x2c, 0x98, 0x35, 0xcd, 0x30, 0xfd, 0x0e, 0x60, 0x52, 0x09, 0x68, 0xb6, 0x60, 0x4d,
0xcd, 0x8d, 0xd6, 0x77, 0x5f, 0x19, 0x97, 0x3a, 0xb0, 0xf7, 0xfe, 0x67, 0xed, 0x1e, 0x53, 0xfd,
0xf8, 0x42, 0x83, 0x76, 0x02, 0xe6, 0x09, 0x2e, 0xf9, 0xa5, 0xda, 0x09, 0xb8, 0xb7, 0x23, 0x22,
0x6f, 0x67, 0x4c, 0xba, 0x63, 0x49, 0x2f, 0x16, 0xcd, 0xfe, 0x1e, 0xfd, 0x2f, 0x00, 0x00, 0xff,
0xff, 0xf7, 0x46, 0x81, 0x7a, 0xc8, 0x17, 0x00, 0x00,
// 1873 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdd, 0x6e, 0x1c, 0x49,
0x15, 0x66, 0xc6, 0x3f, 0xf1, 0x1c, 0xff, 0x64, 0x5d, 0xb1, 0x93, 0xde, 0xd9, 0x24, 0x6b, 0x3a,
0xcb, 0xe2, 0xb0, 0x61, 0xbc, 0x9a, 0xec, 0x2e, 0x20, 0x96, 0x1f, 0x7b, 0xec, 0x8d, 0x0d, 0xd8,
0x31, 0x35, 0x49, 0x56, 0x2c, 0x48, 0xa6, 0xdc, 0x5d, 0x9e, 0x29, 0x79, 0xba, 0xab, 0xa9, 0xaa,
0xce, 0xec, 0xe4, 0x06, 0x09, 0x09, 0xb1, 0x37, 0xdc, 0xf3, 0x04, 0x5c, 0x20, 0x6e, 0xf7, 0x0e,
0x09, 0xae, 0xe0, 0x35, 0x78, 0x00, 0xc4, 0x33, 0xa0, 0xaa, 0xae, 0x9e, 0xe9, 0xee, 0xe9, 0xb6,
0x26, 0x28, 0x91, 0xf6, 0xca, 0xd3, 0xe7, 0x9c, 0xef, 0xab, 0x53, 0xe7, 0xaf, 0xaa, 0x0c, 0x6e,
0xc0, 0xbd, 0xb3, 0x90, 0xfb, 0x94, 0xf4, 0x68, 0xa8, 0xce, 0x9e, 0x33, 0xa1, 0x62, 0x32, 0x08,
0x88, 0xd7, 0x67, 0x21, 0x6d, 0x45, 0x82, 0x2b, 0x8e, 0x36, 0x03, 0xee, 0xb5, 0xc6, 0x36, 0x2d,
0x8f, 0x07, 0x51, 0xac, 0x68, 0xf3, 0xad, 0x1e, 0xe7, 0xbd, 0x01, 0xdd, 0x31, 0x46, 0xe7, 0xf1,
0xc5, 0x0e, 0x0d, 0x22, 0x35, 0x4a, 0x30, 0xcd, 0xbb, 0x45, 0xe5, 0x50, 0x90, 0x28, 0xa2, 0x42,
0x5a, 0xfd, 0x2d, 0xbd, 0xae, 0xc7, 0x83, 0x80, 0x87, 0xf6, 0x4f, 0x0a, 0xcc, 0x2b, 0xf4, 0x4a,
0x39, 0xfd, 0x9d, 0x8c, 0x3e, 0xe4, 0x8a, 0x5d, 0x30, 0x8f, 0x28, 0x96, 0xaa, 0xdd, 0xbf, 0xd4,
0x60, 0xf3, 0x59, 0xb2, 0x89, 0xe3, 0x64, 0x13, 0x98, 0xfe, 0x26, 0xa6, 0x52, 0xa1, 0x5f, 0x16,
0x15, 0xdd, 0x91, 0x54, 0x34, 0x90, 0x4e, 0x6d, 0x6b, 0x6e, 0x7b, 0xb9, 0xfd, 0x8d, 0x56, 0xe9,
0x2e, 0x5b, 0x05, 0xb2, 0x72, 0x0e, 0xf4, 0x01, 0xac, 0x3e, 0x8e, 0xa8, 0x30, 0x9e, 0x3c, 0x19,
0x45, 0xd4, 0xa9, 0x6f, 0xd5, 0xb6, 0xd7, 0xda, 0x6b, 0x86, 0x74, 0xac, 0xc1, 0x79, 0x23, 0xf7,
0xef, 0x35, 0xb8, 0x59, 0x74, 0x56, 0x46, 0x3c, 0x94, 0xf4, 0xf5, 0x7a, 0xdb, 0x86, 0x45, 0x4c,
0x65, 0x3c, 0x50, 0xc6, 0xcd, 0xe5, 0x76, 0xb3, 0x95, 0x64, 0xab, 0x95, 0x66, 0xab, 0xb5, 0xc7,
0xf9, 0xe0, 0x19, 0x19, 0xc4, 0x14, 0x5b, 0x4b, 0xb4, 0x01, 0x0b, 0x07, 0x42, 0x70, 0xe1, 0xcc,
0x6d, 0xd5, 0xb6, 0x1b, 0x38, 0xf9, 0x70, 0x5b, 0xb0, 0xd2, 0xed, 0x1e, 0x9e, 0xc6, 0xe7, 0x03,
0xe6, 0xfd, 0x94, 0x8e, 0xd0, 0x5d, 0xb8, 0x76, 0x49, 0x47, 0x3e, 0x51, 0xc4, 0xa9, 0x69, 0xbb,
0xbd, 0xf9, 0x2f, 0xbe, 0x74, 0x6a, 0x38, 0x15, 0xba, 0x2e, 0xcc, 0xef, 0x33, 0x79, 0x89, 0x9a,
0xb0, 0xe4, 0x33, 0x79, 0x19, 0x92, 0x80, 0x26, 0x86, 0x78, 0xfc, 0xed, 0x0e, 0x60, 0xa5, 0xdb,
0x27, 0x82, 0xfa, 0x9f, 0xf0, 0x81, 0x4f, 0x05, 0xfa, 0x00, 0x36, 0xa5, 0xf9, 0xbe, 0x30, 0xdf,
0x82, 0x5e, 0x50, 0x41, 0x43, 0x2f, 0x05, 0x96, 0x2b, 0xd1, 0xbb, 0xb0, 0xd6, 0xd3, 0x79, 0x0f,
0x78, 0x1c, 0xaa, 0x88, 0xa8, 0xbe, 0xd9, 0x6b, 0x03, 0x17, 0xa4, 0xee, 0x1f, 0xea, 0xb0, 0xd1,
0x55, 0x5c, 0x90, 0x1e, 0xed, 0xf0, 0xf0, 0x82, 0xf5, 0xe2, 0x24, 0x41, 0xe8, 0x21, 0x2c, 0x72,
0xa9, 0x9d, 0x32, 0xeb, 0x2c, 0xb7, 0xdf, 0xaa, 0x08, 0xb9, 0xde, 0x0f, 0xb6, 0xa6, 0xe8, 0x7b,
0xd0, 0xd0, 0xfb, 0xd4, 0xbf, 0xa5, 0x53, 0x37, 0xa9, 0xba, 0x12, 0x37, 0xb1, 0xd6, 0xdb, 0x7c,
0x1e, 0x24, 0x2e, 0x74, 0x78, 0xa8, 0x08, 0x0b, 0xa9, 0x38, 0xd1, 0xf1, 0x49, 0x02, 0x5e, 0xae,
0x44, 0x47, 0xb0, 0x2a, 0x33, 0xc1, 0x92, 0xce, 0xbc, 0x59, 0xf4, 0x5e, 0xc5, 0xa2, 0xd9, 0xc0,
0xe2, 0x3c, 0xd2, 0xfd, 0x04, 0xde, 0x38, 0xa1, 0x6a, 0xc8, 0xc5, 0xe5, 0x51, 0xa8, 0xa8, 0xb8,
0x20, 0x1e, 0x45, 0x6d, 0xd8, 0x08, 0x0b, 0xb2, 0x93, 0x49, 0xce, 0x4a, 0x75, 0xee, 0x19, 0x6c,
0x58, 0x9e, 0x7c, 0x40, 0x1f, 0x01, 0xb0, 0xd4, 0x30, 0xad, 0xe3, 0x6f, 0x56, 0xf8, 0x59, 0x74,
0x04, 0x67, 0xa0, 0xee, 0xef, 0x6a, 0xb0, 0xfe, 0x54, 0x52, 0x91, 0xa7, 0xdf, 0x82, 0xa5, 0x58,
0x52, 0x31, 0x29, 0x29, 0x5b, 0x7b, 0x63, 0xa9, 0xb6, 0x88, 0x88, 0x94, 0x43, 0x2e, 0xfc, 0xa4,
0x18, 0x52, 0x8b, 0x54, 0x8a, 0xee, 0x27, 0x1c, 0x4a, 0x77, 0xf0, 0x9c, 0xe9, 0xe0, 0x55, 0xe3,
0xa0, 0x5e, 0x4d, 0x77, 0x2c, 0x1e, 0xab, 0x75, 0xb4, 0xf0, 0xfe, 0x69, 0xde, 0x85, 0xbb, 0x00,
0x3e, 0x93, 0xe4, 0x7c, 0x40, 0xf1, 0xfe, 0xa9, 0x71, 0x62, 0x09, 0x67, 0x24, 0x08, 0xc1, 0x7c,
0xc4, 0x45, 0xd2, 0x75, 0xab, 0xd8, 0xfc, 0x76, 0xff, 0x5c, 0x03, 0xf4, 0x33, 0x16, 0xc6, 0x9f,
0xe7, 0xa9, 0xf6, 0xe1, 0x8e, 0x05, 0x9e, 0x5a, 0xe7, 0x76, 0x63, 0xd5, 0xa7, 0xa1, 0xb2, 0xe3,
0xce, 0xb2, 0x5f, 0x6d, 0x84, 0x7e, 0x02, 0x37, 0xbc, 0x01, 0x8f, 0xfd, 0xa3, 0x90, 0xa9, 0x7d,
0xa2, 0x48, 0x97, 0xc7, 0xc2, 0x4b, 0x87, 0x93, 0x63, 0xb6, 0xd6, 0x99, 0xd6, 0xe3, 0x32, 0x90,
0xfb, 0x45, 0x1d, 0x36, 0x3e, 0x65, 0xa1, 0xcf, 0x87, 0x32, 0xef, 0xea, 0x47, 0x70, 0x93, 0x86,
0xda, 0x89, 0xdd, 0x58, 0xf1, 0x80, 0x28, 0xe6, 0x3d, 0x8d, 0x7c, 0xa2, 0x4c, 0x8e, 0xb5, 0x8f,
0x15, 0x5a, 0x3d, 0x03, 0x14, 0x0b, 0xe8, 0x67, 0x3c, 0xa4, 0xb6, 0x37, 0xc7, 0xdf, 0xa8, 0x3b,
0x1d, 0x5d, 0x93, 0x90, 0xea, 0x8a, 0x29, 0x9a, 0xe3, 0xe9, 0xf4, 0x3c, 0x02, 0xf4, 0x29, 0x0b,
0xf1, 0x71, 0x9e, 0x76, 0xde, 0xd0, 0xde, 0x32, 0xb4, 0xd3, 0x6a, 0x5c, 0x02, 0x71, 0xff, 0xb5,
0x00, 0xb7, 0xed, 0x24, 0x0f, 0x7b, 0xc9, 0x50, 0xcd, 0xaf, 0xe4, 0xc2, 0x8a, 0xf5, 0x4b, 0x64,
0xda, 0x25, 0x27, 0x43, 0x27, 0xb0, 0x4a, 0xfc, 0x80, 0x85, 0x4c, 0x2a, 0x41, 0x14, 0x17, 0x76,
0x16, 0x6f, 0x57, 0xec, 0x6f, 0xaa, 0xe0, 0x71, 0x1e, 0x8e, 0x7e, 0x08, 0x0b, 0xba, 0x38, 0xa5,
0x33, 0x67, 0x3a, 0x6b, 0x76, 0x9e, 0x04, 0x86, 0xde, 0x01, 0xf0, 0x62, 0xa9, 0x78, 0xa0, 0x73,
0x6e, 0xa2, 0x92, 0xf6, 0x47, 0x46, 0x8e, 0x3a, 0x00, 0x91, 0x99, 0xf6, 0x97, 0x74, 0x24, 0x9d,
0x85, 0xab, 0x87, 0x4d, 0xe6, 0x64, 0xc0, 0x19, 0x18, 0x7a, 0x5f, 0x8f, 0x56, 0xd3, 0x64, 0x8b,
0x99, 0x4a, 0x2c, 0x44, 0xd4, 0xf4, 0x9b, 0xb5, 0x43, 0x3f, 0x87, 0x75, 0x2e, 0xf7, 0x38, 0x57,
0x7a, 0xb7, 0xd1, 0x41, 0xd8, 0x63, 0x21, 0x75, 0xae, 0x19, 0xf0, 0xbd, 0x32, 0x70, 0xc1, 0x14,
0x4f, 0xa3, 0xd1, 0x2f, 0x00, 0x0d, 0xa6, 0xfa, 0xce, 0x59, 0x32, 0x49, 0xb8, 0x5f, 0xb1, 0xa3,
0xe9, 0x46, 0xc5, 0x25, 0x24, 0xe8, 0x0c, 0x36, 0x86, 0x25, 0x9d, 0xe2, 0x34, 0x0c, 0xf9, 0x7b,
0x15, 0xe4, 0x65, 0xcd, 0x85, 0x4b, 0x89, 0x74, 0x25, 0x47, 0x82, 0x7f, 0x3e, 0xca, 0xd3, 0x43,
0xa6, 0x92, 0x4f, 0xa7, 0xd4, 0xb8, 0x04, 0xe2, 0xfe, 0xa7, 0x06, 0x9b, 0x87, 0x44, 0xf8, 0x43,
0x22, 0xa6, 0x8f, 0xbf, 0x67, 0xc7, 0x5d, 0xf6, 0x22, 0x29, 0xde, 0x35, 0x7b, 0x8c, 0x15, 0xee,
0x13, 0xec, 0x05, 0x4d, 0xd2, 0x94, 0x98, 0xa2, 0x1f, 0xa4, 0x35, 0x64, 0x80, 0x49, 0x41, 0xdf,
0x29, 0x01, 0x76, 0xc6, 0x46, 0x38, 0x03, 0x40, 0x67, 0xd0, 0xf4, 0x47, 0x21, 0x09, 0x98, 0x77,
0x4c, 0x03, 0x2e, 0x46, 0x65, 0xfd, 0xff, 0xb6, 0xa1, 0xdb, 0xaf, 0x34, 0xc3, 0x57, 0x50, 0xb8,
0x1f, 0xc3, 0xca, 0x53, 0x7a, 0xc1, 0xba, 0x54, 0xe9, 0x52, 0x91, 0xe8, 0x01, 0xac, 0x4b, 0xea,
0xc5, 0x82, 0xea, 0xe2, 0x38, 0x30, 0x63, 0xca, 0xb7, 0x53, 0x6b, 0x5a, 0xe1, 0x7e, 0x59, 0x83,
0xcd, 0xae, 0x96, 0x32, 0x95, 0xe7, 0x45, 0xb7, 0xa1, 0x91, 0x0c, 0xb9, 0x27, 0xa7, 0xc7, 0x16,
0x3f, 0x11, 0xa0, 0x47, 0xb0, 0x12, 0x67, 0x56, 0xb5, 0x71, 0xa9, 0xea, 0x9a, 0xac, 0x83, 0x38,
0x07, 0x44, 0x1f, 0xc2, 0x8a, 0xb4, 0xeb, 0x3f, 0x99, 0x1c, 0x51, 0xeb, 0x86, 0xa8, 0x9b, 0x51,
0xe0, 0x9c, 0x99, 0xfb, 0xd7, 0x1a, 0x40, 0xa7, 0x4f, 0xbd, 0xcb, 0x88, 0xb3, 0x50, 0xe9, 0x9b,
0x91, 0x37, 0xfe, 0xca, 0x8c, 0xa7, 0x82, 0xd4, 0x0c, 0xb1, 0xb1, 0xe4, 0xc8, 0x1e, 0x99, 0x38,
0x27, 0x43, 0x2d, 0x40, 0x11, 0x11, 0x34, 0x54, 0x9d, 0xac, 0x65, 0x72, 0x63, 0x29, 0xd1, 0x18,
0x4e, 0x41, 0x93, 0x1b, 0x30, 0x0b, 0x68, 0x32, 0x66, 0x70, 0x4e, 0xe6, 0xfe, 0x71, 0x09, 0xd6,
0xf2, 0xe5, 0xa2, 0x0f, 0xce, 0xcc, 0x55, 0xd1, 0xfc, 0x46, 0x6b, 0x50, 0x67, 0xa9, 0x53, 0x75,
0xe6, 0xa3, 0x03, 0xb8, 0x26, 0x93, 0x7b, 0x9c, 0xad, 0x94, 0xaa, 0x3e, 0x2b, 0xbb, 0xed, 0xe1,
0x14, 0x8b, 0x3a, 0x50, 0xe7, 0xd2, 0x1e, 0x0a, 0x0f, 0x2b, 0x18, 0xae, 0x9a, 0xfd, 0xb8, 0xce,
0xa5, 0xf6, 0xc5, 0x5e, 0x8d, 0x9c, 0x85, 0x2b, 0x7d, 0x29, 0xbb, 0x28, 0xe1, 0x14, 0x8b, 0x0e,
0x61, 0xa9, 0x6f, 0x9b, 0xd3, 0x4c, 0xca, 0xe5, 0xf6, 0x83, 0x0a, 0x9e, 0xd2, 0x1e, 0xc6, 0x63,
0x34, 0xba, 0x07, 0x8b, 0x52, 0x11, 0x15, 0x4b, 0x33, 0x34, 0x97, 0xdb, 0xcb, 0x49, 0xcd, 0x18,
0x11, 0xb6, 0x2a, 0xf4, 0x5d, 0xb8, 0x65, 0xaf, 0x13, 0x87, 0xac, 0xd7, 0xdf, 0x7d, 0x4e, 0xd8,
0x80, 0x9c, 0xb3, 0x01, 0x53, 0x23, 0x33, 0x16, 0x97, 0x70, 0x95, 0x5a, 0xf7, 0x11, 0x19, 0x0c,
0xf8, 0x90, 0xfa, 0x8f, 0x87, 0xfa, 0x66, 0xca, 0x7d, 0x2a, 0x9d, 0xc6, 0xd6, 0xdc, 0x76, 0x03,
0x4f, 0x2b, 0xd0, 0x0e, 0x40, 0xc4, 0x87, 0x54, 0xe8, 0xe5, 0xa9, 0x99, 0x5a, 0x6b, 0xed, 0xeb,
0xc9, 0xd4, 0x1a, 0x8b, 0x71, 0xc6, 0x44, 0xc7, 0x21, 0x2d, 0x68, 0x67, 0xf9, 0xca, 0x38, 0x94,
0xb6, 0x27, 0x1e, 0xa3, 0x75, 0x1c, 0xf4, 0xf5, 0x48, 0x8d, 0x9c, 0x95, 0x4c, 0x1c, 0x0e, 0x8c,
0x08, 0x5b, 0x15, 0x3a, 0x85, 0xcd, 0x7e, 0x61, 0x87, 0x89, 0xab, 0xab, 0xc6, 0xd5, 0xa6, 0xc1,
0x1c, 0x96, 0x59, 0xe0, 0x72, 0x20, 0xba, 0x03, 0xf3, 0x8a, 0xf4, 0xa4, 0xb3, 0x66, 0x16, 0x6d,
0x18, 0x82, 0x27, 0xa4, 0x27, 0xb1, 0x11, 0xa3, 0x8f, 0x01, 0xcc, 0xab, 0x64, 0x57, 0xef, 0xc5,
0xb9, 0x6e, 0x8c, 0x6e, 0x1b, 0xa3, 0x47, 0x63, 0x71, 0x7e, 0x47, 0x19, 0x7b, 0xf4, 0x2b, 0xb8,
0x39, 0xf9, 0x3a, 0x0a, 0xa5, 0x22, 0xa1, 0x47, 0x9f, 0x31, 0x3a, 0x74, 0xde, 0x30, 0x4c, 0xef,
0x94, 0x0c, 0xe0, 0x29, 0x5b, 0x5c, 0xc1, 0x81, 0xbe, 0x9f, 0x9d, 0x16, 0x66, 0xea, 0xac, 0x9b,
0x28, 0xdc, 0x48, 0x6e, 0x8f, 0x39, 0x15, 0x2e, 0x98, 0xa2, 0x0e, 0x2c, 0x4f, 0x24, 0xd2, 0x41,
0xe6, 0xba, 0xf0, 0xf5, 0x8a, 0xdc, 0x4d, 0xb8, 0x70, 0x16, 0xa5, 0xc7, 0xee, 0xdd, 0xbc, 0xf7,
0x93, 0x07, 0xb5, 0x7d, 0xdb, 0x3f, 0x86, 0xeb, 0x79, 0x8b, 0x97, 0x7c, 0x27, 0x17, 0xd1, 0x68,
0xaf, 0xfc, 0x3d, 0x7f, 0xbb, 0x24, 0x94, 0x95, 0xaf, 0xfb, 0xbf, 0xd5, 0xe0, 0xed, 0x4a, 0xbf,
0xed, 0x33, 0xff, 0x95, 0x3b, 0xfe, 0xea, 0x9e, 0xf6, 0xbf, 0xaf, 0xc3, 0x76, 0xe1, 0xd4, 0x1e,
0x27, 0xe5, 0xf5, 0x27, 0xe0, 0xd7, 0x70, 0xab, 0x64, 0xb9, 0x4c, 0x2a, 0xde, 0x2d, 0xbb, 0x56,
0x94, 0x38, 0x58, 0x45, 0xa3, 0x8f, 0xc1, 0x4e, 0xfe, 0x18, 0x4c, 0xb6, 0x5f, 0x90, 0xba, 0xff,
0xac, 0xc1, 0xfd, 0x19, 0xe2, 0xf0, 0xd5, 0x4f, 0xe8, 0x7f, 0xeb, 0xc5, 0x7a, 0xc4, 0x71, 0xd8,
0xe1, 0x41, 0x40, 0x42, 0x3f, 0xcd, 0xe3, 0x71, 0xf1, 0xe8, 0xb5, 0xff, 0xfc, 0x98, 0xd1, 0xfb,
0xe2, 0xb9, 0xbd, 0x0b, 0x8b, 0x99, 0x27, 0x67, 0x7a, 0xaf, 0xae, 0x72, 0xa2, 0xeb, 0x09, 0x16,
0x29, 0xfb, 0x06, 0xb5, 0x40, 0xc4, 0xe0, 0xcd, 0x89, 0xc5, 0x51, 0x18, 0xc5, 0xea, 0x94, 0x08,
0x12, 0x50, 0x35, 0x79, 0xea, 0xbc, 0x77, 0x25, 0x6b, 0x1e, 0x83, 0xab, 0xd9, 0x90, 0x0b, 0x0d,
0x1c, 0x87, 0xbb, 0x52, 0x3f, 0x91, 0x72, 0x0f, 0xa0, 0x89, 0x18, 0x7d, 0x0b, 0x56, 0xcd, 0x47,
0xfa, 0xe0, 0x36, 0xe7, 0x7b, 0x6a, 0x97, 0x57, 0xb9, 0xff, 0xa8, 0xc1, 0x56, 0x75, 0xc0, 0x6d,
0xc1, 0xbc, 0xe2, 0x88, 0x1f, 0xc3, 0x4a, 0xee, 0x08, 0x98, 0x25, 0xee, 0xb9, 0x73, 0x20, 0x07,
0x6f, 0xff, 0x7b, 0x1e, 0x6e, 0x94, 0x9c, 0x1c, 0xa8, 0x07, 0x8b, 0x47, 0xe1, 0x73, 0x7e, 0x49,
0xd1, 0x83, 0xd9, 0xfc, 0x4c, 0xea, 0xab, 0xf9, 0xed, 0x19, 0xad, 0x93, 0xe0, 0xb8, 0x5f, 0x43,
0x2f, 0xe0, 0x5a, 0xd2, 0x64, 0x14, 0x7d, 0x38, 0x13, 0xb6, 0x38, 0x9a, 0x9a, 0x1f, 0xbd, 0x2c,
0x6c, 0xbc, 0xf6, 0x9f, 0x6a, 0xb0, 0x5e, 0xec, 0x75, 0x8a, 0x7e, 0x34, 0x13, 0x5f, 0xf5, 0xac,
0x6c, 0xfe, 0xf8, 0xff, 0x27, 0x18, 0xbb, 0x76, 0x68, 0x3d, 0x3b, 0xc9, 0xfc, 0x07, 0x1c, 0xdd,
0x9c, 0x1a, 0x0d, 0x07, 0x41, 0xa4, 0x46, 0xcd, 0x37, 0xcd, 0x82, 0x59, 0xd3, 0x0c, 0xd3, 0x6f,
0x01, 0x26, 0x95, 0x80, 0x66, 0x0b, 0xd6, 0xd4, 0xdc, 0x68, 0x7e, 0xe7, 0xa5, 0x71, 0xa9, 0x03,
0x7b, 0xef, 0x7f, 0xd6, 0xea, 0x31, 0xd5, 0x8f, 0xcf, 0x35, 0x68, 0x27, 0x60, 0x9e, 0xe0, 0x92,
0x5f, 0xa8, 0x9d, 0x80, 0x7b, 0x3b, 0x22, 0xf2, 0x76, 0xc6, 0xa4, 0x3b, 0x96, 0xf4, 0x7c, 0xd1,
0xec, 0xef, 0xe1, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x13, 0xe6, 0xa6, 0x00, 0xbc, 0x18, 0x00,
0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

Просмотреть файл

@ -109,7 +109,7 @@ message SecurityConfiguration {
message Checkpoint {
string checkpointName = 1;
string checkpointId = 2;
string parentCheckointId = 3;
string parentCheckpointId = 3;
string creationTime = 4;
}