From db02fe050398114ace32dceb350457b50064c1e8 Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 11 Jan 2024 16:51:18 +0000 Subject: [PATCH 01/25] added availability set for cloudagent protobuf definition --- .../moc_cloudagent_availabilityset.proto | 42 +++ .../moc_cloudagent_availabilityset.pb.go | 352 ++++++++++++++++++ rpc/gen_proto.sh | 1 + 3 files changed, 395 insertions(+) create mode 100644 rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto create mode 100644 rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto new file mode 100644 index 0000000..d17e66d --- /dev/null +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the Apache v2.0 license. + +syntax = "proto3"; +option go_package = "github.com/microsoft/moc/rpc/cloudagent/compute"; +package moc.cloudagent.compute; + +import "google/protobuf/wrappers.proto"; +import "moc_common_common.proto"; +import "moc_cloudagent_virtualmachine.proto"; + +message AvailabilitySetRequest { + AvailabilitySet AvailabilitySet = 1; + Operation OperationType = 2; +} + +message AvailabilitySetResponse { + AvailabilitySet AvailabilitySet = 1; + google.protobuf.BoolValue Result = 2; + string Error = 3; +} + +message AvailabilitySet { + // identifier fields + string name = 1; + string id = 2; + string locationName = 3; + string groupName = 4; + // common fields + Status status = 5; + Tags tags = 6; + // avset fields + uint32 platformFaultDomainCount = 7; + repeated VirtualMachine virtualMachines = 8; +} + + +service AvailabilitySetAgent { + rpc Invoke(AvailabilitySetRequest) returns (AvailabilitySetResponse) {} +} + + diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go new file mode 100644 index 0000000..d1b87bc --- /dev/null +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -0,0 +1,352 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: moc_cloudagent_availabilityset.proto + +package compute + +import ( + context "context" + fmt "fmt" + proto "github.com/golang/protobuf/proto" + wrappers "github.com/golang/protobuf/ptypes/wrappers" + common "github.com/microsoft/moc/rpc/common" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + 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 AvailabilitySetRequest struct { + AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } +func (m *AvailabilitySetRequest) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetRequest) ProtoMessage() {} +func (*AvailabilitySetRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_f2024bad12ef389f, []int{0} +} + +func (m *AvailabilitySetRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetRequest.Unmarshal(m, b) +} +func (m *AvailabilitySetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetRequest.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetRequest.Merge(m, src) +} +func (m *AvailabilitySetRequest) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetRequest.Size(m) +} +func (m *AvailabilitySetRequest) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetRequest proto.InternalMessageInfo + +func (m *AvailabilitySetRequest) GetAvailabilitySet() *AvailabilitySet { + if m != nil { + return m.AvailabilitySet + } + return nil +} + +func (m *AvailabilitySetRequest) GetOperationType() common.Operation { + if m != nil { + return m.OperationType + } + return common.Operation_GET +} + +type AvailabilitySetResponse struct { + AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` + Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetResponse) Reset() { *m = AvailabilitySetResponse{} } +func (m *AvailabilitySetResponse) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetResponse) ProtoMessage() {} +func (*AvailabilitySetResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_f2024bad12ef389f, []int{1} +} + +func (m *AvailabilitySetResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetResponse.Unmarshal(m, b) +} +func (m *AvailabilitySetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetResponse.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetResponse.Merge(m, src) +} +func (m *AvailabilitySetResponse) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetResponse.Size(m) +} +func (m *AvailabilitySetResponse) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetResponse proto.InternalMessageInfo + +func (m *AvailabilitySetResponse) GetAvailabilitySet() *AvailabilitySet { + if m != nil { + return m.AvailabilitySet + } + return nil +} + +func (m *AvailabilitySetResponse) GetResult() *wrappers.BoolValue { + if m != nil { + return m.Result + } + return nil +} + +func (m *AvailabilitySetResponse) GetError() string { + if m != nil { + return m.Error + } + return "" +} + +type AvailabilitySet struct { + // identifier fields + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` + GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` + // common fields + Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + // avset fields + PlatformFaultDomainCount uint32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*VirtualMachine `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } +func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySet) ProtoMessage() {} +func (*AvailabilitySet) Descriptor() ([]byte, []int) { + return fileDescriptor_f2024bad12ef389f, []int{2} +} + +func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySet.Unmarshal(m, b) +} +func (m *AvailabilitySet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySet.Marshal(b, m, deterministic) +} +func (m *AvailabilitySet) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySet.Merge(m, src) +} +func (m *AvailabilitySet) XXX_Size() int { + return xxx_messageInfo_AvailabilitySet.Size(m) +} +func (m *AvailabilitySet) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySet.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySet proto.InternalMessageInfo + +func (m *AvailabilitySet) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *AvailabilitySet) GetId() string { + if m != nil { + return m.Id + } + return "" +} + +func (m *AvailabilitySet) GetLocationName() string { + if m != nil { + return m.LocationName + } + return "" +} + +func (m *AvailabilitySet) GetGroupName() string { + if m != nil { + return m.GroupName + } + return "" +} + +func (m *AvailabilitySet) GetStatus() *common.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *AvailabilitySet) GetTags() *common.Tags { + if m != nil { + return m.Tags + } + return nil +} + +func (m *AvailabilitySet) GetPlatformFaultDomainCount() uint32 { + if m != nil { + return m.PlatformFaultDomainCount + } + return 0 +} + +func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { + if m != nil { + return m.VirtualMachines + } + return nil +} + +func init() { + proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.cloudagent.compute.AvailabilitySetRequest") + proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.cloudagent.compute.AvailabilitySetResponse") + proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") +} + +func init() { + proto.RegisterFile("moc_cloudagent_availabilityset.proto", fileDescriptor_f2024bad12ef389f) +} + +var fileDescriptor_f2024bad12ef389f = []byte{ + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x40, + 0x14, 0x86, 0x71, 0x9a, 0x1a, 0x3c, 0xa1, 0xa9, 0x34, 0xaa, 0x5a, 0x2b, 0x02, 0x64, 0xb9, 0x08, + 0xbc, 0xb2, 0x85, 0x61, 0xc5, 0xae, 0xe5, 0x22, 0xb1, 0xe0, 0x36, 0xad, 0xba, 0x60, 0x53, 0x4d, + 0x9c, 0x89, 0x3b, 0xea, 0x8c, 0xcf, 0x30, 0x97, 0xa0, 0xae, 0x79, 0x12, 0x5e, 0x82, 0x77, 0xe0, + 0xad, 0x50, 0xc6, 0x86, 0x10, 0x97, 0x4a, 0xd9, 0x74, 0x65, 0xfb, 0x9c, 0x6f, 0xfe, 0xf9, 0x7d, + 0xce, 0x8f, 0x1e, 0x4b, 0xa8, 0xce, 0x2b, 0x01, 0x6e, 0x46, 0x6b, 0xd6, 0xd8, 0x73, 0xba, 0xa0, + 0x5c, 0xd0, 0x29, 0x17, 0xdc, 0x5e, 0x19, 0x66, 0x73, 0xa5, 0xc1, 0x02, 0xde, 0x97, 0x50, 0xe5, + 0x2b, 0x2a, 0xaf, 0x40, 0x2a, 0x67, 0xd9, 0xe4, 0x51, 0x0d, 0x50, 0x0b, 0x56, 0x78, 0x6a, 0xea, + 0xe6, 0xc5, 0x37, 0x4d, 0x95, 0x62, 0xda, 0xb4, 0xe7, 0x26, 0x07, 0x5e, 0x1d, 0xa4, 0x84, 0xa6, + 0x7b, 0x74, 0x8d, 0xc3, 0xde, 0xb5, 0x0b, 0xae, 0xad, 0xa3, 0x42, 0xd2, 0xea, 0x82, 0x37, 0xac, + 0x85, 0xd2, 0x1f, 0x01, 0xda, 0x3f, 0xfa, 0xc7, 0xcf, 0x09, 0xb3, 0x84, 0x7d, 0x75, 0xcc, 0x58, + 0xfc, 0x19, 0xed, 0xf6, 0x3a, 0x71, 0x90, 0x04, 0xd9, 0xa8, 0x7c, 0x9a, 0xff, 0xdf, 0x6a, 0xde, + 0x17, 0xea, 0x9f, 0xc7, 0x2f, 0xd0, 0xce, 0x47, 0xc5, 0x34, 0xb5, 0x1c, 0x9a, 0xd3, 0x2b, 0xc5, + 0xe2, 0x41, 0x12, 0x64, 0xe3, 0x72, 0xec, 0x05, 0xff, 0x76, 0xc8, 0x3a, 0x94, 0xfe, 0x0c, 0xd0, + 0xc1, 0x35, 0x8f, 0x46, 0x41, 0x63, 0xd8, 0x6d, 0x98, 0x2c, 0x51, 0x48, 0x98, 0x71, 0xc2, 0x7a, + 0x77, 0xa3, 0x72, 0x92, 0xb7, 0x1b, 0xc8, 0xff, 0x6c, 0x20, 0x3f, 0x06, 0x10, 0x67, 0x54, 0x38, + 0x46, 0x3a, 0x12, 0xef, 0xa1, 0xed, 0x37, 0x5a, 0x83, 0x8e, 0xb7, 0x92, 0x20, 0x8b, 0x48, 0xfb, + 0x91, 0xfe, 0x1a, 0x5c, 0x73, 0x87, 0x31, 0x1a, 0x36, 0x54, 0x32, 0xef, 0x32, 0x22, 0xfe, 0x1d, + 0x8f, 0xd1, 0x80, 0xcf, 0xfc, 0x6d, 0x11, 0x19, 0xf0, 0x19, 0x4e, 0xd1, 0x7d, 0x01, 0x95, 0x1f, + 0xc0, 0x87, 0x25, 0xdb, 0x8a, 0xae, 0xd5, 0xf0, 0x03, 0x14, 0xd5, 0x1a, 0x9c, 0xf2, 0xc0, 0xd0, + 0x03, 0xab, 0x02, 0x3e, 0x44, 0xa1, 0xb1, 0xd4, 0x3a, 0x13, 0x6f, 0xfb, 0x7f, 0x18, 0xf9, 0x69, + 0x9c, 0xf8, 0x12, 0xe9, 0x5a, 0xf8, 0x21, 0x1a, 0x5a, 0x5a, 0x9b, 0x38, 0xf4, 0x48, 0xe4, 0x91, + 0x53, 0x5a, 0x1b, 0xe2, 0xcb, 0xf8, 0x25, 0x8a, 0x95, 0xa0, 0x76, 0x0e, 0x5a, 0xbe, 0xa5, 0x4e, + 0xd8, 0xd7, 0x20, 0x29, 0x6f, 0x5e, 0x81, 0x6b, 0x6c, 0x7c, 0x37, 0x09, 0xb2, 0x1d, 0x72, 0x63, + 0x1f, 0x7f, 0x42, 0xbb, 0x5d, 0xdc, 0xde, 0xb7, 0x71, 0x33, 0xf1, 0xbd, 0x64, 0x2b, 0x1b, 0x95, + 0x4f, 0x6e, 0x5a, 0xcb, 0xd9, 0x1a, 0x4e, 0xfa, 0xc7, 0xcb, 0xef, 0x01, 0xda, 0xeb, 0xcd, 0xf2, + 0x68, 0x29, 0x80, 0x2f, 0x51, 0xf8, 0xae, 0x59, 0xc0, 0x25, 0xc3, 0xf9, 0xa6, 0x2b, 0x6f, 0x03, + 0x3e, 0x29, 0x36, 0xe6, 0xdb, 0xb0, 0xa5, 0x77, 0x8e, 0x9f, 0x7d, 0x29, 0x6a, 0x6e, 0x2f, 0xdc, + 0x74, 0xc9, 0x16, 0x92, 0x57, 0x1a, 0x0c, 0xcc, 0x6d, 0x21, 0xa1, 0x2a, 0xb4, 0xaa, 0x8a, 0x95, + 0x58, 0xd1, 0x89, 0x4d, 0x43, 0x1f, 0x9b, 0xe7, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x46, + 0xcf, 0x51, 0x06, 0x04, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// AvailabilitySetAgentClient is the client API for AvailabilitySetAgent service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type AvailabilitySetAgentClient interface { + Invoke(ctx context.Context, in *AvailabilitySetRequest, opts ...grpc.CallOption) (*AvailabilitySetResponse, error) +} + +type availabilitySetAgentClient struct { + cc *grpc.ClientConn +} + +func NewAvailabilitySetAgentClient(cc *grpc.ClientConn) AvailabilitySetAgentClient { + return &availabilitySetAgentClient{cc} +} + +func (c *availabilitySetAgentClient) Invoke(ctx context.Context, in *AvailabilitySetRequest, opts ...grpc.CallOption) (*AvailabilitySetResponse, error) { + out := new(AvailabilitySetResponse) + err := c.cc.Invoke(ctx, "/moc.cloudagent.compute.AvailabilitySetAgent/Invoke", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// AvailabilitySetAgentServer is the server API for AvailabilitySetAgent service. +type AvailabilitySetAgentServer interface { + Invoke(context.Context, *AvailabilitySetRequest) (*AvailabilitySetResponse, error) +} + +// UnimplementedAvailabilitySetAgentServer can be embedded to have forward compatible implementations. +type UnimplementedAvailabilitySetAgentServer struct { +} + +func (*UnimplementedAvailabilitySetAgentServer) Invoke(ctx context.Context, req *AvailabilitySetRequest) (*AvailabilitySetResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Invoke not implemented") +} + +func RegisterAvailabilitySetAgentServer(s *grpc.Server, srv AvailabilitySetAgentServer) { + s.RegisterService(&_AvailabilitySetAgent_serviceDesc, srv) +} + +func _AvailabilitySetAgent_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(AvailabilitySetRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AvailabilitySetAgentServer).Invoke(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/moc.cloudagent.compute.AvailabilitySetAgent/Invoke", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AvailabilitySetAgentServer).Invoke(ctx, req.(*AvailabilitySetRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _AvailabilitySetAgent_serviceDesc = grpc.ServiceDesc{ + ServiceName: "moc.cloudagent.compute.AvailabilitySetAgent", + HandlerType: (*AvailabilitySetAgentServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Invoke", + Handler: _AvailabilitySetAgent_Invoke_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "moc_cloudagent_availabilityset.proto", +} diff --git a/rpc/gen_proto.sh b/rpc/gen_proto.sh index 29b97ab..612956c 100755 --- a/rpc/gen_proto.sh +++ b/rpc/gen_proto.sh @@ -159,6 +159,7 @@ protoc -I $Agent/$Module/virtualmachineimage -I ./common $Agent/$Module/virtualm protoc -I $Agent/$Module/galleryimage -I ./common $Agent/$Module/galleryimage/moc_cloudagent_galleryimage.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/baremetalhost -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/baremetalhost/moc_cloudagent_baremetalhost.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/baremetalmachine -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/baremetalmachine/moc_cloudagent_baremetalmachine.proto --go_out=plugins=grpc:../bld/gen/ +protoc -I $Agent/$Module/availabilityset -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/availabilityset/moc_cloudagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ Module="storage" echo "Generating $Agent/$Module protoc" From 6d38a040f063c349edba7ad7a698a70216a625ca Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 11 Jan 2024 19:15:14 +0000 Subject: [PATCH 02/25] added availability set for nodeagent protobuf definition --- rpc/gen_proto.sh | 1 + .../moc_nodeagent_availabilityset.proto | 40 ++ .../moc_nodeagent_availabilityset.pb.go | 352 ++++++++++++++++++ 3 files changed, 393 insertions(+) create mode 100644 rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto create mode 100644 rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go diff --git a/rpc/gen_proto.sh b/rpc/gen_proto.sh index 612956c..437f8d4 100755 --- a/rpc/gen_proto.sh +++ b/rpc/gen_proto.sh @@ -43,6 +43,7 @@ Module="compute" echo "Generating $Agent/$Module protoc" protoc -I $Agent/$Module/virtualmachine -I ./common $Agent/$Module/virtualmachine/moc_nodeagent_virtualmachine.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/virtualmachinescaleset -I $Agent/$Module/virtualmachine -I $Agent/network/virtualnetworkinterface -I ./common $Agent/$Module/virtualmachinescaleset/moc_nodeagent_virtualmachinescaleset.proto --go_out=plugins=grpc:../bld/gen/ +protoc -I $Agent/$Module/availabilityset -I $Agent/$Module/virtualmachine -I ./common $Agent/$Module/availabilityset/moc_nodeagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ Module="storage" echo "Generating $Agent/$Module protoc" diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto new file mode 100644 index 0000000..68eb773 --- /dev/null +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the Apache v2.0 license. + +syntax = "proto3"; +option go_package = "github.com/microsoft/moc/rpc/nodeagent/compute"; +package moc.nodeagent.compute; + +import "google/protobuf/wrappers.proto"; +import "moc_nodeagent_virtualmachine.proto"; +import "moc_common_common.proto"; + +message AvailabilitySetRequest { + AvailabilitySet AvailabilitySet = 1; + Operation OperationType = 2; +} + +message AvailabilitySetResponse { + AvailabilitySet AvailabilitySet = 1; + google.protobuf.BoolValue Result = 2; + string Error = 3; +} + +message AvailabilitySet { + // identifier fields + string name = 1; + string id = 2; + string locationName = 3; + string groupName = 4; + // common fields + Status status = 5; + Tags tags = 6; + // avset fields + uint32 platformFaultDomainCount = 7; + repeated VirtualMachine virtualMachines = 8; +} + + +service AvailabilitySetAgent { + rpc Invoke(AvailabilitySetRequest) returns (AvailabilitySetResponse) {} +} \ No newline at end of file diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go new file mode 100644 index 0000000..cb994ad --- /dev/null +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -0,0 +1,352 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// source: moc_nodeagent_availabilityset.proto + +package compute + +import ( + context "context" + fmt "fmt" + proto "github.com/golang/protobuf/proto" + wrappers "github.com/golang/protobuf/ptypes/wrappers" + common "github.com/microsoft/moc/rpc/common" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + 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 AvailabilitySetRequest struct { + AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } +func (m *AvailabilitySetRequest) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetRequest) ProtoMessage() {} +func (*AvailabilitySetRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{0} +} + +func (m *AvailabilitySetRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetRequest.Unmarshal(m, b) +} +func (m *AvailabilitySetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetRequest.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetRequest.Merge(m, src) +} +func (m *AvailabilitySetRequest) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetRequest.Size(m) +} +func (m *AvailabilitySetRequest) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetRequest proto.InternalMessageInfo + +func (m *AvailabilitySetRequest) GetAvailabilitySet() *AvailabilitySet { + if m != nil { + return m.AvailabilitySet + } + return nil +} + +func (m *AvailabilitySetRequest) GetOperationType() common.Operation { + if m != nil { + return m.OperationType + } + return common.Operation_GET +} + +type AvailabilitySetResponse struct { + AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` + Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetResponse) Reset() { *m = AvailabilitySetResponse{} } +func (m *AvailabilitySetResponse) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetResponse) ProtoMessage() {} +func (*AvailabilitySetResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{1} +} + +func (m *AvailabilitySetResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetResponse.Unmarshal(m, b) +} +func (m *AvailabilitySetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetResponse.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetResponse.Merge(m, src) +} +func (m *AvailabilitySetResponse) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetResponse.Size(m) +} +func (m *AvailabilitySetResponse) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetResponse proto.InternalMessageInfo + +func (m *AvailabilitySetResponse) GetAvailabilitySet() *AvailabilitySet { + if m != nil { + return m.AvailabilitySet + } + return nil +} + +func (m *AvailabilitySetResponse) GetResult() *wrappers.BoolValue { + if m != nil { + return m.Result + } + return nil +} + +func (m *AvailabilitySetResponse) GetError() string { + if m != nil { + return m.Error + } + return "" +} + +type AvailabilitySet struct { + // identifier fields + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` + GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` + // common fields + Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + // avset fields + PlatformFaultDomainCount uint32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*VirtualMachine `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } +func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySet) ProtoMessage() {} +func (*AvailabilitySet) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{2} +} + +func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySet.Unmarshal(m, b) +} +func (m *AvailabilitySet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySet.Marshal(b, m, deterministic) +} +func (m *AvailabilitySet) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySet.Merge(m, src) +} +func (m *AvailabilitySet) XXX_Size() int { + return xxx_messageInfo_AvailabilitySet.Size(m) +} +func (m *AvailabilitySet) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySet.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySet proto.InternalMessageInfo + +func (m *AvailabilitySet) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *AvailabilitySet) GetId() string { + if m != nil { + return m.Id + } + return "" +} + +func (m *AvailabilitySet) GetLocationName() string { + if m != nil { + return m.LocationName + } + return "" +} + +func (m *AvailabilitySet) GetGroupName() string { + if m != nil { + return m.GroupName + } + return "" +} + +func (m *AvailabilitySet) GetStatus() *common.Status { + if m != nil { + return m.Status + } + return nil +} + +func (m *AvailabilitySet) GetTags() *common.Tags { + if m != nil { + return m.Tags + } + return nil +} + +func (m *AvailabilitySet) GetPlatformFaultDomainCount() uint32 { + if m != nil { + return m.PlatformFaultDomainCount + } + return 0 +} + +func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { + if m != nil { + return m.VirtualMachines + } + return nil +} + +func init() { + proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.nodeagent.compute.AvailabilitySetRequest") + proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.nodeagent.compute.AvailabilitySetResponse") + proto.RegisterType((*AvailabilitySet)(nil), "moc.nodeagent.compute.AvailabilitySet") +} + +func init() { + proto.RegisterFile("moc_nodeagent_availabilityset.proto", fileDescriptor_d615df2311cce965) +} + +var fileDescriptor_d615df2311cce965 = []byte{ + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0xc6, 0x49, 0xd7, 0x15, 0xea, 0xb2, 0x4e, 0xb2, 0x06, 0x8b, 0x2a, 0x40, 0x55, 0x26, 0x50, + 0x2e, 0x38, 0x28, 0x70, 0xe2, 0xb6, 0xf1, 0x47, 0xe2, 0x00, 0x43, 0xde, 0xb4, 0x03, 0x97, 0xc9, + 0x4d, 0xdd, 0xcc, 0xc2, 0xf6, 0x6b, 0xfc, 0xa7, 0x68, 0x47, 0xbe, 0x09, 0x5f, 0x82, 0xef, 0xc0, + 0xc7, 0x42, 0x75, 0x42, 0xa1, 0x19, 0x93, 0x76, 0xe1, 0x94, 0xe4, 0x7d, 0x7f, 0xef, 0x93, 0xc7, + 0xaf, 0x1f, 0x74, 0xa0, 0xa0, 0x3a, 0xd7, 0x30, 0xe7, 0xac, 0xe6, 0xda, 0x9f, 0xb3, 0x25, 0x13, + 0x92, 0xcd, 0x84, 0x14, 0xfe, 0xd2, 0x71, 0x4f, 0x8c, 0x05, 0x0f, 0xf8, 0x9e, 0x82, 0x8a, 0xac, + 0x21, 0x52, 0x81, 0x32, 0xc1, 0xf3, 0xc9, 0xa3, 0x1a, 0xa0, 0x96, 0xbc, 0x88, 0xd0, 0x2c, 0x2c, + 0x8a, 0xaf, 0x96, 0x19, 0xc3, 0xad, 0x6b, 0xc6, 0x26, 0xd9, 0xa6, 0xf6, 0x52, 0x58, 0x1f, 0x98, + 0x54, 0xac, 0xba, 0x10, 0x9a, 0xb7, 0xcc, 0xfe, 0x8a, 0xa9, 0x40, 0x29, 0xd0, 0xed, 0xa3, 0x69, + 0x64, 0xdf, 0x13, 0x74, 0xff, 0xf0, 0x2f, 0x37, 0x27, 0xdc, 0x53, 0xfe, 0x25, 0x70, 0xe7, 0xf1, + 0x47, 0xb4, 0xdb, 0xe9, 0xa4, 0xc9, 0x34, 0xc9, 0x47, 0xe5, 0x13, 0xf2, 0x4f, 0xa3, 0xa4, 0xab, + 0xd3, 0x1d, 0xc7, 0x2f, 0xd0, 0xce, 0xb1, 0xe1, 0x96, 0x79, 0x01, 0xfa, 0xf4, 0xd2, 0xf0, 0xb4, + 0x37, 0x4d, 0xf2, 0x71, 0x39, 0x8e, 0x7a, 0xeb, 0x0e, 0xdd, 0x84, 0xb2, 0x1f, 0x09, 0xda, 0xbf, + 0x62, 0xd1, 0x19, 0xd0, 0x8e, 0xff, 0x07, 0x8f, 0x25, 0x1a, 0x50, 0xee, 0x82, 0xf4, 0xd1, 0xdc, + 0xa8, 0x9c, 0x90, 0x66, 0xfd, 0xe4, 0xf7, 0xfa, 0xc9, 0x11, 0x80, 0x3c, 0x63, 0x32, 0x70, 0xda, + 0x92, 0x78, 0x0f, 0x6d, 0xbf, 0xb1, 0x16, 0x6c, 0xba, 0x35, 0x4d, 0xf2, 0x21, 0x6d, 0x3e, 0xb2, + 0x9f, 0xbd, 0x2b, 0xe6, 0x30, 0x46, 0x7d, 0xcd, 0x14, 0x8f, 0x26, 0x87, 0x34, 0xbe, 0xe3, 0x31, + 0xea, 0x89, 0x79, 0xfc, 0xdb, 0x90, 0xf6, 0xc4, 0x1c, 0x67, 0xe8, 0xae, 0x84, 0x2a, 0x9e, 0xff, + 0xc3, 0x8a, 0x6d, 0x44, 0x37, 0x6a, 0xf8, 0x01, 0x1a, 0xd6, 0x16, 0x82, 0x89, 0x40, 0x3f, 0x02, + 0x7f, 0x0a, 0xf8, 0x00, 0x0d, 0x9c, 0x67, 0x3e, 0xb8, 0x74, 0x3b, 0x9e, 0x61, 0x14, 0x97, 0x71, + 0x12, 0x4b, 0xb4, 0x6d, 0xe1, 0x87, 0xa8, 0xef, 0x59, 0xed, 0xd2, 0x41, 0x44, 0x86, 0x11, 0x39, + 0x65, 0xb5, 0xa3, 0xb1, 0x8c, 0x5f, 0xa2, 0xd4, 0x48, 0xe6, 0x17, 0x60, 0xd5, 0x5b, 0x16, 0xa4, + 0x7f, 0x0d, 0x8a, 0x09, 0xfd, 0x0a, 0x82, 0xf6, 0xe9, 0xed, 0x69, 0x92, 0xef, 0xd0, 0x6b, 0xfb, + 0xf8, 0x18, 0xed, 0xb6, 0x29, 0x7c, 0xdf, 0xa4, 0xd0, 0xa5, 0x77, 0xa6, 0x5b, 0xf9, 0xa8, 0x7c, + 0x7c, 0xcd, 0xad, 0x9c, 0x6d, 0xd0, 0xb4, 0x3b, 0x5d, 0x7e, 0x4b, 0xd0, 0x5e, 0x67, 0x95, 0x87, + 0x2b, 0x01, 0x2c, 0xd0, 0xe0, 0x9d, 0x5e, 0xc2, 0x67, 0x8e, 0x9f, 0xde, 0xf0, 0xc2, 0x9b, 0x70, + 0x4f, 0xc8, 0x4d, 0xf1, 0x26, 0x68, 0xd9, 0xad, 0xa3, 0x67, 0x9f, 0x48, 0x2d, 0xfc, 0x45, 0x98, + 0xad, 0xd8, 0x42, 0x89, 0xca, 0x82, 0x83, 0x85, 0x2f, 0x14, 0x54, 0x85, 0x35, 0x55, 0xb1, 0xd6, + 0x2a, 0x5a, 0xad, 0xd9, 0x20, 0x46, 0xe6, 0xf9, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc8, 0xd4, + 0x12, 0x02, 0xfd, 0x03, 0x00, 0x00, +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConn + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion4 + +// AvailabilitySetAgentClient is the client API for AvailabilitySetAgent service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type AvailabilitySetAgentClient interface { + Invoke(ctx context.Context, in *AvailabilitySetRequest, opts ...grpc.CallOption) (*AvailabilitySetResponse, error) +} + +type availabilitySetAgentClient struct { + cc *grpc.ClientConn +} + +func NewAvailabilitySetAgentClient(cc *grpc.ClientConn) AvailabilitySetAgentClient { + return &availabilitySetAgentClient{cc} +} + +func (c *availabilitySetAgentClient) Invoke(ctx context.Context, in *AvailabilitySetRequest, opts ...grpc.CallOption) (*AvailabilitySetResponse, error) { + out := new(AvailabilitySetResponse) + err := c.cc.Invoke(ctx, "/moc.nodeagent.compute.AvailabilitySetAgent/Invoke", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// AvailabilitySetAgentServer is the server API for AvailabilitySetAgent service. +type AvailabilitySetAgentServer interface { + Invoke(context.Context, *AvailabilitySetRequest) (*AvailabilitySetResponse, error) +} + +// UnimplementedAvailabilitySetAgentServer can be embedded to have forward compatible implementations. +type UnimplementedAvailabilitySetAgentServer struct { +} + +func (*UnimplementedAvailabilitySetAgentServer) Invoke(ctx context.Context, req *AvailabilitySetRequest) (*AvailabilitySetResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Invoke not implemented") +} + +func RegisterAvailabilitySetAgentServer(s *grpc.Server, srv AvailabilitySetAgentServer) { + s.RegisterService(&_AvailabilitySetAgent_serviceDesc, srv) +} + +func _AvailabilitySetAgent_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(AvailabilitySetRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AvailabilitySetAgentServer).Invoke(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/moc.nodeagent.compute.AvailabilitySetAgent/Invoke", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AvailabilitySetAgentServer).Invoke(ctx, req.(*AvailabilitySetRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _AvailabilitySetAgent_serviceDesc = grpc.ServiceDesc{ + ServiceName: "moc.nodeagent.compute.AvailabilitySetAgent", + HandlerType: (*AvailabilitySetAgentServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "Invoke", + Handler: _AvailabilitySetAgent_Invoke_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "moc_nodeagent_availabilityset.proto", +} From 096d2d084cf15d5dd863d46520b2141929fc4686 Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 11 Jan 2024 20:15:35 +0000 Subject: [PATCH 03/25] Added availability set provider along with Create and Delete Provider access operations --- rpc/common/moc_common_common.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpc/common/moc_common_common.proto b/rpc/common/moc_common_common.proto index 20c5570..9b33efd 100644 --- a/rpc/common/moc_common_common.proto +++ b/rpc/common/moc_common_common.proto @@ -184,6 +184,7 @@ enum ProviderType { BareMetalHost = 35; Authentication = 36; HealthMonitor = 37; + AvailabilitySet = 38; } // Operations specific to a provider @@ -315,6 +316,9 @@ enum ProviderAccessOperation { VirtualNetwork_Create = 3400; VirtualNetwork_Update = 3401; + + AvailabilitySet_Create = 3500; + AvailabilitySet_Delete = 3501; } extend google.protobuf.FieldOptions { From 28401a8f516aea846f3563194f2544b81309119f Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 11 Jan 2024 21:04:37 +0000 Subject: [PATCH 04/25] made availability set api accept and array of availability sets in the request/response consistent with other object apis --- .../moc_cloudagent_availabilityset.proto | 4 +- .../moc_cloudagent_availabilityset.pb.go | 80 ++--- rpc/common/moc_common_common.pb.go | 325 +++++++++--------- 3 files changed, 210 insertions(+), 199 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index d17e66d..a501386 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -10,12 +10,12 @@ import "moc_common_common.proto"; import "moc_cloudagent_virtualmachine.proto"; message AvailabilitySetRequest { - AvailabilitySet AvailabilitySet = 1; + repeated AvailabilitySet AvailabilitySet = 1; Operation OperationType = 2; } message AvailabilitySetResponse { - AvailabilitySet AvailabilitySet = 1; + repeated AvailabilitySet AvailabilitySet = 1; google.protobuf.BoolValue Result = 2; string Error = 3; } diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index d1b87bc..1c269eb 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -27,11 +27,11 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` - OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AvailabilitySet []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } @@ -59,7 +59,7 @@ func (m *AvailabilitySetRequest) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetRequest proto.InternalMessageInfo -func (m *AvailabilitySetRequest) GetAvailabilitySet() *AvailabilitySet { +func (m *AvailabilitySetRequest) GetAvailabilitySet() []*AvailabilitySet { if m != nil { return m.AvailabilitySet } @@ -74,7 +74,7 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + AvailabilitySet []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -107,7 +107,7 @@ func (m *AvailabilitySetResponse) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetResponse proto.InternalMessageInfo -func (m *AvailabilitySetResponse) GetAvailabilitySet() *AvailabilitySet { +func (m *AvailabilitySetResponse) GetAvailabilitySet() []*AvailabilitySet { if m != nil { return m.AvailabilitySet } @@ -237,38 +237,38 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 486 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0x86, 0x71, 0x9a, 0x1a, 0x3c, 0xa1, 0xa9, 0x34, 0xaa, 0x5a, 0x2b, 0x02, 0x64, 0xb9, 0x08, - 0xbc, 0xb2, 0x85, 0x61, 0xc5, 0xae, 0xe5, 0x22, 0xb1, 0xe0, 0x36, 0xad, 0xba, 0x60, 0x53, 0x4d, - 0x9c, 0x89, 0x3b, 0xea, 0x8c, 0xcf, 0x30, 0x97, 0xa0, 0xae, 0x79, 0x12, 0x5e, 0x82, 0x77, 0xe0, - 0xad, 0x50, 0xc6, 0x86, 0x10, 0x97, 0x4a, 0xd9, 0x74, 0x65, 0xfb, 0x9c, 0x6f, 0xfe, 0xf9, 0x7d, - 0xce, 0x8f, 0x1e, 0x4b, 0xa8, 0xce, 0x2b, 0x01, 0x6e, 0x46, 0x6b, 0xd6, 0xd8, 0x73, 0xba, 0xa0, - 0x5c, 0xd0, 0x29, 0x17, 0xdc, 0x5e, 0x19, 0x66, 0x73, 0xa5, 0xc1, 0x02, 0xde, 0x97, 0x50, 0xe5, - 0x2b, 0x2a, 0xaf, 0x40, 0x2a, 0x67, 0xd9, 0xe4, 0x51, 0x0d, 0x50, 0x0b, 0x56, 0x78, 0x6a, 0xea, - 0xe6, 0xc5, 0x37, 0x4d, 0x95, 0x62, 0xda, 0xb4, 0xe7, 0x26, 0x07, 0x5e, 0x1d, 0xa4, 0x84, 0xa6, - 0x7b, 0x74, 0x8d, 0xc3, 0xde, 0xb5, 0x0b, 0xae, 0xad, 0xa3, 0x42, 0xd2, 0xea, 0x82, 0x37, 0xac, - 0x85, 0xd2, 0x1f, 0x01, 0xda, 0x3f, 0xfa, 0xc7, 0xcf, 0x09, 0xb3, 0x84, 0x7d, 0x75, 0xcc, 0x58, - 0xfc, 0x19, 0xed, 0xf6, 0x3a, 0x71, 0x90, 0x04, 0xd9, 0xa8, 0x7c, 0x9a, 0xff, 0xdf, 0x6a, 0xde, - 0x17, 0xea, 0x9f, 0xc7, 0x2f, 0xd0, 0xce, 0x47, 0xc5, 0x34, 0xb5, 0x1c, 0x9a, 0xd3, 0x2b, 0xc5, - 0xe2, 0x41, 0x12, 0x64, 0xe3, 0x72, 0xec, 0x05, 0xff, 0x76, 0xc8, 0x3a, 0x94, 0xfe, 0x0c, 0xd0, - 0xc1, 0x35, 0x8f, 0x46, 0x41, 0x63, 0xd8, 0x6d, 0x98, 0x2c, 0x51, 0x48, 0x98, 0x71, 0xc2, 0x7a, - 0x77, 0xa3, 0x72, 0x92, 0xb7, 0x1b, 0xc8, 0xff, 0x6c, 0x20, 0x3f, 0x06, 0x10, 0x67, 0x54, 0x38, - 0x46, 0x3a, 0x12, 0xef, 0xa1, 0xed, 0x37, 0x5a, 0x83, 0x8e, 0xb7, 0x92, 0x20, 0x8b, 0x48, 0xfb, - 0x91, 0xfe, 0x1a, 0x5c, 0x73, 0x87, 0x31, 0x1a, 0x36, 0x54, 0x32, 0xef, 0x32, 0x22, 0xfe, 0x1d, - 0x8f, 0xd1, 0x80, 0xcf, 0xfc, 0x6d, 0x11, 0x19, 0xf0, 0x19, 0x4e, 0xd1, 0x7d, 0x01, 0x95, 0x1f, - 0xc0, 0x87, 0x25, 0xdb, 0x8a, 0xae, 0xd5, 0xf0, 0x03, 0x14, 0xd5, 0x1a, 0x9c, 0xf2, 0xc0, 0xd0, - 0x03, 0xab, 0x02, 0x3e, 0x44, 0xa1, 0xb1, 0xd4, 0x3a, 0x13, 0x6f, 0xfb, 0x7f, 0x18, 0xf9, 0x69, - 0x9c, 0xf8, 0x12, 0xe9, 0x5a, 0xf8, 0x21, 0x1a, 0x5a, 0x5a, 0x9b, 0x38, 0xf4, 0x48, 0xe4, 0x91, - 0x53, 0x5a, 0x1b, 0xe2, 0xcb, 0xf8, 0x25, 0x8a, 0x95, 0xa0, 0x76, 0x0e, 0x5a, 0xbe, 0xa5, 0x4e, - 0xd8, 0xd7, 0x20, 0x29, 0x6f, 0x5e, 0x81, 0x6b, 0x6c, 0x7c, 0x37, 0x09, 0xb2, 0x1d, 0x72, 0x63, - 0x1f, 0x7f, 0x42, 0xbb, 0x5d, 0xdc, 0xde, 0xb7, 0x71, 0x33, 0xf1, 0xbd, 0x64, 0x2b, 0x1b, 0x95, - 0x4f, 0x6e, 0x5a, 0xcb, 0xd9, 0x1a, 0x4e, 0xfa, 0xc7, 0xcb, 0xef, 0x01, 0xda, 0xeb, 0xcd, 0xf2, - 0x68, 0x29, 0x80, 0x2f, 0x51, 0xf8, 0xae, 0x59, 0xc0, 0x25, 0xc3, 0xf9, 0xa6, 0x2b, 0x6f, 0x03, - 0x3e, 0x29, 0x36, 0xe6, 0xdb, 0xb0, 0xa5, 0x77, 0x8e, 0x9f, 0x7d, 0x29, 0x6a, 0x6e, 0x2f, 0xdc, - 0x74, 0xc9, 0x16, 0x92, 0x57, 0x1a, 0x0c, 0xcc, 0x6d, 0x21, 0xa1, 0x2a, 0xb4, 0xaa, 0x8a, 0x95, - 0x58, 0xd1, 0x89, 0x4d, 0x43, 0x1f, 0x9b, 0xe7, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x46, - 0xcf, 0x51, 0x06, 0x04, 0x00, 0x00, + // 485 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x4e, + 0x14, 0xc6, 0xff, 0x4e, 0x53, 0xff, 0xc9, 0x84, 0xa6, 0xd2, 0xa8, 0x6a, 0xad, 0x08, 0x50, 0xe4, + 0x22, 0xc8, 0xca, 0x16, 0x86, 0x15, 0xbb, 0x96, 0x8b, 0xc4, 0x82, 0xdb, 0xb4, 0xea, 0x82, 0x4d, + 0x35, 0x71, 0x26, 0xee, 0xa8, 0x33, 0x3e, 0xc3, 0x5c, 0x82, 0xba, 0xe6, 0x49, 0x78, 0x09, 0xde, + 0x81, 0xb7, 0x42, 0x39, 0x36, 0x84, 0xb8, 0x54, 0xea, 0x86, 0x95, 0xed, 0x73, 0x7e, 0xf3, 0xcd, + 0xe7, 0x73, 0x3e, 0xf2, 0x50, 0x43, 0x79, 0x5e, 0x2a, 0x08, 0x73, 0x5e, 0x89, 0xda, 0x9f, 0xf3, + 0x25, 0x97, 0x8a, 0xcf, 0xa4, 0x92, 0xfe, 0xca, 0x09, 0x9f, 0x19, 0x0b, 0x1e, 0xe8, 0xbe, 0x86, + 0x32, 0x5b, 0x53, 0x59, 0x09, 0xda, 0x04, 0x2f, 0xc6, 0x0f, 0x2a, 0x80, 0x4a, 0x89, 0x1c, 0xa9, + 0x59, 0x58, 0xe4, 0x5f, 0x2c, 0x37, 0x46, 0x58, 0xd7, 0x9c, 0x1b, 0x1f, 0xa0, 0x3a, 0x68, 0x0d, + 0x75, 0xfb, 0x68, 0x1b, 0x87, 0x9d, 0x6b, 0x97, 0xd2, 0xfa, 0xc0, 0x95, 0xe6, 0xe5, 0x85, 0xac, + 0x45, 0x03, 0xa5, 0xdf, 0x22, 0xb2, 0x7f, 0xf4, 0x87, 0x9f, 0x13, 0xe1, 0x99, 0xf8, 0x1c, 0x84, + 0xf3, 0xf4, 0x23, 0xd9, 0xed, 0x74, 0x92, 0x68, 0xb2, 0x35, 0x1d, 0x16, 0x8f, 0xb3, 0xbf, 0x5b, + 0xcd, 0xba, 0x42, 0xdd, 0xf3, 0xf4, 0x19, 0xd9, 0x79, 0x6f, 0x84, 0xe5, 0x5e, 0x42, 0x7d, 0x7a, + 0x65, 0x44, 0xd2, 0x9b, 0x44, 0xd3, 0x51, 0x31, 0x42, 0xc1, 0xdf, 0x1d, 0xb6, 0x09, 0xa5, 0xdf, + 0x23, 0x72, 0x70, 0xcd, 0xa3, 0x33, 0x50, 0x3b, 0xf1, 0x2f, 0x4c, 0x16, 0x24, 0x66, 0xc2, 0x05, + 0xe5, 0xd1, 0xdd, 0xb0, 0x18, 0x67, 0xcd, 0x06, 0xb2, 0x5f, 0x1b, 0xc8, 0x8e, 0x01, 0xd4, 0x19, + 0x57, 0x41, 0xb0, 0x96, 0xa4, 0x7b, 0x64, 0xfb, 0x95, 0xb5, 0x60, 0x93, 0xad, 0x49, 0x34, 0x1d, + 0xb0, 0xe6, 0x23, 0xfd, 0xd1, 0xbb, 0xe6, 0x8e, 0x52, 0xd2, 0xaf, 0xb9, 0x16, 0x49, 0x84, 0x20, + 0xbe, 0xd3, 0x11, 0xe9, 0xc9, 0x39, 0xde, 0x36, 0x60, 0x3d, 0x39, 0xa7, 0x29, 0xb9, 0xab, 0xa0, + 0xc4, 0x01, 0xbc, 0x5b, 0xb1, 0x8d, 0xe8, 0x46, 0x8d, 0xde, 0x23, 0x83, 0xca, 0x42, 0x30, 0x08, + 0xf4, 0x11, 0x58, 0x17, 0xe8, 0x21, 0x89, 0x9d, 0xe7, 0x3e, 0xb8, 0x64, 0x1b, 0xff, 0x61, 0x88, + 0xd3, 0x38, 0xc1, 0x12, 0x6b, 0x5b, 0xf4, 0x3e, 0xe9, 0x7b, 0x5e, 0xb9, 0x24, 0x46, 0x64, 0x80, + 0xc8, 0x29, 0xaf, 0x1c, 0xc3, 0x32, 0x7d, 0x4e, 0x12, 0xa3, 0xb8, 0x5f, 0x80, 0xd5, 0xaf, 0x79, + 0x50, 0xfe, 0x25, 0x68, 0x2e, 0xeb, 0x17, 0x10, 0x6a, 0x9f, 0xfc, 0x3f, 0x89, 0xa6, 0x3b, 0xec, + 0xc6, 0x3e, 0xfd, 0x40, 0x76, 0xdb, 0xb8, 0xbd, 0x6d, 0xe2, 0xe6, 0x92, 0x3b, 0xb8, 0x96, 0x47, + 0x37, 0xad, 0xe5, 0x6c, 0x03, 0x67, 0xdd, 0xe3, 0xc5, 0xd7, 0x88, 0xec, 0x75, 0x66, 0x79, 0xb4, + 0x12, 0xa0, 0x97, 0x24, 0x7e, 0x53, 0x2f, 0xe1, 0x52, 0xd0, 0xec, 0xb6, 0x2b, 0x6f, 0x02, 0x3e, + 0xce, 0x6f, 0xcd, 0x37, 0x61, 0x4b, 0xff, 0x3b, 0x7e, 0xf2, 0x29, 0xaf, 0xa4, 0xbf, 0x08, 0xb3, + 0x15, 0x9b, 0x6b, 0x59, 0x5a, 0x70, 0xb0, 0xf0, 0xb9, 0x86, 0x32, 0xb7, 0xa6, 0xcc, 0xd7, 0x62, + 0x79, 0x2b, 0x36, 0x8b, 0x31, 0x36, 0x4f, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x99, 0xd9, + 0x47, 0x06, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index 0c55fed..7fb516e 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -353,6 +353,7 @@ const ( ProviderType_BareMetalHost ProviderType = 35 ProviderType_Authentication ProviderType = 36 ProviderType_HealthMonitor ProviderType = 37 + ProviderType_AvailabilitySet ProviderType = 38 ) var ProviderType_name = map[int32]string{ @@ -394,6 +395,7 @@ var ProviderType_name = map[int32]string{ 35: "BareMetalHost", 36: "Authentication", 37: "HealthMonitor", + 38: "AvailabilitySet", } var ProviderType_value = map[string]int32{ @@ -435,6 +437,7 @@ var ProviderType_value = map[string]int32{ "BareMetalHost": 35, "Authentication": 36, "HealthMonitor": 37, + "AvailabilitySet": 38, } func (x ProviderType) String() string { @@ -542,6 +545,8 @@ const ( ProviderAccessOperation_VirtualMachineScaleSet_Update ProviderAccessOperation = 3301 ProviderAccessOperation_VirtualNetwork_Create ProviderAccessOperation = 3400 ProviderAccessOperation_VirtualNetwork_Update ProviderAccessOperation = 3401 + ProviderAccessOperation_AvailabilitySet_Create ProviderAccessOperation = 3500 + ProviderAccessOperation_AvailabilitySet_Delete ProviderAccessOperation = 3501 ) var ProviderAccessOperation_name = map[int32]string{ @@ -637,6 +642,8 @@ var ProviderAccessOperation_name = map[int32]string{ 3301: "VirtualMachineScaleSet_Update", 3400: "VirtualNetwork_Create", 3401: "VirtualNetwork_Update", + 3500: "AvailabilitySet_Create", + 3501: "AvailabilitySet_Delete", } var ProviderAccessOperation_value = map[string]int32{ @@ -732,6 +739,8 @@ var ProviderAccessOperation_value = map[string]int32{ "VirtualMachineScaleSet_Update": 3301, "VirtualNetwork_Create": 3400, "VirtualNetwork_Update": 3401, + "AvailabilitySet_Create": 3500, + "AvailabilitySet_Delete": 3501, } func (x ProviderAccessOperation) String() string { @@ -1429,161 +1438,163 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ - // 2492 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x6b, 0x88, 0x2b, 0x49, - 0x15, 0x9e, 0x3c, 0x67, 0xa6, 0x32, 0x93, 0xd4, 0xd4, 0xbc, 0x72, 0x67, 0x5f, 0x77, 0x67, 0x1f, - 0x5c, 0x82, 0x3b, 0x57, 0xaf, 0xa2, 0xa8, 0xa8, 0xf4, 0x24, 0x3d, 0x33, 0x61, 0x32, 0x49, 0xe8, - 0xf4, 0xcc, 0xae, 0x22, 0x84, 0x9e, 0x4e, 0x4d, 0xa6, 0xb9, 0x9d, 0xae, 0x50, 0x5d, 0xc9, 0x25, - 0xfb, 0x6b, 0x17, 0x5c, 0x51, 0x50, 0x50, 0xd9, 0x05, 0x85, 0x15, 0x14, 0x14, 0x14, 0x7c, 0x82, - 0x82, 0x82, 0x8f, 0x5d, 0x70, 0xc1, 0xc7, 0x2e, 0xb8, 0xe0, 0x0f, 0x1f, 0xbb, 0xba, 0x8b, 0x0a, - 0x0a, 0x0a, 0x0a, 0x3e, 0x76, 0x7d, 0x80, 0x9c, 0xea, 0xaa, 0x4c, 0x92, 0xe9, 0xeb, 0x9f, 0x7b, - 0xbb, 0xbe, 0xf3, 0x9d, 0x53, 0xa7, 0xce, 0x39, 0x75, 0xea, 0x4c, 0xd0, 0x66, 0x8f, 0xb9, 0x6d, - 0x97, 0xf5, 0x7a, 0x2c, 0x50, 0xff, 0xed, 0xf4, 0x39, 0x13, 0x8c, 0xa4, 0x7a, 0xcc, 0xdd, 0xba, - 0xda, 0x65, 0xac, 0xeb, 0xd3, 0xeb, 0x12, 0x3a, 0x1d, 0x9c, 0x5d, 0xef, 0xd0, 0xd0, 0xe5, 0x5e, - 0x5f, 0x30, 0x1e, 0xd1, 0xb6, 0x8f, 0x51, 0xc6, 0xe4, 0x9c, 0x71, 0x52, 0x44, 0xf3, 0x47, 0x34, - 0x0c, 0x9d, 0x2e, 0x2d, 0x26, 0xae, 0x26, 0xae, 0x2d, 0x5a, 0x7a, 0x49, 0x08, 0x4a, 0x97, 0x59, - 0x87, 0x16, 0x93, 0x57, 0x13, 0xd7, 0x32, 0x96, 0xfc, 0x26, 0x77, 0x23, 0xd4, 0x74, 0xb8, 0xd3, - 0xa3, 0x82, 0xf2, 0xb0, 0x98, 0x92, 0x0a, 0x13, 0xc8, 0xf6, 0x13, 0x09, 0x54, 0x68, 0x72, 0x36, - 0xf4, 0x42, 0x8f, 0x05, 0x2d, 0xe1, 0x88, 0x41, 0x48, 0xde, 0x86, 0x96, 0xdc, 0x01, 0xe7, 0x34, - 0x10, 0x00, 0x44, 0xdb, 0xe4, 0x6f, 0xac, 0xee, 0xf4, 0x98, 0xbb, 0x33, 0xc5, 0xa5, 0xd6, 0x14, - 0x91, 0xbc, 0x1d, 0x2d, 0xf7, 0x39, 0x1d, 0x7a, 0x6c, 0x10, 0x46, 0x9a, 0xc9, 0xdb, 0x6b, 0x4e, - 0x33, 0xb7, 0x9f, 0x4e, 0xa0, 0x7c, 0x85, 0xdd, 0x0a, 0x7c, 0xe6, 0x74, 0x94, 0x1b, 0x3b, 0x88, - 0xf4, 0x39, 0xeb, 0x72, 0x1a, 0x86, 0x4d, 0xca, 0x5d, 0x1a, 0x08, 0x7d, 0xe6, 0x94, 0x15, 0x23, - 0x21, 0x6f, 0x44, 0xab, 0x1d, 0x6d, 0xc1, 0x7b, 0x94, 0x56, 0x83, 0xdd, 0x91, 0xa0, 0xa1, 0xf4, - 0x21, 0x65, 0xc5, 0x89, 0xc8, 0x35, 0x54, 0x38, 0xf3, 0x7c, 0x3a, 0xc9, 0x4e, 0x49, 0xf6, 0x2c, - 0xbc, 0x3d, 0x44, 0xd9, 0x03, 0xea, 0xf8, 0xe2, 0x9c, 0xbc, 0x25, 0x36, 0x38, 0x58, 0x1e, 0x31, - 0xa2, 0xc4, 0x45, 0xe6, 0xad, 0xf1, 0x91, 0xb9, 0xac, 0x36, 0x13, 0x96, 0xc7, 0x13, 0xa8, 0x70, - 0xe2, 0xf8, 0x5e, 0xc7, 0x11, 0x3a, 0x72, 0xe4, 0x0d, 0x28, 0xed, 0x42, 0x9a, 0xa3, 0x9d, 0x8b, - 0xd2, 0xc4, 0x0c, 0x07, 0x52, 0x6f, 0x49, 0x16, 0x94, 0x4b, 0x4f, 0x95, 0x4b, 0x32, 0x2a, 0x17, - 0xb5, 0x24, 0x0f, 0xa2, 0x3c, 0xa7, 0x50, 0x8a, 0x34, 0x88, 0x54, 0x55, 0x79, 0xcc, 0xa0, 0xdb, - 0x16, 0xc2, 0xd3, 0xe6, 0x07, 0x21, 0x79, 0x37, 0x2a, 0x0c, 0xa7, 0xb7, 0x2c, 0x26, 0xae, 0xa6, - 0xae, 0xe5, 0x6e, 0xac, 0xc5, 0xb9, 0x63, 0xcd, 0x92, 0xb7, 0xef, 0x45, 0xf3, 0x27, 0x94, 0x43, - 0x35, 0x90, 0x0d, 0x94, 0x0d, 0x06, 0xbd, 0x53, 0xca, 0x55, 0x39, 0xab, 0xd5, 0xf6, 0x73, 0x49, - 0x94, 0x55, 0xbb, 0xdd, 0x87, 0xb2, 0xe7, 0x32, 0x46, 0x92, 0x92, 0xbb, 0x91, 0x9b, 0x08, 0x9b, - 0xa5, 0x44, 0xa4, 0x22, 0xcb, 0x25, 0x2a, 0x31, 0x2f, 0xe8, 0x46, 0xaa, 0xf2, 0xcc, 0xda, 0xab, - 0x99, 0x3a, 0xb7, 0x62, 0xf8, 0xe4, 0x1a, 0x5a, 0xf4, 0x9d, 0x50, 0xc8, 0xab, 0x26, 0xe3, 0x91, - 0xbb, 0x81, 0xa4, 0xb2, 0x44, 0xac, 0x0b, 0x21, 0x79, 0x10, 0xcd, 0x0f, 0xa3, 0x23, 0x14, 0xd3, - 0x92, 0xb7, 0x14, 0x1d, 0x3d, 0xc2, 0x2c, 0x2d, 0x24, 0xef, 0x44, 0xf9, 0xce, 0x54, 0x61, 0x17, - 0x33, 0x92, 0x1e, 0xdd, 0x8a, 0xe9, 0x9a, 0xb7, 0x66, 0xa8, 0xc4, 0x40, 0x78, 0x38, 0x13, 0xfb, - 0x62, 0x56, 0xaa, 0xaf, 0xc7, 0x04, 0x7a, 0x10, 0x5a, 0x97, 0xe8, 0xdb, 0x3b, 0x28, 0x6b, 0x06, - 0xc2, 0x13, 0x23, 0x72, 0x3f, 0x5a, 0xae, 0x86, 0x4d, 0xdf, 0x71, 0xe9, 0x39, 0xf3, 0x3b, 0x2a, - 0xe0, 0x0b, 0xd6, 0x34, 0xb8, 0xfd, 0x10, 0x4a, 0xd9, 0x4e, 0x97, 0x60, 0x94, 0xba, 0x49, 0x47, - 0x2a, 0x27, 0xf0, 0x49, 0xd6, 0x50, 0x66, 0xe8, 0xf8, 0x03, 0x5d, 0x47, 0xd1, 0x62, 0xfb, 0x7e, - 0x94, 0xb6, 0x9d, 0x6e, 0x48, 0xee, 0x44, 0x69, 0xe1, 0x74, 0x43, 0x55, 0x06, 0x0b, 0xd2, 0x3b, - 0xdb, 0xe9, 0x5a, 0x12, 0x2d, 0xbd, 0x1f, 0x2d, 0x36, 0xfa, 0x94, 0x4b, 0xbf, 0xc8, 0x3c, 0x4a, - 0xed, 0x9b, 0x36, 0x9e, 0x23, 0x0b, 0x28, 0xdd, 0x6c, 0xb4, 0x6c, 0x9c, 0x20, 0x08, 0x65, 0x2b, - 0x66, 0xcd, 0xb4, 0x4d, 0x9c, 0x84, 0xef, 0xe3, 0x66, 0xc5, 0xb0, 0x4d, 0x9c, 0x82, 0xef, 0xea, - 0x51, 0xb3, 0x61, 0xd9, 0x38, 0x0d, 0xdf, 0xe6, 0x23, 0xf2, 0x3b, 0x43, 0x96, 0xd0, 0xc2, 0x89, - 0x51, 0xab, 0x4a, 0x56, 0xb6, 0xf4, 0xdb, 0x24, 0xca, 0x4f, 0xb7, 0x17, 0x92, 0x43, 0xf3, 0xc7, - 0xf5, 0xc3, 0x7a, 0xe3, 0xe1, 0x3a, 0x9e, 0x03, 0x76, 0xd9, 0x32, 0x0d, 0xbb, 0x5a, 0xdf, 0xc7, - 0x09, 0x10, 0xc9, 0x95, 0x59, 0xc1, 0x49, 0xb2, 0x82, 0x96, 0xa3, 0x45, 0x7b, 0xcf, 0xa8, 0xd6, - 0xcc, 0x0a, 0x4e, 0x01, 0x5b, 0xfa, 0x02, 0xec, 0x34, 0x10, 0x22, 0xcf, 0x34, 0x21, 0x03, 0x06, - 0x22, 0xa8, 0x82, 0xb3, 0xc0, 0x96, 0xde, 0x02, 0x7b, 0x1e, 0xd8, 0x91, 0xef, 0x9a, 0xbd, 0x20, - 0x3d, 0x91, 0x50, 0x05, 0x2f, 0x12, 0x8c, 0x96, 0x9a, 0x56, 0xe3, 0xa4, 0xda, 0xaa, 0x36, 0xea, - 0xa0, 0x81, 0x48, 0x01, 0xe5, 0xc6, 0x88, 0x59, 0xc1, 0x39, 0xb2, 0x86, 0xf0, 0x18, 0xd0, 0x56, - 0x96, 0x08, 0x41, 0xf9, 0x8a, 0x39, 0xa5, 0xba, 0x1c, 0xb9, 0x36, 0xa9, 0x9c, 0x27, 0x1b, 0x88, - 0x4c, 0x40, 0x5a, 0xbd, 0x10, 0xa9, 0xcb, 0x53, 0x34, 0xcd, 0x7a, 0x05, 0xd4, 0x31, 0x59, 0x46, - 0x8b, 0x51, 0x6c, 0x61, 0xb9, 0x02, 0x07, 0x89, 0x96, 0x66, 0x05, 0x13, 0xb0, 0x1d, 0xad, 0xb4, - 0x8d, 0xd5, 0xd2, 0x1e, 0x5a, 0x3f, 0xf0, 0xba, 0xe7, 0xc6, 0xd0, 0xf1, 0x7c, 0xe7, 0xd4, 0xf3, - 0x3d, 0x31, 0x8a, 0x62, 0xbd, 0x86, 0xb0, 0x8a, 0x75, 0xfb, 0xc0, 0x68, 0xb7, 0x6c, 0x48, 0xca, - 0x1c, 0xa4, 0xab, 0x65, 0x1b, 0xbb, 0x35, 0x33, 0x0a, 0xb9, 0xde, 0x37, 0x59, 0xea, 0xa2, 0xdc, - 0x44, 0xc7, 0x83, 0x7d, 0xeb, 0x0d, 0x5b, 0xa7, 0x2a, 0x8b, 0x92, 0x8d, 0xc3, 0x48, 0xe3, 0x61, - 0xc3, 0x92, 0x07, 0x4d, 0x46, 0xf9, 0xab, 0xda, 0xd5, 0xb2, 0x51, 0xc3, 0x29, 0x10, 0x1d, 0x55, - 0x5b, 0xad, 0x28, 0x3d, 0x32, 0x59, 0xfb, 0x96, 0x51, 0x91, 0x99, 0x89, 0x6c, 0xed, 0x35, 0x8e, - 0xeb, 0x15, 0x9c, 0x2d, 0x3d, 0x95, 0x40, 0xab, 0x31, 0x8d, 0x11, 0xfc, 0xad, 0x37, 0x2a, 0x66, - 0xfb, 0xb8, 0x6e, 0x99, 0x46, 0xf9, 0x40, 0xfa, 0x38, 0x07, 0x21, 0x32, 0xeb, 0x76, 0xd5, 0x7e, - 0x6f, 0x5b, 0x5b, 0x4f, 0x90, 0x3b, 0xd0, 0x66, 0xb9, 0x56, 0x35, 0xeb, 0x76, 0x3b, 0xaa, 0x1f, - 0x15, 0xd2, 0x63, 0x0b, 0xea, 0x94, 0xa0, 0xfc, 0x5e, 0xc3, 0x3a, 0x32, 0xec, 0x76, 0xb5, 0x2e, - 0x8b, 0x11, 0xa7, 0x20, 0xbf, 0xd5, 0xfa, 0x5e, 0xa3, 0x7d, 0xe1, 0x20, 0x04, 0x52, 0x21, 0x47, - 0x86, 0x5d, 0x3e, 0xc0, 0x99, 0x12, 0x47, 0xa8, 0xec, 0x7b, 0x34, 0x10, 0xf6, 0xa8, 0x4f, 0x41, - 0xa5, 0xdc, 0xa8, 0xdb, 0x56, 0xa3, 0xd6, 0xac, 0x19, 0x75, 0xed, 0xc9, 0x23, 0xb6, 0x69, 0xd5, - 0x8d, 0x5a, 0xb4, 0x3b, 0x4e, 0xc0, 0x55, 0x01, 0x9f, 0x71, 0x92, 0x2c, 0xa2, 0x8c, 0x51, 0x39, - 0xaa, 0xd6, 0x71, 0x0a, 0x32, 0xb8, 0x6b, 0x58, 0xe6, 0x91, 0x69, 0x1b, 0x35, 0x9c, 0x06, 0x4b, - 0xb5, 0x86, 0x51, 0xd9, 0x35, 0x6a, 0x46, 0xbd, 0x6c, 0x5a, 0x38, 0x03, 0x5a, 0x07, 0x70, 0xc1, - 0xb2, 0xa5, 0x1b, 0x88, 0x18, 0x03, 0x71, 0x4e, 0x03, 0xe1, 0xb9, 0x32, 0x1c, 0x72, 0xef, 0x3c, - 0x42, 0x2d, 0xb3, 0xb6, 0xd7, 0xaa, 0xee, 0x43, 0xf9, 0x44, 0x17, 0xc5, 0x50, 0xab, 0x44, 0xe9, - 0xc9, 0x0c, 0x5a, 0x92, 0xd7, 0xaa, 0x43, 0xb9, 0xa4, 0x17, 0x50, 0xce, 0x08, 0x46, 0x1a, 0x8a, - 0x3c, 0x3d, 0xf1, 0xb8, 0x18, 0x38, 0xfe, 0x91, 0xe3, 0x9e, 0x7b, 0x01, 0xc5, 0x09, 0xb2, 0x85, - 0x36, 0xa6, 0xb1, 0x96, 0xeb, 0xf8, 0xb4, 0x45, 0x05, 0x4e, 0x4a, 0x0f, 0x99, 0xd3, 0xd9, 0x75, - 0x7c, 0x27, 0x70, 0x29, 0xc7, 0xa9, 0x09, 0x0b, 0x75, 0x2a, 0x6e, 0x31, 0x7e, 0x13, 0xa7, 0xc9, - 0x2a, 0x2a, 0x28, 0xec, 0xc0, 0xe1, 0x9d, 0x8a, 0x17, 0xde, 0xc4, 0x19, 0x50, 0xdd, 0x77, 0x7c, - 0x9f, 0xf2, 0x51, 0xb5, 0xe7, 0x74, 0x29, 0xce, 0x92, 0x4d, 0xb4, 0x3a, 0xbd, 0x51, 0x24, 0x98, - 0x97, 0xf9, 0x8d, 0x8c, 0x55, 0x03, 0x41, 0xf9, 0x99, 0xe3, 0x52, 0xbc, 0x00, 0xce, 0x97, 0x29, - 0x17, 0xde, 0x19, 0x04, 0x80, 0xe2, 0x45, 0x68, 0x43, 0x87, 0x74, 0x84, 0x91, 0xac, 0x54, 0xea, - 0x72, 0x2a, 0x70, 0x0e, 0x22, 0x70, 0x48, 0x47, 0x27, 0xce, 0xc0, 0x17, 0x78, 0x49, 0xde, 0x89, - 0x0e, 0x95, 0xdd, 0x13, 0x2f, 0x43, 0x34, 0x2d, 0xe6, 0x53, 0x9c, 0x07, 0xaf, 0xe1, 0xcb, 0x08, - 0x43, 0xaf, 0x1b, 0xf4, 0x68, 0x20, 0x70, 0x01, 0x62, 0x79, 0x38, 0x38, 0xa5, 0x3c, 0xa0, 0x82, - 0x86, 0x18, 0xcb, 0x36, 0xe3, 0x0f, 0x42, 0x41, 0x39, 0x5e, 0x91, 0x49, 0x66, 0x81, 0xe0, 0xcc, - 0x6f, 0xfa, 0x4e, 0x40, 0x31, 0x81, 0x34, 0xee, 0x73, 0x36, 0xe8, 0xe3, 0x55, 0x99, 0x5b, 0xd6, - 0xa1, 0x78, 0x0d, 0xf6, 0xab, 0xb1, 0x28, 0x3f, 0x78, 0x1d, 0xce, 0xd1, 0x12, 0x8c, 0x3b, 0x5d, - 0x0a, 0xba, 0x8e, 0x17, 0x50, 0x8e, 0x37, 0xe0, 0x1c, 0x0a, 0xdd, 0xf3, 0x7c, 0x8a, 0x37, 0x27, - 0x68, 0x15, 0x8f, 0x53, 0x57, 0x30, 0x3e, 0xc2, 0x45, 0xd8, 0xb1, 0x35, 0x38, 0x8d, 0x86, 0x48, - 0x30, 0x77, 0x05, 0x1c, 0x3a, 0xf1, 0xfa, 0x4d, 0xc6, 0x7c, 0xbc, 0x25, 0x2f, 0x91, 0xe3, 0xca, - 0xc5, 0x1d, 0x60, 0xd2, 0x14, 0x6e, 0x47, 0xbb, 0x7b, 0x27, 0x9c, 0x05, 0x80, 0x16, 0xe5, 0x43, - 0xca, 0xf1, 0x5d, 0xb0, 0xc5, 0xae, 0xc3, 0xe9, 0x11, 0x15, 0x17, 0x99, 0xbe, 0x9b, 0xac, 0xa3, - 0x95, 0x32, 0xa7, 0x32, 0x3e, 0x8e, 0x7f, 0xc4, 0x02, 0x4f, 0x30, 0x8e, 0xef, 0x01, 0xd3, 0x35, - 0xd6, 0xed, 0x7a, 0x41, 0x17, 0x5f, 0x85, 0x13, 0x59, 0xd4, 0x65, 0x43, 0xca, 0x47, 0xf8, 0x5e, - 0x38, 0x74, 0x85, 0x9e, 0x0e, 0xba, 0x78, 0x1b, 0xee, 0xc5, 0xd8, 0xe4, 0x01, 0x0b, 0x05, 0xbe, - 0x0f, 0xa2, 0x3a, 0x5d, 0xa3, 0xf8, 0x7e, 0xa0, 0x45, 0xcd, 0x42, 0xdb, 0x7f, 0xa0, 0xf4, 0x18, - 0x41, 0x9b, 0xba, 0x06, 0x0d, 0xd7, 0xa5, 0x61, 0x78, 0xf1, 0xb4, 0x14, 0x50, 0xee, 0x38, 0x08, - 0xfb, 0xd4, 0xf5, 0xce, 0x3c, 0xda, 0xc1, 0x73, 0xa4, 0x88, 0xd6, 0xa6, 0x6d, 0xb6, 0x6b, 0xac, - 0xeb, 0x05, 0xb8, 0x43, 0x36, 0x11, 0x99, 0xa8, 0x87, 0x76, 0x99, 0x53, 0x28, 0x8b, 0x1f, 0x26, - 0x66, 0x05, 0xc7, 0xfd, 0x0e, 0x08, 0x7e, 0x94, 0x20, 0x6b, 0xa8, 0x30, 0x29, 0xd8, 0xa7, 0x02, - 0xff, 0xf8, 0x12, 0xbd, 0x42, 0x7d, 0x2a, 0x28, 0xfe, 0x49, 0x82, 0xac, 0x23, 0x3c, 0x29, 0x68, - 0x79, 0xdd, 0x00, 0x3f, 0x9f, 0x20, 0x1b, 0x68, 0x65, 0x12, 0xb6, 0x68, 0x40, 0x6f, 0xe1, 0x17, - 0xa4, 0x75, 0x5d, 0x6b, 0xda, 0x99, 0x2f, 0x25, 0xa7, 0x50, 0xe5, 0xc9, 0x97, 0xa7, 0x51, 0x8b, - 0x0e, 0xd9, 0x4d, 0x8a, 0xbf, 0x32, 0x83, 0x32, 0x68, 0x77, 0xf8, 0xab, 0x49, 0x72, 0x0f, 0xda, - 0xd2, 0x68, 0xcc, 0x79, 0x3f, 0x96, 0xba, 0x1d, 0x41, 0xed, 0xf6, 0xf1, 0x14, 0xb9, 0x1b, 0x5d, - 0x89, 0x23, 0x44, 0x9e, 0x7f, 0x22, 0x45, 0x0a, 0x08, 0x1d, 0xd2, 0xb1, 0xd3, 0x7f, 0x1b, 0x03, - 0xca, 0xc2, 0xdf, 0xa1, 0x2d, 0xe6, 0x00, 0x30, 0x03, 0x97, 0x8f, 0xfa, 0x02, 0xff, 0x63, 0x8c, - 0x54, 0x68, 0x84, 0xfc, 0x73, 0x8c, 0x3c, 0xcc, 0x9d, 0x3e, 0x5c, 0xcb, 0xd7, 0xa0, 0x37, 0x2c, - 0x4b, 0x33, 0xc1, 0x2d, 0x85, 0xbd, 0x0e, 0x2d, 0x0f, 0xee, 0x67, 0x14, 0xcc, 0x7f, 0x8d, 0x77, - 0x3a, 0xa1, 0xdc, 0x3b, 0x1b, 0xe1, 0x7f, 0xa7, 0xc8, 0x16, 0x5a, 0x9f, 0x6e, 0x0a, 0xda, 0xad, - 0x9f, 0xa7, 0x63, 0x64, 0xca, 0xc3, 0x5f, 0xc4, 0xc9, 0x54, 0x22, 0x7f, 0x99, 0x26, 0x77, 0xa2, - 0xcd, 0x19, 0x99, 0x7a, 0x55, 0x28, 0xfe, 0x55, 0x9a, 0x5c, 0x41, 0x6b, 0x33, 0xd2, 0x96, 0x70, - 0xb8, 0xc0, 0x2f, 0xa5, 0x49, 0x71, 0xb6, 0x43, 0xb5, 0x5b, 0x82, 0xf5, 0xf1, 0xcb, 0x71, 0x4a, - 0x16, 0x0d, 0xa9, 0xc0, 0xbf, 0x4e, 0x93, 0x07, 0xd1, 0xbd, 0x97, 0x44, 0x7d, 0xc7, 0xe3, 0xed, - 0xfd, 0x01, 0x0d, 0x45, 0xdb, 0xe8, 0x42, 0xbb, 0xf9, 0x4d, 0x9c, 0x89, 0xa6, 0x33, 0x08, 0x29, - 0x7e, 0x25, 0x76, 0x5f, 0x67, 0x48, 0xf1, 0xab, 0xd0, 0x5a, 0xf3, 0xea, 0x96, 0xeb, 0xb8, 0x7c, - 0x27, 0x33, 0x09, 0xaa, 0x80, 0x7c, 0x37, 0x03, 0x36, 0x34, 0x08, 0x2d, 0x5b, 0xf7, 0x86, 0xef, - 0x65, 0x20, 0x54, 0x63, 0xba, 0x9c, 0x55, 0xb5, 0xec, 0xfb, 0x19, 0x79, 0x19, 0x94, 0x6c, 0x9f, - 0x0a, 0x2d, 0x78, 0x26, 0x23, 0x2f, 0xc3, 0x85, 0x00, 0xda, 0x5d, 0x88, 0x9f, 0xcd, 0xc0, 0x65, - 0x90, 0x0d, 0xa1, 0x2d, 0xff, 0x55, 0xfd, 0xe6, 0x33, 0x59, 0xa0, 0x47, 0x78, 0x4b, 0x38, 0xee, - 0x4d, 0x9b, 0x43, 0x0b, 0xff, 0x6c, 0x16, 0xce, 0x0c, 0x4d, 0xa3, 0xa7, 0x9b, 0x86, 0x3e, 0xc4, - 0x07, 0xe6, 0x2f, 0x8b, 0xd4, 0x51, 0x9e, 0x98, 0x87, 0xfc, 0x8d, 0x45, 0x33, 0x55, 0xf1, 0x87, - 0x78, 0xa9, 0xd2, 0xfd, 0xe3, 0xbc, 0x0c, 0xc3, 0x44, 0xe3, 0xd6, 0x7a, 0xcf, 0x2f, 0x5c, 0x92, - 0x28, 0x9d, 0x17, 0x16, 0x20, 0x08, 0x13, 0xed, 0x54, 0xab, 0x7c, 0x6d, 0x71, 0x56, 0xa0, 0x34, - 0xbe, 0xbe, 0x08, 0x61, 0xb8, 0xe8, 0xb7, 0x5a, 0xe1, 0x49, 0x34, 0x83, 0x2b, 0xfe, 0x53, 0x08, - 0xf6, 0x9e, 0x7c, 0x0c, 0xb5, 0xc6, 0x6b, 0x97, 0x25, 0x4a, 0xe7, 0x75, 0x44, 0x56, 0xd0, 0x92, - 0x7c, 0x70, 0x34, 0xf9, 0xa5, 0xdc, 0x05, 0xa4, 0x58, 0x2f, 0xc3, 0xf4, 0x59, 0xd0, 0xef, 0x9f, - 0x26, 0x3e, 0xb3, 0x34, 0x85, 0x2a, 0xee, 0xb3, 0x4b, 0xe0, 0xdd, 0xc5, 0x8b, 0xa7, 0xd9, 0x9f, - 0x5b, 0x9e, 0xc1, 0x15, 0xff, 0xf3, 0xcb, 0xe0, 0xdb, 0xe4, 0xeb, 0xaf, 0x35, 0x3e, 0x94, 0xbf, - 0x24, 0x51, 0x3a, 0x1f, 0xce, 0xc3, 0xce, 0xfa, 0x45, 0xd4, 0xfc, 0x3f, 0x4d, 0xa3, 0x8a, 0xfb, - 0xe7, 0x3c, 0xd4, 0xf1, 0x91, 0xe3, 0xf6, 0x19, 0xf3, 0x35, 0xf5, 0xa7, 0x85, 0x49, 0x50, 0x31, - 0x5f, 0x2c, 0x40, 0xce, 0x67, 0x27, 0x04, 0xad, 0xf2, 0x0d, 0x1c, 0x2b, 0x55, 0xba, 0xdf, 0xc4, - 0xd0, 0xa7, 0xa0, 0x7c, 0x35, 0xff, 0x93, 0x2b, 0x63, 0x44, 0x71, 0x3e, 0xb5, 0x02, 0xfe, 0xe9, - 0x57, 0x4f, 0xf3, 0xfe, 0x33, 0x8d, 0x2a, 0xee, 0x7f, 0xa5, 0x36, 0xcc, 0x12, 0x9a, 0xf7, 0x0a, - 0x19, 0x23, 0x8a, 0xf3, 0x2a, 0x81, 0x2b, 0x37, 0x3d, 0x6f, 0x68, 0xf6, 0x0f, 0x56, 0x63, 0x64, - 0x4a, 0xef, 0xb9, 0x55, 0xe8, 0xa0, 0xd1, 0x64, 0xa3, 0xf9, 0x5f, 0x58, 0x9b, 0xc0, 0x14, 0xef, - 0x8b, 0x6b, 0x70, 0xe2, 0xd9, 0x49, 0x43, 0x6b, 0x7c, 0x64, 0x3d, 0x56, 0xaa, 0x74, 0x3f, 0xba, - 0x0e, 0xb9, 0x9b, 0x1c, 0x34, 0xb4, 0xde, 0x5f, 0x2e, 0x4b, 0x94, 0xce, 0x5f, 0xa5, 0xe4, 0x62, - 0x30, 0xbf, 0xe8, 0xa6, 0x3f, 0xdb, 0x80, 0x74, 0xa9, 0x21, 0x45, 0x1b, 0xfa, 0xd6, 0xe6, 0x24, - 0xa8, 0x6c, 0x7c, 0x7b, 0x93, 0xdc, 0x31, 0x9e, 0x33, 0xf5, 0x94, 0xa8, 0x35, 0x9e, 0x2e, 0xc6, - 0x09, 0x95, 0xe6, 0xa7, 0x8b, 0xf0, 0xe0, 0xc5, 0x0c, 0x8e, 0x5a, 0xfb, 0xb1, 0x2b, 0xb7, 0x23, - 0x28, 0x0b, 0x8f, 0x5f, 0x21, 0xdb, 0xe8, 0xae, 0xf8, 0x19, 0x57, 0x1b, 0xf9, 0xdd, 0xff, 0xe3, - 0x28, 0x3b, 0xbf, 0xbf, 0x32, 0xf1, 0xea, 0xa8, 0x82, 0x1b, 0x8f, 0x21, 0x5b, 0x31, 0x32, 0x3d, - 0x89, 0x6c, 0x95, 0x2c, 0x94, 0x93, 0x2e, 0xb5, 0xd8, 0x80, 0xbb, 0x34, 0x1a, 0xfc, 0xcb, 0x46, - 0xad, 0xdd, 0x6a, 0x1c, 0x5b, 0x65, 0xf8, 0x13, 0x02, 0x06, 0xfb, 0xbd, 0x96, 0x5e, 0x27, 0x60, - 0x2e, 0x3a, 0xb0, 0xed, 0xa6, 0x06, 0xe4, 0x24, 0x5e, 0xae, 0x35, 0xea, 0xa6, 0x46, 0x52, 0xa5, - 0x5d, 0x84, 0x0f, 0x46, 0x7d, 0xca, 0x4f, 0xf6, 0x69, 0xa0, 0xc7, 0xa9, 0x0d, 0x44, 0x66, 0xb1, - 0x93, 0x1b, 0x78, 0x2e, 0x16, 0x7f, 0x13, 0x4e, 0x94, 0xde, 0x83, 0xf2, 0x10, 0x6b, 0x18, 0x4c, - 0xf7, 0x18, 0xef, 0x39, 0x42, 0xfe, 0x41, 0x3a, 0x85, 0x9c, 0x1c, 0x54, 0x1e, 0xc1, 0x73, 0x30, - 0x3b, 0x5e, 0xc2, 0x71, 0xa2, 0xf4, 0x10, 0xbc, 0x3a, 0x6c, 0xd0, 0xa9, 0x06, 0x9e, 0xa8, 0x38, - 0xc2, 0x51, 0x07, 0xcc, 0xa1, 0xf9, 0x3a, 0x93, 0x02, 0x3c, 0x27, 0xff, 0x00, 0x7a, 0x74, 0xc0, - 0x29, 0x4e, 0xbc, 0xe3, 0x5d, 0x68, 0x31, 0xa4, 0x41, 0xe8, 0x09, 0x6f, 0x48, 0xc9, 0x5d, 0x3b, - 0xd1, 0x8f, 0xa8, 0x3b, 0xfa, 0x47, 0xd4, 0x9d, 0x3d, 0x8f, 0xfa, 0x9d, 0x86, 0x2c, 0xbe, 0xb0, - 0xf8, 0xe2, 0x07, 0x53, 0xf2, 0xe7, 0x8e, 0x0b, 0x8d, 0xdd, 0x07, 0xde, 0x77, 0x5f, 0xd7, 0x13, - 0xe7, 0x83, 0xd3, 0x1d, 0x97, 0xf5, 0xae, 0xf7, 0x3c, 0x97, 0xb3, 0x90, 0x9d, 0x89, 0xeb, 0x3d, - 0xe6, 0x5e, 0xe7, 0x7d, 0xf7, 0x7a, 0xf4, 0x3b, 0xed, 0x69, 0x56, 0x1a, 0x7c, 0xf3, 0xff, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xdd, 0x6c, 0xb9, 0x39, 0xc3, 0x15, 0x00, 0x00, + // 2520 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x6b, 0x88, 0x64, 0x47, + 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x36, 0x8f, 0xcd, 0x24, + 0x59, 0x96, 0xe6, 0x9f, 0xd9, 0xbf, 0xab, 0x28, 0x2a, 0x2a, 0x77, 0xba, 0xef, 0xcc, 0x34, 0xdb, + 0xd3, 0xdd, 0xdc, 0xbe, 0x33, 0x89, 0x22, 0x34, 0x77, 0x6e, 0xd7, 0xf4, 0x5c, 0xf6, 0xf6, 0xad, + 0xa6, 0x6e, 0x75, 0x2f, 0x9d, 0x4f, 0x06, 0x8c, 0x28, 0x28, 0xa8, 0x18, 0x50, 0x88, 0xa0, 0xa0, + 0x60, 0xc0, 0xf8, 0x00, 0x05, 0x15, 0x1f, 0x09, 0x18, 0xf0, 0x91, 0x80, 0x01, 0x3f, 0xf8, 0x48, + 0x34, 0x41, 0x05, 0x05, 0x05, 0x05, 0x1f, 0x89, 0x0f, 0x90, 0x53, 0xb7, 0xaa, 0xa7, 0xbb, 0xe7, + 0xae, 0x5f, 0x76, 0x6f, 0xfd, 0xce, 0xef, 0x9c, 0x3a, 0x75, 0xce, 0xa9, 0x53, 0xa7, 0x07, 0x6d, + 0xf6, 0x98, 0xdb, 0x76, 0x59, 0xaf, 0xc7, 0x02, 0xf5, 0xdf, 0x4e, 0x9f, 0x33, 0xc1, 0x48, 0xaa, + 0xc7, 0xdc, 0xad, 0x2b, 0x5d, 0xc6, 0xba, 0x3e, 0xbd, 0x2e, 0xa1, 0x93, 0xc1, 0xe9, 0xf5, 0x0e, + 0x0d, 0x5d, 0xee, 0xf5, 0x05, 0xe3, 0x11, 0x6d, 0xfb, 0x08, 0x65, 0x4c, 0xce, 0x19, 0x27, 0x45, + 0x34, 0x7f, 0x48, 0xc3, 0xd0, 0xe9, 0xd2, 0x62, 0xe2, 0x4a, 0xe2, 0xda, 0xa2, 0xa5, 0x97, 0x84, + 0xa0, 0x74, 0x99, 0x75, 0x68, 0x31, 0x79, 0x25, 0x71, 0x2d, 0x63, 0xc9, 0x6f, 0x72, 0x0f, 0x42, + 0x4d, 0x87, 0x3b, 0x3d, 0x2a, 0x28, 0x0f, 0x8b, 0x29, 0xa9, 0x30, 0x81, 0x6c, 0x3f, 0x9e, 0x40, + 0x85, 0x26, 0x67, 0x43, 0x2f, 0xf4, 0x58, 0xd0, 0x12, 0x8e, 0x18, 0x84, 0xe4, 0x2d, 0x68, 0xc9, + 0x1d, 0x70, 0x4e, 0x03, 0x01, 0x40, 0xb4, 0x4d, 0xfe, 0xc6, 0xea, 0x4e, 0x8f, 0xb9, 0x3b, 0x53, + 0x5c, 0x6a, 0x4d, 0x11, 0xc9, 0x5b, 0xd1, 0x72, 0x9f, 0xd3, 0xa1, 0xc7, 0x06, 0x61, 0xa4, 0x99, + 0xbc, 0xb3, 0xe6, 0x34, 0x73, 0xfb, 0xc9, 0x04, 0xca, 0x57, 0xd8, 0xed, 0xc0, 0x67, 0x4e, 0x47, + 0xb9, 0xb1, 0x83, 0x48, 0x9f, 0xb3, 0x2e, 0xa7, 0x61, 0xd8, 0xa4, 0xdc, 0xa5, 0x81, 0xd0, 0x67, + 0x4e, 0x59, 0x31, 0x12, 0xf2, 0xff, 0x68, 0xb5, 0xa3, 0x2d, 0x78, 0x8f, 0xd2, 0x6a, 0xb0, 0x3b, + 0x12, 0x34, 0x94, 0x3e, 0xa4, 0xac, 0x38, 0x11, 0xb9, 0x86, 0x0a, 0xa7, 0x9e, 0x4f, 0x27, 0xd9, + 0x29, 0xc9, 0x9e, 0x85, 0xb7, 0x87, 0x28, 0x7b, 0x40, 0x1d, 0x5f, 0x9c, 0x91, 0x37, 0xc5, 0x06, + 0x07, 0xcb, 0x23, 0x46, 0x94, 0xb8, 0xc8, 0xbc, 0x39, 0x3e, 0x32, 0x17, 0xd5, 0x66, 0xc2, 0xf2, + 0x58, 0x02, 0x15, 0x8e, 0x1d, 0xdf, 0xeb, 0x38, 0x42, 0x47, 0x8e, 0xfc, 0x1f, 0x4a, 0xbb, 0x90, + 0xe6, 0x68, 0xe7, 0xa2, 0x34, 0x31, 0xc3, 0x81, 0xd4, 0x5b, 0x92, 0x05, 0xe5, 0xd2, 0x53, 0xe5, + 0x92, 0x8c, 0xca, 0x45, 0x2d, 0xc9, 0x55, 0x94, 0xe7, 0x14, 0x4a, 0x91, 0x06, 0x91, 0xaa, 0x2a, + 0x8f, 0x19, 0x74, 0xdb, 0x42, 0x78, 0xda, 0xfc, 0x20, 0x24, 0xef, 0x44, 0x85, 0xe1, 0xf4, 0x96, + 0xc5, 0xc4, 0x95, 0xd4, 0xb5, 0xdc, 0x8d, 0xb5, 0x38, 0x77, 0xac, 0x59, 0xf2, 0xf6, 0x7d, 0x68, + 0xfe, 0x98, 0x72, 0xa8, 0x06, 0xb2, 0x81, 0xb2, 0xc1, 0xa0, 0x77, 0x42, 0xb9, 0x2a, 0x67, 0xb5, + 0xda, 0x7e, 0x2e, 0x89, 0xb2, 0x6a, 0xb7, 0xfb, 0x51, 0xf6, 0x4c, 0xc6, 0x48, 0x52, 0x72, 0x37, + 0x72, 0x13, 0x61, 0xb3, 0x94, 0x88, 0x54, 0x64, 0xb9, 0x44, 0x25, 0xe6, 0x05, 0xdd, 0x48, 0x55, + 0x9e, 0x59, 0x7b, 0x35, 0x53, 0xe7, 0x56, 0x0c, 0x9f, 0x5c, 0x43, 0x8b, 0xbe, 0x13, 0x0a, 0x79, + 0xd5, 0x64, 0x3c, 0x72, 0x37, 0x90, 0x54, 0x96, 0x88, 0x75, 0x2e, 0x24, 0x57, 0xd1, 0xfc, 0x30, + 0x3a, 0x42, 0x31, 0x2d, 0x79, 0x4b, 0xd1, 0xd1, 0x23, 0xcc, 0xd2, 0x42, 0xf2, 0x76, 0x94, 0xef, + 0x4c, 0x15, 0x76, 0x31, 0x23, 0xe9, 0xd1, 0xad, 0x98, 0xae, 0x79, 0x6b, 0x86, 0x4a, 0x0c, 0x84, + 0x87, 0x33, 0xb1, 0x2f, 0x66, 0xa5, 0xfa, 0x7a, 0x4c, 0xa0, 0x07, 0xa1, 0x75, 0x81, 0xbe, 0xbd, + 0x83, 0xb2, 0x66, 0x20, 0x3c, 0x31, 0x22, 0x0f, 0xa0, 0xe5, 0x6a, 0xd8, 0xf4, 0x1d, 0x97, 0x9e, + 0x31, 0xbf, 0xa3, 0x02, 0xbe, 0x60, 0x4d, 0x83, 0xdb, 0x0f, 0xa1, 0x94, 0xed, 0x74, 0x09, 0x46, + 0xa9, 0x5b, 0x74, 0xa4, 0x72, 0x02, 0x9f, 0x64, 0x0d, 0x65, 0x86, 0x8e, 0x3f, 0xd0, 0x75, 0x14, + 0x2d, 0xb6, 0x1f, 0x40, 0x69, 0xdb, 0xe9, 0x86, 0xe4, 0x2e, 0x94, 0x16, 0x4e, 0x37, 0x54, 0x65, + 0xb0, 0x20, 0xbd, 0xb3, 0x9d, 0xae, 0x25, 0xd1, 0xd2, 0x7b, 0xd1, 0x62, 0xa3, 0x4f, 0xb9, 0xf4, + 0x8b, 0xcc, 0xa3, 0xd4, 0xbe, 0x69, 0xe3, 0x39, 0xb2, 0x80, 0xd2, 0xcd, 0x46, 0xcb, 0xc6, 0x09, + 0x82, 0x50, 0xb6, 0x62, 0xd6, 0x4c, 0xdb, 0xc4, 0x49, 0xf8, 0x3e, 0x6a, 0x56, 0x0c, 0xdb, 0xc4, + 0x29, 0xf8, 0xae, 0x1e, 0x36, 0x1b, 0x96, 0x8d, 0xd3, 0xf0, 0x6d, 0x3e, 0x22, 0xbf, 0x33, 0x64, + 0x09, 0x2d, 0x1c, 0x1b, 0xb5, 0xaa, 0x64, 0x65, 0x4b, 0xbf, 0x49, 0xa2, 0xfc, 0x74, 0x7b, 0x21, + 0x39, 0x34, 0x7f, 0x54, 0xbf, 0x59, 0x6f, 0x3c, 0x5c, 0xc7, 0x73, 0xc0, 0x2e, 0x5b, 0xa6, 0x61, + 0x57, 0xeb, 0xfb, 0x38, 0x01, 0x22, 0xb9, 0x32, 0x2b, 0x38, 0x49, 0x56, 0xd0, 0x72, 0xb4, 0x68, + 0xef, 0x19, 0xd5, 0x9a, 0x59, 0xc1, 0x29, 0x60, 0x4b, 0x5f, 0x80, 0x9d, 0x06, 0x42, 0xe4, 0x99, + 0x26, 0x64, 0xc0, 0x40, 0x04, 0x55, 0x70, 0x16, 0xd8, 0xd2, 0x5b, 0x60, 0xcf, 0x03, 0x3b, 0xf2, + 0x5d, 0xb3, 0x17, 0xa4, 0x27, 0x12, 0xaa, 0xe0, 0x45, 0x82, 0xd1, 0x52, 0xd3, 0x6a, 0x1c, 0x57, + 0x5b, 0xd5, 0x46, 0x1d, 0x34, 0x10, 0x29, 0xa0, 0xdc, 0x18, 0x31, 0x2b, 0x38, 0x47, 0xd6, 0x10, + 0x1e, 0x03, 0xda, 0xca, 0x12, 0x21, 0x28, 0x5f, 0x31, 0xa7, 0x54, 0x97, 0x23, 0xd7, 0x26, 0x95, + 0xf3, 0x64, 0x03, 0x91, 0x09, 0x48, 0xab, 0x17, 0x22, 0x75, 0x79, 0x8a, 0xa6, 0x59, 0xaf, 0x80, + 0x3a, 0x26, 0xcb, 0x68, 0x31, 0x8a, 0x2d, 0x2c, 0x57, 0xe0, 0x20, 0xd1, 0xd2, 0xac, 0x60, 0x02, + 0xb6, 0xa3, 0x95, 0xb6, 0xb1, 0x5a, 0xda, 0x43, 0xeb, 0x07, 0x5e, 0xf7, 0xcc, 0x18, 0x3a, 0x9e, + 0xef, 0x9c, 0x78, 0xbe, 0x27, 0x46, 0x51, 0xac, 0xd7, 0x10, 0x56, 0xb1, 0x6e, 0x1f, 0x18, 0xed, + 0x96, 0x0d, 0x49, 0x99, 0x83, 0x74, 0xb5, 0x6c, 0x63, 0xb7, 0x66, 0x46, 0x21, 0xd7, 0xfb, 0x26, + 0x4b, 0x5d, 0x94, 0x9b, 0xe8, 0x78, 0xb0, 0x6f, 0xbd, 0x61, 0xeb, 0x54, 0x65, 0x51, 0xb2, 0x71, + 0x33, 0xd2, 0x78, 0xd8, 0xb0, 0xe4, 0x41, 0x93, 0x51, 0xfe, 0xaa, 0x76, 0xb5, 0x6c, 0xd4, 0x70, + 0x0a, 0x44, 0x87, 0xd5, 0x56, 0x2b, 0x4a, 0x8f, 0x4c, 0xd6, 0xbe, 0x65, 0x54, 0x64, 0x66, 0x22, + 0x5b, 0x7b, 0x8d, 0xa3, 0x7a, 0x05, 0x67, 0x4b, 0x4f, 0x24, 0xd0, 0x6a, 0x4c, 0x63, 0x04, 0x7f, + 0xeb, 0x8d, 0x8a, 0xd9, 0x3e, 0xaa, 0x5b, 0xa6, 0x51, 0x3e, 0x90, 0x3e, 0xce, 0x41, 0x88, 0xcc, + 0xba, 0x5d, 0xb5, 0xdf, 0xdd, 0xd6, 0xd6, 0x13, 0xe4, 0x32, 0xda, 0x2c, 0xd7, 0xaa, 0x66, 0xdd, + 0x6e, 0x47, 0xf5, 0xa3, 0x42, 0x7a, 0x64, 0x41, 0x9d, 0x12, 0x94, 0xdf, 0x6b, 0x58, 0x87, 0x86, + 0xdd, 0xae, 0xd6, 0x65, 0x31, 0xe2, 0x14, 0xe4, 0xb7, 0x5a, 0xdf, 0x6b, 0xb4, 0xcf, 0x1d, 0x84, + 0x40, 0x2a, 0xe4, 0xd0, 0xb0, 0xcb, 0x07, 0x38, 0x53, 0xe2, 0x08, 0x95, 0x7d, 0x8f, 0x06, 0xc2, + 0x1e, 0xf5, 0x29, 0xa8, 0x94, 0x1b, 0x75, 0xdb, 0x6a, 0xd4, 0x9a, 0x35, 0xa3, 0xae, 0x3d, 0x79, + 0xc4, 0x36, 0xad, 0xba, 0x51, 0x8b, 0x76, 0xc7, 0x09, 0xb8, 0x2a, 0xe0, 0x33, 0x4e, 0x92, 0x45, + 0x94, 0x31, 0x2a, 0x87, 0xd5, 0x3a, 0x4e, 0x41, 0x06, 0x77, 0x0d, 0xcb, 0x3c, 0x34, 0x6d, 0xa3, + 0x86, 0xd3, 0x60, 0xa9, 0xd6, 0x30, 0x2a, 0xbb, 0x46, 0xcd, 0xa8, 0x97, 0x4d, 0x0b, 0x67, 0x40, + 0xeb, 0x00, 0x2e, 0x58, 0xb6, 0x74, 0x03, 0x11, 0x63, 0x20, 0xce, 0x68, 0x20, 0x3c, 0x57, 0x86, + 0x43, 0xee, 0x9d, 0x47, 0xa8, 0x65, 0xd6, 0xf6, 0x5a, 0xd5, 0x7d, 0x28, 0x9f, 0xe8, 0xa2, 0x18, + 0x6a, 0x95, 0x28, 0x3d, 0x95, 0x41, 0x4b, 0xf2, 0x5a, 0x75, 0x28, 0x97, 0xf4, 0x02, 0xca, 0x19, + 0xc1, 0x48, 0x43, 0x91, 0xa7, 0xc7, 0x1e, 0x17, 0x03, 0xc7, 0x3f, 0x74, 0xdc, 0x33, 0x2f, 0xa0, + 0x38, 0x41, 0xb6, 0xd0, 0xc6, 0x34, 0xd6, 0x72, 0x1d, 0x9f, 0xb6, 0xa8, 0xc0, 0x49, 0xe9, 0x21, + 0x73, 0x3a, 0xbb, 0x8e, 0xef, 0x04, 0x2e, 0xe5, 0x38, 0x35, 0x61, 0xa1, 0x4e, 0xc5, 0x6d, 0xc6, + 0x6f, 0xe1, 0x34, 0x59, 0x45, 0x05, 0x85, 0x1d, 0x38, 0xbc, 0x53, 0xf1, 0xc2, 0x5b, 0x38, 0x03, + 0xaa, 0xfb, 0x8e, 0xef, 0x53, 0x3e, 0xaa, 0xf6, 0x9c, 0x2e, 0xc5, 0x59, 0xb2, 0x89, 0x56, 0xa7, + 0x37, 0x8a, 0x04, 0xf3, 0x32, 0xbf, 0x91, 0xb1, 0x6a, 0x20, 0x28, 0x3f, 0x75, 0x5c, 0x8a, 0x17, + 0xc0, 0xf9, 0x32, 0xe5, 0xc2, 0x3b, 0x85, 0x00, 0x50, 0xbc, 0x08, 0x6d, 0xe8, 0x26, 0x1d, 0x61, + 0x24, 0x2b, 0x95, 0xba, 0x9c, 0x0a, 0x9c, 0x83, 0x08, 0xdc, 0xa4, 0xa3, 0x63, 0x67, 0xe0, 0x0b, + 0xbc, 0x24, 0xef, 0x44, 0x87, 0xca, 0xee, 0x89, 0x97, 0x21, 0x9a, 0x16, 0xf3, 0x29, 0xce, 0x83, + 0xd7, 0xf0, 0x65, 0x84, 0xa1, 0xd7, 0x0d, 0x7a, 0x34, 0x10, 0xb8, 0x00, 0xb1, 0xbc, 0x39, 0x38, + 0xa1, 0x3c, 0xa0, 0x82, 0x86, 0x18, 0xcb, 0x36, 0xe3, 0x0f, 0x42, 0x41, 0x39, 0x5e, 0x91, 0x49, + 0x66, 0x81, 0xe0, 0xcc, 0x6f, 0xfa, 0x4e, 0x40, 0x31, 0x81, 0x34, 0xee, 0x73, 0x36, 0xe8, 0xe3, + 0x55, 0x99, 0x5b, 0xd6, 0xa1, 0x78, 0x0d, 0xf6, 0xab, 0xb1, 0x28, 0x3f, 0x78, 0x1d, 0xce, 0xd1, + 0x12, 0x8c, 0x3b, 0x5d, 0x0a, 0xba, 0x8e, 0x17, 0x50, 0x8e, 0x37, 0xe0, 0x1c, 0x0a, 0xdd, 0xf3, + 0x7c, 0x8a, 0x37, 0x27, 0x68, 0x15, 0x8f, 0x53, 0x57, 0x30, 0x3e, 0xc2, 0x45, 0xd8, 0xb1, 0x35, + 0x38, 0x89, 0x86, 0x48, 0x30, 0x77, 0x09, 0x1c, 0x3a, 0xf6, 0xfa, 0x4d, 0xc6, 0x7c, 0xbc, 0x25, + 0x2f, 0x91, 0xe3, 0xca, 0xc5, 0x65, 0x30, 0x69, 0x0a, 0xb7, 0xa3, 0xdd, 0xbd, 0x0b, 0xce, 0x02, + 0x40, 0x8b, 0xf2, 0x21, 0xe5, 0xf8, 0x6e, 0xd8, 0x62, 0xd7, 0xe1, 0xf4, 0x90, 0x8a, 0xf3, 0x4c, + 0xdf, 0x43, 0xd6, 0xd1, 0x4a, 0x99, 0x53, 0x19, 0x1f, 0xc7, 0x3f, 0x64, 0x81, 0x27, 0x18, 0xc7, + 0xf7, 0x82, 0xe9, 0x1a, 0xeb, 0x76, 0xbd, 0xa0, 0x8b, 0xaf, 0xc0, 0x89, 0x2c, 0xea, 0xb2, 0x21, + 0xe5, 0x23, 0x7c, 0x1f, 0x1c, 0xba, 0x42, 0x4f, 0x06, 0x5d, 0xbc, 0x0d, 0xf7, 0x62, 0x6c, 0xf2, + 0x80, 0x85, 0x02, 0xdf, 0x0f, 0x51, 0x9d, 0xae, 0x51, 0xfc, 0x00, 0xd0, 0xa2, 0x66, 0xa1, 0xed, + 0x3f, 0x08, 0xe5, 0x31, 0xd5, 0x83, 0xa8, 0xc0, 0x57, 0x4b, 0xdf, 0x22, 0x68, 0x53, 0x17, 0xa6, + 0xe1, 0xba, 0x34, 0x0c, 0xcf, 0xdf, 0x9b, 0x02, 0xca, 0x1d, 0x05, 0x61, 0x9f, 0xba, 0xde, 0xa9, + 0x47, 0x3b, 0x78, 0x8e, 0x14, 0xd1, 0xda, 0xf4, 0x46, 0xed, 0x1a, 0xeb, 0x7a, 0x01, 0xee, 0x90, + 0x4d, 0x44, 0x26, 0x8a, 0xa4, 0x5d, 0xe6, 0x14, 0x6a, 0xe5, 0x07, 0x89, 0x59, 0xc1, 0x51, 0xbf, + 0x03, 0x82, 0x1f, 0x26, 0xc8, 0x1a, 0x2a, 0x4c, 0x0a, 0xf6, 0xa9, 0xc0, 0x3f, 0xba, 0x40, 0xaf, + 0x50, 0x9f, 0x0a, 0x8a, 0x7f, 0x9c, 0x20, 0xeb, 0x08, 0x4f, 0x0a, 0x5a, 0x5e, 0x37, 0xc0, 0xcf, + 0x27, 0xc8, 0x06, 0x5a, 0x99, 0x84, 0x2d, 0x1a, 0xd0, 0xdb, 0xf8, 0x05, 0x69, 0x5d, 0x17, 0xa0, + 0x76, 0xe6, 0x8b, 0xc9, 0x29, 0x54, 0x79, 0xf2, 0xf4, 0x34, 0x6a, 0xd1, 0x21, 0xbb, 0x45, 0xf1, + 0x97, 0x66, 0x50, 0x06, 0x3d, 0x10, 0x7f, 0x39, 0x49, 0xee, 0x45, 0x5b, 0x1a, 0x8d, 0x39, 0xef, + 0x47, 0x53, 0x77, 0x22, 0xa8, 0xdd, 0x3e, 0x96, 0x22, 0xf7, 0xa0, 0x4b, 0x71, 0x84, 0xc8, 0xf3, + 0x8f, 0xa7, 0x48, 0x01, 0xa1, 0x9b, 0x74, 0xec, 0xf4, 0x5f, 0xc7, 0x80, 0xb2, 0xf0, 0x37, 0xe8, + 0x95, 0x39, 0x00, 0xcc, 0xc0, 0xe5, 0xa3, 0xbe, 0xc0, 0x7f, 0x1f, 0x23, 0x15, 0x1a, 0x21, 0xff, + 0x18, 0x23, 0x0f, 0x73, 0xa7, 0x0f, 0x77, 0xf5, 0x35, 0x68, 0x18, 0xcb, 0xd2, 0x4c, 0x70, 0x5b, + 0x61, 0xaf, 0x43, 0x1f, 0x84, 0x4b, 0x1b, 0x05, 0xf3, 0x9f, 0xe3, 0x9d, 0x8e, 0x29, 0xf7, 0x4e, + 0x47, 0xf8, 0x5f, 0x29, 0xb2, 0x85, 0xd6, 0xa7, 0x3b, 0x85, 0x76, 0xeb, 0x67, 0xe9, 0x18, 0x99, + 0xf2, 0xf0, 0xe7, 0x71, 0x32, 0x95, 0xc8, 0x5f, 0xa4, 0xc9, 0x5d, 0x68, 0x73, 0x46, 0xa6, 0x9e, + 0x1a, 0x8a, 0x7f, 0x99, 0x26, 0x97, 0xd0, 0xda, 0x8c, 0xb4, 0x25, 0x1c, 0x2e, 0xf0, 0x4b, 0x69, + 0x52, 0x9c, 0x6d, 0x5b, 0xed, 0x96, 0x60, 0x7d, 0xfc, 0x72, 0x9c, 0x92, 0x45, 0x43, 0x2a, 0xf0, + 0xaf, 0xd2, 0xe4, 0x2a, 0xba, 0xef, 0x82, 0xa8, 0xef, 0x78, 0xbc, 0xbd, 0x3f, 0xa0, 0xa1, 0x68, + 0x1b, 0x5d, 0xe8, 0x41, 0xbf, 0x8e, 0x33, 0xd1, 0x74, 0x06, 0x21, 0xc5, 0xaf, 0xc4, 0xee, 0xeb, + 0x0c, 0x29, 0x7e, 0x15, 0xfa, 0x6d, 0x5e, 0x5d, 0x7d, 0x1d, 0x97, 0x6f, 0x67, 0x26, 0x41, 0x15, + 0x90, 0xef, 0x64, 0xc0, 0x86, 0x06, 0xa1, 0x8f, 0xeb, 0x86, 0xf1, 0xdd, 0x0c, 0x84, 0x6a, 0x4c, + 0x97, 0x03, 0xac, 0x96, 0x7d, 0x2f, 0x23, 0x2f, 0x83, 0x92, 0xed, 0x53, 0xa1, 0x05, 0xcf, 0x64, + 0xe4, 0x65, 0x38, 0x17, 0x40, 0x0f, 0x0c, 0xf1, 0xb3, 0x19, 0xb8, 0x0c, 0xb2, 0x4b, 0xb4, 0xe5, + 0xbf, 0xaa, 0x09, 0x7d, 0x26, 0x0b, 0xf4, 0x08, 0x6f, 0x09, 0xc7, 0xbd, 0x65, 0x73, 0xe8, 0xeb, + 0x9f, 0xcd, 0xc2, 0x99, 0xa1, 0x93, 0xf4, 0x74, 0x27, 0xd1, 0x87, 0x78, 0xff, 0xfc, 0x45, 0x91, + 0x3a, 0xca, 0xe3, 0xf3, 0x90, 0xbf, 0xb1, 0x68, 0xa6, 0x2a, 0x7e, 0x1f, 0x2f, 0x55, 0xba, 0x7f, + 0x98, 0x97, 0x61, 0x98, 0xe8, 0xe6, 0x5a, 0xef, 0xf9, 0x85, 0x0b, 0x12, 0xa5, 0xf3, 0xc2, 0x02, + 0x04, 0x61, 0xa2, 0xc7, 0x6a, 0x95, 0xaf, 0x2c, 0xce, 0x0a, 0x94, 0xc6, 0x57, 0x17, 0x21, 0x0c, + 0xe7, 0x4d, 0x58, 0x2b, 0x7c, 0x02, 0xcd, 0xe0, 0x8a, 0xff, 0x04, 0x82, 0xbd, 0x27, 0x5f, 0x48, + 0xad, 0xf1, 0xda, 0x45, 0x89, 0xd2, 0x79, 0x1d, 0x91, 0x15, 0xb4, 0x24, 0x5f, 0x21, 0x4d, 0x7e, + 0x29, 0x77, 0x0e, 0x29, 0xd6, 0xcb, 0x30, 0x92, 0x16, 0xf4, 0xa3, 0xa8, 0x89, 0xcf, 0x2c, 0x4d, + 0xa1, 0x8a, 0xfb, 0xec, 0x12, 0x78, 0x77, 0xfe, 0x0c, 0x6a, 0xf6, 0xe7, 0x96, 0x67, 0x70, 0xc5, + 0xff, 0xfc, 0x32, 0xf8, 0x36, 0x39, 0x12, 0x68, 0x8d, 0x0f, 0xe6, 0x2f, 0x48, 0x94, 0xce, 0x87, + 0xf2, 0xb0, 0xb3, 0x7e, 0x26, 0x35, 0xff, 0x8f, 0xd3, 0xa8, 0xe2, 0xfe, 0x29, 0x0f, 0x75, 0x7c, + 0xe8, 0xb8, 0x7d, 0xc6, 0x7c, 0x4d, 0xfd, 0x49, 0x61, 0x12, 0x54, 0xcc, 0x17, 0x0b, 0x90, 0xf3, + 0xd9, 0xb1, 0x41, 0xab, 0x7c, 0x0d, 0xc7, 0x4a, 0x95, 0xee, 0xd7, 0x31, 0xf4, 0x29, 0x28, 0x5f, + 0xcd, 0xff, 0xe4, 0xca, 0x18, 0x51, 0x9c, 0x4f, 0xad, 0x80, 0x7f, 0xfa, 0x29, 0xd4, 0xbc, 0x7f, + 0x4f, 0xa3, 0x8a, 0xfb, 0x1f, 0xa9, 0x0d, 0x03, 0x86, 0xe6, 0xbd, 0x42, 0xc6, 0x88, 0xe2, 0xbc, + 0x4a, 0xe0, 0xca, 0x4d, 0x0f, 0x21, 0x9a, 0xfd, 0xfd, 0xd5, 0x18, 0x99, 0xd2, 0x7b, 0x6e, 0x15, + 0x3a, 0x68, 0x34, 0xee, 0x68, 0xfe, 0x17, 0xd6, 0x26, 0x30, 0xc5, 0x7b, 0x6a, 0x0d, 0x4e, 0x3c, + 0x3b, 0x7e, 0x68, 0x8d, 0x0f, 0xaf, 0xc7, 0x4a, 0x95, 0xee, 0x47, 0xd6, 0x21, 0x77, 0x93, 0xd3, + 0x87, 0xd6, 0xfb, 0xf3, 0x45, 0x89, 0xd2, 0xf9, 0x8b, 0x94, 0x9c, 0x4f, 0xeb, 0xe7, 0xdd, 0xf4, + 0xa7, 0x1b, 0x90, 0x2e, 0x35, 0xb9, 0x68, 0x43, 0xdf, 0xd8, 0x9c, 0x04, 0x95, 0x8d, 0x6f, 0x6e, + 0x92, 0xcb, 0xe3, 0xe1, 0x53, 0x8f, 0x8e, 0x5a, 0xe3, 0xc9, 0x62, 0x9c, 0x50, 0x69, 0x7e, 0xba, + 0x08, 0x0f, 0x5e, 0xcc, 0x34, 0xa9, 0xb5, 0xdf, 0x77, 0xe9, 0x4e, 0x04, 0x65, 0xe1, 0xb1, 0x4b, + 0x64, 0x1b, 0xdd, 0x1d, 0x3f, 0xf8, 0x6a, 0x23, 0xbf, 0xfd, 0x5f, 0x1c, 0x65, 0xe7, 0x77, 0x97, + 0x26, 0x5e, 0x1d, 0x55, 0x70, 0xe3, 0x31, 0x64, 0x2b, 0x46, 0xa6, 0x27, 0x91, 0x2d, 0x38, 0xde, + 0xcc, 0x5c, 0x34, 0x1e, 0x19, 0x2e, 0xc7, 0x09, 0xd5, 0x5b, 0xf6, 0xf4, 0xe5, 0x92, 0x85, 0x72, + 0xf2, 0x30, 0x2d, 0x36, 0xe0, 0x2e, 0x8d, 0x7e, 0x47, 0x94, 0x8d, 0x5a, 0xbb, 0xd5, 0x38, 0xb2, + 0xca, 0xf0, 0x8b, 0x04, 0x7e, 0x27, 0xec, 0xb5, 0xf4, 0x3a, 0x01, 0x13, 0xd5, 0x81, 0x6d, 0x37, + 0x35, 0x20, 0x07, 0xfb, 0x72, 0xad, 0x51, 0x37, 0x35, 0x92, 0x2a, 0xed, 0x22, 0x7c, 0x30, 0xea, + 0x53, 0x7e, 0xbc, 0x4f, 0x03, 0x3d, 0x88, 0x6d, 0x20, 0x32, 0x8b, 0x1d, 0xdf, 0xc0, 0x73, 0xb1, + 0xf8, 0x1b, 0x70, 0xa2, 0xf4, 0x2e, 0x94, 0x87, 0x2c, 0xc1, 0x9c, 0xbb, 0xc7, 0x78, 0xcf, 0x11, + 0xf2, 0xf7, 0xed, 0x14, 0x72, 0x7c, 0x50, 0x79, 0x04, 0xcf, 0xc1, 0x28, 0x7a, 0x01, 0xc7, 0x89, + 0xd2, 0x43, 0xf0, 0x5e, 0xb1, 0x41, 0xa7, 0x1a, 0x78, 0xa2, 0xe2, 0x08, 0x47, 0x1d, 0x30, 0x87, + 0xe6, 0xeb, 0x4c, 0x0a, 0xf0, 0x9c, 0xfc, 0x3d, 0xf5, 0xe8, 0x80, 0x53, 0x9c, 0x78, 0xdb, 0x3b, + 0xd0, 0x62, 0x48, 0x83, 0xd0, 0x13, 0xde, 0x90, 0x92, 0xbb, 0x77, 0xa2, 0xbf, 0xc9, 0xee, 0xe8, + 0xbf, 0xc9, 0xee, 0xec, 0x79, 0xd4, 0xef, 0x34, 0x64, 0xd9, 0x86, 0xc5, 0x17, 0x3f, 0x90, 0x92, + 0x7f, 0x3d, 0x39, 0xd7, 0xd8, 0x7d, 0xf0, 0x3d, 0xf7, 0x77, 0x3d, 0x71, 0x36, 0x38, 0xd9, 0x71, + 0x59, 0xef, 0x7a, 0xcf, 0x73, 0x39, 0x0b, 0xd9, 0xa9, 0xb8, 0xde, 0x63, 0xee, 0x75, 0xde, 0x77, + 0xaf, 0x47, 0x7f, 0xf6, 0x3d, 0xc9, 0x4a, 0x83, 0x6f, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x90, 0x85, 0x10, 0x5f, 0x12, 0x16, 0x00, 0x00, } From a8362648fc4ea0e7fa68ff3ae657e36d8a8ce3d5 Mon Sep 17 00:00:00 2001 From: John Carden Date: Fri, 12 Jan 2024 18:53:53 +0000 Subject: [PATCH 05/25] made avset fields in request and response plural as we accept arrays of avset objects in line with repo style --- .../moc_cloudagent_availabilityset.proto | 4 +- .../moc_cloudagent_availabilityset.pb.go | 76 +++++++++---------- 2 files changed, 40 insertions(+), 40 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index a501386..56ae9fa 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -10,12 +10,12 @@ import "moc_common_common.proto"; import "moc_cloudagent_virtualmachine.proto"; message AvailabilitySetRequest { - repeated AvailabilitySet AvailabilitySet = 1; + repeated AvailabilitySet AvailabilitySets = 1; Operation OperationType = 2; } message AvailabilitySetResponse { - repeated AvailabilitySet AvailabilitySet = 1; + repeated AvailabilitySet AvailabilitySets = 1; google.protobuf.BoolValue Result = 2; string Error = 3; } diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index 1c269eb..4cc7d35 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -27,7 +27,7 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - AvailabilitySet []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -59,9 +59,9 @@ func (m *AvailabilitySetRequest) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetRequest proto.InternalMessageInfo -func (m *AvailabilitySetRequest) GetAvailabilitySet() []*AvailabilitySet { +func (m *AvailabilitySetRequest) GetAvailabilitySets() []*AvailabilitySet { if m != nil { - return m.AvailabilitySet + return m.AvailabilitySets } return nil } @@ -74,7 +74,7 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - AvailabilitySet []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -107,9 +107,9 @@ func (m *AvailabilitySetResponse) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetResponse proto.InternalMessageInfo -func (m *AvailabilitySetResponse) GetAvailabilitySet() []*AvailabilitySet { +func (m *AvailabilitySetResponse) GetAvailabilitySets() []*AvailabilitySet { if m != nil { - return m.AvailabilitySet + return m.AvailabilitySets } return nil } @@ -237,38 +237,38 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 485 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x4e, - 0x14, 0xc6, 0xff, 0x4e, 0x53, 0xff, 0xc9, 0x84, 0xa6, 0xd2, 0xa8, 0x6a, 0xad, 0x08, 0x50, 0xe4, - 0x22, 0xc8, 0xca, 0x16, 0x86, 0x15, 0xbb, 0x96, 0x8b, 0xc4, 0x82, 0xdb, 0xb4, 0xea, 0x82, 0x4d, - 0x35, 0x71, 0x26, 0xee, 0xa8, 0x33, 0x3e, 0xc3, 0x5c, 0x82, 0xba, 0xe6, 0x49, 0x78, 0x09, 0xde, - 0x81, 0xb7, 0x42, 0x39, 0x36, 0x84, 0xb8, 0x54, 0xea, 0x86, 0x95, 0xed, 0x73, 0x7e, 0xf3, 0xcd, - 0xe7, 0x73, 0x3e, 0xf2, 0x50, 0x43, 0x79, 0x5e, 0x2a, 0x08, 0x73, 0x5e, 0x89, 0xda, 0x9f, 0xf3, - 0x25, 0x97, 0x8a, 0xcf, 0xa4, 0x92, 0xfe, 0xca, 0x09, 0x9f, 0x19, 0x0b, 0x1e, 0xe8, 0xbe, 0x86, - 0x32, 0x5b, 0x53, 0x59, 0x09, 0xda, 0x04, 0x2f, 0xc6, 0x0f, 0x2a, 0x80, 0x4a, 0x89, 0x1c, 0xa9, - 0x59, 0x58, 0xe4, 0x5f, 0x2c, 0x37, 0x46, 0x58, 0xd7, 0x9c, 0x1b, 0x1f, 0xa0, 0x3a, 0x68, 0x0d, - 0x75, 0xfb, 0x68, 0x1b, 0x87, 0x9d, 0x6b, 0x97, 0xd2, 0xfa, 0xc0, 0x95, 0xe6, 0xe5, 0x85, 0xac, - 0x45, 0x03, 0xa5, 0xdf, 0x22, 0xb2, 0x7f, 0xf4, 0x87, 0x9f, 0x13, 0xe1, 0x99, 0xf8, 0x1c, 0x84, - 0xf3, 0xf4, 0x23, 0xd9, 0xed, 0x74, 0x92, 0x68, 0xb2, 0x35, 0x1d, 0x16, 0x8f, 0xb3, 0xbf, 0x5b, - 0xcd, 0xba, 0x42, 0xdd, 0xf3, 0xf4, 0x19, 0xd9, 0x79, 0x6f, 0x84, 0xe5, 0x5e, 0x42, 0x7d, 0x7a, - 0x65, 0x44, 0xd2, 0x9b, 0x44, 0xd3, 0x51, 0x31, 0x42, 0xc1, 0xdf, 0x1d, 0xb6, 0x09, 0xa5, 0xdf, - 0x23, 0x72, 0x70, 0xcd, 0xa3, 0x33, 0x50, 0x3b, 0xf1, 0x2f, 0x4c, 0x16, 0x24, 0x66, 0xc2, 0x05, - 0xe5, 0xd1, 0xdd, 0xb0, 0x18, 0x67, 0xcd, 0x06, 0xb2, 0x5f, 0x1b, 0xc8, 0x8e, 0x01, 0xd4, 0x19, - 0x57, 0x41, 0xb0, 0x96, 0xa4, 0x7b, 0x64, 0xfb, 0x95, 0xb5, 0x60, 0x93, 0xad, 0x49, 0x34, 0x1d, - 0xb0, 0xe6, 0x23, 0xfd, 0xd1, 0xbb, 0xe6, 0x8e, 0x52, 0xd2, 0xaf, 0xb9, 0x16, 0x49, 0x84, 0x20, - 0xbe, 0xd3, 0x11, 0xe9, 0xc9, 0x39, 0xde, 0x36, 0x60, 0x3d, 0x39, 0xa7, 0x29, 0xb9, 0xab, 0xa0, - 0xc4, 0x01, 0xbc, 0x5b, 0xb1, 0x8d, 0xe8, 0x46, 0x8d, 0xde, 0x23, 0x83, 0xca, 0x42, 0x30, 0x08, - 0xf4, 0x11, 0x58, 0x17, 0xe8, 0x21, 0x89, 0x9d, 0xe7, 0x3e, 0xb8, 0x64, 0x1b, 0xff, 0x61, 0x88, - 0xd3, 0x38, 0xc1, 0x12, 0x6b, 0x5b, 0xf4, 0x3e, 0xe9, 0x7b, 0x5e, 0xb9, 0x24, 0x46, 0x64, 0x80, - 0xc8, 0x29, 0xaf, 0x1c, 0xc3, 0x32, 0x7d, 0x4e, 0x12, 0xa3, 0xb8, 0x5f, 0x80, 0xd5, 0xaf, 0x79, - 0x50, 0xfe, 0x25, 0x68, 0x2e, 0xeb, 0x17, 0x10, 0x6a, 0x9f, 0xfc, 0x3f, 0x89, 0xa6, 0x3b, 0xec, - 0xc6, 0x3e, 0xfd, 0x40, 0x76, 0xdb, 0xb8, 0xbd, 0x6d, 0xe2, 0xe6, 0x92, 0x3b, 0xb8, 0x96, 0x47, - 0x37, 0xad, 0xe5, 0x6c, 0x03, 0x67, 0xdd, 0xe3, 0xc5, 0xd7, 0x88, 0xec, 0x75, 0x66, 0x79, 0xb4, - 0x12, 0xa0, 0x97, 0x24, 0x7e, 0x53, 0x2f, 0xe1, 0x52, 0xd0, 0xec, 0xb6, 0x2b, 0x6f, 0x02, 0x3e, - 0xce, 0x6f, 0xcd, 0x37, 0x61, 0x4b, 0xff, 0x3b, 0x7e, 0xf2, 0x29, 0xaf, 0xa4, 0xbf, 0x08, 0xb3, - 0x15, 0x9b, 0x6b, 0x59, 0x5a, 0x70, 0xb0, 0xf0, 0xb9, 0x86, 0x32, 0xb7, 0xa6, 0xcc, 0xd7, 0x62, - 0x79, 0x2b, 0x36, 0x8b, 0x31, 0x36, 0x4f, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x99, 0xd9, - 0x47, 0x06, 0x04, 0x00, 0x00, + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x40, + 0x14, 0x86, 0x71, 0x9a, 0x06, 0x32, 0xa1, 0x29, 0x1a, 0x55, 0xad, 0x15, 0x01, 0x8a, 0x5c, 0x04, + 0x59, 0xd9, 0xc2, 0xb0, 0x62, 0xd7, 0x72, 0x91, 0x58, 0x70, 0xd1, 0xa4, 0xea, 0x82, 0x4d, 0x35, + 0x71, 0x26, 0xee, 0xa8, 0x33, 0x3e, 0xc3, 0x5c, 0x82, 0xba, 0xe6, 0x51, 0x78, 0x09, 0x5e, 0x81, + 0xb7, 0x42, 0x39, 0x36, 0x84, 0xb8, 0x54, 0xea, 0xa6, 0x2b, 0xdb, 0xe7, 0x7c, 0xf3, 0xcf, 0xf1, + 0xf9, 0x7f, 0xf2, 0x44, 0x43, 0x71, 0x56, 0x28, 0x08, 0x73, 0x5e, 0x8a, 0xca, 0x9f, 0xf1, 0x25, + 0x97, 0x8a, 0xcf, 0xa4, 0x92, 0xfe, 0xd2, 0x09, 0x9f, 0x1a, 0x0b, 0x1e, 0xe8, 0xbe, 0x86, 0x22, + 0x5d, 0x53, 0x69, 0x01, 0xda, 0x04, 0x2f, 0x46, 0x8f, 0x4b, 0x80, 0x52, 0x89, 0x0c, 0xa9, 0x59, + 0x58, 0x64, 0xdf, 0x2c, 0x37, 0x46, 0x58, 0x57, 0x9f, 0x1b, 0x1d, 0xa0, 0x3a, 0x68, 0x0d, 0x55, + 0xf3, 0x68, 0x1a, 0x87, 0xad, 0x6b, 0x97, 0xd2, 0xfa, 0xc0, 0x95, 0xe6, 0xc5, 0xb9, 0xac, 0x44, + 0x0d, 0x25, 0x3f, 0x22, 0xb2, 0x7f, 0xf4, 0xcf, 0x3c, 0x53, 0xe1, 0x99, 0xf8, 0x1a, 0x84, 0xf3, + 0x74, 0x4a, 0x1e, 0xb4, 0x3a, 0x2e, 0x8e, 0xc6, 0x5b, 0x93, 0x41, 0xfe, 0x2c, 0xfd, 0xff, 0xac, + 0x69, 0x5b, 0xe9, 0x8a, 0x00, 0x7d, 0x49, 0x76, 0x3e, 0x19, 0x61, 0xb9, 0x97, 0x50, 0x9d, 0x5c, + 0x1a, 0x11, 0x77, 0xc6, 0xd1, 0x64, 0x98, 0x0f, 0x51, 0xf1, 0x6f, 0x87, 0x6d, 0x42, 0xc9, 0xcf, + 0x88, 0x1c, 0x5c, 0x99, 0xd2, 0x19, 0xa8, 0x9c, 0xb8, 0x9d, 0x31, 0x73, 0xd2, 0x63, 0xc2, 0x05, + 0xe5, 0x71, 0xbe, 0x41, 0x3e, 0x4a, 0x6b, 0x17, 0xd2, 0x3f, 0x2e, 0xa4, 0xc7, 0x00, 0xea, 0x94, + 0xab, 0x20, 0x58, 0x43, 0xd2, 0x3d, 0xb2, 0xfd, 0xd6, 0x5a, 0xb0, 0xf1, 0xd6, 0x38, 0x9a, 0xf4, + 0x59, 0xfd, 0x91, 0xfc, 0xea, 0x90, 0xdd, 0x96, 0x3c, 0xa5, 0xa4, 0x5b, 0x71, 0x2d, 0xe2, 0x08, + 0x41, 0x7c, 0xa7, 0x43, 0xd2, 0x91, 0x73, 0xbc, 0xad, 0xcf, 0x3a, 0x72, 0x4e, 0x13, 0x72, 0x5f, + 0x41, 0x81, 0x2b, 0xf8, 0xb8, 0x62, 0x6b, 0xd1, 0x8d, 0x1a, 0x7d, 0x48, 0xfa, 0xa5, 0x85, 0x60, + 0x10, 0xe8, 0x22, 0xb0, 0x2e, 0xd0, 0x43, 0xd2, 0x73, 0x9e, 0xfb, 0xe0, 0xe2, 0x6d, 0xfc, 0x87, + 0x01, 0xae, 0x63, 0x8a, 0x25, 0xd6, 0xb4, 0xe8, 0x23, 0xd2, 0xf5, 0xbc, 0x74, 0x71, 0x0f, 0x91, + 0x3e, 0x22, 0x27, 0xbc, 0x74, 0x0c, 0xcb, 0xf4, 0x15, 0x89, 0x8d, 0xe2, 0x7e, 0x01, 0x56, 0xbf, + 0xe3, 0x41, 0xf9, 0x37, 0xa0, 0xb9, 0xac, 0x5e, 0x43, 0xa8, 0x7c, 0x7c, 0x77, 0x1c, 0x4d, 0x76, + 0xd8, 0xb5, 0x7d, 0xfa, 0x99, 0xec, 0x36, 0x91, 0xfb, 0x50, 0x47, 0xce, 0xc5, 0xf7, 0xd0, 0x97, + 0xa7, 0xd7, 0xf9, 0x72, 0xba, 0x81, 0xb3, 0xf6, 0xf1, 0xfc, 0x7b, 0x44, 0xf6, 0x5a, 0xbb, 0x3c, + 0x5a, 0x09, 0xd0, 0x0b, 0xd2, 0x7b, 0x5f, 0x2d, 0xe1, 0x42, 0xd0, 0xf4, 0xa6, 0x9e, 0xd7, 0x21, + 0x1f, 0x65, 0x37, 0xe6, 0xeb, 0xb8, 0x25, 0x77, 0x8e, 0x9f, 0x7f, 0xc9, 0x4a, 0xe9, 0xcf, 0xc3, + 0x6c, 0xc5, 0x66, 0x5a, 0x16, 0x16, 0x1c, 0x2c, 0x7c, 0xa6, 0xa1, 0xc8, 0xac, 0x29, 0xb2, 0xb5, + 0x58, 0xd6, 0x88, 0xcd, 0x7a, 0x18, 0x9b, 0x17, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xab, 0x6e, + 0x92, 0x35, 0x0a, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 057558b9586ef54a697fc365d8f8e2741a7827af Mon Sep 17 00:00:00 2001 From: John Carden Date: Fri, 12 Jan 2024 21:25:49 +0000 Subject: [PATCH 06/25] added comments to cloudagent availabilityset req/res --- .../availabilityset/moc_cloudagent_availabilityset.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index 56ae9fa..6a2a70c 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -10,12 +10,16 @@ import "moc_common_common.proto"; import "moc_cloudagent_virtualmachine.proto"; message AvailabilitySetRequest { + // avset field repeated AvailabilitySet AvailabilitySets = 1; + // common field Operation OperationType = 2; } message AvailabilitySetResponse { + // avset field repeated AvailabilitySet AvailabilitySets = 1; + // common fields google.protobuf.BoolValue Result = 2; string Error = 3; } From 6daf146f5893e9e03dc6ce175829d243202c669e Mon Sep 17 00:00:00 2001 From: John Carden Date: Fri, 12 Jan 2024 21:27:42 +0000 Subject: [PATCH 07/25] matched nodeagent availabilityset grpc logic with cloudagent --- .../moc_cloudagent_availabilityset.pb.go | 16 ++-- .../moc_nodeagent_availabilityset.proto | 8 +- .../moc_nodeagent_availabilityset.pb.go | 80 ++++++++++--------- 3 files changed, 58 insertions(+), 46 deletions(-) diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index 4cc7d35..baeb241 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -27,11 +27,13 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` - OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + // avset field + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + // common field + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } @@ -74,7 +76,9 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + // avset field + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + // common fields Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 68eb773..2f2a78e 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -10,12 +10,16 @@ import "moc_nodeagent_virtualmachine.proto"; import "moc_common_common.proto"; message AvailabilitySetRequest { - AvailabilitySet AvailabilitySet = 1; + // avset field + repeated AvailabilitySet AvailabilitySets = 1; + // common field Operation OperationType = 2; } message AvailabilitySetResponse { - AvailabilitySet AvailabilitySet = 1; + // avset field + repeated AvailabilitySet AvailabilitySets = 1; + // common fields google.protobuf.BoolValue Result = 2; string Error = 3; } diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index cb994ad..447046a 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -27,7 +27,9 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + // avset field + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + // common field OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -59,9 +61,9 @@ func (m *AvailabilitySetRequest) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetRequest proto.InternalMessageInfo -func (m *AvailabilitySetRequest) GetAvailabilitySet() *AvailabilitySet { +func (m *AvailabilitySetRequest) GetAvailabilitySets() []*AvailabilitySet { if m != nil { - return m.AvailabilitySet + return m.AvailabilitySets } return nil } @@ -74,7 +76,9 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - AvailabilitySet *AvailabilitySet `protobuf:"bytes,1,opt,name=AvailabilitySet,proto3" json:"AvailabilitySet,omitempty"` + // avset field + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + // common fields Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -107,9 +111,9 @@ func (m *AvailabilitySetResponse) XXX_DiscardUnknown() { var xxx_messageInfo_AvailabilitySetResponse proto.InternalMessageInfo -func (m *AvailabilitySetResponse) GetAvailabilitySet() *AvailabilitySet { +func (m *AvailabilitySetResponse) GetAvailabilitySets() []*AvailabilitySet { if m != nil { - return m.AvailabilitySet + return m.AvailabilitySets } return nil } @@ -237,38 +241,38 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 486 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x4f, 0x6f, 0xd3, 0x30, - 0x18, 0xc6, 0x49, 0xd7, 0x15, 0xea, 0xb2, 0x4e, 0xb2, 0x06, 0x8b, 0x2a, 0x40, 0x55, 0x26, 0x50, - 0x2e, 0x38, 0x28, 0x70, 0xe2, 0xb6, 0xf1, 0x47, 0xe2, 0x00, 0x43, 0xde, 0xb4, 0x03, 0x97, 0xc9, - 0x4d, 0xdd, 0xcc, 0xc2, 0xf6, 0x6b, 0xfc, 0xa7, 0x68, 0x47, 0xbe, 0x09, 0x5f, 0x82, 0xef, 0xc0, - 0xc7, 0x42, 0x75, 0x42, 0xa1, 0x19, 0x93, 0x76, 0xe1, 0x94, 0xe4, 0x7d, 0x7f, 0xef, 0x93, 0xc7, - 0xaf, 0x1f, 0x74, 0xa0, 0xa0, 0x3a, 0xd7, 0x30, 0xe7, 0xac, 0xe6, 0xda, 0x9f, 0xb3, 0x25, 0x13, - 0x92, 0xcd, 0x84, 0x14, 0xfe, 0xd2, 0x71, 0x4f, 0x8c, 0x05, 0x0f, 0xf8, 0x9e, 0x82, 0x8a, 0xac, - 0x21, 0x52, 0x81, 0x32, 0xc1, 0xf3, 0xc9, 0xa3, 0x1a, 0xa0, 0x96, 0xbc, 0x88, 0xd0, 0x2c, 0x2c, - 0x8a, 0xaf, 0x96, 0x19, 0xc3, 0xad, 0x6b, 0xc6, 0x26, 0xd9, 0xa6, 0xf6, 0x52, 0x58, 0x1f, 0x98, - 0x54, 0xac, 0xba, 0x10, 0x9a, 0xb7, 0xcc, 0xfe, 0x8a, 0xa9, 0x40, 0x29, 0xd0, 0xed, 0xa3, 0x69, - 0x64, 0xdf, 0x13, 0x74, 0xff, 0xf0, 0x2f, 0x37, 0x27, 0xdc, 0x53, 0xfe, 0x25, 0x70, 0xe7, 0xf1, - 0x47, 0xb4, 0xdb, 0xe9, 0xa4, 0xc9, 0x34, 0xc9, 0x47, 0xe5, 0x13, 0xf2, 0x4f, 0xa3, 0xa4, 0xab, - 0xd3, 0x1d, 0xc7, 0x2f, 0xd0, 0xce, 0xb1, 0xe1, 0x96, 0x79, 0x01, 0xfa, 0xf4, 0xd2, 0xf0, 0xb4, - 0x37, 0x4d, 0xf2, 0x71, 0x39, 0x8e, 0x7a, 0xeb, 0x0e, 0xdd, 0x84, 0xb2, 0x1f, 0x09, 0xda, 0xbf, - 0x62, 0xd1, 0x19, 0xd0, 0x8e, 0xff, 0x07, 0x8f, 0x25, 0x1a, 0x50, 0xee, 0x82, 0xf4, 0xd1, 0xdc, - 0xa8, 0x9c, 0x90, 0x66, 0xfd, 0xe4, 0xf7, 0xfa, 0xc9, 0x11, 0x80, 0x3c, 0x63, 0x32, 0x70, 0xda, - 0x92, 0x78, 0x0f, 0x6d, 0xbf, 0xb1, 0x16, 0x6c, 0xba, 0x35, 0x4d, 0xf2, 0x21, 0x6d, 0x3e, 0xb2, - 0x9f, 0xbd, 0x2b, 0xe6, 0x30, 0x46, 0x7d, 0xcd, 0x14, 0x8f, 0x26, 0x87, 0x34, 0xbe, 0xe3, 0x31, - 0xea, 0x89, 0x79, 0xfc, 0xdb, 0x90, 0xf6, 0xc4, 0x1c, 0x67, 0xe8, 0xae, 0x84, 0x2a, 0x9e, 0xff, - 0xc3, 0x8a, 0x6d, 0x44, 0x37, 0x6a, 0xf8, 0x01, 0x1a, 0xd6, 0x16, 0x82, 0x89, 0x40, 0x3f, 0x02, - 0x7f, 0x0a, 0xf8, 0x00, 0x0d, 0x9c, 0x67, 0x3e, 0xb8, 0x74, 0x3b, 0x9e, 0x61, 0x14, 0x97, 0x71, - 0x12, 0x4b, 0xb4, 0x6d, 0xe1, 0x87, 0xa8, 0xef, 0x59, 0xed, 0xd2, 0x41, 0x44, 0x86, 0x11, 0x39, - 0x65, 0xb5, 0xa3, 0xb1, 0x8c, 0x5f, 0xa2, 0xd4, 0x48, 0xe6, 0x17, 0x60, 0xd5, 0x5b, 0x16, 0xa4, - 0x7f, 0x0d, 0x8a, 0x09, 0xfd, 0x0a, 0x82, 0xf6, 0xe9, 0xed, 0x69, 0x92, 0xef, 0xd0, 0x6b, 0xfb, - 0xf8, 0x18, 0xed, 0xb6, 0x29, 0x7c, 0xdf, 0xa4, 0xd0, 0xa5, 0x77, 0xa6, 0x5b, 0xf9, 0xa8, 0x7c, - 0x7c, 0xcd, 0xad, 0x9c, 0x6d, 0xd0, 0xb4, 0x3b, 0x5d, 0x7e, 0x4b, 0xd0, 0x5e, 0x67, 0x95, 0x87, - 0x2b, 0x01, 0x2c, 0xd0, 0xe0, 0x9d, 0x5e, 0xc2, 0x67, 0x8e, 0x9f, 0xde, 0xf0, 0xc2, 0x9b, 0x70, - 0x4f, 0xc8, 0x4d, 0xf1, 0x26, 0x68, 0xd9, 0xad, 0xa3, 0x67, 0x9f, 0x48, 0x2d, 0xfc, 0x45, 0x98, - 0xad, 0xd8, 0x42, 0x89, 0xca, 0x82, 0x83, 0x85, 0x2f, 0x14, 0x54, 0x85, 0x35, 0x55, 0xb1, 0xd6, - 0x2a, 0x5a, 0xad, 0xd9, 0x20, 0x46, 0xe6, 0xf9, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc8, 0xd4, - 0x12, 0x02, 0xfd, 0x03, 0x00, 0x00, + // 485 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd3, 0x40, + 0x10, 0xc6, 0x71, 0x9a, 0x1a, 0xb2, 0xa1, 0x29, 0x5a, 0x15, 0x6a, 0x45, 0x80, 0x22, 0x57, 0xa0, + 0x5c, 0x58, 0x23, 0xc3, 0x89, 0x5b, 0xcb, 0x1f, 0x89, 0x03, 0x54, 0xda, 0x56, 0x3d, 0x70, 0xa9, + 0x36, 0xce, 0xc6, 0x5d, 0xb1, 0xbb, 0xb3, 0xec, 0x9f, 0xa0, 0x1e, 0x79, 0x15, 0x5e, 0x82, 0x57, + 0xe0, 0xb1, 0x50, 0xd6, 0x26, 0x10, 0x97, 0x4a, 0xbd, 0x70, 0x4a, 0x3c, 0xf3, 0x9b, 0xcf, 0xe3, + 0xf9, 0x3e, 0x74, 0xa0, 0xa0, 0x3a, 0xd7, 0x30, 0xe7, 0xac, 0xe6, 0xda, 0x9f, 0xb3, 0x25, 0x13, + 0x92, 0xcd, 0x84, 0x14, 0xfe, 0xd2, 0x71, 0x4f, 0x8c, 0x05, 0x0f, 0xf8, 0xbe, 0x82, 0x8a, 0xac, + 0x21, 0x52, 0x81, 0x32, 0xc1, 0xf3, 0xf1, 0xe3, 0x1a, 0xa0, 0x96, 0xbc, 0x88, 0xd0, 0x2c, 0x2c, + 0x8a, 0xaf, 0x96, 0x19, 0xc3, 0xad, 0x6b, 0xc6, 0xc6, 0xf9, 0xa6, 0xf6, 0x52, 0x58, 0x1f, 0x98, + 0x54, 0xac, 0xba, 0x10, 0x9a, 0xb7, 0xcc, 0xfe, 0x8a, 0xa9, 0x40, 0x29, 0xd0, 0xed, 0x4f, 0xd3, + 0xc8, 0xbf, 0x27, 0xe8, 0xc1, 0xe1, 0x5f, 0xdb, 0x9c, 0x70, 0x4f, 0xf9, 0x97, 0xc0, 0x9d, 0xc7, + 0x14, 0xdd, 0xeb, 0x74, 0x5c, 0x96, 0x4c, 0xb6, 0xa6, 0xc3, 0xf2, 0x29, 0xf9, 0xe7, 0xa6, 0xa4, + 0x2b, 0x74, 0x65, 0x1e, 0xbf, 0x44, 0x3b, 0xc7, 0x86, 0x5b, 0xe6, 0x05, 0xe8, 0xd3, 0x4b, 0xc3, + 0xb3, 0xde, 0x24, 0x99, 0x8e, 0xca, 0x51, 0x14, 0x5c, 0x77, 0xe8, 0x26, 0x94, 0xff, 0x48, 0xd0, + 0xfe, 0x95, 0x25, 0x9d, 0x01, 0xed, 0xf8, 0x7f, 0xd9, 0xb2, 0x44, 0x29, 0xe5, 0x2e, 0x48, 0x1f, + 0xd7, 0x1b, 0x96, 0x63, 0xd2, 0x58, 0x40, 0x7e, 0x5b, 0x40, 0x8e, 0x00, 0xe4, 0x19, 0x93, 0x81, + 0xd3, 0x96, 0xc4, 0x7b, 0x68, 0xfb, 0xad, 0xb5, 0x60, 0xb3, 0xad, 0x49, 0x32, 0x1d, 0xd0, 0xe6, + 0x21, 0xff, 0xd9, 0x43, 0xbb, 0x1d, 0x79, 0x8c, 0x51, 0x5f, 0x33, 0xc5, 0xb3, 0x24, 0x82, 0xf1, + 0x3f, 0x1e, 0xa1, 0x9e, 0x98, 0xc7, 0xb7, 0x0d, 0x68, 0x4f, 0xcc, 0x71, 0x8e, 0xee, 0x4a, 0xa8, + 0xe2, 0x05, 0x3e, 0xae, 0xd8, 0x46, 0x74, 0xa3, 0x86, 0x1f, 0xa2, 0x41, 0x6d, 0x21, 0x98, 0x08, + 0xf4, 0x23, 0xf0, 0xa7, 0x80, 0x0f, 0x50, 0xea, 0x3c, 0xf3, 0xc1, 0x65, 0xdb, 0xf1, 0x1b, 0x86, + 0xf1, 0x1a, 0x27, 0xb1, 0x44, 0xdb, 0x16, 0x7e, 0x84, 0xfa, 0x9e, 0xd5, 0x2e, 0x4b, 0x23, 0x32, + 0x88, 0xc8, 0x29, 0xab, 0x1d, 0x8d, 0x65, 0xfc, 0x0a, 0x65, 0x46, 0x32, 0xbf, 0x00, 0xab, 0xde, + 0xb1, 0x20, 0xfd, 0x1b, 0x50, 0x4c, 0xe8, 0xd7, 0x10, 0xb4, 0xcf, 0x6e, 0x4f, 0x92, 0xe9, 0x0e, + 0xbd, 0xb6, 0x8f, 0x8f, 0xd1, 0x6e, 0x9b, 0xc4, 0x0f, 0x4d, 0x12, 0x5d, 0x76, 0x27, 0xda, 0xf2, + 0xe4, 0x1a, 0x5b, 0xce, 0x36, 0x68, 0xda, 0x9d, 0x2e, 0xbf, 0x25, 0x68, 0xaf, 0x73, 0xca, 0xc3, + 0x95, 0x00, 0x16, 0x28, 0x7d, 0xaf, 0x97, 0xf0, 0x99, 0xe3, 0x67, 0x37, 0x74, 0xbc, 0x09, 0xf8, + 0x98, 0xdc, 0x14, 0x6f, 0xa2, 0x96, 0xdf, 0x3a, 0x7a, 0xfe, 0x89, 0xd4, 0xc2, 0x5f, 0x84, 0xd9, + 0x8a, 0x2d, 0x94, 0xa8, 0x2c, 0x38, 0x58, 0xf8, 0x42, 0x41, 0x55, 0x58, 0x53, 0x15, 0x6b, 0xad, + 0xa2, 0xd5, 0x9a, 0xa5, 0x31, 0x32, 0x2f, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0xf5, 0xc9, 0x80, + 0x2a, 0x01, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From dc99cab0a6d1f8886ad1aa01eac2cf355a201ce1 Mon Sep 17 00:00:00 2001 From: John Carden Date: Wed, 17 Jan 2024 18:17:02 +0000 Subject: [PATCH 08/25] removed group related fields from avset definition --- .../moc_nodeagent_availabilityset.proto | 2 - .../moc_nodeagent_availabilityset.pb.go | 82 ++++++++----------- 2 files changed, 32 insertions(+), 52 deletions(-) diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 2f2a78e..d3b19cf 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -28,8 +28,6 @@ message AvailabilitySet { // identifier fields string name = 1; string id = 2; - string locationName = 3; - string groupName = 4; // common fields Status status = 5; Tags tags = 6; diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 447046a..b84aa2d 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -134,10 +134,8 @@ func (m *AvailabilitySetResponse) GetError() string { type AvailabilitySet struct { // identifier fields - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` - GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` // common fields Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` @@ -188,20 +186,6 @@ func (m *AvailabilitySet) GetId() string { return "" } -func (m *AvailabilitySet) GetLocationName() string { - if m != nil { - return m.LocationName - } - return "" -} - -func (m *AvailabilitySet) GetGroupName() string { - if m != nil { - return m.GroupName - } - return "" -} - func (m *AvailabilitySet) GetStatus() *common.Status { if m != nil { return m.Status @@ -241,38 +225,36 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 485 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0x71, 0x9a, 0x1a, 0xb2, 0xa1, 0x29, 0x5a, 0x15, 0x6a, 0x45, 0x80, 0x22, 0x57, 0xa0, - 0x5c, 0x58, 0x23, 0xc3, 0x89, 0x5b, 0xcb, 0x1f, 0x89, 0x03, 0x54, 0xda, 0x56, 0x3d, 0x70, 0xa9, - 0x36, 0xce, 0xc6, 0x5d, 0xb1, 0xbb, 0xb3, 0xec, 0x9f, 0xa0, 0x1e, 0x79, 0x15, 0x5e, 0x82, 0x57, - 0xe0, 0xb1, 0x50, 0xd6, 0x26, 0x10, 0x97, 0x4a, 0xbd, 0x70, 0x4a, 0x3c, 0xf3, 0x9b, 0xcf, 0xe3, - 0xf9, 0x3e, 0x74, 0xa0, 0xa0, 0x3a, 0xd7, 0x30, 0xe7, 0xac, 0xe6, 0xda, 0x9f, 0xb3, 0x25, 0x13, - 0x92, 0xcd, 0x84, 0x14, 0xfe, 0xd2, 0x71, 0x4f, 0x8c, 0x05, 0x0f, 0xf8, 0xbe, 0x82, 0x8a, 0xac, - 0x21, 0x52, 0x81, 0x32, 0xc1, 0xf3, 0xf1, 0xe3, 0x1a, 0xa0, 0x96, 0xbc, 0x88, 0xd0, 0x2c, 0x2c, - 0x8a, 0xaf, 0x96, 0x19, 0xc3, 0xad, 0x6b, 0xc6, 0xc6, 0xf9, 0xa6, 0xf6, 0x52, 0x58, 0x1f, 0x98, - 0x54, 0xac, 0xba, 0x10, 0x9a, 0xb7, 0xcc, 0xfe, 0x8a, 0xa9, 0x40, 0x29, 0xd0, 0xed, 0x4f, 0xd3, - 0xc8, 0xbf, 0x27, 0xe8, 0xc1, 0xe1, 0x5f, 0xdb, 0x9c, 0x70, 0x4f, 0xf9, 0x97, 0xc0, 0x9d, 0xc7, - 0x14, 0xdd, 0xeb, 0x74, 0x5c, 0x96, 0x4c, 0xb6, 0xa6, 0xc3, 0xf2, 0x29, 0xf9, 0xe7, 0xa6, 0xa4, - 0x2b, 0x74, 0x65, 0x1e, 0xbf, 0x44, 0x3b, 0xc7, 0x86, 0x5b, 0xe6, 0x05, 0xe8, 0xd3, 0x4b, 0xc3, - 0xb3, 0xde, 0x24, 0x99, 0x8e, 0xca, 0x51, 0x14, 0x5c, 0x77, 0xe8, 0x26, 0x94, 0xff, 0x48, 0xd0, - 0xfe, 0x95, 0x25, 0x9d, 0x01, 0xed, 0xf8, 0x7f, 0xd9, 0xb2, 0x44, 0x29, 0xe5, 0x2e, 0x48, 0x1f, - 0xd7, 0x1b, 0x96, 0x63, 0xd2, 0x58, 0x40, 0x7e, 0x5b, 0x40, 0x8e, 0x00, 0xe4, 0x19, 0x93, 0x81, - 0xd3, 0x96, 0xc4, 0x7b, 0x68, 0xfb, 0xad, 0xb5, 0x60, 0xb3, 0xad, 0x49, 0x32, 0x1d, 0xd0, 0xe6, - 0x21, 0xff, 0xd9, 0x43, 0xbb, 0x1d, 0x79, 0x8c, 0x51, 0x5f, 0x33, 0xc5, 0xb3, 0x24, 0x82, 0xf1, - 0x3f, 0x1e, 0xa1, 0x9e, 0x98, 0xc7, 0xb7, 0x0d, 0x68, 0x4f, 0xcc, 0x71, 0x8e, 0xee, 0x4a, 0xa8, - 0xe2, 0x05, 0x3e, 0xae, 0xd8, 0x46, 0x74, 0xa3, 0x86, 0x1f, 0xa2, 0x41, 0x6d, 0x21, 0x98, 0x08, - 0xf4, 0x23, 0xf0, 0xa7, 0x80, 0x0f, 0x50, 0xea, 0x3c, 0xf3, 0xc1, 0x65, 0xdb, 0xf1, 0x1b, 0x86, - 0xf1, 0x1a, 0x27, 0xb1, 0x44, 0xdb, 0x16, 0x7e, 0x84, 0xfa, 0x9e, 0xd5, 0x2e, 0x4b, 0x23, 0x32, - 0x88, 0xc8, 0x29, 0xab, 0x1d, 0x8d, 0x65, 0xfc, 0x0a, 0x65, 0x46, 0x32, 0xbf, 0x00, 0xab, 0xde, - 0xb1, 0x20, 0xfd, 0x1b, 0x50, 0x4c, 0xe8, 0xd7, 0x10, 0xb4, 0xcf, 0x6e, 0x4f, 0x92, 0xe9, 0x0e, - 0xbd, 0xb6, 0x8f, 0x8f, 0xd1, 0x6e, 0x9b, 0xc4, 0x0f, 0x4d, 0x12, 0x5d, 0x76, 0x27, 0xda, 0xf2, - 0xe4, 0x1a, 0x5b, 0xce, 0x36, 0x68, 0xda, 0x9d, 0x2e, 0xbf, 0x25, 0x68, 0xaf, 0x73, 0xca, 0xc3, - 0x95, 0x00, 0x16, 0x28, 0x7d, 0xaf, 0x97, 0xf0, 0x99, 0xe3, 0x67, 0x37, 0x74, 0xbc, 0x09, 0xf8, - 0x98, 0xdc, 0x14, 0x6f, 0xa2, 0x96, 0xdf, 0x3a, 0x7a, 0xfe, 0x89, 0xd4, 0xc2, 0x5f, 0x84, 0xd9, - 0x8a, 0x2d, 0x94, 0xa8, 0x2c, 0x38, 0x58, 0xf8, 0x42, 0x41, 0x55, 0x58, 0x53, 0x15, 0x6b, 0xad, - 0xa2, 0xd5, 0x9a, 0xa5, 0x31, 0x32, 0x2f, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0xf5, 0xc9, 0x80, - 0x2a, 0x01, 0x04, 0x00, 0x00, + // 459 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd4, 0x30, + 0x10, 0xc6, 0xc9, 0xb6, 0x0d, 0xd4, 0xab, 0x6e, 0x91, 0x55, 0x68, 0xb4, 0x12, 0x68, 0x95, 0x0a, + 0xb4, 0x17, 0x1c, 0x14, 0x38, 0x71, 0x6b, 0xf9, 0x23, 0x71, 0x40, 0x95, 0xdc, 0xaa, 0x07, 0x2e, + 0x95, 0x37, 0xeb, 0x4d, 0x2d, 0x62, 0x8f, 0xb1, 0xc7, 0x8b, 0x7a, 0xe4, 0xc2, 0x83, 0xf0, 0x12, + 0xbc, 0x1e, 0x5a, 0x27, 0xac, 0xd8, 0x94, 0x4a, 0xbd, 0x70, 0x4a, 0xe2, 0xef, 0x37, 0x5f, 0x3e, + 0xcf, 0x0c, 0x39, 0xd2, 0x50, 0x5d, 0x1a, 0x98, 0x4b, 0x51, 0x4b, 0x83, 0x97, 0x62, 0x29, 0x54, + 0x23, 0x66, 0xaa, 0x51, 0x78, 0xed, 0x25, 0x32, 0xeb, 0x00, 0x81, 0x3e, 0xd2, 0x50, 0xb1, 0x35, + 0xc4, 0x2a, 0xd0, 0x36, 0xa0, 0x1c, 0x3f, 0xad, 0x01, 0xea, 0x46, 0x16, 0x11, 0x9a, 0x85, 0x45, + 0xf1, 0xcd, 0x09, 0x6b, 0xa5, 0xf3, 0x6d, 0xd9, 0x38, 0xdf, 0xf4, 0x5e, 0x2a, 0x87, 0x41, 0x34, + 0x5a, 0x54, 0x57, 0xca, 0xc8, 0x8e, 0x39, 0x5c, 0x31, 0x15, 0x68, 0x0d, 0xa6, 0x7b, 0xb4, 0x42, + 0xfe, 0x33, 0x21, 0x8f, 0x8f, 0xff, 0x4a, 0x73, 0x26, 0x91, 0xcb, 0xaf, 0x41, 0x7a, 0xa4, 0x9c, + 0x3c, 0xec, 0x29, 0x3e, 0x4b, 0x26, 0x5b, 0xd3, 0x61, 0xf9, 0x9c, 0xfd, 0x33, 0x29, 0xeb, 0x1b, + 0xdd, 0xa8, 0xa7, 0xaf, 0xc9, 0xde, 0xa9, 0x95, 0x4e, 0xa0, 0x02, 0x73, 0x7e, 0x6d, 0x65, 0x36, + 0x98, 0x24, 0xd3, 0x51, 0x39, 0x8a, 0x86, 0x6b, 0x85, 0x6f, 0x42, 0xf9, 0xaf, 0x84, 0x1c, 0xde, + 0x08, 0xe9, 0x2d, 0x18, 0x2f, 0xff, 0x4b, 0xca, 0x92, 0xa4, 0x5c, 0xfa, 0xd0, 0x60, 0x8c, 0x37, + 0x2c, 0xc7, 0xac, 0x1d, 0x01, 0xfb, 0x33, 0x02, 0x76, 0x02, 0xd0, 0x5c, 0x88, 0x26, 0x48, 0xde, + 0x91, 0xf4, 0x80, 0xec, 0xbc, 0x77, 0x0e, 0x5c, 0xb6, 0x35, 0x49, 0xa6, 0xbb, 0xbc, 0xfd, 0xc8, + 0x7f, 0x0c, 0xc8, 0x7e, 0xcf, 0x9e, 0x52, 0xb2, 0x6d, 0x84, 0x96, 0x59, 0x12, 0xc1, 0xf8, 0x4e, + 0x47, 0x64, 0xa0, 0xe6, 0xf1, 0x6f, 0xbb, 0x7c, 0xa0, 0xe6, 0xf4, 0x88, 0xa4, 0x1e, 0x05, 0x06, + 0x9f, 0xed, 0xc4, 0x04, 0xc3, 0x78, 0x97, 0xb3, 0x78, 0xc4, 0x3b, 0x89, 0x3e, 0x21, 0xdb, 0x28, + 0x6a, 0x9f, 0xa5, 0x11, 0xd9, 0x8d, 0xc8, 0xb9, 0xa8, 0x3d, 0x8f, 0xc7, 0xf4, 0x0d, 0xc9, 0x6c, + 0x23, 0x70, 0x01, 0x4e, 0x7f, 0x10, 0xa1, 0xc1, 0x77, 0xa0, 0x85, 0x32, 0x6f, 0x21, 0x18, 0xcc, + 0xee, 0x4f, 0x92, 0xe9, 0x1e, 0xbf, 0x55, 0xa7, 0xa7, 0x64, 0xbf, 0xdb, 0xa3, 0x4f, 0xed, 0x1e, + 0xf9, 0xec, 0x41, 0x6c, 0xea, 0xb3, 0x5b, 0x9a, 0x7a, 0xb1, 0x41, 0xf3, 0x7e, 0x75, 0xf9, 0x3d, + 0x21, 0x07, 0xbd, 0x46, 0x1c, 0xaf, 0x0c, 0xa8, 0x22, 0xe9, 0x47, 0xb3, 0x84, 0x2f, 0x92, 0xbe, + 0xb8, 0xe3, 0xbc, 0xda, 0xf5, 0x1c, 0xb3, 0xbb, 0xe2, 0xed, 0xa2, 0xe4, 0xf7, 0x4e, 0x5e, 0x7e, + 0x66, 0xb5, 0xc2, 0xab, 0x30, 0x5b, 0xb1, 0x85, 0x56, 0x95, 0x03, 0x0f, 0x0b, 0x2c, 0x34, 0x54, + 0x85, 0xb3, 0x55, 0xb1, 0xf6, 0x2a, 0x3a, 0xaf, 0x59, 0x1a, 0x07, 0xfe, 0xea, 0x77, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x12, 0xb4, 0x27, 0x3e, 0xbf, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 78edf17f79dce3f0cf17e11c6227d3f3a2fc3465 Mon Sep 17 00:00:00 2001 From: John Carden Date: Wed, 17 Jan 2024 18:55:20 +0000 Subject: [PATCH 09/25] added entity to nodeagent avset definition --- .../moc_nodeagent_availabilityset.proto | 5 +- .../moc_nodeagent_availabilityset.pb.go | 73 +++++++++++-------- 2 files changed, 44 insertions(+), 34 deletions(-) diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index d3b19cf..0bbe46e 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -31,9 +31,10 @@ message AvailabilitySet { // common fields Status status = 5; Tags tags = 6; + Entity entity = 7; // avset fields - uint32 platformFaultDomainCount = 7; - repeated VirtualMachine virtualMachines = 8; + uint32 platformFaultDomainCount = 8; + repeated VirtualMachine virtualMachines = 9; } diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index b84aa2d..812f9fa 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -139,9 +139,10 @@ type AvailabilitySet struct { // common fields Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + Entity *common.Entity `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"` // avset fields - PlatformFaultDomainCount uint32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*VirtualMachine `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + PlatformFaultDomainCount uint32 `protobuf:"varint,8,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*VirtualMachine `protobuf:"bytes,9,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -200,6 +201,13 @@ func (m *AvailabilitySet) GetTags() *common.Tags { return nil } +func (m *AvailabilitySet) GetEntity() *common.Entity { + if m != nil { + return m.Entity + } + return nil +} + func (m *AvailabilitySet) GetPlatformFaultDomainCount() uint32 { if m != nil { return m.PlatformFaultDomainCount @@ -225,36 +233,37 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 459 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd4, 0x30, - 0x10, 0xc6, 0xc9, 0xb6, 0x0d, 0xd4, 0xab, 0x6e, 0x91, 0x55, 0x68, 0xb4, 0x12, 0x68, 0x95, 0x0a, - 0xb4, 0x17, 0x1c, 0x14, 0x38, 0x71, 0x6b, 0xf9, 0x23, 0x71, 0x40, 0x95, 0xdc, 0xaa, 0x07, 0x2e, - 0x95, 0x37, 0xeb, 0x4d, 0x2d, 0x62, 0x8f, 0xb1, 0xc7, 0x8b, 0x7a, 0xe4, 0xc2, 0x83, 0xf0, 0x12, - 0xbc, 0x1e, 0x5a, 0x27, 0xac, 0xd8, 0x94, 0x4a, 0xbd, 0x70, 0x4a, 0xe2, 0xef, 0x37, 0x5f, 0x3e, - 0xcf, 0x0c, 0x39, 0xd2, 0x50, 0x5d, 0x1a, 0x98, 0x4b, 0x51, 0x4b, 0x83, 0x97, 0x62, 0x29, 0x54, - 0x23, 0x66, 0xaa, 0x51, 0x78, 0xed, 0x25, 0x32, 0xeb, 0x00, 0x81, 0x3e, 0xd2, 0x50, 0xb1, 0x35, - 0xc4, 0x2a, 0xd0, 0x36, 0xa0, 0x1c, 0x3f, 0xad, 0x01, 0xea, 0x46, 0x16, 0x11, 0x9a, 0x85, 0x45, - 0xf1, 0xcd, 0x09, 0x6b, 0xa5, 0xf3, 0x6d, 0xd9, 0x38, 0xdf, 0xf4, 0x5e, 0x2a, 0x87, 0x41, 0x34, - 0x5a, 0x54, 0x57, 0xca, 0xc8, 0x8e, 0x39, 0x5c, 0x31, 0x15, 0x68, 0x0d, 0xa6, 0x7b, 0xb4, 0x42, - 0xfe, 0x33, 0x21, 0x8f, 0x8f, 0xff, 0x4a, 0x73, 0x26, 0x91, 0xcb, 0xaf, 0x41, 0x7a, 0xa4, 0x9c, - 0x3c, 0xec, 0x29, 0x3e, 0x4b, 0x26, 0x5b, 0xd3, 0x61, 0xf9, 0x9c, 0xfd, 0x33, 0x29, 0xeb, 0x1b, - 0xdd, 0xa8, 0xa7, 0xaf, 0xc9, 0xde, 0xa9, 0x95, 0x4e, 0xa0, 0x02, 0x73, 0x7e, 0x6d, 0x65, 0x36, - 0x98, 0x24, 0xd3, 0x51, 0x39, 0x8a, 0x86, 0x6b, 0x85, 0x6f, 0x42, 0xf9, 0xaf, 0x84, 0x1c, 0xde, - 0x08, 0xe9, 0x2d, 0x18, 0x2f, 0xff, 0x4b, 0xca, 0x92, 0xa4, 0x5c, 0xfa, 0xd0, 0x60, 0x8c, 0x37, - 0x2c, 0xc7, 0xac, 0x1d, 0x01, 0xfb, 0x33, 0x02, 0x76, 0x02, 0xd0, 0x5c, 0x88, 0x26, 0x48, 0xde, - 0x91, 0xf4, 0x80, 0xec, 0xbc, 0x77, 0x0e, 0x5c, 0xb6, 0x35, 0x49, 0xa6, 0xbb, 0xbc, 0xfd, 0xc8, - 0x7f, 0x0c, 0xc8, 0x7e, 0xcf, 0x9e, 0x52, 0xb2, 0x6d, 0x84, 0x96, 0x59, 0x12, 0xc1, 0xf8, 0x4e, - 0x47, 0x64, 0xa0, 0xe6, 0xf1, 0x6f, 0xbb, 0x7c, 0xa0, 0xe6, 0xf4, 0x88, 0xa4, 0x1e, 0x05, 0x06, - 0x9f, 0xed, 0xc4, 0x04, 0xc3, 0x78, 0x97, 0xb3, 0x78, 0xc4, 0x3b, 0x89, 0x3e, 0x21, 0xdb, 0x28, - 0x6a, 0x9f, 0xa5, 0x11, 0xd9, 0x8d, 0xc8, 0xb9, 0xa8, 0x3d, 0x8f, 0xc7, 0xf4, 0x0d, 0xc9, 0x6c, - 0x23, 0x70, 0x01, 0x4e, 0x7f, 0x10, 0xa1, 0xc1, 0x77, 0xa0, 0x85, 0x32, 0x6f, 0x21, 0x18, 0xcc, - 0xee, 0x4f, 0x92, 0xe9, 0x1e, 0xbf, 0x55, 0xa7, 0xa7, 0x64, 0xbf, 0xdb, 0xa3, 0x4f, 0xed, 0x1e, - 0xf9, 0xec, 0x41, 0x6c, 0xea, 0xb3, 0x5b, 0x9a, 0x7a, 0xb1, 0x41, 0xf3, 0x7e, 0x75, 0xf9, 0x3d, - 0x21, 0x07, 0xbd, 0x46, 0x1c, 0xaf, 0x0c, 0xa8, 0x22, 0xe9, 0x47, 0xb3, 0x84, 0x2f, 0x92, 0xbe, - 0xb8, 0xe3, 0xbc, 0xda, 0xf5, 0x1c, 0xb3, 0xbb, 0xe2, 0xed, 0xa2, 0xe4, 0xf7, 0x4e, 0x5e, 0x7e, - 0x66, 0xb5, 0xc2, 0xab, 0x30, 0x5b, 0xb1, 0x85, 0x56, 0x95, 0x03, 0x0f, 0x0b, 0x2c, 0x34, 0x54, - 0x85, 0xb3, 0x55, 0xb1, 0xf6, 0x2a, 0x3a, 0xaf, 0x59, 0x1a, 0x07, 0xfe, 0xea, 0x77, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x12, 0xb4, 0x27, 0x3e, 0xbf, 0x03, 0x00, 0x00, + // 473 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x41, 0x6f, 0xd3, 0x30, + 0x14, 0xc7, 0x49, 0xb7, 0x15, 0xea, 0x69, 0x1d, 0xb2, 0x06, 0xb3, 0x2a, 0x81, 0xaa, 0x4c, 0xa0, + 0x5e, 0x70, 0x50, 0xe0, 0xc4, 0x6d, 0x83, 0x21, 0x71, 0x40, 0x93, 0xbc, 0x69, 0x07, 0x2e, 0x93, + 0x9b, 0xba, 0x99, 0x45, 0xec, 0x17, 0xec, 0xe7, 0xa2, 0x1e, 0xf9, 0x2a, 0x5c, 0xf9, 0x00, 0x7c, + 0x3d, 0x54, 0x27, 0x54, 0x6b, 0xc6, 0xa4, 0x5d, 0x38, 0xb5, 0x79, 0xff, 0xdf, 0xfb, 0xe7, 0x9f, + 0xf7, 0x1e, 0x39, 0x32, 0x50, 0x5c, 0x59, 0x98, 0x29, 0x59, 0x2a, 0x8b, 0x57, 0x72, 0x21, 0x75, + 0x25, 0xa7, 0xba, 0xd2, 0xb8, 0xf4, 0x0a, 0x79, 0xed, 0x00, 0x81, 0x3e, 0x31, 0x50, 0xf0, 0x35, + 0xc4, 0x0b, 0x30, 0x75, 0x40, 0x35, 0x7a, 0x5e, 0x02, 0x94, 0x95, 0xca, 0x22, 0x34, 0x0d, 0xf3, + 0xec, 0xbb, 0x93, 0x75, 0xad, 0x9c, 0x6f, 0xda, 0x46, 0xe9, 0xa6, 0xf7, 0x42, 0x3b, 0x0c, 0xb2, + 0x32, 0xb2, 0xb8, 0xd6, 0x56, 0xb5, 0xcc, 0xe1, 0x8a, 0x29, 0xc0, 0x18, 0xb0, 0xed, 0x4f, 0x23, + 0xa4, 0x3f, 0x13, 0xf2, 0xf4, 0xf8, 0x46, 0x9a, 0x73, 0x85, 0x42, 0x7d, 0x0b, 0xca, 0x23, 0x15, + 0xe4, 0x71, 0x47, 0xf1, 0x2c, 0x19, 0x6f, 0x4d, 0x76, 0xf3, 0x97, 0xfc, 0x9f, 0x49, 0x79, 0xd7, + 0xe8, 0x56, 0x3f, 0x7d, 0x4b, 0xf6, 0xce, 0x6a, 0xe5, 0x24, 0x6a, 0xb0, 0x17, 0xcb, 0x5a, 0xb1, + 0xde, 0x38, 0x99, 0x0c, 0xf3, 0x61, 0x34, 0x5c, 0x2b, 0x62, 0x13, 0x4a, 0x7f, 0x27, 0xe4, 0xf0, + 0x56, 0x48, 0x5f, 0x83, 0xf5, 0xea, 0xbf, 0xa4, 0xcc, 0x49, 0x5f, 0x28, 0x1f, 0x2a, 0x8c, 0xf1, + 0x76, 0xf3, 0x11, 0x6f, 0x56, 0xc0, 0xff, 0xae, 0x80, 0x9f, 0x00, 0x54, 0x97, 0xb2, 0x0a, 0x4a, + 0xb4, 0x24, 0x3d, 0x20, 0x3b, 0xa7, 0xce, 0x81, 0x63, 0x5b, 0xe3, 0x64, 0x32, 0x10, 0xcd, 0x43, + 0xfa, 0xab, 0x47, 0xf6, 0x3b, 0xf6, 0x94, 0x92, 0x6d, 0x2b, 0x8d, 0x62, 0x49, 0x04, 0xe3, 0x7f, + 0x3a, 0x24, 0x3d, 0x3d, 0x8b, 0x6f, 0x1b, 0x88, 0x9e, 0x9e, 0xd1, 0x23, 0xd2, 0xf7, 0x28, 0x31, + 0x78, 0xb6, 0x13, 0x13, 0xec, 0xc6, 0x6f, 0x39, 0x8f, 0x25, 0xd1, 0x4a, 0xf4, 0x19, 0xd9, 0x46, + 0x59, 0x7a, 0xd6, 0x8f, 0xc8, 0x20, 0x22, 0x17, 0xb2, 0xf4, 0x22, 0x96, 0x57, 0x1e, 0xca, 0xa2, + 0xc6, 0x25, 0x7b, 0x78, 0xc3, 0xe3, 0x34, 0x96, 0x44, 0x2b, 0xd1, 0x77, 0x84, 0xd5, 0x95, 0xc4, + 0x39, 0x38, 0xf3, 0x51, 0x86, 0x0a, 0x3f, 0x80, 0x91, 0xda, 0xbe, 0x87, 0x60, 0x91, 0x3d, 0x1a, + 0x27, 0x93, 0x3d, 0x71, 0xa7, 0x4e, 0xcf, 0xc8, 0x7e, 0x7b, 0x6c, 0x9f, 0x9b, 0x63, 0xf3, 0x6c, + 0x10, 0x27, 0xff, 0xe2, 0x8e, 0xc9, 0x5f, 0x6e, 0xd0, 0xa2, 0xdb, 0x9d, 0xff, 0x48, 0xc8, 0x41, + 0x67, 0x5a, 0xc7, 0x2b, 0x03, 0xaa, 0x49, 0xff, 0x93, 0x5d, 0xc0, 0x57, 0x45, 0x5f, 0xdd, 0x73, + 0xa9, 0xcd, 0x0d, 0x8f, 0xf8, 0x7d, 0xf1, 0xe6, 0x9a, 0xd2, 0x07, 0x27, 0xaf, 0xbf, 0xf0, 0x52, + 0xe3, 0x75, 0x98, 0xae, 0xd8, 0xcc, 0xe8, 0xc2, 0x81, 0x87, 0x39, 0x66, 0x06, 0x8a, 0xcc, 0xd5, + 0x45, 0xb6, 0xf6, 0xca, 0x5a, 0xaf, 0x69, 0x3f, 0x5e, 0xc5, 0x9b, 0x3f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0x04, 0xde, 0xde, 0x88, 0xe4, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From b8be49e7584e5b282bc1d7f51b148f899198e74f Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 18 Jan 2024 14:43:36 +0000 Subject: [PATCH 10/25] updated protobuf definition to include minimum VM identifiers for avset and meet latest design discussion needs --- .../moc_cloudagent_availabilityset.proto | 8 +- .../moc_cloudagent_availabilityset.pb.go | 114 +++++-- .../moc_cloudagent_virtualmachine.pb.go | 284 +++++++++++------- .../moc_cloudagent_virtualmachine.proto | 6 + rpc/gen_proto.sh | 4 +- .../moc_nodeagent_availabilityset.proto | 9 +- .../moc_nodeagent_availabilityset.pb.go | 104 +++++-- 7 files changed, 348 insertions(+), 181 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index 6a2a70c..d94715b 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -7,7 +7,6 @@ package moc.cloudagent.compute; import "google/protobuf/wrappers.proto"; import "moc_common_common.proto"; -import "moc_cloudagent_virtualmachine.proto"; message AvailabilitySetRequest { // avset field @@ -38,6 +37,13 @@ message AvailabilitySet { repeated VirtualMachine virtualMachines = 8; } +// These are the only fields used in the cloudagent Virtual Machine provider to decide +// if a VM POST request is a create or update. +message VirtualMachine { + string name = 1; + string groupName = 2; +} + service AvailabilitySetAgent { rpc Invoke(AvailabilitySetRequest) returns (AvailabilitySetResponse) {} diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index baeb241..41015d5 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -230,10 +230,60 @@ func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { return nil } +// These are the only fields used in the cloudagent Virtual Machine provider to decide +// if a VM POST request is a create or update. +type VirtualMachine struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + GroupName string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +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_f2024bad12ef389f, []int{3} +} + +func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VirtualMachine.Unmarshal(m, b) +} +func (m *VirtualMachine) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VirtualMachine.Marshal(b, m, deterministic) +} +func (m *VirtualMachine) XXX_Merge(src proto.Message) { + xxx_messageInfo_VirtualMachine.Merge(m, src) +} +func (m *VirtualMachine) XXX_Size() int { + return xxx_messageInfo_VirtualMachine.Size(m) +} +func (m *VirtualMachine) XXX_DiscardUnknown() { + xxx_messageInfo_VirtualMachine.DiscardUnknown(m) +} + +var xxx_messageInfo_VirtualMachine proto.InternalMessageInfo + +func (m *VirtualMachine) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *VirtualMachine) GetGroupName() string { + if m != nil { + return m.GroupName + } + return "" +} + func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.cloudagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.cloudagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") + proto.RegisterType((*VirtualMachine)(nil), "moc.cloudagent.compute.VirtualMachine") } func init() { @@ -241,38 +291,38 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 486 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0x86, 0x71, 0x9a, 0x06, 0x32, 0xa1, 0x29, 0x1a, 0x55, 0xad, 0x15, 0x01, 0x8a, 0x5c, 0x04, - 0x59, 0xd9, 0xc2, 0xb0, 0x62, 0xd7, 0x72, 0x91, 0x58, 0x70, 0xd1, 0xa4, 0xea, 0x82, 0x4d, 0x35, - 0x71, 0x26, 0xee, 0xa8, 0x33, 0x3e, 0xc3, 0x5c, 0x82, 0xba, 0xe6, 0x51, 0x78, 0x09, 0x5e, 0x81, - 0xb7, 0x42, 0x39, 0x36, 0x84, 0xb8, 0x54, 0xea, 0xa6, 0x2b, 0xdb, 0xe7, 0x7c, 0xf3, 0xcf, 0xf1, - 0xf9, 0x7f, 0xf2, 0x44, 0x43, 0x71, 0x56, 0x28, 0x08, 0x73, 0x5e, 0x8a, 0xca, 0x9f, 0xf1, 0x25, - 0x97, 0x8a, 0xcf, 0xa4, 0x92, 0xfe, 0xd2, 0x09, 0x9f, 0x1a, 0x0b, 0x1e, 0xe8, 0xbe, 0x86, 0x22, - 0x5d, 0x53, 0x69, 0x01, 0xda, 0x04, 0x2f, 0x46, 0x8f, 0x4b, 0x80, 0x52, 0x89, 0x0c, 0xa9, 0x59, - 0x58, 0x64, 0xdf, 0x2c, 0x37, 0x46, 0x58, 0x57, 0x9f, 0x1b, 0x1d, 0xa0, 0x3a, 0x68, 0x0d, 0x55, - 0xf3, 0x68, 0x1a, 0x87, 0xad, 0x6b, 0x97, 0xd2, 0xfa, 0xc0, 0x95, 0xe6, 0xc5, 0xb9, 0xac, 0x44, - 0x0d, 0x25, 0x3f, 0x22, 0xb2, 0x7f, 0xf4, 0xcf, 0x3c, 0x53, 0xe1, 0x99, 0xf8, 0x1a, 0x84, 0xf3, - 0x74, 0x4a, 0x1e, 0xb4, 0x3a, 0x2e, 0x8e, 0xc6, 0x5b, 0x93, 0x41, 0xfe, 0x2c, 0xfd, 0xff, 0xac, - 0x69, 0x5b, 0xe9, 0x8a, 0x00, 0x7d, 0x49, 0x76, 0x3e, 0x19, 0x61, 0xb9, 0x97, 0x50, 0x9d, 0x5c, - 0x1a, 0x11, 0x77, 0xc6, 0xd1, 0x64, 0x98, 0x0f, 0x51, 0xf1, 0x6f, 0x87, 0x6d, 0x42, 0xc9, 0xcf, - 0x88, 0x1c, 0x5c, 0x99, 0xd2, 0x19, 0xa8, 0x9c, 0xb8, 0x9d, 0x31, 0x73, 0xd2, 0x63, 0xc2, 0x05, - 0xe5, 0x71, 0xbe, 0x41, 0x3e, 0x4a, 0x6b, 0x17, 0xd2, 0x3f, 0x2e, 0xa4, 0xc7, 0x00, 0xea, 0x94, - 0xab, 0x20, 0x58, 0x43, 0xd2, 0x3d, 0xb2, 0xfd, 0xd6, 0x5a, 0xb0, 0xf1, 0xd6, 0x38, 0x9a, 0xf4, - 0x59, 0xfd, 0x91, 0xfc, 0xea, 0x90, 0xdd, 0x96, 0x3c, 0xa5, 0xa4, 0x5b, 0x71, 0x2d, 0xe2, 0x08, - 0x41, 0x7c, 0xa7, 0x43, 0xd2, 0x91, 0x73, 0xbc, 0xad, 0xcf, 0x3a, 0x72, 0x4e, 0x13, 0x72, 0x5f, - 0x41, 0x81, 0x2b, 0xf8, 0xb8, 0x62, 0x6b, 0xd1, 0x8d, 0x1a, 0x7d, 0x48, 0xfa, 0xa5, 0x85, 0x60, - 0x10, 0xe8, 0x22, 0xb0, 0x2e, 0xd0, 0x43, 0xd2, 0x73, 0x9e, 0xfb, 0xe0, 0xe2, 0x6d, 0xfc, 0x87, - 0x01, 0xae, 0x63, 0x8a, 0x25, 0xd6, 0xb4, 0xe8, 0x23, 0xd2, 0xf5, 0xbc, 0x74, 0x71, 0x0f, 0x91, - 0x3e, 0x22, 0x27, 0xbc, 0x74, 0x0c, 0xcb, 0xf4, 0x15, 0x89, 0x8d, 0xe2, 0x7e, 0x01, 0x56, 0xbf, - 0xe3, 0x41, 0xf9, 0x37, 0xa0, 0xb9, 0xac, 0x5e, 0x43, 0xa8, 0x7c, 0x7c, 0x77, 0x1c, 0x4d, 0x76, - 0xd8, 0xb5, 0x7d, 0xfa, 0x99, 0xec, 0x36, 0x91, 0xfb, 0x50, 0x47, 0xce, 0xc5, 0xf7, 0xd0, 0x97, - 0xa7, 0xd7, 0xf9, 0x72, 0xba, 0x81, 0xb3, 0xf6, 0xf1, 0xfc, 0x7b, 0x44, 0xf6, 0x5a, 0xbb, 0x3c, - 0x5a, 0x09, 0xd0, 0x0b, 0xd2, 0x7b, 0x5f, 0x2d, 0xe1, 0x42, 0xd0, 0xf4, 0xa6, 0x9e, 0xd7, 0x21, - 0x1f, 0x65, 0x37, 0xe6, 0xeb, 0xb8, 0x25, 0x77, 0x8e, 0x9f, 0x7f, 0xc9, 0x4a, 0xe9, 0xcf, 0xc3, - 0x6c, 0xc5, 0x66, 0x5a, 0x16, 0x16, 0x1c, 0x2c, 0x7c, 0xa6, 0xa1, 0xc8, 0xac, 0x29, 0xb2, 0xb5, - 0x58, 0xd6, 0x88, 0xcd, 0x7a, 0x18, 0x9b, 0x17, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xab, 0x6e, - 0x92, 0x35, 0x0a, 0x04, 0x00, 0x00, + // 491 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcb, 0x6e, 0xd3, 0x4e, + 0x14, 0xc6, 0xff, 0x4e, 0xd3, 0xfc, 0xc9, 0x09, 0x4d, 0xd1, 0xa8, 0x6a, 0xad, 0x08, 0x50, 0x64, + 0x10, 0x64, 0x65, 0x0b, 0xc3, 0x8a, 0x5d, 0xc3, 0x45, 0x62, 0xc1, 0x45, 0x93, 0xaa, 0x0b, 0x36, + 0xd5, 0xc4, 0x99, 0xb8, 0xa3, 0xce, 0xf8, 0x0c, 0x73, 0x09, 0xea, 0x9a, 0x47, 0xe1, 0x25, 0x78, + 0x05, 0xde, 0x0a, 0x65, 0x1c, 0x08, 0x76, 0x5b, 0xa9, 0x1b, 0x56, 0x89, 0xcf, 0xf9, 0xcd, 0x37, + 0x9f, 0xbf, 0x73, 0x0c, 0x8f, 0x15, 0x16, 0x67, 0x85, 0x44, 0xbf, 0x60, 0x25, 0xaf, 0xdc, 0x19, + 0x5b, 0x31, 0x21, 0xd9, 0x5c, 0x48, 0xe1, 0x2e, 0x2d, 0x77, 0xa9, 0x36, 0xe8, 0x90, 0x1c, 0x2a, + 0x2c, 0xd2, 0x2d, 0x95, 0x16, 0xa8, 0xb4, 0x77, 0x7c, 0xf4, 0xb0, 0x44, 0x2c, 0x25, 0xcf, 0x02, + 0x35, 0xf7, 0xcb, 0xec, 0xab, 0x61, 0x5a, 0x73, 0x63, 0xeb, 0x73, 0xa3, 0xa3, 0xa0, 0x8e, 0x4a, + 0x61, 0xb5, 0xf9, 0xa9, 0x1b, 0xc9, 0xf7, 0x08, 0x0e, 0x8f, 0xff, 0xba, 0x6a, 0xc6, 0x1d, 0xe5, + 0x5f, 0x3c, 0xb7, 0x8e, 0xcc, 0xe0, 0x5e, 0xab, 0x63, 0xe3, 0x68, 0xbc, 0x33, 0x19, 0xe4, 0x4f, + 0xd3, 0xeb, 0x6d, 0xa4, 0x6d, 0xa5, 0x2b, 0x02, 0xe4, 0x05, 0xec, 0x7d, 0xd4, 0xdc, 0x30, 0x27, + 0xb0, 0x3a, 0xb9, 0xd4, 0x3c, 0xee, 0x8c, 0xa3, 0xc9, 0x30, 0x1f, 0x06, 0xc5, 0x3f, 0x1d, 0xda, + 0x84, 0x92, 0x1f, 0x11, 0x1c, 0x5d, 0x71, 0x69, 0x35, 0x56, 0x96, 0xff, 0x1b, 0x9b, 0x39, 0xf4, + 0x28, 0xb7, 0x5e, 0xba, 0xe0, 0x6f, 0x90, 0x8f, 0xd2, 0x3a, 0xe0, 0xf4, 0x77, 0xc0, 0xe9, 0x14, + 0x51, 0x9e, 0x32, 0xe9, 0x39, 0xdd, 0x90, 0xe4, 0x00, 0x76, 0xdf, 0x18, 0x83, 0x26, 0xde, 0x19, + 0x47, 0x93, 0x3e, 0xad, 0x1f, 0x92, 0x9f, 0x1d, 0xd8, 0x6f, 0xc9, 0x13, 0x02, 0xdd, 0x8a, 0x29, + 0x1e, 0x47, 0x01, 0x0c, 0xff, 0xc9, 0x10, 0x3a, 0x62, 0x11, 0x6e, 0xeb, 0xd3, 0x8e, 0x58, 0x90, + 0x04, 0xee, 0x4a, 0x2c, 0x42, 0x04, 0x1f, 0xd6, 0x6c, 0x2d, 0xda, 0xa8, 0x91, 0xfb, 0xd0, 0x2f, + 0x0d, 0x7a, 0x1d, 0x80, 0x6e, 0x00, 0xb6, 0x05, 0xf2, 0x08, 0x7a, 0xd6, 0x31, 0xe7, 0x6d, 0xbc, + 0x1b, 0xde, 0x61, 0x10, 0xe2, 0x98, 0x85, 0x12, 0xdd, 0xb4, 0xc8, 0x03, 0xe8, 0x3a, 0x56, 0xda, + 0xb8, 0x17, 0x90, 0x7e, 0x40, 0x4e, 0x58, 0x69, 0x69, 0x28, 0x93, 0x97, 0x10, 0x6b, 0xc9, 0xdc, + 0x12, 0x8d, 0x7a, 0xcb, 0xbc, 0x74, 0xaf, 0x51, 0x31, 0x51, 0xbd, 0x42, 0x5f, 0xb9, 0xf8, 0xff, + 0x71, 0x34, 0xd9, 0xa3, 0x37, 0xf6, 0xc9, 0x27, 0xd8, 0x5f, 0x09, 0xe3, 0x3c, 0x93, 0xef, 0x59, + 0x71, 0x2e, 0x2a, 0x6e, 0xe3, 0x3b, 0x61, 0x2e, 0x4f, 0x6e, 0x9a, 0xcb, 0x69, 0x03, 0xa7, 0xed, + 0xe3, 0xc9, 0x14, 0x86, 0x4d, 0xe4, 0xda, 0x24, 0x1b, 0xa9, 0x74, 0x5a, 0xa9, 0xe4, 0xdf, 0x22, + 0x38, 0x68, 0xcd, 0xe3, 0x78, 0x6d, 0x82, 0x5c, 0x40, 0xef, 0x5d, 0xb5, 0xc2, 0x0b, 0x4e, 0xd2, + 0xdb, 0xee, 0x4d, 0xfd, 0xa1, 0x8c, 0xb2, 0x5b, 0xf3, 0xf5, 0xca, 0x26, 0xff, 0x4d, 0x9f, 0x7d, + 0xce, 0x4a, 0xe1, 0xce, 0xfd, 0x7c, 0xcd, 0x66, 0x4a, 0x14, 0x06, 0x2d, 0x2e, 0x5d, 0xa6, 0xb0, + 0xc8, 0x8c, 0x2e, 0xb2, 0xad, 0x58, 0xb6, 0x11, 0x9b, 0xf7, 0xc2, 0xea, 0x3d, 0xff, 0x15, 0x00, + 0x00, 0xff, 0xff, 0xdf, 0xb3, 0x42, 0x6b, 0x29, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go index 38f7c60..1a13110 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go @@ -842,6 +842,53 @@ func (m *SecurityConfiguration) GetSecurityType() common.SecurityType { return common.SecurityType_NOTCONFIGURED } +type AvailabilitySet struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + GroupName string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } +func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySet) ProtoMessage() {} +func (*AvailabilitySet) Descriptor() ([]byte, []int) { + return fileDescriptor_a65ab853cd24c92b, []int{15} +} + +func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySet.Unmarshal(m, b) +} +func (m *AvailabilitySet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySet.Marshal(b, m, deterministic) +} +func (m *AvailabilitySet) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySet.Merge(m, src) +} +func (m *AvailabilitySet) XXX_Size() int { + return xxx_messageInfo_AvailabilitySet.Size(m) +} +func (m *AvailabilitySet) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySet.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySet proto.InternalMessageInfo + +func (m *AvailabilitySet) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *AvailabilitySet) GetGroupName() string { + if m != nil { + return m.GroupName + } + 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"` @@ -861,6 +908,7 @@ type VirtualMachine struct { Tags *common.Tags `protobuf:"bytes,16,opt,name=tags,proto3" json:"tags,omitempty"` GuestAgent *common.GuestAgentConfiguration `protobuf:"bytes,17,opt,name=guestAgent,proto3" json:"guestAgent,omitempty"` GuestAgentInstanceView *common.VirtualMachineAgentInstanceView `protobuf:"bytes,18,opt,name=guestAgentInstanceView,proto3" json:"guestAgentInstanceView,omitempty"` + AvailabilitySet *AvailabilitySet `protobuf:"bytes,19,opt,name=availabilitySet,proto3" json:"availabilitySet,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -870,7 +918,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_a65ab853cd24c92b, []int{15} + return fileDescriptor_a65ab853cd24c92b, []int{16} } func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { @@ -1017,6 +1065,13 @@ func (m *VirtualMachine) GetGuestAgentInstanceView() *common.VirtualMachineAgent return nil } +func (m *VirtualMachine) GetAvailabilitySet() *AvailabilitySet { + if m != nil { + return m.AvailabilitySet + } + return nil +} + type VirtualMachineOperationRequest struct { VirtualMachines []*VirtualMachine `protobuf:"bytes,1,rep,name=VirtualMachines,proto3" json:"VirtualMachines,omitempty"` OBSOLETE_OperationType common.VirtualMachineOperation `protobuf:"varint,2,opt,name=OBSOLETE_OperationType,json=OBSOLETEOperationType,proto3,enum=moc.VirtualMachineOperation" json:"OBSOLETE_OperationType,omitempty"` // Deprecated: Do not use. @@ -1030,7 +1085,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_a65ab853cd24c92b, []int{16} + return fileDescriptor_a65ab853cd24c92b, []int{17} } func (m *VirtualMachineOperationRequest) XXX_Unmarshal(b []byte) error { @@ -1086,7 +1141,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_a65ab853cd24c92b, []int{17} + return fileDescriptor_a65ab853cd24c92b, []int{18} } func (m *VirtualMachineOperationResponse) XXX_Unmarshal(b []byte) error { @@ -1143,7 +1198,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_a65ab853cd24c92b, []int{18} + return fileDescriptor_a65ab853cd24c92b, []int{19} } func (m *VirtualMachineRunCommandRequest) XXX_Unmarshal(b []byte) error { @@ -1211,7 +1266,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_a65ab853cd24c92b, []int{19} + return fileDescriptor_a65ab853cd24c92b, []int{20} } func (m *VirtualMachineRunCommandResponse) XXX_Unmarshal(b []byte) error { @@ -1263,6 +1318,7 @@ func init() { proto.RegisterType((*HardwareConfiguration)(nil), "moc.cloudagent.compute.HardwareConfiguration") proto.RegisterType((*UefiSettings)(nil), "moc.cloudagent.compute.UefiSettings") proto.RegisterType((*SecurityConfiguration)(nil), "moc.cloudagent.compute.SecurityConfiguration") + proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") proto.RegisterType((*VirtualMachine)(nil), "moc.cloudagent.compute.VirtualMachine") proto.RegisterType((*VirtualMachineOperationRequest)(nil), "moc.cloudagent.compute.VirtualMachineOperationRequest") proto.RegisterType((*VirtualMachineOperationResponse)(nil), "moc.cloudagent.compute.VirtualMachineOperationResponse") @@ -1275,114 +1331,116 @@ func init() { } var fileDescriptor_a65ab853cd24c92b = []byte{ - // 1699 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0xcd, 0x6e, 0x23, 0xc7, - 0x11, 0x36, 0x29, 0x89, 0x12, 0x4b, 0x3f, 0x2b, 0xb5, 0x25, 0xed, 0x44, 0xd9, 0x95, 0x85, 0x59, - 0xc3, 0x90, 0x37, 0x36, 0x99, 0xc8, 0x9b, 0x8d, 0x11, 0x38, 0x30, 0x28, 0x91, 0xb6, 0x04, 0x4b, - 0x14, 0xd3, 0xe4, 0xee, 0x02, 0x8b, 0x00, 0xeb, 0xd6, 0x4c, 0x8b, 0x6a, 0x88, 0x33, 0x3d, 0xe9, - 0xee, 0x11, 0xcd, 0x20, 0x97, 0xf8, 0x94, 0x9c, 0xf2, 0x08, 0x79, 0x84, 0x5c, 0x92, 0xdc, 0x72, - 0xc8, 0x3d, 0xcf, 0x91, 0x53, 0x80, 0xbc, 0x42, 0xd0, 0x3d, 0x33, 0xe4, 0x0c, 0x39, 0x43, 0x68, - 0x81, 0xec, 0x21, 0x27, 0x72, 0xaa, 0xea, 0xfb, 0xba, 0xba, 0xba, 0xaa, 0xba, 0x1a, 0x9e, 0x78, - 0xdc, 0x79, 0xe3, 0x0c, 0x78, 0xe8, 0x92, 0x3e, 0xf5, 0xd5, 0x9b, 0x3b, 0x26, 0x54, 0x48, 0x06, - 0x1e, 0x71, 0x6e, 0x98, 0x4f, 0x6b, 0x81, 0xe0, 0x8a, 0xa3, 0x5d, 0x8f, 0x3b, 0xb5, 0x89, 0x51, - 0xcd, 0xe1, 0x5e, 0x10, 0x2a, 0xba, 0xb7, 0xdf, 0xe7, 0xbc, 0x3f, 0xa0, 0x75, 0x63, 0x75, 0x15, - 0x5e, 0xd7, 0x87, 0x82, 0x04, 0x01, 0x15, 0x32, 0xc2, 0xed, 0x3d, 0x34, 0xe4, 0xdc, 0xf3, 0xb8, - 0x1f, 0xff, 0xc4, 0x8a, 0xfd, 0xac, 0x42, 0x93, 0xa5, 0xf5, 0xf6, 0x9f, 0x4a, 0xb0, 0xf3, 0x32, - 0xf2, 0xe4, 0x22, 0xf2, 0x04, 0xd3, 0x5f, 0x87, 0x54, 0x2a, 0xd4, 0x81, 0x07, 0x59, 0x85, 0xb4, - 0x4a, 0x07, 0x0b, 0x87, 0xab, 0x47, 0x1f, 0xd5, 0xf2, 0x9d, 0xac, 0x4d, 0xf1, 0x4c, 0xc3, 0xd1, - 0x33, 0x58, 0xbf, 0x0c, 0xa8, 0x20, 0x8a, 0x71, 0xbf, 0x37, 0x0a, 0xa8, 0x55, 0x3e, 0x28, 0x1d, - 0x6e, 0x1c, 0x6d, 0x18, 0xbe, 0xb1, 0x06, 0x67, 0x8d, 0xec, 0xbf, 0x94, 0x60, 0x77, 0xda, 0x43, - 0x19, 0x70, 0x5f, 0xd2, 0x77, 0xe0, 0xe2, 0x11, 0x54, 0x30, 0x95, 0xe1, 0x40, 0x19, 0xdf, 0x56, - 0x8f, 0xf6, 0x6a, 0x51, 0xe0, 0x6b, 0x49, 0xe0, 0x6b, 0xc7, 0x9c, 0x0f, 0x5e, 0x92, 0x41, 0x48, - 0x71, 0x6c, 0x89, 0xb6, 0x61, 0xa9, 0x25, 0x04, 0x17, 0xd6, 0xc2, 0x41, 0xe9, 0xb0, 0x8a, 0xa3, - 0x0f, 0xbb, 0x06, 0x6b, 0xdd, 0xee, 0x69, 0x27, 0xbc, 0x1a, 0x30, 0xe7, 0x1b, 0x3a, 0x42, 0xfb, - 0xb0, 0x7c, 0x4b, 0x47, 0x2e, 0x51, 0xc4, 0x2a, 0x69, 0xbb, 0xe3, 0xc5, 0xdf, 0xff, 0xd5, 0x2a, - 0xe1, 0x44, 0x68, 0xdb, 0xb0, 0xd8, 0x64, 0xf2, 0x16, 0xed, 0xc1, 0x8a, 0xcb, 0xe4, 0xad, 0x4f, - 0x3c, 0x1a, 0x19, 0xe2, 0xf1, 0xb7, 0xfd, 0xaf, 0x12, 0x6c, 0x77, 0x15, 0x17, 0xa4, 0x4f, 0x4f, - 0xb8, 0x7f, 0xcd, 0xfa, 0x61, 0x14, 0x27, 0xf4, 0x0c, 0x2a, 0x5c, 0x6a, 0x33, 0x03, 0x59, 0x3d, - 0x7a, 0x54, 0xb4, 0x7f, 0xbd, 0x04, 0x8e, 0x6d, 0xd1, 0xcf, 0xa1, 0xaa, 0x97, 0xd6, 0xff, 0xa5, - 0x55, 0x36, 0x81, 0x9b, 0x0f, 0x9c, 0x98, 0xa3, 0x8f, 0x60, 0x83, 0x79, 0xa4, 0x4f, 0x31, 0xbd, - 0xa6, 0x82, 0xfa, 0x0e, 0x8d, 0x77, 0x3f, 0x25, 0x45, 0xcf, 0x60, 0xe7, 0xce, 0x8b, 0x9c, 0x3d, - 0xe1, 0xbe, 0x22, 0xcc, 0xa7, 0xa2, 0xad, 0xf7, 0xb6, 0x68, 0xcc, 0xf3, 0x95, 0xf6, 0x57, 0xb0, - 0xd9, 0xa6, 0x6a, 0xc8, 0xc5, 0xed, 0x99, 0xaf, 0xa8, 0xb8, 0x26, 0x0e, 0x45, 0x47, 0xb0, 0xed, - 0x4f, 0xc9, 0xda, 0x93, 0x20, 0xe5, 0xea, 0xec, 0x6f, 0x61, 0x3b, 0xe6, 0xc9, 0xc6, 0xeb, 0x14, - 0x80, 0x25, 0x86, 0x49, 0xce, 0x1c, 0x16, 0x6d, 0x7d, 0xda, 0x13, 0x9c, 0xc2, 0xda, 0xdf, 0x97, - 0x60, 0xeb, 0x85, 0xa4, 0x22, 0xcb, 0x7f, 0x00, 0x2b, 0xa1, 0xa4, 0x62, 0x72, 0x88, 0xf1, 0x69, - 0x8f, 0xa5, 0xda, 0x22, 0x20, 0x52, 0x0e, 0xb9, 0x70, 0x4d, 0xaa, 0x8d, 0x2d, 0x12, 0x29, 0xfa, - 0x38, 0xe2, 0x50, 0xba, 0x50, 0x16, 0x4c, 0xa1, 0xac, 0x1b, 0x0f, 0xf5, 0x6a, 0xba, 0x30, 0xf0, - 0x58, 0xad, 0xc3, 0x85, 0x9b, 0x9d, 0xac, 0x0b, 0xfb, 0x00, 0x2e, 0x93, 0xe4, 0x6a, 0x40, 0x71, - 0xb3, 0x63, 0x9c, 0x58, 0xc1, 0x29, 0x09, 0x42, 0xb0, 0x18, 0x70, 0x11, 0xe5, 0xf9, 0x3a, 0x36, - 0xff, 0xed, 0xd7, 0x80, 0xce, 0x99, 0x1f, 0x7e, 0x97, 0x65, 0x6a, 0xc2, 0xe3, 0x18, 0xd7, 0x89, - 0x7d, 0x6b, 0x84, 0xea, 0x86, 0xfa, 0x8a, 0x39, 0xc6, 0x20, 0x26, 0x9f, 0x6f, 0x64, 0xff, 0xa1, - 0x0c, 0xdb, 0xaf, 0x98, 0xef, 0xf2, 0xa1, 0xcc, 0xd2, 0x3f, 0x87, 0x5d, 0xea, 0x6b, 0x60, 0x23, - 0x54, 0xdc, 0x23, 0x8a, 0x39, 0x2f, 0x02, 0x97, 0x28, 0x73, 0x2e, 0x9a, 0xb7, 0x40, 0xab, 0x0b, - 0x45, 0x31, 0x8f, 0xbe, 0xe6, 0x7e, 0xd4, 0x48, 0xaa, 0x78, 0xfc, 0x8d, 0x7a, 0xb3, 0x01, 0x31, - 0x31, 0x9c, 0x73, 0xca, 0xd3, 0xf6, 0x78, 0x36, 0xa4, 0x5f, 0x03, 0x7a, 0xc5, 0x7c, 0x7c, 0x91, - 0xe5, 0x5d, 0x34, 0xbc, 0x0f, 0x0d, 0xef, 0xac, 0x1a, 0xe7, 0x40, 0xec, 0x7f, 0x2e, 0xc1, 0xa3, - 0xb8, 0xc9, 0xf9, 0xfd, 0xee, 0x48, 0x2a, 0xea, 0x65, 0x57, 0xb2, 0x61, 0x2d, 0xf6, 0x4b, 0xa4, - 0x72, 0x3c, 0x23, 0x43, 0x97, 0xb0, 0x4e, 0x5c, 0x8f, 0xf9, 0x4c, 0x2a, 0x41, 0x14, 0x17, 0x71, - 0xc7, 0xfa, 0xb8, 0x68, 0x83, 0x33, 0x59, 0x8a, 0xb3, 0x78, 0xf4, 0x25, 0x2c, 0xe9, 0x8c, 0x92, - 0xd6, 0x82, 0xa9, 0x87, 0xb7, 0x20, 0x8a, 0x70, 0xe8, 0x43, 0x00, 0x27, 0x94, 0x8a, 0x7b, 0x4d, - 0xdd, 0xe5, 0x16, 0x53, 0x59, 0x9d, 0x92, 0xa3, 0x26, 0x40, 0x60, 0xba, 0xe2, 0x2d, 0x1d, 0x49, - 0x6b, 0xc9, 0xac, 0xf5, 0x61, 0xd1, 0x5a, 0xe9, 0x16, 0x8a, 0x53, 0x38, 0xf4, 0x63, 0xdd, 0xf1, - 0x4c, 0x6d, 0x54, 0x4c, 0x6d, 0x58, 0xe9, 0x4b, 0x24, 0x09, 0xaa, 0x29, 0x93, 0xd8, 0x0e, 0xfd, - 0x12, 0xb6, 0xb8, 0x3c, 0xe6, 0x5c, 0xe9, 0xfd, 0x06, 0x2d, 0xbf, 0xcf, 0x7c, 0x6a, 0x2d, 0x1b, - 0xf0, 0x93, 0x3c, 0xf0, 0x94, 0x29, 0x9e, 0x45, 0xa3, 0xd7, 0x80, 0x06, 0x33, 0xf5, 0x62, 0xad, - 0x98, 0x73, 0x78, 0x5a, 0xb4, 0xa5, 0xd9, 0x0a, 0xc3, 0x39, 0x2c, 0xe8, 0x5b, 0xd8, 0x1e, 0xe6, - 0x94, 0x8b, 0x55, 0x35, 0xec, 0x9f, 0x14, 0xb1, 0xe7, 0x95, 0x18, 0xce, 0x65, 0xd2, 0xe9, 0x1c, - 0x08, 0xfe, 0xdd, 0x28, 0xcb, 0x0f, 0xa9, 0x74, 0xee, 0xcc, 0xa8, 0x71, 0x0e, 0xc4, 0xfe, 0x77, - 0x09, 0x76, 0x4e, 0x89, 0x70, 0x87, 0x44, 0x4c, 0xdd, 0x4b, 0x9f, 0x41, 0xe5, 0xe5, 0x45, 0x97, - 0xfd, 0x26, 0xca, 0xe0, 0x8d, 0xa3, 0x1f, 0x1a, 0xda, 0xec, 0xa5, 0xab, 0xd5, 0xd1, 0x41, 0x45, - 0xa6, 0xe8, 0x17, 0x49, 0x1a, 0x19, 0x60, 0x94, 0xd5, 0x8f, 0x73, 0x80, 0x27, 0x63, 0x23, 0x9c, - 0x02, 0xa0, 0x37, 0xb0, 0xe7, 0x8e, 0x7c, 0xe2, 0x31, 0xe7, 0x82, 0x7a, 0x5c, 0x8c, 0xf2, 0xba, - 0xc0, 0x07, 0x86, 0xae, 0x59, 0x68, 0x86, 0xe7, 0x50, 0xd8, 0x5f, 0xc0, 0xda, 0x0b, 0x7a, 0xcd, - 0xba, 0x54, 0xe9, 0x64, 0x91, 0xe8, 0x13, 0xd8, 0x92, 0xd4, 0x09, 0x05, 0xd5, 0xe9, 0xd1, 0x32, - 0xcd, 0xca, 0x8d, 0x7b, 0xd7, 0xac, 0xc2, 0xfe, 0x5b, 0x09, 0x76, 0xba, 0x5a, 0xca, 0x54, 0x96, - 0x17, 0x3d, 0x82, 0x6a, 0xd4, 0xea, 0x7a, 0x9d, 0x8b, 0x18, 0x3f, 0x11, 0xa0, 0x53, 0x58, 0x0b, - 0x53, 0xab, 0xc6, 0x71, 0x29, 0x2c, 0x9c, 0xb4, 0x87, 0x38, 0x83, 0x44, 0x3f, 0x85, 0x35, 0x19, - 0x3b, 0xd0, 0x9b, 0x5c, 0x2e, 0x5b, 0x86, 0xa9, 0x9b, 0x52, 0xe0, 0x8c, 0x99, 0xfd, 0xe7, 0x65, - 0xd8, 0xc8, 0x1e, 0x80, 0xbe, 0x43, 0x52, 0x73, 0x8a, 0xf9, 0x8f, 0x36, 0xa0, 0xcc, 0xe2, 0x2b, - 0x0d, 0x97, 0x99, 0x8b, 0xbe, 0x82, 0x65, 0x19, 0x8d, 0x2c, 0x71, 0xec, 0x0b, 0x53, 0x37, 0x6f, - 0xb2, 0xc1, 0x09, 0x18, 0x35, 0xa1, 0xcc, 0x65, 0xdc, 0x6c, 0x9f, 0x15, 0x51, 0xcc, 0x6b, 0xaa, - 0xb8, 0xcc, 0xa5, 0xf6, 0x26, 0x1e, 0x14, 0xac, 0xa5, 0xf9, 0xde, 0xe4, 0xcd, 0x0d, 0x38, 0x01, - 0xeb, 0xcb, 0xc7, 0xe7, 0x6e, 0x34, 0x80, 0x54, 0xa2, 0xcb, 0x27, 0xf9, 0xd6, 0xe7, 0xd8, 0x17, - 0x3c, 0x0c, 0x8c, 0x72, 0xd9, 0x28, 0x27, 0x02, 0xf4, 0x04, 0x2a, 0x52, 0x11, 0x15, 0xca, 0xb8, - 0x4f, 0xac, 0x46, 0x71, 0x37, 0x22, 0x1c, 0xab, 0x74, 0xff, 0x1f, 0xf0, 0xe8, 0xe2, 0x34, 0x2c, - 0xd5, 0xa8, 0xff, 0xa7, 0x65, 0xe8, 0x73, 0x78, 0x18, 0xdf, 0xb8, 0xa7, 0xac, 0x7f, 0xd3, 0xb8, - 0x23, 0x6c, 0x40, 0xae, 0xd8, 0x80, 0xa9, 0x91, 0xa9, 0xe1, 0x15, 0x5c, 0xa4, 0x46, 0xcf, 0xa1, - 0x72, 0x67, 0x7a, 0xa3, 0xb5, 0x6a, 0x8e, 0x7e, 0xbf, 0x70, 0x5a, 0xbe, 0x88, 0x0a, 0x33, 0xb2, - 0x46, 0x67, 0xb0, 0x72, 0x13, 0x97, 0xb9, 0xb5, 0x66, 0x9c, 0xff, 0xb4, 0x08, 0x99, 0xdb, 0x0e, - 0xf0, 0x18, 0xae, 0x6b, 0x86, 0x0c, 0x06, 0x7c, 0x48, 0xdd, 0xcb, 0xa1, 0x1e, 0xfa, 0xb8, 0x4b, - 0xa5, 0xb5, 0x7e, 0xb0, 0x70, 0x58, 0xc5, 0xb3, 0x0a, 0x54, 0x07, 0x08, 0xf8, 0x90, 0x0a, 0x1d, - 0x25, 0x6a, 0x6d, 0x18, 0xa7, 0x1f, 0x44, 0x1d, 0x6a, 0x2c, 0xc6, 0x29, 0x13, 0xed, 0x69, 0x92, - 0xbb, 0xd6, 0x83, 0xf9, 0x9e, 0xe6, 0xd6, 0x22, 0x1e, 0xc3, 0xd1, 0x63, 0x58, 0x54, 0xa4, 0x2f, - 0xad, 0x4d, 0x43, 0x53, 0x35, 0x34, 0x3d, 0xd2, 0x97, 0xd8, 0x88, 0xd1, 0x17, 0x00, 0x7d, 0xfd, - 0x5c, 0x6a, 0x68, 0x52, 0x6b, 0x2b, 0x35, 0x7d, 0x7f, 0x3d, 0x16, 0x67, 0xa9, 0x53, 0xf6, 0xe8, - 0x57, 0xb0, 0x3b, 0xf9, 0x3a, 0xf3, 0xa5, 0x22, 0xbe, 0x43, 0x5f, 0x32, 0x3a, 0xb4, 0x50, 0xaa, - 0xbc, 0xb3, 0x55, 0x37, 0x63, 0x8b, 0x0b, 0x38, 0xec, 0x3f, 0x96, 0x61, 0x3f, 0x8b, 0x9d, 0x3c, - 0xb2, 0xde, 0xd9, 0x23, 0xef, 0x15, 0xec, 0x5e, 0x1e, 0x77, 0x2f, 0xcf, 0x5b, 0xbd, 0xd6, 0x9b, - 0xbc, 0xd7, 0xde, 0xa3, 0x9c, 0x2d, 0x8d, 0xed, 0x8e, 0xcb, 0x56, 0x09, 0xef, 0x24, 0xf8, 0x0c, - 0x1c, 0x1d, 0x4f, 0xbf, 0x1e, 0x17, 0x52, 0x7c, 0x1d, 0xc1, 0xef, 0x98, 0x4b, 0x45, 0xc3, 0x71, - 0xa8, 0x94, 0x85, 0x6f, 0xc9, 0xbf, 0x97, 0xe0, 0x83, 0xc2, 0x88, 0xfc, 0x1f, 0x3c, 0x2a, 0xff, - 0x53, 0x9e, 0xf6, 0x1f, 0x87, 0xfe, 0x09, 0xf7, 0x3c, 0xe2, 0xbb, 0xc9, 0x91, 0xb6, 0xa7, 0xdb, - 0x74, 0xfc, 0x26, 0xbc, 0xaf, 0xfb, 0xd3, 0x4d, 0xbe, 0x01, 0x95, 0x2e, 0x0f, 0x85, 0x43, 0x33, - 0x03, 0x66, 0x91, 0x17, 0x5d, 0x47, 0xb0, 0x40, 0x45, 0x00, 0x1c, 0x03, 0x11, 0x83, 0x1f, 0x4c, - 0x2c, 0xce, 0xfc, 0x20, 0x54, 0x1d, 0x22, 0x88, 0x47, 0xd5, 0x64, 0xda, 0xfc, 0xd1, 0x5c, 0xd6, - 0x2c, 0x06, 0x17, 0xb3, 0x21, 0x1b, 0xaa, 0x38, 0xf4, 0x1b, 0x52, 0x0f, 0xa9, 0x99, 0x11, 0x74, - 0x22, 0x46, 0x4f, 0x61, 0xdd, 0x7c, 0x24, 0x2f, 0x15, 0x73, 0x15, 0x24, 0x76, 0x59, 0x95, 0xfd, - 0x8f, 0x12, 0x1c, 0x14, 0x47, 0x3c, 0x4e, 0x99, 0xff, 0x75, 0xc8, 0x2f, 0x60, 0x2d, 0xd3, 0x0c, - 0xee, 0x13, 0xf8, 0x4c, 0x47, 0xc8, 0xc0, 0x9f, 0x7e, 0xa9, 0xa7, 0x30, 0x53, 0x43, 0x00, 0x95, - 0x5e, 0xab, 0xdd, 0x68, 0xf7, 0x36, 0xdf, 0x43, 0x9b, 0xb0, 0x76, 0x7e, 0xd9, 0x68, 0x1e, 0x37, - 0xce, 0x1b, 0xed, 0x93, 0x16, 0xde, 0x2c, 0xa1, 0x87, 0xf0, 0x7e, 0xb7, 0xd7, 0x38, 0xf9, 0xa6, - 0xd5, 0x3c, 0xb9, 0x6c, 0xf7, 0xf0, 0xe5, 0x79, 0xe7, 0xbc, 0xd1, 0x6e, 0x6d, 0x96, 0x8f, 0xbe, - 0x5f, 0x80, 0xf7, 0x73, 0x9a, 0x10, 0x62, 0x50, 0x39, 0xf3, 0xef, 0xf8, 0x2d, 0x45, 0x9f, 0xde, - 0x73, 0xa7, 0x51, 0x8e, 0xee, 0xd5, 0xee, 0x6b, 0x1e, 0x05, 0xd8, 0x7e, 0x0f, 0xfd, 0x16, 0x96, - 0xa3, 0x52, 0xa5, 0xe8, 0xf9, 0xfd, 0xc0, 0xd3, 0xbd, 0x6e, 0xef, 0x67, 0x6f, 0x8d, 0x1b, 0xaf, - 0xfe, 0xbb, 0x12, 0xc0, 0x24, 0xd4, 0xe8, 0x9e, 0x4c, 0x33, 0xb5, 0xb9, 0xf7, 0xf9, 0xdb, 0x03, - 0x13, 0x1f, 0x8e, 0x7f, 0xf2, 0xba, 0xde, 0x67, 0xea, 0x26, 0xbc, 0xd2, 0xa0, 0xba, 0xc7, 0x1c, - 0xc1, 0x25, 0xbf, 0x56, 0x75, 0x8f, 0x3b, 0x75, 0x11, 0x38, 0xf5, 0x09, 0x6b, 0x3d, 0x66, 0xbd, - 0xaa, 0x98, 0x06, 0xf3, 0xd9, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x00, 0x3f, 0x76, 0x70, 0x7b, - 0x14, 0x00, 0x00, + // 1732 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0x5f, 0x6f, 0xe3, 0xc6, + 0x11, 0x8f, 0x64, 0x5b, 0xb6, 0xc6, 0xff, 0xf7, 0x6c, 0x1f, 0xeb, 0xde, 0x39, 0x06, 0x2f, 0x48, + 0x9d, 0x6b, 0x22, 0xb5, 0xce, 0xf5, 0x1a, 0x14, 0x29, 0x02, 0xd9, 0x52, 0x62, 0x23, 0xb6, 0xac, + 0xac, 0x74, 0x77, 0xc0, 0xa1, 0xc0, 0x65, 0x4d, 0xae, 0xe5, 0x85, 0x45, 0x2e, 0xbb, 0xbb, 0xb4, + 0xa2, 0xa2, 0x2f, 0xbd, 0xa7, 0xf6, 0xa9, 0x1f, 0xa1, 0x5f, 0xa2, 0xed, 0x5b, 0x1f, 0xfa, 0xde, + 0xcf, 0xd1, 0xa7, 0x02, 0xfd, 0x0a, 0xc5, 0x2e, 0x29, 0x89, 0xa4, 0x48, 0xc3, 0x07, 0x34, 0x0f, + 0x79, 0x92, 0x38, 0x33, 0xbf, 0xdf, 0xce, 0xce, 0xce, 0xcc, 0xce, 0xc2, 0x13, 0x8f, 0x3b, 0x6f, + 0x9c, 0x01, 0x0f, 0x5d, 0xd2, 0xa7, 0xbe, 0x7a, 0x73, 0xcb, 0x84, 0x0a, 0xc9, 0xc0, 0x23, 0xce, + 0x35, 0xf3, 0x69, 0x2d, 0x10, 0x5c, 0x71, 0xb4, 0xe3, 0x71, 0xa7, 0x36, 0x35, 0xaa, 0x39, 0xdc, + 0x0b, 0x42, 0x45, 0x77, 0xf7, 0xfa, 0x9c, 0xf7, 0x07, 0xb4, 0x6e, 0xac, 0x2e, 0xc3, 0xab, 0xfa, + 0x50, 0x90, 0x20, 0xa0, 0x42, 0x46, 0xb8, 0xdd, 0x87, 0x86, 0x9c, 0x7b, 0x1e, 0xf7, 0xe3, 0x9f, + 0x58, 0xb1, 0x97, 0x56, 0x68, 0xb2, 0xa4, 0xde, 0xfe, 0x4b, 0x09, 0xb6, 0x5f, 0x46, 0x9e, 0x9c, + 0x47, 0x9e, 0x60, 0xfa, 0xdb, 0x90, 0x4a, 0x85, 0x3a, 0xb0, 0x9e, 0x56, 0x48, 0xab, 0xb4, 0x3f, + 0x77, 0xb0, 0x7c, 0xf8, 0x61, 0x2d, 0xdf, 0xc9, 0x5a, 0x86, 0x27, 0x0b, 0x47, 0xcf, 0x60, 0xf5, + 0x22, 0xa0, 0x82, 0x28, 0xc6, 0xfd, 0xde, 0x28, 0xa0, 0x56, 0x79, 0xbf, 0x74, 0xb0, 0x76, 0xb8, + 0x66, 0xf8, 0x26, 0x1a, 0x9c, 0x36, 0xb2, 0xff, 0x5a, 0x82, 0x9d, 0xac, 0x87, 0x32, 0xe0, 0xbe, + 0xa4, 0xdf, 0x83, 0x8b, 0x87, 0x50, 0xc1, 0x54, 0x86, 0x03, 0x65, 0x7c, 0x5b, 0x3e, 0xdc, 0xad, + 0x45, 0x81, 0xaf, 0x8d, 0x03, 0x5f, 0x3b, 0xe2, 0x7c, 0xf0, 0x92, 0x0c, 0x42, 0x8a, 0x63, 0x4b, + 0xb4, 0x05, 0x0b, 0x2d, 0x21, 0xb8, 0xb0, 0xe6, 0xf6, 0x4b, 0x07, 0x55, 0x1c, 0x7d, 0xd8, 0x35, + 0x58, 0xe9, 0x76, 0x4f, 0x3a, 0xe1, 0xe5, 0x80, 0x39, 0x5f, 0xd3, 0x11, 0xda, 0x83, 0xc5, 0x1b, + 0x3a, 0x72, 0x89, 0x22, 0x56, 0x49, 0xdb, 0x1d, 0xcd, 0xff, 0xf1, 0x6f, 0x56, 0x09, 0x8f, 0x85, + 0xb6, 0x0d, 0xf3, 0x4d, 0x26, 0x6f, 0xd0, 0x2e, 0x2c, 0xb9, 0x4c, 0xde, 0xf8, 0xc4, 0xa3, 0x91, + 0x21, 0x9e, 0x7c, 0xdb, 0xff, 0x2e, 0xc1, 0x56, 0x57, 0x71, 0x41, 0xfa, 0xf4, 0x98, 0xfb, 0x57, + 0xac, 0x1f, 0x46, 0x71, 0x42, 0xcf, 0xa0, 0xc2, 0xa5, 0x36, 0x33, 0x90, 0xe5, 0xc3, 0x47, 0x45, + 0xfb, 0xd7, 0x4b, 0xe0, 0xd8, 0x16, 0xfd, 0x0a, 0xaa, 0x7a, 0x69, 0xfd, 0x5f, 0x5a, 0x65, 0x13, + 0xb8, 0xbb, 0x81, 0x53, 0x73, 0xf4, 0x21, 0xac, 0x31, 0x8f, 0xf4, 0x29, 0xa6, 0x57, 0x54, 0x50, + 0xdf, 0xa1, 0xf1, 0xee, 0x33, 0x52, 0xf4, 0x0c, 0xb6, 0x6f, 0xbd, 0xc8, 0xd9, 0x63, 0xee, 0x2b, + 0xc2, 0x7c, 0x2a, 0xda, 0x7a, 0x6f, 0xf3, 0xc6, 0x3c, 0x5f, 0x69, 0x7f, 0x09, 0x1b, 0x6d, 0xaa, + 0x86, 0x5c, 0xdc, 0x9c, 0xfa, 0x8a, 0x8a, 0x2b, 0xe2, 0x50, 0x74, 0x08, 0x5b, 0x7e, 0x46, 0xd6, + 0x9e, 0x06, 0x29, 0x57, 0x67, 0x7f, 0x0b, 0x5b, 0x31, 0x4f, 0x3a, 0x5e, 0x27, 0x00, 0x6c, 0x6c, + 0x38, 0xce, 0x99, 0x83, 0xa2, 0xad, 0x67, 0x3d, 0xc1, 0x09, 0xac, 0xfd, 0xb6, 0x04, 0x9b, 0x2f, + 0x24, 0x15, 0x69, 0xfe, 0x7d, 0x58, 0x0a, 0x25, 0x15, 0xd3, 0x43, 0x8c, 0x4f, 0x7b, 0x22, 0xd5, + 0x16, 0x01, 0x91, 0x72, 0xc8, 0x85, 0x6b, 0x52, 0x6d, 0x62, 0x31, 0x96, 0xa2, 0x8f, 0x22, 0x0e, + 0xa5, 0x0b, 0x65, 0xce, 0x14, 0xca, 0xaa, 0xf1, 0x50, 0xaf, 0xa6, 0x0b, 0x03, 0x4f, 0xd4, 0x3a, + 0x5c, 0xb8, 0xd9, 0x49, 0xbb, 0xb0, 0x07, 0xe0, 0x32, 0x49, 0x2e, 0x07, 0x14, 0x37, 0x3b, 0xc6, + 0x89, 0x25, 0x9c, 0x90, 0x20, 0x04, 0xf3, 0x01, 0x17, 0x51, 0x9e, 0xaf, 0x62, 0xf3, 0xdf, 0x7e, + 0x0d, 0xe8, 0x8c, 0xf9, 0xe1, 0x77, 0x69, 0xa6, 0x26, 0x3c, 0x8e, 0x71, 0x9d, 0xd8, 0xb7, 0x46, + 0xa8, 0xae, 0xa9, 0xaf, 0x98, 0x63, 0x0c, 0x62, 0xf2, 0xbb, 0x8d, 0xec, 0x3f, 0x95, 0x61, 0xeb, + 0x15, 0xf3, 0x5d, 0x3e, 0x94, 0x69, 0xfa, 0xe7, 0xb0, 0x43, 0x7d, 0x0d, 0x6c, 0x84, 0x8a, 0x7b, + 0x44, 0x31, 0xe7, 0x45, 0xe0, 0x12, 0x65, 0xce, 0x45, 0xf3, 0x16, 0x68, 0x75, 0xa1, 0x28, 0xe6, + 0xd1, 0xd7, 0xdc, 0x8f, 0x1a, 0x49, 0x15, 0x4f, 0xbe, 0x51, 0x6f, 0x36, 0x20, 0x26, 0x86, 0x77, + 0x9c, 0x72, 0xd6, 0x1e, 0xcf, 0x86, 0xf4, 0x2b, 0x40, 0xaf, 0x98, 0x8f, 0xcf, 0xd3, 0xbc, 0xf3, + 0x86, 0xf7, 0xa1, 0xe1, 0x9d, 0x55, 0xe3, 0x1c, 0x88, 0xfd, 0xaf, 0x05, 0x78, 0x14, 0x37, 0x39, + 0xbf, 0xdf, 0x1d, 0x49, 0x45, 0xbd, 0xf4, 0x4a, 0x36, 0xac, 0xc4, 0x7e, 0x89, 0x44, 0x8e, 0xa7, + 0x64, 0xe8, 0x02, 0x56, 0x89, 0xeb, 0x31, 0x9f, 0x49, 0x25, 0x88, 0xe2, 0x22, 0xee, 0x58, 0x1f, + 0x15, 0x6d, 0x70, 0x26, 0x4b, 0x71, 0x1a, 0x8f, 0xbe, 0x80, 0x05, 0x9d, 0x51, 0xd2, 0x9a, 0x33, + 0xf5, 0xf0, 0x0e, 0x44, 0x11, 0x0e, 0x7d, 0x00, 0xe0, 0x84, 0x52, 0x71, 0xaf, 0xa9, 0xbb, 0xdc, + 0x7c, 0x22, 0xab, 0x13, 0x72, 0xd4, 0x04, 0x08, 0x4c, 0x57, 0xbc, 0xa1, 0x23, 0x69, 0x2d, 0x98, + 0xb5, 0x3e, 0x28, 0x5a, 0x2b, 0xd9, 0x42, 0x71, 0x02, 0x87, 0x7e, 0xa6, 0x3b, 0x9e, 0xa9, 0x8d, + 0x8a, 0xa9, 0x0d, 0x2b, 0x79, 0x89, 0x8c, 0x83, 0x6a, 0xca, 0x24, 0xb6, 0x43, 0xdf, 0xc0, 0x26, + 0x97, 0x47, 0x9c, 0x2b, 0xbd, 0xdf, 0xa0, 0xe5, 0xf7, 0x99, 0x4f, 0xad, 0x45, 0x03, 0x7e, 0x92, + 0x07, 0xce, 0x98, 0xe2, 0x59, 0x34, 0x7a, 0x0d, 0x68, 0x30, 0x53, 0x2f, 0xd6, 0x92, 0x39, 0x87, + 0xa7, 0x45, 0x5b, 0x9a, 0xad, 0x30, 0x9c, 0xc3, 0x82, 0xbe, 0x85, 0xad, 0x61, 0x4e, 0xb9, 0x58, + 0x55, 0xc3, 0xfe, 0x71, 0x11, 0x7b, 0x5e, 0x89, 0xe1, 0x5c, 0x26, 0x9d, 0xce, 0x81, 0xe0, 0xdf, + 0x8d, 0xd2, 0xfc, 0x90, 0x48, 0xe7, 0xce, 0x8c, 0x1a, 0xe7, 0x40, 0xec, 0xff, 0x94, 0x60, 0xfb, + 0x84, 0x08, 0x77, 0x48, 0x44, 0xe6, 0x5e, 0xfa, 0x14, 0x2a, 0x2f, 0xcf, 0xbb, 0xec, 0x77, 0x51, + 0x06, 0xaf, 0x1d, 0xfe, 0xd8, 0xd0, 0xa6, 0x2f, 0x5d, 0xad, 0x8e, 0x0e, 0x2a, 0x32, 0x45, 0xbf, + 0x1e, 0xa7, 0x91, 0x01, 0x46, 0x59, 0xfd, 0x38, 0x07, 0x78, 0x3c, 0x31, 0xc2, 0x09, 0x00, 0x7a, + 0x03, 0xbb, 0xee, 0xc8, 0x27, 0x1e, 0x73, 0xce, 0xa9, 0xc7, 0xc5, 0x28, 0xaf, 0x0b, 0xbc, 0x6f, + 0xe8, 0x9a, 0x85, 0x66, 0xf8, 0x0e, 0x0a, 0xfb, 0x73, 0x58, 0x79, 0x41, 0xaf, 0x58, 0x97, 0x2a, + 0x9d, 0x2c, 0x12, 0x7d, 0x0c, 0x9b, 0x92, 0x3a, 0xa1, 0xa0, 0x3a, 0x3d, 0x5a, 0xa6, 0x59, 0xb9, + 0x71, 0xef, 0x9a, 0x55, 0xd8, 0x7f, 0x2f, 0xc1, 0x76, 0x57, 0x4b, 0x99, 0x4a, 0xf3, 0xa2, 0x47, + 0x50, 0x8d, 0x5a, 0x5d, 0xaf, 0x73, 0x1e, 0xe3, 0xa7, 0x02, 0x74, 0x02, 0x2b, 0x61, 0x62, 0xd5, + 0x38, 0x2e, 0x85, 0x85, 0x93, 0xf4, 0x10, 0xa7, 0x90, 0xe8, 0x17, 0xb0, 0x22, 0x63, 0x07, 0x7a, + 0xd3, 0xcb, 0x65, 0xd3, 0x30, 0x75, 0x13, 0x0a, 0x9c, 0x32, 0xb3, 0x8f, 0x61, 0xbd, 0x71, 0x4b, + 0xd8, 0x80, 0x5c, 0xb2, 0x01, 0x53, 0xa3, 0x2e, 0x55, 0xfa, 0x0e, 0x49, 0xcc, 0x29, 0xe6, 0xbf, + 0xde, 0x45, 0x5f, 0xf0, 0x30, 0x30, 0x7d, 0x2b, 0xea, 0xcb, 0x53, 0x81, 0xfd, 0x76, 0x09, 0xd6, + 0xd2, 0xa7, 0x98, 0x4b, 0xb2, 0x06, 0x65, 0x16, 0xdf, 0x8b, 0xb8, 0xcc, 0x5c, 0xf4, 0x25, 0x2c, + 0xca, 0x68, 0xee, 0x89, 0x0f, 0xb0, 0x30, 0xff, 0xf3, 0xc6, 0x23, 0x3c, 0x06, 0xa3, 0x26, 0x94, + 0xb9, 0x8c, 0x3b, 0xf6, 0xb3, 0x22, 0x8a, 0xbb, 0x3a, 0x33, 0x2e, 0x73, 0xa9, 0xbd, 0x89, 0xa7, + 0x0d, 0x6b, 0xe1, 0x6e, 0x6f, 0xf2, 0x86, 0x0f, 0x3c, 0x06, 0xeb, 0x1b, 0xcc, 0xe7, 0x6e, 0x34, + 0xc5, 0x54, 0xa2, 0x1b, 0x6c, 0xfc, 0x9d, 0x0e, 0xe3, 0x62, 0x26, 0x8c, 0xe8, 0x09, 0x54, 0xa4, + 0x22, 0x2a, 0x94, 0x71, 0xb3, 0x59, 0x8e, 0x0e, 0xcf, 0x88, 0x70, 0xac, 0xd2, 0x97, 0xc8, 0x80, + 0x47, 0xb7, 0xaf, 0x61, 0xa9, 0x46, 0x97, 0x48, 0x52, 0x86, 0x3e, 0x83, 0x87, 0xf1, 0xb5, 0x7d, + 0xc2, 0xfa, 0xd7, 0xc9, 0xf3, 0x35, 0x8d, 0x60, 0x09, 0x17, 0xa9, 0xd1, 0x73, 0xa8, 0xdc, 0x9a, + 0x06, 0x6b, 0x2d, 0x9b, 0xfc, 0xd9, 0x2b, 0x1c, 0xb9, 0xcf, 0xa3, 0xea, 0x8e, 0xac, 0xd1, 0x29, + 0x2c, 0x5d, 0xc7, 0xbd, 0xc2, 0x5a, 0x31, 0xce, 0x7f, 0x52, 0x84, 0xcc, 0xed, 0x29, 0x78, 0x02, + 0xd7, 0x85, 0x47, 0x06, 0x03, 0x3e, 0xa4, 0xee, 0xc5, 0x50, 0x4f, 0x8e, 0xdc, 0xa5, 0xd2, 0x5a, + 0xdd, 0x9f, 0x3b, 0xa8, 0xe2, 0x59, 0x05, 0xaa, 0x03, 0x04, 0x7c, 0x48, 0x85, 0x8e, 0x12, 0xb5, + 0xd6, 0x8c, 0xd3, 0xeb, 0x51, 0x9b, 0x9b, 0x88, 0x71, 0xc2, 0x44, 0x7b, 0x3a, 0x2e, 0x00, 0x6b, + 0xfd, 0x6e, 0x4f, 0x73, 0x0b, 0x1a, 0x4f, 0xe0, 0xe8, 0x31, 0xcc, 0x2b, 0xd2, 0x97, 0xd6, 0x86, + 0xa1, 0xa9, 0x1a, 0x9a, 0x1e, 0xe9, 0x4b, 0x6c, 0xc4, 0xe8, 0x73, 0x80, 0xbe, 0x7e, 0x73, 0x35, + 0x34, 0xa9, 0xb5, 0x99, 0x18, 0xe1, 0xbf, 0x9a, 0x88, 0xd3, 0xd4, 0x09, 0x7b, 0xf4, 0x1b, 0xd8, + 0x99, 0x7e, 0x9d, 0xfa, 0x52, 0x11, 0xdf, 0xa1, 0x2f, 0x19, 0x1d, 0x5a, 0x28, 0xd1, 0x23, 0xd2, + 0x55, 0x37, 0x63, 0x8b, 0x0b, 0x38, 0xd0, 0x37, 0xb0, 0x4e, 0xd2, 0x65, 0x6f, 0x3d, 0x30, 0xb4, + 0x3f, 0x29, 0x0a, 0x46, 0xa6, 0x4b, 0xe0, 0x2c, 0xde, 0xfe, 0x73, 0x19, 0xf6, 0xd2, 0xee, 0x4c, + 0x1f, 0x7f, 0xdf, 0xdb, 0xe3, 0xf3, 0x15, 0xec, 0x5c, 0x1c, 0x75, 0x2f, 0xce, 0x5a, 0xbd, 0xd6, + 0x9b, 0xbc, 0x57, 0xe8, 0xa3, 0x9c, 0x28, 0x4d, 0xec, 0x8e, 0xca, 0x56, 0x09, 0x6f, 0x8f, 0xf1, + 0x29, 0x38, 0x3a, 0xca, 0xbe, 0x6a, 0xe7, 0x12, 0x7c, 0x1d, 0xc1, 0x6f, 0x99, 0x4b, 0x45, 0xc3, + 0x71, 0xa8, 0x94, 0x85, 0x6f, 0xdc, 0x7f, 0x94, 0xe0, 0xfd, 0xc2, 0x88, 0xfc, 0x00, 0x1e, 0xbb, + 0xff, 0x2d, 0x67, 0xfd, 0xc7, 0xa1, 0x7f, 0xcc, 0x3d, 0x8f, 0xf8, 0xee, 0xf8, 0x48, 0xdb, 0xd9, + 0xce, 0x1f, 0xbf, 0x55, 0xef, 0xeb, 0x7e, 0xf6, 0xde, 0x68, 0x40, 0xa5, 0xcb, 0x43, 0xe1, 0xd0, + 0xd4, 0xe0, 0x5b, 0xe4, 0x45, 0xd7, 0x11, 0x2c, 0x50, 0x11, 0x00, 0xc7, 0x40, 0xc4, 0xe0, 0x47, + 0x53, 0x8b, 0x53, 0x3f, 0x08, 0x55, 0x87, 0x08, 0xe2, 0x51, 0x35, 0x9d, 0x82, 0x7f, 0x7a, 0x27, + 0x6b, 0x1a, 0x83, 0x8b, 0xd9, 0x90, 0x0d, 0x55, 0x1c, 0xfa, 0x0d, 0xa9, 0x87, 0xe7, 0xd4, 0x68, + 0x3c, 0x15, 0xa3, 0xa7, 0xb0, 0x6a, 0x3e, 0xc6, 0x2f, 0x28, 0x73, 0xbb, 0x8c, 0xed, 0xd2, 0x2a, + 0xfb, 0x9f, 0x25, 0xd8, 0x2f, 0x8e, 0x78, 0x9c, 0x32, 0xff, 0xef, 0x90, 0x9f, 0xc3, 0x4a, 0xaa, + 0xbf, 0xdc, 0x27, 0xf0, 0xa9, 0x26, 0x93, 0x82, 0x3f, 0xfd, 0x42, 0x4f, 0x87, 0xa6, 0x86, 0x00, + 0x2a, 0xbd, 0x56, 0xbb, 0xd1, 0xee, 0x6d, 0xbc, 0x87, 0x36, 0x60, 0xe5, 0xec, 0xa2, 0xd1, 0x3c, + 0x6a, 0x9c, 0x35, 0xda, 0xc7, 0x2d, 0xbc, 0x51, 0x42, 0x0f, 0xe1, 0x41, 0xb7, 0xd7, 0x38, 0xfe, + 0xba, 0xd5, 0x3c, 0xbe, 0x68, 0xf7, 0xf0, 0xc5, 0x59, 0xe7, 0xac, 0xd1, 0x6e, 0x6d, 0x94, 0x0f, + 0xdf, 0xce, 0xc1, 0x83, 0x9c, 0xbe, 0x86, 0x18, 0x54, 0x4e, 0xfd, 0x5b, 0x7e, 0x43, 0xd1, 0x27, + 0xf7, 0xdc, 0x69, 0x94, 0xa3, 0xbb, 0xb5, 0xfb, 0x9a, 0x47, 0x01, 0xb6, 0xdf, 0x43, 0xbf, 0x87, + 0xc5, 0xa8, 0x54, 0x29, 0x7a, 0x7e, 0x3f, 0x70, 0xb6, 0xd7, 0xed, 0xfe, 0xf2, 0x9d, 0x71, 0x93, + 0xd5, 0xff, 0x50, 0x02, 0x98, 0x86, 0x1a, 0xdd, 0x93, 0x69, 0xa6, 0x36, 0x77, 0x3f, 0x7b, 0x77, + 0xe0, 0xd8, 0x87, 0xa3, 0x9f, 0xbf, 0xae, 0xf7, 0x99, 0xba, 0x0e, 0x2f, 0x35, 0xa8, 0xee, 0x31, + 0x47, 0x70, 0xc9, 0xaf, 0x54, 0xdd, 0xe3, 0x4e, 0x5d, 0x04, 0x4e, 0x7d, 0xca, 0x5a, 0x8f, 0x59, + 0x2f, 0x2b, 0xa6, 0xc1, 0x7c, 0xfa, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xf4, 0x02, 0x86, + 0x13, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto index 05fb5ec..1677156 100644 --- a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto +++ b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto @@ -103,6 +103,11 @@ message SecurityConfiguration { SecurityType securityType = 3; } +message AvailabilitySet { + string name = 1; + string groupName = 2; +} + message VirtualMachine { string name = 1; string id = 2; @@ -122,6 +127,7 @@ message VirtualMachine { Tags tags = 16; GuestAgentConfiguration guestAgent = 17; VirtualMachineAgentInstanceView guestAgentInstanceView = 18; + AvailabilitySet availabilitySet = 19; } message VirtualMachineOperationRequest { diff --git a/rpc/gen_proto.sh b/rpc/gen_proto.sh index 437f8d4..9540c87 100755 --- a/rpc/gen_proto.sh +++ b/rpc/gen_proto.sh @@ -43,7 +43,7 @@ Module="compute" echo "Generating $Agent/$Module protoc" protoc -I $Agent/$Module/virtualmachine -I ./common $Agent/$Module/virtualmachine/moc_nodeagent_virtualmachine.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/virtualmachinescaleset -I $Agent/$Module/virtualmachine -I $Agent/network/virtualnetworkinterface -I ./common $Agent/$Module/virtualmachinescaleset/moc_nodeagent_virtualmachinescaleset.proto --go_out=plugins=grpc:../bld/gen/ -protoc -I $Agent/$Module/availabilityset -I $Agent/$Module/virtualmachine -I ./common $Agent/$Module/availabilityset/moc_nodeagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ +protoc -I $Agent/$Module/availabilityset -I ./common $Agent/$Module/availabilityset/moc_nodeagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ Module="storage" echo "Generating $Agent/$Module protoc" @@ -160,7 +160,7 @@ protoc -I $Agent/$Module/virtualmachineimage -I ./common $Agent/$Module/virtualm protoc -I $Agent/$Module/galleryimage -I ./common $Agent/$Module/galleryimage/moc_cloudagent_galleryimage.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/baremetalhost -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/baremetalhost/moc_cloudagent_baremetalhost.proto --go_out=plugins=grpc:../bld/gen/ protoc -I $Agent/$Module/baremetalmachine -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/baremetalmachine/moc_cloudagent_baremetalmachine.proto --go_out=plugins=grpc:../bld/gen/ -protoc -I $Agent/$Module/availabilityset -I ./common -I $Agent/$Module/virtualmachine $Agent/$Module/availabilityset/moc_cloudagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ +protoc -I $Agent/$Module/availabilityset -I ./common $Agent/$Module/availabilityset/moc_cloudagent_availabilityset.proto --go_out=plugins=grpc:../bld/gen/ Module="storage" echo "Generating $Agent/$Module protoc" diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 0bbe46e..bd1fcdc 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -6,7 +6,6 @@ option go_package = "github.com/microsoft/moc/rpc/nodeagent/compute"; package moc.nodeagent.compute; import "google/protobuf/wrappers.proto"; -import "moc_nodeagent_virtualmachine.proto"; import "moc_common_common.proto"; message AvailabilitySetRequest { @@ -34,7 +33,13 @@ message AvailabilitySet { Entity entity = 7; // avset fields uint32 platformFaultDomainCount = 8; - repeated VirtualMachine virtualMachines = 9; + repeated VirtualMachine virtualMachines = 9; // need to replace with minimum association information +} + +// This is the only field used in the nodeagent Virtual Machine provider to decide +// if a VM POST request is a create or update. +message VirtualMachine { + string name = 1; } diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 812f9fa..835b717 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -222,10 +222,52 @@ func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { return nil } +// This is the only field used in the nodeagent Virtual Machine provider to decide +// if a VM POST request is a create or update. +type VirtualMachine 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 (m *VirtualMachine) Reset() { *m = VirtualMachine{} } +func (m *VirtualMachine) String() string { return proto.CompactTextString(m) } +func (*VirtualMachine) ProtoMessage() {} +func (*VirtualMachine) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{3} +} + +func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VirtualMachine.Unmarshal(m, b) +} +func (m *VirtualMachine) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VirtualMachine.Marshal(b, m, deterministic) +} +func (m *VirtualMachine) XXX_Merge(src proto.Message) { + xxx_messageInfo_VirtualMachine.Merge(m, src) +} +func (m *VirtualMachine) XXX_Size() int { + return xxx_messageInfo_VirtualMachine.Size(m) +} +func (m *VirtualMachine) XXX_DiscardUnknown() { + xxx_messageInfo_VirtualMachine.DiscardUnknown(m) +} + +var xxx_messageInfo_VirtualMachine proto.InternalMessageInfo + +func (m *VirtualMachine) GetName() string { + if m != nil { + return m.Name + } + return "" +} + func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.nodeagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.nodeagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.nodeagent.compute.AvailabilitySet") + proto.RegisterType((*VirtualMachine)(nil), "moc.nodeagent.compute.VirtualMachine") } func init() { @@ -233,37 +275,37 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 473 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x49, 0xb7, 0x15, 0xea, 0x69, 0x1d, 0xb2, 0x06, 0xb3, 0x2a, 0x81, 0xaa, 0x4c, 0xa0, - 0x5e, 0x70, 0x50, 0xe0, 0xc4, 0x6d, 0x83, 0x21, 0x71, 0x40, 0x93, 0xbc, 0x69, 0x07, 0x2e, 0x93, - 0x9b, 0xba, 0x99, 0x45, 0xec, 0x17, 0xec, 0xe7, 0xa2, 0x1e, 0xf9, 0x2a, 0x5c, 0xf9, 0x00, 0x7c, - 0x3d, 0x54, 0x27, 0x54, 0x6b, 0xc6, 0xa4, 0x5d, 0x38, 0xb5, 0x79, 0xff, 0xdf, 0xfb, 0xe7, 0x9f, - 0xf7, 0x1e, 0x39, 0x32, 0x50, 0x5c, 0x59, 0x98, 0x29, 0x59, 0x2a, 0x8b, 0x57, 0x72, 0x21, 0x75, - 0x25, 0xa7, 0xba, 0xd2, 0xb8, 0xf4, 0x0a, 0x79, 0xed, 0x00, 0x81, 0x3e, 0x31, 0x50, 0xf0, 0x35, - 0xc4, 0x0b, 0x30, 0x75, 0x40, 0x35, 0x7a, 0x5e, 0x02, 0x94, 0x95, 0xca, 0x22, 0x34, 0x0d, 0xf3, - 0xec, 0xbb, 0x93, 0x75, 0xad, 0x9c, 0x6f, 0xda, 0x46, 0xe9, 0xa6, 0xf7, 0x42, 0x3b, 0x0c, 0xb2, - 0x32, 0xb2, 0xb8, 0xd6, 0x56, 0xb5, 0xcc, 0xe1, 0x8a, 0x29, 0xc0, 0x18, 0xb0, 0xed, 0x4f, 0x23, - 0xa4, 0x3f, 0x13, 0xf2, 0xf4, 0xf8, 0x46, 0x9a, 0x73, 0x85, 0x42, 0x7d, 0x0b, 0xca, 0x23, 0x15, - 0xe4, 0x71, 0x47, 0xf1, 0x2c, 0x19, 0x6f, 0x4d, 0x76, 0xf3, 0x97, 0xfc, 0x9f, 0x49, 0x79, 0xd7, - 0xe8, 0x56, 0x3f, 0x7d, 0x4b, 0xf6, 0xce, 0x6a, 0xe5, 0x24, 0x6a, 0xb0, 0x17, 0xcb, 0x5a, 0xb1, - 0xde, 0x38, 0x99, 0x0c, 0xf3, 0x61, 0x34, 0x5c, 0x2b, 0x62, 0x13, 0x4a, 0x7f, 0x27, 0xe4, 0xf0, - 0x56, 0x48, 0x5f, 0x83, 0xf5, 0xea, 0xbf, 0xa4, 0xcc, 0x49, 0x5f, 0x28, 0x1f, 0x2a, 0x8c, 0xf1, - 0x76, 0xf3, 0x11, 0x6f, 0x56, 0xc0, 0xff, 0xae, 0x80, 0x9f, 0x00, 0x54, 0x97, 0xb2, 0x0a, 0x4a, - 0xb4, 0x24, 0x3d, 0x20, 0x3b, 0xa7, 0xce, 0x81, 0x63, 0x5b, 0xe3, 0x64, 0x32, 0x10, 0xcd, 0x43, - 0xfa, 0xab, 0x47, 0xf6, 0x3b, 0xf6, 0x94, 0x92, 0x6d, 0x2b, 0x8d, 0x62, 0x49, 0x04, 0xe3, 0x7f, - 0x3a, 0x24, 0x3d, 0x3d, 0x8b, 0x6f, 0x1b, 0x88, 0x9e, 0x9e, 0xd1, 0x23, 0xd2, 0xf7, 0x28, 0x31, - 0x78, 0xb6, 0x13, 0x13, 0xec, 0xc6, 0x6f, 0x39, 0x8f, 0x25, 0xd1, 0x4a, 0xf4, 0x19, 0xd9, 0x46, - 0x59, 0x7a, 0xd6, 0x8f, 0xc8, 0x20, 0x22, 0x17, 0xb2, 0xf4, 0x22, 0x96, 0x57, 0x1e, 0xca, 0xa2, - 0xc6, 0x25, 0x7b, 0x78, 0xc3, 0xe3, 0x34, 0x96, 0x44, 0x2b, 0xd1, 0x77, 0x84, 0xd5, 0x95, 0xc4, - 0x39, 0x38, 0xf3, 0x51, 0x86, 0x0a, 0x3f, 0x80, 0x91, 0xda, 0xbe, 0x87, 0x60, 0x91, 0x3d, 0x1a, - 0x27, 0x93, 0x3d, 0x71, 0xa7, 0x4e, 0xcf, 0xc8, 0x7e, 0x7b, 0x6c, 0x9f, 0x9b, 0x63, 0xf3, 0x6c, - 0x10, 0x27, 0xff, 0xe2, 0x8e, 0xc9, 0x5f, 0x6e, 0xd0, 0xa2, 0xdb, 0x9d, 0xff, 0x48, 0xc8, 0x41, - 0x67, 0x5a, 0xc7, 0x2b, 0x03, 0xaa, 0x49, 0xff, 0x93, 0x5d, 0xc0, 0x57, 0x45, 0x5f, 0xdd, 0x73, - 0xa9, 0xcd, 0x0d, 0x8f, 0xf8, 0x7d, 0xf1, 0xe6, 0x9a, 0xd2, 0x07, 0x27, 0xaf, 0xbf, 0xf0, 0x52, - 0xe3, 0x75, 0x98, 0xae, 0xd8, 0xcc, 0xe8, 0xc2, 0x81, 0x87, 0x39, 0x66, 0x06, 0x8a, 0xcc, 0xd5, - 0x45, 0xb6, 0xf6, 0xca, 0x5a, 0xaf, 0x69, 0x3f, 0x5e, 0xc5, 0x9b, 0x3f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x04, 0xde, 0xde, 0x88, 0xe4, 0x03, 0x00, 0x00, + // 471 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0x13, 0x31, + 0x10, 0x86, 0xd9, 0xb4, 0x0d, 0xc4, 0x51, 0x53, 0x64, 0x15, 0x6a, 0x45, 0x02, 0x45, 0x29, 0xa0, + 0x5c, 0xf0, 0xa2, 0x85, 0x13, 0xb7, 0x16, 0x8a, 0xc4, 0x01, 0x55, 0x72, 0xab, 0x1e, 0xb8, 0x54, + 0xce, 0xc6, 0xd9, 0x5a, 0xac, 0x3d, 0x8b, 0x3d, 0x0e, 0xca, 0x91, 0x57, 0xe1, 0xca, 0x03, 0xf0, + 0x7a, 0x28, 0xde, 0x25, 0x6a, 0xb6, 0xad, 0xd4, 0x0b, 0xa7, 0x64, 0xe7, 0xff, 0xe6, 0x9f, 0xd9, + 0x7f, 0x87, 0x1c, 0x1a, 0xc8, 0x2f, 0x2d, 0xcc, 0x94, 0x2c, 0x94, 0xc5, 0x4b, 0xb9, 0x90, 0xba, + 0x94, 0x53, 0x5d, 0x6a, 0x5c, 0x7a, 0x85, 0xbc, 0x72, 0x80, 0x40, 0x9f, 0x18, 0xc8, 0xf9, 0x1a, + 0xe2, 0x39, 0x98, 0x2a, 0xa0, 0x1a, 0x3e, 0x2f, 0x00, 0x8a, 0x52, 0xa5, 0x11, 0x9a, 0x86, 0x79, + 0xfa, 0xc3, 0xc9, 0xaa, 0x52, 0xce, 0xd7, 0x6d, 0xc3, 0x83, 0x95, 0x77, 0x0e, 0xc6, 0x80, 0x6d, + 0x7e, 0x6a, 0x61, 0xfc, 0x2b, 0x21, 0x4f, 0x8f, 0xae, 0x4d, 0x3a, 0x53, 0x28, 0xd4, 0xf7, 0xa0, + 0x3c, 0x52, 0x41, 0x1e, 0xb7, 0x14, 0xcf, 0x92, 0xd1, 0xd6, 0xa4, 0x9f, 0xbd, 0xe2, 0xb7, 0x6e, + 0xc1, 0xdb, 0x46, 0x37, 0xfa, 0xe9, 0x3b, 0xb2, 0x7b, 0x5a, 0x29, 0x27, 0x51, 0x83, 0x3d, 0x5f, + 0x56, 0x8a, 0x75, 0x46, 0xc9, 0x64, 0x90, 0x0d, 0xa2, 0xe1, 0x5a, 0x11, 0x9b, 0xd0, 0xf8, 0x4f, + 0x42, 0x0e, 0x6e, 0x2c, 0xe9, 0x2b, 0xb0, 0x5e, 0xfd, 0x97, 0x2d, 0x33, 0xd2, 0x15, 0xca, 0x87, + 0x12, 0xe3, 0x7a, 0xfd, 0x6c, 0xc8, 0xeb, 0x78, 0xf9, 0xbf, 0x78, 0xf9, 0x31, 0x40, 0x79, 0x21, + 0xcb, 0xa0, 0x44, 0x43, 0xd2, 0x7d, 0xb2, 0x73, 0xe2, 0x1c, 0x38, 0xb6, 0x35, 0x4a, 0x26, 0x3d, + 0x51, 0x3f, 0x8c, 0x7f, 0x77, 0xc8, 0x5e, 0xcb, 0x9e, 0x52, 0xb2, 0x6d, 0xa5, 0x51, 0x2c, 0x89, + 0x60, 0xfc, 0x4f, 0x07, 0xa4, 0xa3, 0x67, 0x71, 0x5a, 0x4f, 0x74, 0xf4, 0x8c, 0x1e, 0x92, 0xae, + 0x47, 0x89, 0xc1, 0xb3, 0x9d, 0xb8, 0x41, 0x3f, 0xbe, 0xcb, 0x59, 0x2c, 0x89, 0x46, 0xa2, 0xcf, + 0xc8, 0x36, 0xca, 0xc2, 0xb3, 0x6e, 0x44, 0x7a, 0x11, 0x39, 0x97, 0x85, 0x17, 0xb1, 0xbc, 0xf2, + 0x50, 0x16, 0x35, 0x2e, 0xd9, 0xc3, 0x6b, 0x1e, 0x27, 0xb1, 0x24, 0x1a, 0x89, 0xbe, 0x27, 0xac, + 0x2a, 0x25, 0xce, 0xc1, 0x99, 0x4f, 0x32, 0x94, 0xf8, 0x11, 0x8c, 0xd4, 0xf6, 0x03, 0x04, 0x8b, + 0xec, 0xd1, 0x28, 0x99, 0xec, 0x8a, 0x3b, 0x75, 0x7a, 0x4a, 0xf6, 0x16, 0xda, 0x61, 0x90, 0xe5, + 0x17, 0x99, 0x5f, 0x69, 0xab, 0x3c, 0xeb, 0xc5, 0xe4, 0x5f, 0xde, 0x91, 0xfc, 0xc5, 0x06, 0x2d, + 0xda, 0xdd, 0xe3, 0x17, 0x64, 0xb0, 0x89, 0xdc, 0x96, 0x55, 0xf6, 0x33, 0x21, 0xfb, 0xad, 0x4c, + 0x8f, 0x56, 0x63, 0xa8, 0x26, 0xdd, 0xcf, 0x76, 0x01, 0xdf, 0x14, 0x7d, 0x7d, 0xcf, 0x4f, 0x5f, + 0x5f, 0xfa, 0x90, 0xdf, 0x17, 0xaf, 0x6f, 0x6e, 0xfc, 0xe0, 0xf8, 0xcd, 0x57, 0x5e, 0x68, 0xbc, + 0x0a, 0xd3, 0x15, 0x9b, 0x1a, 0x9d, 0x3b, 0xf0, 0x30, 0xc7, 0xd4, 0x40, 0x9e, 0xba, 0x2a, 0x4f, + 0xd7, 0x5e, 0x69, 0xe3, 0x35, 0xed, 0xc6, 0xdb, 0x79, 0xfb, 0x37, 0x00, 0x00, 0xff, 0xff, 0x9f, + 0x91, 0x02, 0xea, 0xe6, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From ba65438cebf3a6a68c8c73320c5ed0b08f61be61 Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 18 Jan 2024 15:55:23 +0000 Subject: [PATCH 11/25] adapted the nodeagent avset model to mirror the azure golang sdk at https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go --- rpc/common/moc_common_common.pb.go | 363 ++++++++++-------- rpc/common/moc_common_common.proto | 4 + .../moc_nodeagent_availabilityset.proto | 16 +- .../moc_nodeagent_availabilityset.pb.go | 172 +++++---- 4 files changed, 301 insertions(+), 254 deletions(-) diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index 7fb516e..60be4e2 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -1273,6 +1273,45 @@ func (m *Status) GetValidationStatus() *ValidationStatus { return nil } +type SubResource struct { + Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SubResource) Reset() { *m = SubResource{} } +func (m *SubResource) String() string { return proto.CompactTextString(m) } +func (*SubResource) ProtoMessage() {} +func (*SubResource) Descriptor() ([]byte, []int) { + return fileDescriptor_681f78e46755eb93, []int{8} +} + +func (m *SubResource) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SubResource.Unmarshal(m, b) +} +func (m *SubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SubResource.Marshal(b, m, deterministic) +} +func (m *SubResource) XXX_Merge(src proto.Message) { + xxx_messageInfo_SubResource.Merge(m, src) +} +func (m *SubResource) XXX_Size() int { + return xxx_messageInfo_SubResource.Size(m) +} +func (m *SubResource) XXX_DiscardUnknown() { + xxx_messageInfo_SubResource.DiscardUnknown(m) +} + +var xxx_messageInfo_SubResource proto.InternalMessageInfo + +func (m *SubResource) GetId() string { + if m != nil { + return m.Id + } + return "" +} + type Entity struct { IsPlaceholder bool `protobuf:"varint,1,opt,name=IsPlaceholder,proto3" json:"IsPlaceholder,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1284,7 +1323,7 @@ func (m *Entity) Reset() { *m = Entity{} } func (m *Entity) String() string { return proto.CompactTextString(m) } func (*Entity) ProtoMessage() {} func (*Entity) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{8} + return fileDescriptor_681f78e46755eb93, []int{9} } func (m *Entity) XXX_Unmarshal(b []byte) error { @@ -1324,7 +1363,7 @@ func (m *Tag) Reset() { *m = Tag{} } func (m *Tag) String() string { return proto.CompactTextString(m) } func (*Tag) ProtoMessage() {} func (*Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{9} + return fileDescriptor_681f78e46755eb93, []int{10} } func (m *Tag) XXX_Unmarshal(b []byte) error { @@ -1370,7 +1409,7 @@ func (m *Tags) Reset() { *m = Tags{} } func (m *Tags) String() string { return proto.CompactTextString(m) } func (*Tags) ProtoMessage() {} func (*Tags) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{10} + return fileDescriptor_681f78e46755eb93, []int{11} } func (m *Tags) XXX_Unmarshal(b []byte) error { @@ -1429,6 +1468,7 @@ func init() { proto.RegisterType((*ValidationStatus)(nil), "moc.ValidationStatus") proto.RegisterType((*Version)(nil), "moc.Version") proto.RegisterType((*Status)(nil), "moc.Status") + proto.RegisterType((*SubResource)(nil), "moc.SubResource") proto.RegisterType((*Entity)(nil), "moc.Entity") proto.RegisterType((*Tag)(nil), "moc.Tag") proto.RegisterType((*Tags)(nil), "moc.Tags") @@ -1438,163 +1478,164 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ - // 2520 bytes of a gzipped FileDescriptorProto + // 2540 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x6b, 0x88, 0x64, 0x47, - 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x36, 0x8f, 0xcd, 0x24, - 0x59, 0x96, 0xe6, 0x9f, 0xd9, 0xbf, 0xab, 0x28, 0x2a, 0x2a, 0x77, 0xba, 0xef, 0xcc, 0x34, 0xdb, - 0xd3, 0xdd, 0xdc, 0xbe, 0x33, 0x89, 0x22, 0x34, 0x77, 0x6e, 0xd7, 0xf4, 0x5c, 0xf6, 0xf6, 0xad, - 0xa6, 0x6e, 0x75, 0x2f, 0x9d, 0x4f, 0x06, 0x8c, 0x28, 0x28, 0xa8, 0x18, 0x50, 0x88, 0xa0, 0xa0, - 0x60, 0xc0, 0xf8, 0x00, 0x05, 0x15, 0x1f, 0x09, 0x18, 0xf0, 0x91, 0x80, 0x01, 0x3f, 0xf8, 0x48, - 0x34, 0x41, 0x05, 0x05, 0x05, 0x05, 0x1f, 0x89, 0x0f, 0x90, 0x53, 0xb7, 0xaa, 0xa7, 0xbb, 0xe7, - 0xae, 0x5f, 0x76, 0x6f, 0xfd, 0xce, 0xef, 0x9c, 0x3a, 0x75, 0xce, 0xa9, 0x53, 0xa7, 0x07, 0x6d, - 0xf6, 0x98, 0xdb, 0x76, 0x59, 0xaf, 0xc7, 0x02, 0xf5, 0xdf, 0x4e, 0x9f, 0x33, 0xc1, 0x48, 0xaa, - 0xc7, 0xdc, 0xad, 0x2b, 0x5d, 0xc6, 0xba, 0x3e, 0xbd, 0x2e, 0xa1, 0x93, 0xc1, 0xe9, 0xf5, 0x0e, - 0x0d, 0x5d, 0xee, 0xf5, 0x05, 0xe3, 0x11, 0x6d, 0xfb, 0x08, 0x65, 0x4c, 0xce, 0x19, 0x27, 0x45, - 0x34, 0x7f, 0x48, 0xc3, 0xd0, 0xe9, 0xd2, 0x62, 0xe2, 0x4a, 0xe2, 0xda, 0xa2, 0xa5, 0x97, 0x84, - 0xa0, 0x74, 0x99, 0x75, 0x68, 0x31, 0x79, 0x25, 0x71, 0x2d, 0x63, 0xc9, 0x6f, 0x72, 0x0f, 0x42, - 0x4d, 0x87, 0x3b, 0x3d, 0x2a, 0x28, 0x0f, 0x8b, 0x29, 0xa9, 0x30, 0x81, 0x6c, 0x3f, 0x9e, 0x40, - 0x85, 0x26, 0x67, 0x43, 0x2f, 0xf4, 0x58, 0xd0, 0x12, 0x8e, 0x18, 0x84, 0xe4, 0x2d, 0x68, 0xc9, - 0x1d, 0x70, 0x4e, 0x03, 0x01, 0x40, 0xb4, 0x4d, 0xfe, 0xc6, 0xea, 0x4e, 0x8f, 0xb9, 0x3b, 0x53, - 0x5c, 0x6a, 0x4d, 0x11, 0xc9, 0x5b, 0xd1, 0x72, 0x9f, 0xd3, 0xa1, 0xc7, 0x06, 0x61, 0xa4, 0x99, - 0xbc, 0xb3, 0xe6, 0x34, 0x73, 0xfb, 0xc9, 0x04, 0xca, 0x57, 0xd8, 0xed, 0xc0, 0x67, 0x4e, 0x47, - 0xb9, 0xb1, 0x83, 0x48, 0x9f, 0xb3, 0x2e, 0xa7, 0x61, 0xd8, 0xa4, 0xdc, 0xa5, 0x81, 0xd0, 0x67, - 0x4e, 0x59, 0x31, 0x12, 0xf2, 0xff, 0x68, 0xb5, 0xa3, 0x2d, 0x78, 0x8f, 0xd2, 0x6a, 0xb0, 0x3b, - 0x12, 0x34, 0x94, 0x3e, 0xa4, 0xac, 0x38, 0x11, 0xb9, 0x86, 0x0a, 0xa7, 0x9e, 0x4f, 0x27, 0xd9, - 0x29, 0xc9, 0x9e, 0x85, 0xb7, 0x87, 0x28, 0x7b, 0x40, 0x1d, 0x5f, 0x9c, 0x91, 0x37, 0xc5, 0x06, - 0x07, 0xcb, 0x23, 0x46, 0x94, 0xb8, 0xc8, 0xbc, 0x39, 0x3e, 0x32, 0x17, 0xd5, 0x66, 0xc2, 0xf2, - 0x58, 0x02, 0x15, 0x8e, 0x1d, 0xdf, 0xeb, 0x38, 0x42, 0x47, 0x8e, 0xfc, 0x1f, 0x4a, 0xbb, 0x90, - 0xe6, 0x68, 0xe7, 0xa2, 0x34, 0x31, 0xc3, 0x81, 0xd4, 0x5b, 0x92, 0x05, 0xe5, 0xd2, 0x53, 0xe5, - 0x92, 0x8c, 0xca, 0x45, 0x2d, 0xc9, 0x55, 0x94, 0xe7, 0x14, 0x4a, 0x91, 0x06, 0x91, 0xaa, 0x2a, - 0x8f, 0x19, 0x74, 0xdb, 0x42, 0x78, 0xda, 0xfc, 0x20, 0x24, 0xef, 0x44, 0x85, 0xe1, 0xf4, 0x96, - 0xc5, 0xc4, 0x95, 0xd4, 0xb5, 0xdc, 0x8d, 0xb5, 0x38, 0x77, 0xac, 0x59, 0xf2, 0xf6, 0x7d, 0x68, - 0xfe, 0x98, 0x72, 0xa8, 0x06, 0xb2, 0x81, 0xb2, 0xc1, 0xa0, 0x77, 0x42, 0xb9, 0x2a, 0x67, 0xb5, - 0xda, 0x7e, 0x2e, 0x89, 0xb2, 0x6a, 0xb7, 0xfb, 0x51, 0xf6, 0x4c, 0xc6, 0x48, 0x52, 0x72, 0x37, - 0x72, 0x13, 0x61, 0xb3, 0x94, 0x88, 0x54, 0x64, 0xb9, 0x44, 0x25, 0xe6, 0x05, 0xdd, 0x48, 0x55, - 0x9e, 0x59, 0x7b, 0x35, 0x53, 0xe7, 0x56, 0x0c, 0x9f, 0x5c, 0x43, 0x8b, 0xbe, 0x13, 0x0a, 0x79, - 0xd5, 0x64, 0x3c, 0x72, 0x37, 0x90, 0x54, 0x96, 0x88, 0x75, 0x2e, 0x24, 0x57, 0xd1, 0xfc, 0x30, - 0x3a, 0x42, 0x31, 0x2d, 0x79, 0x4b, 0xd1, 0xd1, 0x23, 0xcc, 0xd2, 0x42, 0xf2, 0x76, 0x94, 0xef, - 0x4c, 0x15, 0x76, 0x31, 0x23, 0xe9, 0xd1, 0xad, 0x98, 0xae, 0x79, 0x6b, 0x86, 0x4a, 0x0c, 0x84, - 0x87, 0x33, 0xb1, 0x2f, 0x66, 0xa5, 0xfa, 0x7a, 0x4c, 0xa0, 0x07, 0xa1, 0x75, 0x81, 0xbe, 0xbd, - 0x83, 0xb2, 0x66, 0x20, 0x3c, 0x31, 0x22, 0x0f, 0xa0, 0xe5, 0x6a, 0xd8, 0xf4, 0x1d, 0x97, 0x9e, - 0x31, 0xbf, 0xa3, 0x02, 0xbe, 0x60, 0x4d, 0x83, 0xdb, 0x0f, 0xa1, 0x94, 0xed, 0x74, 0x09, 0x46, - 0xa9, 0x5b, 0x74, 0xa4, 0x72, 0x02, 0x9f, 0x64, 0x0d, 0x65, 0x86, 0x8e, 0x3f, 0xd0, 0x75, 0x14, - 0x2d, 0xb6, 0x1f, 0x40, 0x69, 0xdb, 0xe9, 0x86, 0xe4, 0x2e, 0x94, 0x16, 0x4e, 0x37, 0x54, 0x65, - 0xb0, 0x20, 0xbd, 0xb3, 0x9d, 0xae, 0x25, 0xd1, 0xd2, 0x7b, 0xd1, 0x62, 0xa3, 0x4f, 0xb9, 0xf4, - 0x8b, 0xcc, 0xa3, 0xd4, 0xbe, 0x69, 0xe3, 0x39, 0xb2, 0x80, 0xd2, 0xcd, 0x46, 0xcb, 0xc6, 0x09, - 0x82, 0x50, 0xb6, 0x62, 0xd6, 0x4c, 0xdb, 0xc4, 0x49, 0xf8, 0x3e, 0x6a, 0x56, 0x0c, 0xdb, 0xc4, - 0x29, 0xf8, 0xae, 0x1e, 0x36, 0x1b, 0x96, 0x8d, 0xd3, 0xf0, 0x6d, 0x3e, 0x22, 0xbf, 0x33, 0x64, - 0x09, 0x2d, 0x1c, 0x1b, 0xb5, 0xaa, 0x64, 0x65, 0x4b, 0xbf, 0x49, 0xa2, 0xfc, 0x74, 0x7b, 0x21, - 0x39, 0x34, 0x7f, 0x54, 0xbf, 0x59, 0x6f, 0x3c, 0x5c, 0xc7, 0x73, 0xc0, 0x2e, 0x5b, 0xa6, 0x61, - 0x57, 0xeb, 0xfb, 0x38, 0x01, 0x22, 0xb9, 0x32, 0x2b, 0x38, 0x49, 0x56, 0xd0, 0x72, 0xb4, 0x68, - 0xef, 0x19, 0xd5, 0x9a, 0x59, 0xc1, 0x29, 0x60, 0x4b, 0x5f, 0x80, 0x9d, 0x06, 0x42, 0xe4, 0x99, - 0x26, 0x64, 0xc0, 0x40, 0x04, 0x55, 0x70, 0x16, 0xd8, 0xd2, 0x5b, 0x60, 0xcf, 0x03, 0x3b, 0xf2, - 0x5d, 0xb3, 0x17, 0xa4, 0x27, 0x12, 0xaa, 0xe0, 0x45, 0x82, 0xd1, 0x52, 0xd3, 0x6a, 0x1c, 0x57, - 0x5b, 0xd5, 0x46, 0x1d, 0x34, 0x10, 0x29, 0xa0, 0xdc, 0x18, 0x31, 0x2b, 0x38, 0x47, 0xd6, 0x10, - 0x1e, 0x03, 0xda, 0xca, 0x12, 0x21, 0x28, 0x5f, 0x31, 0xa7, 0x54, 0x97, 0x23, 0xd7, 0x26, 0x95, - 0xf3, 0x64, 0x03, 0x91, 0x09, 0x48, 0xab, 0x17, 0x22, 0x75, 0x79, 0x8a, 0xa6, 0x59, 0xaf, 0x80, - 0x3a, 0x26, 0xcb, 0x68, 0x31, 0x8a, 0x2d, 0x2c, 0x57, 0xe0, 0x20, 0xd1, 0xd2, 0xac, 0x60, 0x02, - 0xb6, 0xa3, 0x95, 0xb6, 0xb1, 0x5a, 0xda, 0x43, 0xeb, 0x07, 0x5e, 0xf7, 0xcc, 0x18, 0x3a, 0x9e, - 0xef, 0x9c, 0x78, 0xbe, 0x27, 0x46, 0x51, 0xac, 0xd7, 0x10, 0x56, 0xb1, 0x6e, 0x1f, 0x18, 0xed, - 0x96, 0x0d, 0x49, 0x99, 0x83, 0x74, 0xb5, 0x6c, 0x63, 0xb7, 0x66, 0x46, 0x21, 0xd7, 0xfb, 0x26, - 0x4b, 0x5d, 0x94, 0x9b, 0xe8, 0x78, 0xb0, 0x6f, 0xbd, 0x61, 0xeb, 0x54, 0x65, 0x51, 0xb2, 0x71, - 0x33, 0xd2, 0x78, 0xd8, 0xb0, 0xe4, 0x41, 0x93, 0x51, 0xfe, 0xaa, 0x76, 0xb5, 0x6c, 0xd4, 0x70, - 0x0a, 0x44, 0x87, 0xd5, 0x56, 0x2b, 0x4a, 0x8f, 0x4c, 0xd6, 0xbe, 0x65, 0x54, 0x64, 0x66, 0x22, - 0x5b, 0x7b, 0x8d, 0xa3, 0x7a, 0x05, 0x67, 0x4b, 0x4f, 0x24, 0xd0, 0x6a, 0x4c, 0x63, 0x04, 0x7f, - 0xeb, 0x8d, 0x8a, 0xd9, 0x3e, 0xaa, 0x5b, 0xa6, 0x51, 0x3e, 0x90, 0x3e, 0xce, 0x41, 0x88, 0xcc, - 0xba, 0x5d, 0xb5, 0xdf, 0xdd, 0xd6, 0xd6, 0x13, 0xe4, 0x32, 0xda, 0x2c, 0xd7, 0xaa, 0x66, 0xdd, - 0x6e, 0x47, 0xf5, 0xa3, 0x42, 0x7a, 0x64, 0x41, 0x9d, 0x12, 0x94, 0xdf, 0x6b, 0x58, 0x87, 0x86, - 0xdd, 0xae, 0xd6, 0x65, 0x31, 0xe2, 0x14, 0xe4, 0xb7, 0x5a, 0xdf, 0x6b, 0xb4, 0xcf, 0x1d, 0x84, - 0x40, 0x2a, 0xe4, 0xd0, 0xb0, 0xcb, 0x07, 0x38, 0x53, 0xe2, 0x08, 0x95, 0x7d, 0x8f, 0x06, 0xc2, - 0x1e, 0xf5, 0x29, 0xa8, 0x94, 0x1b, 0x75, 0xdb, 0x6a, 0xd4, 0x9a, 0x35, 0xa3, 0xae, 0x3d, 0x79, - 0xc4, 0x36, 0xad, 0xba, 0x51, 0x8b, 0x76, 0xc7, 0x09, 0xb8, 0x2a, 0xe0, 0x33, 0x4e, 0x92, 0x45, - 0x94, 0x31, 0x2a, 0x87, 0xd5, 0x3a, 0x4e, 0x41, 0x06, 0x77, 0x0d, 0xcb, 0x3c, 0x34, 0x6d, 0xa3, - 0x86, 0xd3, 0x60, 0xa9, 0xd6, 0x30, 0x2a, 0xbb, 0x46, 0xcd, 0xa8, 0x97, 0x4d, 0x0b, 0x67, 0x40, - 0xeb, 0x00, 0x2e, 0x58, 0xb6, 0x74, 0x03, 0x11, 0x63, 0x20, 0xce, 0x68, 0x20, 0x3c, 0x57, 0x86, - 0x43, 0xee, 0x9d, 0x47, 0xa8, 0x65, 0xd6, 0xf6, 0x5a, 0xd5, 0x7d, 0x28, 0x9f, 0xe8, 0xa2, 0x18, - 0x6a, 0x95, 0x28, 0x3d, 0x95, 0x41, 0x4b, 0xf2, 0x5a, 0x75, 0x28, 0x97, 0xf4, 0x02, 0xca, 0x19, - 0xc1, 0x48, 0x43, 0x91, 0xa7, 0xc7, 0x1e, 0x17, 0x03, 0xc7, 0x3f, 0x74, 0xdc, 0x33, 0x2f, 0xa0, - 0x38, 0x41, 0xb6, 0xd0, 0xc6, 0x34, 0xd6, 0x72, 0x1d, 0x9f, 0xb6, 0xa8, 0xc0, 0x49, 0xe9, 0x21, - 0x73, 0x3a, 0xbb, 0x8e, 0xef, 0x04, 0x2e, 0xe5, 0x38, 0x35, 0x61, 0xa1, 0x4e, 0xc5, 0x6d, 0xc6, - 0x6f, 0xe1, 0x34, 0x59, 0x45, 0x05, 0x85, 0x1d, 0x38, 0xbc, 0x53, 0xf1, 0xc2, 0x5b, 0x38, 0x03, - 0xaa, 0xfb, 0x8e, 0xef, 0x53, 0x3e, 0xaa, 0xf6, 0x9c, 0x2e, 0xc5, 0x59, 0xb2, 0x89, 0x56, 0xa7, - 0x37, 0x8a, 0x04, 0xf3, 0x32, 0xbf, 0x91, 0xb1, 0x6a, 0x20, 0x28, 0x3f, 0x75, 0x5c, 0x8a, 0x17, - 0xc0, 0xf9, 0x32, 0xe5, 0xc2, 0x3b, 0x85, 0x00, 0x50, 0xbc, 0x08, 0x6d, 0xe8, 0x26, 0x1d, 0x61, - 0x24, 0x2b, 0x95, 0xba, 0x9c, 0x0a, 0x9c, 0x83, 0x08, 0xdc, 0xa4, 0xa3, 0x63, 0x67, 0xe0, 0x0b, - 0xbc, 0x24, 0xef, 0x44, 0x87, 0xca, 0xee, 0x89, 0x97, 0x21, 0x9a, 0x16, 0xf3, 0x29, 0xce, 0x83, - 0xd7, 0xf0, 0x65, 0x84, 0xa1, 0xd7, 0x0d, 0x7a, 0x34, 0x10, 0xb8, 0x00, 0xb1, 0xbc, 0x39, 0x38, - 0xa1, 0x3c, 0xa0, 0x82, 0x86, 0x18, 0xcb, 0x36, 0xe3, 0x0f, 0x42, 0x41, 0x39, 0x5e, 0x91, 0x49, - 0x66, 0x81, 0xe0, 0xcc, 0x6f, 0xfa, 0x4e, 0x40, 0x31, 0x81, 0x34, 0xee, 0x73, 0x36, 0xe8, 0xe3, - 0x55, 0x99, 0x5b, 0xd6, 0xa1, 0x78, 0x0d, 0xf6, 0xab, 0xb1, 0x28, 0x3f, 0x78, 0x1d, 0xce, 0xd1, - 0x12, 0x8c, 0x3b, 0x5d, 0x0a, 0xba, 0x8e, 0x17, 0x50, 0x8e, 0x37, 0xe0, 0x1c, 0x0a, 0xdd, 0xf3, - 0x7c, 0x8a, 0x37, 0x27, 0x68, 0x15, 0x8f, 0x53, 0x57, 0x30, 0x3e, 0xc2, 0x45, 0xd8, 0xb1, 0x35, - 0x38, 0x89, 0x86, 0x48, 0x30, 0x77, 0x09, 0x1c, 0x3a, 0xf6, 0xfa, 0x4d, 0xc6, 0x7c, 0xbc, 0x25, - 0x2f, 0x91, 0xe3, 0xca, 0xc5, 0x65, 0x30, 0x69, 0x0a, 0xb7, 0xa3, 0xdd, 0xbd, 0x0b, 0xce, 0x02, - 0x40, 0x8b, 0xf2, 0x21, 0xe5, 0xf8, 0x6e, 0xd8, 0x62, 0xd7, 0xe1, 0xf4, 0x90, 0x8a, 0xf3, 0x4c, - 0xdf, 0x43, 0xd6, 0xd1, 0x4a, 0x99, 0x53, 0x19, 0x1f, 0xc7, 0x3f, 0x64, 0x81, 0x27, 0x18, 0xc7, - 0xf7, 0x82, 0xe9, 0x1a, 0xeb, 0x76, 0xbd, 0xa0, 0x8b, 0xaf, 0xc0, 0x89, 0x2c, 0xea, 0xb2, 0x21, - 0xe5, 0x23, 0x7c, 0x1f, 0x1c, 0xba, 0x42, 0x4f, 0x06, 0x5d, 0xbc, 0x0d, 0xf7, 0x62, 0x6c, 0xf2, - 0x80, 0x85, 0x02, 0xdf, 0x0f, 0x51, 0x9d, 0xae, 0x51, 0xfc, 0x00, 0xd0, 0xa2, 0x66, 0xa1, 0xed, - 0x3f, 0x08, 0xe5, 0x31, 0xd5, 0x83, 0xa8, 0xc0, 0x57, 0x4b, 0xdf, 0x22, 0x68, 0x53, 0x17, 0xa6, - 0xe1, 0xba, 0x34, 0x0c, 0xcf, 0xdf, 0x9b, 0x02, 0xca, 0x1d, 0x05, 0x61, 0x9f, 0xba, 0xde, 0xa9, - 0x47, 0x3b, 0x78, 0x8e, 0x14, 0xd1, 0xda, 0xf4, 0x46, 0xed, 0x1a, 0xeb, 0x7a, 0x01, 0xee, 0x90, - 0x4d, 0x44, 0x26, 0x8a, 0xa4, 0x5d, 0xe6, 0x14, 0x6a, 0xe5, 0x07, 0x89, 0x59, 0xc1, 0x51, 0xbf, - 0x03, 0x82, 0x1f, 0x26, 0xc8, 0x1a, 0x2a, 0x4c, 0x0a, 0xf6, 0xa9, 0xc0, 0x3f, 0xba, 0x40, 0xaf, - 0x50, 0x9f, 0x0a, 0x8a, 0x7f, 0x9c, 0x20, 0xeb, 0x08, 0x4f, 0x0a, 0x5a, 0x5e, 0x37, 0xc0, 0xcf, - 0x27, 0xc8, 0x06, 0x5a, 0x99, 0x84, 0x2d, 0x1a, 0xd0, 0xdb, 0xf8, 0x05, 0x69, 0x5d, 0x17, 0xa0, - 0x76, 0xe6, 0x8b, 0xc9, 0x29, 0x54, 0x79, 0xf2, 0xf4, 0x34, 0x6a, 0xd1, 0x21, 0xbb, 0x45, 0xf1, - 0x97, 0x66, 0x50, 0x06, 0x3d, 0x10, 0x7f, 0x39, 0x49, 0xee, 0x45, 0x5b, 0x1a, 0x8d, 0x39, 0xef, - 0x47, 0x53, 0x77, 0x22, 0xa8, 0xdd, 0x3e, 0x96, 0x22, 0xf7, 0xa0, 0x4b, 0x71, 0x84, 0xc8, 0xf3, - 0x8f, 0xa7, 0x48, 0x01, 0xa1, 0x9b, 0x74, 0xec, 0xf4, 0x5f, 0xc7, 0x80, 0xb2, 0xf0, 0x37, 0xe8, - 0x95, 0x39, 0x00, 0xcc, 0xc0, 0xe5, 0xa3, 0xbe, 0xc0, 0x7f, 0x1f, 0x23, 0x15, 0x1a, 0x21, 0xff, - 0x18, 0x23, 0x0f, 0x73, 0xa7, 0x0f, 0x77, 0xf5, 0x35, 0x68, 0x18, 0xcb, 0xd2, 0x4c, 0x70, 0x5b, - 0x61, 0xaf, 0x43, 0x1f, 0x84, 0x4b, 0x1b, 0x05, 0xf3, 0x9f, 0xe3, 0x9d, 0x8e, 0x29, 0xf7, 0x4e, - 0x47, 0xf8, 0x5f, 0x29, 0xb2, 0x85, 0xd6, 0xa7, 0x3b, 0x85, 0x76, 0xeb, 0x67, 0xe9, 0x18, 0x99, - 0xf2, 0xf0, 0xe7, 0x71, 0x32, 0x95, 0xc8, 0x5f, 0xa4, 0xc9, 0x5d, 0x68, 0x73, 0x46, 0xa6, 0x9e, - 0x1a, 0x8a, 0x7f, 0x99, 0x26, 0x97, 0xd0, 0xda, 0x8c, 0xb4, 0x25, 0x1c, 0x2e, 0xf0, 0x4b, 0x69, - 0x52, 0x9c, 0x6d, 0x5b, 0xed, 0x96, 0x60, 0x7d, 0xfc, 0x72, 0x9c, 0x92, 0x45, 0x43, 0x2a, 0xf0, - 0xaf, 0xd2, 0xe4, 0x2a, 0xba, 0xef, 0x82, 0xa8, 0xef, 0x78, 0xbc, 0xbd, 0x3f, 0xa0, 0xa1, 0x68, - 0x1b, 0x5d, 0xe8, 0x41, 0xbf, 0x8e, 0x33, 0xd1, 0x74, 0x06, 0x21, 0xc5, 0xaf, 0xc4, 0xee, 0xeb, - 0x0c, 0x29, 0x7e, 0x15, 0xfa, 0x6d, 0x5e, 0x5d, 0x7d, 0x1d, 0x97, 0x6f, 0x67, 0x26, 0x41, 0x15, - 0x90, 0xef, 0x64, 0xc0, 0x86, 0x06, 0xa1, 0x8f, 0xeb, 0x86, 0xf1, 0xdd, 0x0c, 0x84, 0x6a, 0x4c, - 0x97, 0x03, 0xac, 0x96, 0x7d, 0x2f, 0x23, 0x2f, 0x83, 0x92, 0xed, 0x53, 0xa1, 0x05, 0xcf, 0x64, - 0xe4, 0x65, 0x38, 0x17, 0x40, 0x0f, 0x0c, 0xf1, 0xb3, 0x19, 0xb8, 0x0c, 0xb2, 0x4b, 0xb4, 0xe5, - 0xbf, 0xaa, 0x09, 0x7d, 0x26, 0x0b, 0xf4, 0x08, 0x6f, 0x09, 0xc7, 0xbd, 0x65, 0x73, 0xe8, 0xeb, - 0x9f, 0xcd, 0xc2, 0x99, 0xa1, 0x93, 0xf4, 0x74, 0x27, 0xd1, 0x87, 0x78, 0xff, 0xfc, 0x45, 0x91, - 0x3a, 0xca, 0xe3, 0xf3, 0x90, 0xbf, 0xb1, 0x68, 0xa6, 0x2a, 0x7e, 0x1f, 0x2f, 0x55, 0xba, 0x7f, - 0x98, 0x97, 0x61, 0x98, 0xe8, 0xe6, 0x5a, 0xef, 0xf9, 0x85, 0x0b, 0x12, 0xa5, 0xf3, 0xc2, 0x02, - 0x04, 0x61, 0xa2, 0xc7, 0x6a, 0x95, 0xaf, 0x2c, 0xce, 0x0a, 0x94, 0xc6, 0x57, 0x17, 0x21, 0x0c, - 0xe7, 0x4d, 0x58, 0x2b, 0x7c, 0x02, 0xcd, 0xe0, 0x8a, 0xff, 0x04, 0x82, 0xbd, 0x27, 0x5f, 0x48, - 0xad, 0xf1, 0xda, 0x45, 0x89, 0xd2, 0x79, 0x1d, 0x91, 0x15, 0xb4, 0x24, 0x5f, 0x21, 0x4d, 0x7e, - 0x29, 0x77, 0x0e, 0x29, 0xd6, 0xcb, 0x30, 0x92, 0x16, 0xf4, 0xa3, 0xa8, 0x89, 0xcf, 0x2c, 0x4d, - 0xa1, 0x8a, 0xfb, 0xec, 0x12, 0x78, 0x77, 0xfe, 0x0c, 0x6a, 0xf6, 0xe7, 0x96, 0x67, 0x70, 0xc5, - 0xff, 0xfc, 0x32, 0xf8, 0x36, 0x39, 0x12, 0x68, 0x8d, 0x0f, 0xe6, 0x2f, 0x48, 0x94, 0xce, 0x87, - 0xf2, 0xb0, 0xb3, 0x7e, 0x26, 0x35, 0xff, 0x8f, 0xd3, 0xa8, 0xe2, 0xfe, 0x29, 0x0f, 0x75, 0x7c, - 0xe8, 0xb8, 0x7d, 0xc6, 0x7c, 0x4d, 0xfd, 0x49, 0x61, 0x12, 0x54, 0xcc, 0x17, 0x0b, 0x90, 0xf3, - 0xd9, 0xb1, 0x41, 0xab, 0x7c, 0x0d, 0xc7, 0x4a, 0x95, 0xee, 0xd7, 0x31, 0xf4, 0x29, 0x28, 0x5f, - 0xcd, 0xff, 0xe4, 0xca, 0x18, 0x51, 0x9c, 0x4f, 0xad, 0x80, 0x7f, 0xfa, 0x29, 0xd4, 0xbc, 0x7f, - 0x4f, 0xa3, 0x8a, 0xfb, 0x1f, 0xa9, 0x0d, 0x03, 0x86, 0xe6, 0xbd, 0x42, 0xc6, 0x88, 0xe2, 0xbc, - 0x4a, 0xe0, 0xca, 0x4d, 0x0f, 0x21, 0x9a, 0xfd, 0xfd, 0xd5, 0x18, 0x99, 0xd2, 0x7b, 0x6e, 0x15, - 0x3a, 0x68, 0x34, 0xee, 0x68, 0xfe, 0x17, 0xd6, 0x26, 0x30, 0xc5, 0x7b, 0x6a, 0x0d, 0x4e, 0x3c, - 0x3b, 0x7e, 0x68, 0x8d, 0x0f, 0xaf, 0xc7, 0x4a, 0x95, 0xee, 0x47, 0xd6, 0x21, 0x77, 0x93, 0xd3, - 0x87, 0xd6, 0xfb, 0xf3, 0x45, 0x89, 0xd2, 0xf9, 0x8b, 0x94, 0x9c, 0x4f, 0xeb, 0xe7, 0xdd, 0xf4, - 0xa7, 0x1b, 0x90, 0x2e, 0x35, 0xb9, 0x68, 0x43, 0xdf, 0xd8, 0x9c, 0x04, 0x95, 0x8d, 0x6f, 0x6e, - 0x92, 0xcb, 0xe3, 0xe1, 0x53, 0x8f, 0x8e, 0x5a, 0xe3, 0xc9, 0x62, 0x9c, 0x50, 0x69, 0x7e, 0xba, - 0x08, 0x0f, 0x5e, 0xcc, 0x34, 0xa9, 0xb5, 0xdf, 0x77, 0xe9, 0x4e, 0x04, 0x65, 0xe1, 0xb1, 0x4b, - 0x64, 0x1b, 0xdd, 0x1d, 0x3f, 0xf8, 0x6a, 0x23, 0xbf, 0xfd, 0x5f, 0x1c, 0x65, 0xe7, 0x77, 0x97, - 0x26, 0x5e, 0x1d, 0x55, 0x70, 0xe3, 0x31, 0x64, 0x2b, 0x46, 0xa6, 0x27, 0x91, 0x2d, 0x38, 0xde, - 0xcc, 0x5c, 0x34, 0x1e, 0x19, 0x2e, 0xc7, 0x09, 0xd5, 0x5b, 0xf6, 0xf4, 0xe5, 0x92, 0x85, 0x72, - 0xf2, 0x30, 0x2d, 0x36, 0xe0, 0x2e, 0x8d, 0x7e, 0x47, 0x94, 0x8d, 0x5a, 0xbb, 0xd5, 0x38, 0xb2, - 0xca, 0xf0, 0x8b, 0x04, 0x7e, 0x27, 0xec, 0xb5, 0xf4, 0x3a, 0x01, 0x13, 0xd5, 0x81, 0x6d, 0x37, - 0x35, 0x20, 0x07, 0xfb, 0x72, 0xad, 0x51, 0x37, 0x35, 0x92, 0x2a, 0xed, 0x22, 0x7c, 0x30, 0xea, - 0x53, 0x7e, 0xbc, 0x4f, 0x03, 0x3d, 0x88, 0x6d, 0x20, 0x32, 0x8b, 0x1d, 0xdf, 0xc0, 0x73, 0xb1, - 0xf8, 0x1b, 0x70, 0xa2, 0xf4, 0x2e, 0x94, 0x87, 0x2c, 0xc1, 0x9c, 0xbb, 0xc7, 0x78, 0xcf, 0x11, - 0xf2, 0xf7, 0xed, 0x14, 0x72, 0x7c, 0x50, 0x79, 0x04, 0xcf, 0xc1, 0x28, 0x7a, 0x01, 0xc7, 0x89, - 0xd2, 0x43, 0xf0, 0x5e, 0xb1, 0x41, 0xa7, 0x1a, 0x78, 0xa2, 0xe2, 0x08, 0x47, 0x1d, 0x30, 0x87, - 0xe6, 0xeb, 0x4c, 0x0a, 0xf0, 0x9c, 0xfc, 0x3d, 0xf5, 0xe8, 0x80, 0x53, 0x9c, 0x78, 0xdb, 0x3b, - 0xd0, 0x62, 0x48, 0x83, 0xd0, 0x13, 0xde, 0x90, 0x92, 0xbb, 0x77, 0xa2, 0xbf, 0xc9, 0xee, 0xe8, - 0xbf, 0xc9, 0xee, 0xec, 0x79, 0xd4, 0xef, 0x34, 0x64, 0xd9, 0x86, 0xc5, 0x17, 0x3f, 0x90, 0x92, - 0x7f, 0x3d, 0x39, 0xd7, 0xd8, 0x7d, 0xf0, 0x3d, 0xf7, 0x77, 0x3d, 0x71, 0x36, 0x38, 0xd9, 0x71, - 0x59, 0xef, 0x7a, 0xcf, 0x73, 0x39, 0x0b, 0xd9, 0xa9, 0xb8, 0xde, 0x63, 0xee, 0x75, 0xde, 0x77, - 0xaf, 0x47, 0x7f, 0xf6, 0x3d, 0xc9, 0x4a, 0x83, 0x6f, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x90, 0x85, 0x10, 0x5f, 0x12, 0x16, 0x00, 0x00, + 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x36, 0x9b, 0x6c, 0x26, + 0xc9, 0xb2, 0x34, 0xff, 0xcc, 0xfe, 0x5d, 0x45, 0x51, 0x51, 0xb9, 0xd3, 0x7d, 0x67, 0xa6, 0xd9, + 0x9e, 0xee, 0xe6, 0xf6, 0x9d, 0x49, 0x14, 0xa1, 0xb9, 0x73, 0xbb, 0xa6, 0xe7, 0xb2, 0xb7, 0x6f, + 0x35, 0x75, 0xab, 0x7b, 0xe9, 0x7c, 0x32, 0x60, 0x44, 0x41, 0x41, 0xc5, 0x80, 0x42, 0x04, 0x05, + 0x05, 0x03, 0xc6, 0x07, 0x28, 0xa8, 0xf8, 0x48, 0xc0, 0x80, 0x8f, 0x04, 0x0c, 0xf8, 0xc1, 0x47, + 0xa2, 0x09, 0x2a, 0x28, 0x28, 0x28, 0xf8, 0x48, 0x7c, 0x80, 0x9c, 0xba, 0x55, 0x3d, 0xdd, 0x3d, + 0x37, 0x7e, 0xd9, 0xbd, 0xf5, 0x3b, 0xbf, 0x73, 0xea, 0xd4, 0x39, 0xa7, 0x4e, 0x9d, 0x69, 0xb4, + 0xd9, 0x63, 0x6e, 0xdb, 0x65, 0xbd, 0x1e, 0x0b, 0xd4, 0x7f, 0x3b, 0x7d, 0xce, 0x04, 0x23, 0xa9, + 0x1e, 0x73, 0xb7, 0xae, 0x76, 0x19, 0xeb, 0xfa, 0xf4, 0x86, 0x84, 0x4e, 0x06, 0xa7, 0x37, 0x3a, + 0x34, 0x74, 0xb9, 0xd7, 0x17, 0x8c, 0x47, 0xb4, 0xed, 0x23, 0x94, 0x31, 0x39, 0x67, 0x9c, 0x14, + 0xd1, 0xfc, 0x21, 0x0d, 0x43, 0xa7, 0x4b, 0x8b, 0x89, 0xab, 0x89, 0xeb, 0x8b, 0x96, 0x5e, 0x12, + 0x82, 0xd2, 0x65, 0xd6, 0xa1, 0xc5, 0xe4, 0xd5, 0xc4, 0xf5, 0x8c, 0x25, 0xbf, 0xc9, 0xdd, 0x08, + 0x35, 0x1d, 0xee, 0xf4, 0xa8, 0xa0, 0x3c, 0x2c, 0xa6, 0xa4, 0xc2, 0x04, 0xb2, 0xfd, 0x58, 0x02, + 0x15, 0x9a, 0x9c, 0x0d, 0xbd, 0xd0, 0x63, 0x41, 0x4b, 0x38, 0x62, 0x10, 0x92, 0xb7, 0xa0, 0x25, + 0x77, 0xc0, 0x39, 0x0d, 0x04, 0x00, 0xd1, 0x36, 0xf9, 0x9b, 0xab, 0x3b, 0x3d, 0xe6, 0xee, 0x4c, + 0x71, 0xa9, 0x35, 0x45, 0x24, 0x6f, 0x45, 0xcb, 0x7d, 0x4e, 0x87, 0x1e, 0x1b, 0x84, 0x91, 0x66, + 0xf2, 0xf5, 0x35, 0xa7, 0x99, 0xdb, 0x4f, 0x24, 0x50, 0xbe, 0xc2, 0xee, 0x04, 0x3e, 0x73, 0x3a, + 0xca, 0x8d, 0x1d, 0x44, 0xfa, 0x9c, 0x75, 0x39, 0x0d, 0xc3, 0x26, 0xe5, 0x2e, 0x0d, 0x84, 0x3e, + 0x73, 0xca, 0x8a, 0x91, 0x90, 0xff, 0x47, 0xab, 0x1d, 0x6d, 0xc1, 0x7b, 0x84, 0x56, 0x83, 0xdd, + 0x91, 0xa0, 0xa1, 0xf4, 0x21, 0x65, 0xc5, 0x89, 0xc8, 0x75, 0x54, 0x38, 0xf5, 0x7c, 0x3a, 0xc9, + 0x4e, 0x49, 0xf6, 0x2c, 0xbc, 0x3d, 0x44, 0xd9, 0x03, 0xea, 0xf8, 0xe2, 0x8c, 0xbc, 0x29, 0x36, + 0x38, 0x58, 0x1e, 0x31, 0xa2, 0xc4, 0x45, 0xe6, 0xcd, 0xf1, 0x91, 0xb9, 0xa8, 0x36, 0x13, 0x96, + 0x47, 0x13, 0xa8, 0x70, 0xec, 0xf8, 0x5e, 0xc7, 0x11, 0x3a, 0x72, 0xe4, 0xff, 0x50, 0xda, 0x85, + 0x34, 0x47, 0x3b, 0x17, 0xa5, 0x89, 0x19, 0x0e, 0xa4, 0xde, 0x92, 0x2c, 0x28, 0x97, 0x9e, 0x2a, + 0x97, 0x64, 0x54, 0x2e, 0x6a, 0x49, 0xae, 0xa1, 0x3c, 0xa7, 0x50, 0x8a, 0x34, 0x88, 0x54, 0x55, + 0x79, 0xcc, 0xa0, 0xdb, 0x16, 0xc2, 0xd3, 0xe6, 0x07, 0x21, 0x79, 0x27, 0x2a, 0x0c, 0xa7, 0xb7, + 0x2c, 0x26, 0xae, 0xa6, 0xae, 0xe7, 0x6e, 0xae, 0xc5, 0xb9, 0x63, 0xcd, 0x92, 0xb7, 0xef, 0x45, + 0xf3, 0xc7, 0x94, 0x43, 0x35, 0x90, 0x0d, 0x94, 0x0d, 0x06, 0xbd, 0x13, 0xca, 0x55, 0x39, 0xab, + 0xd5, 0xf6, 0xb3, 0x49, 0x94, 0x55, 0xbb, 0xdd, 0x87, 0xb2, 0x67, 0x32, 0x46, 0x92, 0x92, 0xbb, + 0x99, 0x9b, 0x08, 0x9b, 0xa5, 0x44, 0xa4, 0x22, 0xcb, 0x25, 0x2a, 0x31, 0x2f, 0xe8, 0x46, 0xaa, + 0xf2, 0xcc, 0xda, 0xab, 0x99, 0x3a, 0xb7, 0x62, 0xf8, 0xe4, 0x3a, 0x5a, 0xf4, 0x9d, 0x50, 0xc8, + 0xab, 0x26, 0xe3, 0x91, 0xbb, 0x89, 0xa4, 0xb2, 0x44, 0xac, 0x73, 0x21, 0xb9, 0x86, 0xe6, 0x87, + 0xd1, 0x11, 0x8a, 0x69, 0xc9, 0x5b, 0x8a, 0x8e, 0x1e, 0x61, 0x96, 0x16, 0x92, 0xb7, 0xa3, 0x7c, + 0x67, 0xaa, 0xb0, 0x8b, 0x19, 0x49, 0x8f, 0x6e, 0xc5, 0x74, 0xcd, 0x5b, 0x33, 0x54, 0x62, 0x20, + 0x3c, 0x9c, 0x89, 0x7d, 0x31, 0x2b, 0xd5, 0xd7, 0x63, 0x02, 0x3d, 0x08, 0xad, 0x0b, 0xf4, 0xed, + 0x2b, 0x28, 0xd7, 0x1a, 0x9c, 0x58, 0x34, 0x64, 0x03, 0xee, 0x52, 0x92, 0x47, 0x49, 0xaf, 0xa3, + 0x42, 0x9d, 0xf4, 0x3a, 0xdb, 0x3b, 0x28, 0x6b, 0x06, 0xc2, 0x13, 0x23, 0x72, 0x3f, 0x5a, 0xae, + 0x86, 0x4d, 0xdf, 0x71, 0xe9, 0x19, 0xf3, 0x3b, 0x2a, 0x1f, 0x0b, 0xd6, 0x34, 0xb8, 0xfd, 0x20, + 0x4a, 0xd9, 0x4e, 0x97, 0x60, 0x94, 0xba, 0x4d, 0x47, 0xca, 0x0e, 0x7c, 0x92, 0x35, 0x94, 0x19, + 0x3a, 0xfe, 0x40, 0x97, 0x59, 0xb4, 0xd8, 0xbe, 0x1f, 0xa5, 0x6d, 0xa7, 0x1b, 0x92, 0xbb, 0x50, + 0x5a, 0x38, 0xdd, 0x50, 0x55, 0xc9, 0x82, 0x74, 0xde, 0x76, 0xba, 0x96, 0x44, 0x4b, 0xef, 0x45, + 0x8b, 0x8d, 0x3e, 0xe5, 0xd2, 0x6d, 0x32, 0x8f, 0x52, 0xfb, 0xa6, 0x8d, 0xe7, 0xc8, 0x02, 0x4a, + 0x37, 0x1b, 0x2d, 0x1b, 0x27, 0x08, 0x42, 0xd9, 0x8a, 0x59, 0x33, 0x6d, 0x13, 0x27, 0xe1, 0xfb, + 0xa8, 0x59, 0x31, 0x6c, 0x13, 0xa7, 0xe0, 0xbb, 0x7a, 0xd8, 0x6c, 0x58, 0x36, 0x4e, 0xc3, 0xb7, + 0xf9, 0xb0, 0xfc, 0xce, 0x90, 0x25, 0xb4, 0x70, 0x6c, 0xd4, 0xaa, 0x92, 0x95, 0x2d, 0xfd, 0x26, + 0x89, 0xf2, 0xd3, 0xdd, 0x87, 0xe4, 0xd0, 0xfc, 0x51, 0xfd, 0x56, 0xbd, 0xf1, 0x50, 0x1d, 0xcf, + 0x01, 0xbb, 0x6c, 0x99, 0x86, 0x5d, 0xad, 0xef, 0xe3, 0x04, 0x88, 0xe4, 0xca, 0xac, 0xe0, 0x24, + 0x59, 0x41, 0xcb, 0xd1, 0xa2, 0xbd, 0x67, 0x54, 0x6b, 0x66, 0x05, 0xa7, 0x80, 0x2d, 0x7d, 0x01, + 0x76, 0x1a, 0x08, 0x91, 0x67, 0x9a, 0x90, 0x01, 0x03, 0x11, 0x54, 0xc1, 0x59, 0x60, 0x4b, 0x6f, + 0x81, 0x3d, 0x0f, 0xec, 0xc8, 0x77, 0xcd, 0x5e, 0x90, 0x9e, 0x48, 0xa8, 0x82, 0x17, 0x09, 0x46, + 0x4b, 0x4d, 0xab, 0x71, 0x5c, 0x6d, 0x55, 0x1b, 0x75, 0xd0, 0x40, 0xa4, 0x80, 0x72, 0x63, 0xc4, + 0xac, 0xe0, 0x1c, 0x59, 0x43, 0x78, 0x0c, 0x68, 0x2b, 0x4b, 0x84, 0xa0, 0x7c, 0xc5, 0x9c, 0x52, + 0x5d, 0x8e, 0x5c, 0x9b, 0x54, 0xce, 0x93, 0x0d, 0x44, 0x26, 0x20, 0xad, 0x5e, 0x88, 0xd4, 0xe5, + 0x29, 0x9a, 0x66, 0xbd, 0x02, 0xea, 0x98, 0x2c, 0xa3, 0xc5, 0x28, 0xb6, 0xb0, 0x5c, 0x81, 0x83, + 0x44, 0x4b, 0xb3, 0x82, 0x09, 0xd8, 0x8e, 0x56, 0xda, 0xc6, 0x6a, 0x69, 0x0f, 0xad, 0x1f, 0x78, + 0xdd, 0x33, 0x63, 0xe8, 0x78, 0xbe, 0x73, 0xe2, 0xf9, 0x9e, 0x18, 0x45, 0xb1, 0x5e, 0x43, 0x58, + 0xc5, 0xba, 0x7d, 0x60, 0xb4, 0x5b, 0x36, 0x24, 0x65, 0x0e, 0xd2, 0xd5, 0xb2, 0x8d, 0xdd, 0x9a, + 0x19, 0x85, 0x5c, 0xef, 0x9b, 0x2c, 0x75, 0x51, 0x6e, 0xa2, 0x21, 0xc2, 0xbe, 0xf5, 0x86, 0xad, + 0x53, 0x95, 0x45, 0xc9, 0xc6, 0xad, 0x48, 0xe3, 0x21, 0xc3, 0x92, 0x07, 0x4d, 0x46, 0xf9, 0xab, + 0xda, 0xd5, 0xb2, 0x51, 0xc3, 0x29, 0x10, 0x1d, 0x56, 0x5b, 0xad, 0x28, 0x3d, 0x32, 0x59, 0xfb, + 0x96, 0x51, 0x91, 0x99, 0x89, 0x6c, 0xed, 0x35, 0x8e, 0xea, 0x15, 0x9c, 0x2d, 0x3d, 0x9e, 0x40, + 0xab, 0x31, 0x7d, 0x13, 0xfc, 0xad, 0x37, 0x2a, 0x66, 0xfb, 0xa8, 0x6e, 0x99, 0x46, 0xf9, 0x40, + 0xfa, 0x38, 0x07, 0x21, 0x32, 0xeb, 0x76, 0xd5, 0x7e, 0x77, 0x5b, 0x5b, 0x4f, 0x90, 0xcb, 0x68, + 0xb3, 0x5c, 0xab, 0x9a, 0x75, 0xbb, 0x1d, 0xd5, 0x8f, 0x0a, 0xe9, 0x91, 0x05, 0x75, 0x4a, 0x50, + 0x7e, 0xaf, 0x61, 0x1d, 0x1a, 0x76, 0xbb, 0x5a, 0x97, 0xc5, 0x88, 0x53, 0x90, 0xdf, 0x6a, 0x7d, + 0xaf, 0xd1, 0x3e, 0x77, 0x10, 0x02, 0xa9, 0x90, 0x43, 0xc3, 0x2e, 0x1f, 0xe0, 0x4c, 0x89, 0x23, + 0x54, 0xf6, 0x3d, 0x1a, 0x08, 0x7b, 0xd4, 0xa7, 0xa0, 0x52, 0x6e, 0xd4, 0x6d, 0xab, 0x51, 0x6b, + 0xd6, 0x8c, 0xba, 0xf6, 0xe4, 0x61, 0xdb, 0xb4, 0xea, 0x46, 0x2d, 0xda, 0x1d, 0x27, 0xe0, 0xaa, + 0x80, 0xcf, 0x38, 0x49, 0x16, 0x51, 0xc6, 0xa8, 0x1c, 0x56, 0xeb, 0x38, 0x05, 0x19, 0xdc, 0x35, + 0x2c, 0xf3, 0xd0, 0xb4, 0x8d, 0x1a, 0x4e, 0x83, 0xa5, 0x5a, 0xc3, 0xa8, 0xec, 0x1a, 0x35, 0xa3, + 0x5e, 0x36, 0x2d, 0x9c, 0x01, 0xad, 0x03, 0xb8, 0x60, 0xd9, 0xd2, 0x4d, 0x44, 0x8c, 0x81, 0x38, + 0xa3, 0x81, 0xf0, 0x5c, 0x19, 0x0e, 0xb9, 0x77, 0x1e, 0xa1, 0x96, 0x59, 0xdb, 0x6b, 0x55, 0xf7, + 0xa1, 0x7c, 0xa2, 0x8b, 0x62, 0xa8, 0x55, 0xa2, 0xf4, 0x64, 0x06, 0x2d, 0xc9, 0x6b, 0xd5, 0xa1, + 0x5c, 0xd2, 0x0b, 0x28, 0x67, 0x04, 0x23, 0x0d, 0x45, 0x9e, 0x1e, 0x7b, 0x5c, 0x0c, 0x1c, 0xff, + 0xd0, 0x71, 0xcf, 0xbc, 0x80, 0xe2, 0x04, 0xd9, 0x42, 0x1b, 0xd3, 0x58, 0xcb, 0x75, 0x7c, 0xda, + 0xa2, 0x02, 0x27, 0xa5, 0x87, 0xcc, 0xe9, 0xec, 0x3a, 0xbe, 0x13, 0xb8, 0x94, 0xe3, 0xd4, 0x84, + 0x85, 0x3a, 0x15, 0x77, 0x18, 0xbf, 0x8d, 0xd3, 0x64, 0x15, 0x15, 0x14, 0x76, 0xe0, 0xf0, 0x4e, + 0xc5, 0x0b, 0x6f, 0xe3, 0x0c, 0xa8, 0xee, 0x3b, 0xbe, 0x4f, 0xf9, 0xa8, 0xda, 0x73, 0xba, 0x14, + 0x67, 0xc9, 0x26, 0x5a, 0x9d, 0xde, 0x28, 0x12, 0xcc, 0xcb, 0xfc, 0x46, 0xc6, 0xaa, 0x81, 0xa0, + 0xfc, 0xd4, 0x71, 0x29, 0x5e, 0x00, 0xe7, 0xcb, 0x94, 0x0b, 0xef, 0x14, 0x02, 0x40, 0xf1, 0x22, + 0xb4, 0xa1, 0x5b, 0x74, 0x84, 0x91, 0xac, 0x54, 0xea, 0x72, 0x2a, 0x70, 0x0e, 0x22, 0x70, 0x8b, + 0x8e, 0x8e, 0x9d, 0x81, 0x2f, 0xf0, 0x92, 0xbc, 0x13, 0x1d, 0x2a, 0xbb, 0x27, 0x5e, 0x86, 0x68, + 0x5a, 0xcc, 0xa7, 0x38, 0x0f, 0x5e, 0xc3, 0x97, 0x11, 0x86, 0x5e, 0x37, 0xe8, 0xd1, 0x40, 0xe0, + 0x02, 0xc4, 0xf2, 0xd6, 0xe0, 0x84, 0xf2, 0x80, 0x0a, 0x1a, 0x62, 0x2c, 0xdb, 0x8c, 0x3f, 0x08, + 0x05, 0xe5, 0x78, 0x45, 0x26, 0x99, 0x05, 0x82, 0x33, 0xbf, 0xe9, 0x3b, 0x01, 0xc5, 0x04, 0xd2, + 0xb8, 0xcf, 0xd9, 0xa0, 0x8f, 0x57, 0x65, 0x6e, 0x59, 0x87, 0xe2, 0x35, 0xd8, 0xaf, 0xc6, 0xa2, + 0xfc, 0xe0, 0x75, 0x38, 0x47, 0x4b, 0x30, 0xee, 0x74, 0x29, 0xe8, 0x3a, 0x5e, 0x40, 0x39, 0xde, + 0x80, 0x73, 0x28, 0x74, 0xcf, 0xf3, 0x29, 0xde, 0x9c, 0xa0, 0x55, 0x3c, 0x4e, 0x5d, 0xc1, 0xf8, + 0x08, 0x17, 0x61, 0xc7, 0xd6, 0xe0, 0x24, 0x9a, 0x31, 0xc1, 0xdc, 0x25, 0x70, 0xe8, 0xd8, 0xeb, + 0x37, 0x19, 0xf3, 0xf1, 0x96, 0xbc, 0x44, 0x8e, 0x2b, 0x17, 0x97, 0xc1, 0xa4, 0x29, 0xdc, 0x8e, + 0x76, 0xf7, 0x2e, 0x38, 0x0b, 0x00, 0x2d, 0xca, 0x87, 0x94, 0xe3, 0x2b, 0xb0, 0xc5, 0xae, 0xc3, + 0xe9, 0x21, 0x15, 0xe7, 0x99, 0xbe, 0x9b, 0xac, 0xa3, 0x95, 0x32, 0xa7, 0x32, 0x3e, 0x8e, 0x7f, + 0xc8, 0x02, 0x4f, 0x30, 0x8e, 0xef, 0x01, 0xd3, 0x35, 0xd6, 0xed, 0x7a, 0x41, 0x17, 0x5f, 0x85, + 0x13, 0x59, 0xd4, 0x65, 0x43, 0xca, 0x47, 0xf8, 0x5e, 0x38, 0x74, 0x85, 0x9e, 0x0c, 0xba, 0x78, + 0x1b, 0xee, 0xc5, 0xd8, 0xe4, 0x01, 0x0b, 0x05, 0xbe, 0x0f, 0xa2, 0x3a, 0x5d, 0xa3, 0xf8, 0x7e, + 0xa0, 0x45, 0xcd, 0x42, 0xdb, 0x7f, 0x00, 0xca, 0x63, 0xaa, 0x07, 0x51, 0x81, 0xaf, 0x95, 0xbe, + 0x45, 0xd0, 0xa6, 0x2e, 0x4c, 0xc3, 0x75, 0x69, 0x18, 0x9e, 0xbf, 0x37, 0x05, 0x94, 0x3b, 0x0a, + 0xc2, 0x3e, 0x75, 0xbd, 0x53, 0x8f, 0x76, 0xf0, 0x1c, 0x29, 0xa2, 0xb5, 0xe9, 0x8d, 0xda, 0x35, + 0xd6, 0xf5, 0x02, 0xdc, 0x21, 0x9b, 0x88, 0x4c, 0x14, 0x49, 0xbb, 0xcc, 0x29, 0xd4, 0xca, 0x0f, + 0x12, 0xb3, 0x82, 0xa3, 0x7e, 0x07, 0x04, 0x3f, 0x4c, 0x90, 0x35, 0x54, 0x98, 0x14, 0xec, 0x53, + 0x81, 0x7f, 0x74, 0x81, 0x5e, 0xa1, 0x3e, 0x15, 0x14, 0xff, 0x38, 0x41, 0xd6, 0x11, 0x9e, 0x14, + 0xb4, 0xbc, 0x6e, 0x80, 0x9f, 0x4b, 0x90, 0x0d, 0xb4, 0x32, 0x09, 0x5b, 0x34, 0xa0, 0x77, 0xf0, + 0xf3, 0xd2, 0xba, 0x2e, 0x40, 0xed, 0xcc, 0x17, 0x93, 0x53, 0xa8, 0xf2, 0xe4, 0xa9, 0x69, 0xd4, + 0xa2, 0x43, 0x76, 0x9b, 0xe2, 0x2f, 0xcd, 0xa0, 0x0c, 0x7a, 0x20, 0xfe, 0x72, 0x92, 0xdc, 0x83, + 0xb6, 0x34, 0x1a, 0x73, 0xde, 0x8f, 0xa6, 0x5e, 0x8f, 0xa0, 0x76, 0xfb, 0x58, 0x8a, 0xdc, 0x8d, + 0x2e, 0xc5, 0x11, 0x22, 0xcf, 0x3f, 0x9e, 0x22, 0x05, 0x84, 0x6e, 0xd1, 0xb1, 0xd3, 0x7f, 0x1d, + 0x03, 0xca, 0xc2, 0xdf, 0xa0, 0x57, 0xe6, 0x00, 0x30, 0x03, 0x97, 0x8f, 0xfa, 0x02, 0xff, 0x7d, + 0x8c, 0x54, 0x68, 0x84, 0xfc, 0x63, 0x8c, 0x3c, 0xc4, 0x9d, 0x3e, 0xdc, 0xd5, 0x57, 0xa1, 0x61, + 0x2c, 0x4b, 0x33, 0xc1, 0x1d, 0x85, 0xbd, 0x06, 0x7d, 0x10, 0x2e, 0x6d, 0x14, 0xcc, 0x7f, 0x8e, + 0x77, 0x3a, 0xa6, 0xdc, 0x3b, 0x1d, 0xe1, 0x7f, 0xa5, 0xc8, 0x16, 0x5a, 0x9f, 0xee, 0x14, 0xda, + 0xad, 0x9f, 0xa5, 0x63, 0x64, 0xca, 0xc3, 0x9f, 0xc7, 0xc9, 0x54, 0x22, 0x7f, 0x91, 0x26, 0x77, + 0xa1, 0xcd, 0x19, 0x99, 0x7a, 0x6a, 0x28, 0xfe, 0x65, 0x9a, 0x5c, 0x42, 0x6b, 0x33, 0xd2, 0x96, + 0x70, 0xb8, 0xc0, 0x2f, 0xa6, 0x49, 0x71, 0xb6, 0x6d, 0xb5, 0x5b, 0x82, 0xf5, 0xf1, 0x4b, 0x71, + 0x4a, 0x16, 0x0d, 0xa9, 0xc0, 0xbf, 0x4a, 0x93, 0x6b, 0xe8, 0xde, 0x0b, 0xa2, 0xbe, 0xe3, 0xf1, + 0xf6, 0xfe, 0x80, 0x86, 0xa2, 0x6d, 0x74, 0xa1, 0x07, 0xfd, 0x3a, 0xce, 0x44, 0xd3, 0x19, 0x84, + 0x14, 0xbf, 0x1c, 0xbb, 0xaf, 0x33, 0xa4, 0xf8, 0x15, 0xe8, 0xb7, 0x79, 0x75, 0xf5, 0x75, 0x5c, + 0xbe, 0x9d, 0x99, 0x04, 0x55, 0x40, 0xbe, 0x93, 0x01, 0x1b, 0x1a, 0x84, 0x3e, 0xae, 0x1b, 0xc6, + 0x77, 0x33, 0x10, 0xaa, 0x31, 0x5d, 0xce, 0xb7, 0x5a, 0xf6, 0xbd, 0x8c, 0xbc, 0x0c, 0x4a, 0xb6, + 0x4f, 0x85, 0x16, 0x3c, 0x9d, 0x91, 0x97, 0xe1, 0x5c, 0x00, 0x3d, 0x30, 0xc4, 0xcf, 0x64, 0xe0, + 0x32, 0xc8, 0x2e, 0xd1, 0x96, 0xff, 0xaa, 0x26, 0xf4, 0x99, 0x2c, 0xd0, 0x23, 0xbc, 0x25, 0x1c, + 0xf7, 0xb6, 0xcd, 0xa1, 0xaf, 0x7f, 0x36, 0x0b, 0x67, 0x86, 0x4e, 0xd2, 0xd3, 0x9d, 0x44, 0x1f, + 0xe2, 0xfd, 0xf3, 0x17, 0x45, 0xea, 0x28, 0x8f, 0xcd, 0x43, 0xfe, 0xc6, 0xa2, 0x99, 0xaa, 0xf8, + 0x7d, 0xbc, 0x54, 0xe9, 0xfe, 0x61, 0x5e, 0x86, 0x61, 0xa2, 0x9b, 0x6b, 0xbd, 0xe7, 0x16, 0x2e, + 0x48, 0x94, 0xce, 0xf3, 0x0b, 0x10, 0x84, 0x89, 0x1e, 0xab, 0x55, 0xbe, 0xb2, 0x38, 0x2b, 0x50, + 0x1a, 0x5f, 0x5d, 0x84, 0x30, 0x9c, 0x37, 0x61, 0xad, 0xf0, 0x09, 0x34, 0x83, 0x2b, 0xfe, 0xe3, + 0x08, 0xf6, 0x9e, 0x7c, 0x21, 0xb5, 0xc6, 0xab, 0x17, 0x25, 0x4a, 0xe7, 0x35, 0x44, 0x56, 0xd0, + 0x92, 0x7c, 0x85, 0x34, 0xf9, 0xc5, 0xdc, 0x39, 0xa4, 0x58, 0x2f, 0xc1, 0x48, 0x5a, 0xd0, 0x8f, + 0xa2, 0x26, 0x3e, 0xbd, 0x34, 0x85, 0x2a, 0xee, 0x33, 0x4b, 0xe0, 0xdd, 0xf9, 0x33, 0xa8, 0xd9, + 0x9f, 0x5b, 0x9e, 0xc1, 0x15, 0xff, 0xf3, 0xcb, 0xe0, 0xdb, 0xe4, 0x48, 0xa0, 0x35, 0x3e, 0x98, + 0xbf, 0x20, 0x51, 0x3a, 0x1f, 0xca, 0xc3, 0xce, 0xfa, 0x99, 0xd4, 0xfc, 0x3f, 0x4e, 0xa3, 0x8a, + 0xfb, 0xa7, 0x3c, 0xd4, 0xf1, 0xa1, 0xe3, 0xf6, 0x19, 0xf3, 0x35, 0xf5, 0x27, 0x85, 0x49, 0x50, + 0x31, 0x5f, 0x28, 0x40, 0xce, 0x67, 0xc7, 0x06, 0xad, 0xf2, 0x35, 0x1c, 0x2b, 0x55, 0xba, 0x5f, + 0xc7, 0xd0, 0xa7, 0xa0, 0x7c, 0x35, 0xff, 0x93, 0x2b, 0x63, 0x44, 0x71, 0x3e, 0xb5, 0x02, 0xfe, + 0xe9, 0xa7, 0x50, 0xf3, 0xfe, 0x3d, 0x8d, 0x2a, 0xee, 0x7f, 0xa4, 0x36, 0x0c, 0x18, 0x9a, 0xf7, + 0x32, 0x19, 0x23, 0x8a, 0xf3, 0x0a, 0x81, 0x2b, 0x37, 0x3d, 0x84, 0x68, 0xf6, 0xf7, 0x57, 0x63, + 0x64, 0x4a, 0xef, 0xd9, 0x55, 0xe8, 0xa0, 0xd1, 0xb8, 0xa3, 0xf9, 0x5f, 0x58, 0x9b, 0xc0, 0x14, + 0xef, 0xc9, 0x35, 0x38, 0xf1, 0xec, 0xf8, 0xa1, 0x35, 0x3e, 0xbc, 0x1e, 0x2b, 0x55, 0xba, 0x1f, + 0x59, 0x87, 0xdc, 0x4d, 0x4e, 0x1f, 0x5a, 0xef, 0xcf, 0x17, 0x25, 0x4a, 0xe7, 0x2f, 0x52, 0x72, + 0x3e, 0xad, 0x9f, 0x77, 0xd3, 0x9f, 0x6e, 0x40, 0xba, 0xd4, 0xe4, 0xa2, 0x0d, 0x7d, 0x63, 0x73, + 0x12, 0x54, 0x36, 0xbe, 0xb9, 0x49, 0x2e, 0x8f, 0x87, 0x4f, 0x3d, 0x3a, 0x6a, 0x8d, 0x27, 0x8a, + 0x71, 0x42, 0xa5, 0xf9, 0xe9, 0x22, 0x3c, 0x78, 0x31, 0xd3, 0xa4, 0xd6, 0x7e, 0xdf, 0xa5, 0xd7, + 0x23, 0x28, 0x0b, 0x8f, 0x5e, 0x22, 0xdb, 0xe8, 0x4a, 0xfc, 0xe0, 0xab, 0x8d, 0xfc, 0xf6, 0x7f, + 0x71, 0x94, 0x9d, 0xdf, 0x5d, 0x9a, 0x78, 0x75, 0x54, 0xc1, 0x8d, 0xc7, 0x90, 0xad, 0x18, 0x99, + 0x9e, 0x44, 0xb6, 0xe0, 0x78, 0x33, 0x73, 0xd1, 0x78, 0x64, 0xb8, 0x1c, 0x27, 0x54, 0x6f, 0xd9, + 0x53, 0x97, 0x4b, 0x16, 0xca, 0xc9, 0xc3, 0xb4, 0xa2, 0x5f, 0x10, 0xe4, 0xdf, 0x11, 0x65, 0xa3, + 0xd6, 0x6e, 0x35, 0x8e, 0xac, 0x32, 0xfc, 0x45, 0x02, 0x7f, 0x27, 0xec, 0xb5, 0xf4, 0x3a, 0x01, + 0x13, 0xd5, 0x81, 0x6d, 0x37, 0x35, 0x20, 0x07, 0xfb, 0x72, 0xad, 0x51, 0x37, 0x35, 0x92, 0x2a, + 0xed, 0x22, 0x7c, 0x30, 0xea, 0x53, 0x7e, 0xbc, 0x4f, 0x03, 0x3d, 0x88, 0x6d, 0x20, 0x32, 0x8b, + 0x1d, 0xdf, 0xc4, 0x73, 0xb1, 0xf8, 0x1b, 0x70, 0xa2, 0xf4, 0x2e, 0x94, 0x87, 0x2c, 0xc1, 0x9c, + 0xbb, 0xc7, 0x78, 0xcf, 0x11, 0xf2, 0xef, 0xdb, 0x29, 0xe4, 0xf8, 0xa0, 0xf2, 0x30, 0x9e, 0x83, + 0x51, 0xf4, 0x02, 0x8e, 0x13, 0xa5, 0x07, 0xe1, 0xbd, 0x62, 0x83, 0x4e, 0x35, 0xf0, 0x44, 0xc5, + 0x11, 0x8e, 0x3a, 0x60, 0x0e, 0xcd, 0xd7, 0x99, 0x14, 0xe0, 0x39, 0xf9, 0xf7, 0xd4, 0x23, 0x03, + 0x4e, 0x71, 0xe2, 0x6d, 0xef, 0x40, 0x8b, 0x21, 0x0d, 0x42, 0x4f, 0x78, 0x43, 0x4a, 0xae, 0xec, + 0x44, 0x3f, 0xd9, 0xee, 0xe8, 0x9f, 0x6c, 0x77, 0xf6, 0x3c, 0xea, 0x77, 0x1a, 0xb2, 0x6c, 0xc3, + 0xe2, 0x0b, 0x1f, 0x48, 0xc9, 0x5f, 0x4f, 0xce, 0x35, 0x76, 0x1f, 0x78, 0xcf, 0x7d, 0x5d, 0x4f, + 0x9c, 0x0d, 0x4e, 0x76, 0x5c, 0xd6, 0xbb, 0xd1, 0xf3, 0x5c, 0xce, 0x42, 0x76, 0x2a, 0x6e, 0xf4, + 0x98, 0x7b, 0x83, 0xf7, 0xdd, 0x1b, 0xd1, 0xaf, 0xc2, 0x27, 0x59, 0x69, 0xf0, 0x8d, 0xff, 0x0d, + 0x00, 0x00, 0xff, 0xff, 0xd3, 0xa4, 0x61, 0xed, 0x31, 0x16, 0x00, 0x00, } diff --git a/rpc/common/moc_common_common.proto b/rpc/common/moc_common_common.proto index 9b33efd..9123211 100644 --- a/rpc/common/moc_common_common.proto +++ b/rpc/common/moc_common_common.proto @@ -112,6 +112,10 @@ message Status { ValidationStatus validationStatus = 6; } +message SubResource { + string id = 1; +} + message Entity { bool IsPlaceholder = 1; // On a multi-node system, the entity (such as a VM) is created on a node where // IsPlacehoder is false. On all the other nodes, IsPlaceholder is set to true. diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index bd1fcdc..9997d81 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -28,21 +28,21 @@ message AvailabilitySet { string name = 1; string id = 2; // common fields - Status status = 5; Tags tags = 6; Entity entity = 7; // avset fields - uint32 platformFaultDomainCount = 8; - repeated VirtualMachine virtualMachines = 9; // need to replace with minimum association information + AvailabilitySetProperties properties = 8; } -// This is the only field used in the nodeagent Virtual Machine provider to decide -// if a VM POST request is a create or update. -message VirtualMachine { - string name = 1; +message AvailabilitySetProperties { + string platformFaultDomainCount = 1; + // The ID of the SubResource in this instance is simply the virtual machine name. + // The vm name is the only field used in the nodeagent vm provider to decide if a + // VM POST request is a create or update. + repeated SubResource virtualMachines = 2; + Status status = 3; } - service AvailabilitySetAgent { rpc Invoke(AvailabilitySetRequest) returns (AvailabilitySetResponse) {} } \ No newline at end of file diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 835b717..8948346 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -137,15 +137,13 @@ type AvailabilitySet 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"` // common fields - Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` Entity *common.Entity `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"` // avset fields - PlatformFaultDomainCount uint32 `protobuf:"varint,8,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*VirtualMachine `protobuf:"bytes,9,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Properties *AvailabilitySetProperties `protobuf:"bytes,8,opt,name=properties,proto3" json:"properties,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } @@ -187,13 +185,6 @@ func (m *AvailabilitySet) GetId() string { return "" } -func (m *AvailabilitySet) GetStatus() *common.Status { - if m != nil { - return m.Status - } - return nil -} - func (m *AvailabilitySet) GetTags() *common.Tags { if m != nil { return m.Tags @@ -208,66 +199,76 @@ func (m *AvailabilitySet) GetEntity() *common.Entity { return nil } -func (m *AvailabilitySet) GetPlatformFaultDomainCount() uint32 { +func (m *AvailabilitySet) GetProperties() *AvailabilitySetProperties { + if m != nil { + return m.Properties + } + return nil +} + +type AvailabilitySetProperties struct { + PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + // The ID of the SubResource in this instance is simply the virtual machine name. + // The vm name is the only field used in the nodeagent vm provider to decide if a + // VM POST request is a create or update. + VirtualMachines []*common.SubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetProperties) Reset() { *m = AvailabilitySetProperties{} } +func (m *AvailabilitySetProperties) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetProperties) ProtoMessage() {} +func (*AvailabilitySetProperties) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{3} +} + +func (m *AvailabilitySetProperties) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetProperties.Unmarshal(m, b) +} +func (m *AvailabilitySetProperties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetProperties.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetProperties) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetProperties.Merge(m, src) +} +func (m *AvailabilitySetProperties) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetProperties.Size(m) +} +func (m *AvailabilitySetProperties) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetProperties.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetProperties proto.InternalMessageInfo + +func (m *AvailabilitySetProperties) GetPlatformFaultDomainCount() string { if m != nil { return m.PlatformFaultDomainCount } - return 0 + return "" } -func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { +func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.SubResource { if m != nil { return m.VirtualMachines } return nil } -// This is the only field used in the nodeagent Virtual Machine provider to decide -// if a VM POST request is a create or update. -type VirtualMachine 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 (m *VirtualMachine) Reset() { *m = VirtualMachine{} } -func (m *VirtualMachine) String() string { return proto.CompactTextString(m) } -func (*VirtualMachine) ProtoMessage() {} -func (*VirtualMachine) Descriptor() ([]byte, []int) { - return fileDescriptor_d615df2311cce965, []int{3} -} - -func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_VirtualMachine.Unmarshal(m, b) -} -func (m *VirtualMachine) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_VirtualMachine.Marshal(b, m, deterministic) -} -func (m *VirtualMachine) XXX_Merge(src proto.Message) { - xxx_messageInfo_VirtualMachine.Merge(m, src) -} -func (m *VirtualMachine) XXX_Size() int { - return xxx_messageInfo_VirtualMachine.Size(m) -} -func (m *VirtualMachine) XXX_DiscardUnknown() { - xxx_messageInfo_VirtualMachine.DiscardUnknown(m) -} - -var xxx_messageInfo_VirtualMachine proto.InternalMessageInfo - -func (m *VirtualMachine) GetName() string { +func (m *AvailabilitySetProperties) GetStatus() *common.Status { if m != nil { - return m.Name + return m.Status } - return "" + return nil } func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.nodeagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.nodeagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.nodeagent.compute.AvailabilitySet") - proto.RegisterType((*VirtualMachine)(nil), "moc.nodeagent.compute.VirtualMachine") + proto.RegisterType((*AvailabilitySetProperties)(nil), "moc.nodeagent.compute.AvailabilitySetProperties") } func init() { @@ -275,37 +276,38 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 471 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0x13, 0x31, - 0x10, 0x86, 0xd9, 0xb4, 0x0d, 0xc4, 0x51, 0x53, 0x64, 0x15, 0x6a, 0x45, 0x02, 0x45, 0x29, 0xa0, - 0x5c, 0xf0, 0xa2, 0x85, 0x13, 0xb7, 0x16, 0x8a, 0xc4, 0x01, 0x55, 0x72, 0xab, 0x1e, 0xb8, 0x54, - 0xce, 0xc6, 0xd9, 0x5a, 0xac, 0x3d, 0x8b, 0x3d, 0x0e, 0xca, 0x91, 0x57, 0xe1, 0xca, 0x03, 0xf0, - 0x7a, 0x28, 0xde, 0x25, 0x6a, 0xb6, 0xad, 0xd4, 0x0b, 0xa7, 0x64, 0xe7, 0xff, 0xe6, 0x9f, 0xd9, - 0x7f, 0x87, 0x1c, 0x1a, 0xc8, 0x2f, 0x2d, 0xcc, 0x94, 0x2c, 0x94, 0xc5, 0x4b, 0xb9, 0x90, 0xba, - 0x94, 0x53, 0x5d, 0x6a, 0x5c, 0x7a, 0x85, 0xbc, 0x72, 0x80, 0x40, 0x9f, 0x18, 0xc8, 0xf9, 0x1a, - 0xe2, 0x39, 0x98, 0x2a, 0xa0, 0x1a, 0x3e, 0x2f, 0x00, 0x8a, 0x52, 0xa5, 0x11, 0x9a, 0x86, 0x79, - 0xfa, 0xc3, 0xc9, 0xaa, 0x52, 0xce, 0xd7, 0x6d, 0xc3, 0x83, 0x95, 0x77, 0x0e, 0xc6, 0x80, 0x6d, - 0x7e, 0x6a, 0x61, 0xfc, 0x2b, 0x21, 0x4f, 0x8f, 0xae, 0x4d, 0x3a, 0x53, 0x28, 0xd4, 0xf7, 0xa0, - 0x3c, 0x52, 0x41, 0x1e, 0xb7, 0x14, 0xcf, 0x92, 0xd1, 0xd6, 0xa4, 0x9f, 0xbd, 0xe2, 0xb7, 0x6e, - 0xc1, 0xdb, 0x46, 0x37, 0xfa, 0xe9, 0x3b, 0xb2, 0x7b, 0x5a, 0x29, 0x27, 0x51, 0x83, 0x3d, 0x5f, - 0x56, 0x8a, 0x75, 0x46, 0xc9, 0x64, 0x90, 0x0d, 0xa2, 0xe1, 0x5a, 0x11, 0x9b, 0xd0, 0xf8, 0x4f, - 0x42, 0x0e, 0x6e, 0x2c, 0xe9, 0x2b, 0xb0, 0x5e, 0xfd, 0x97, 0x2d, 0x33, 0xd2, 0x15, 0xca, 0x87, - 0x12, 0xe3, 0x7a, 0xfd, 0x6c, 0xc8, 0xeb, 0x78, 0xf9, 0xbf, 0x78, 0xf9, 0x31, 0x40, 0x79, 0x21, - 0xcb, 0xa0, 0x44, 0x43, 0xd2, 0x7d, 0xb2, 0x73, 0xe2, 0x1c, 0x38, 0xb6, 0x35, 0x4a, 0x26, 0x3d, - 0x51, 0x3f, 0x8c, 0x7f, 0x77, 0xc8, 0x5e, 0xcb, 0x9e, 0x52, 0xb2, 0x6d, 0xa5, 0x51, 0x2c, 0x89, - 0x60, 0xfc, 0x4f, 0x07, 0xa4, 0xa3, 0x67, 0x71, 0x5a, 0x4f, 0x74, 0xf4, 0x8c, 0x1e, 0x92, 0xae, - 0x47, 0x89, 0xc1, 0xb3, 0x9d, 0xb8, 0x41, 0x3f, 0xbe, 0xcb, 0x59, 0x2c, 0x89, 0x46, 0xa2, 0xcf, - 0xc8, 0x36, 0xca, 0xc2, 0xb3, 0x6e, 0x44, 0x7a, 0x11, 0x39, 0x97, 0x85, 0x17, 0xb1, 0xbc, 0xf2, - 0x50, 0x16, 0x35, 0x2e, 0xd9, 0xc3, 0x6b, 0x1e, 0x27, 0xb1, 0x24, 0x1a, 0x89, 0xbe, 0x27, 0xac, - 0x2a, 0x25, 0xce, 0xc1, 0x99, 0x4f, 0x32, 0x94, 0xf8, 0x11, 0x8c, 0xd4, 0xf6, 0x03, 0x04, 0x8b, - 0xec, 0xd1, 0x28, 0x99, 0xec, 0x8a, 0x3b, 0x75, 0x7a, 0x4a, 0xf6, 0x16, 0xda, 0x61, 0x90, 0xe5, - 0x17, 0x99, 0x5f, 0x69, 0xab, 0x3c, 0xeb, 0xc5, 0xe4, 0x5f, 0xde, 0x91, 0xfc, 0xc5, 0x06, 0x2d, - 0xda, 0xdd, 0xe3, 0x17, 0x64, 0xb0, 0x89, 0xdc, 0x96, 0x55, 0xf6, 0x33, 0x21, 0xfb, 0xad, 0x4c, - 0x8f, 0x56, 0x63, 0xa8, 0x26, 0xdd, 0xcf, 0x76, 0x01, 0xdf, 0x14, 0x7d, 0x7d, 0xcf, 0x4f, 0x5f, - 0x5f, 0xfa, 0x90, 0xdf, 0x17, 0xaf, 0x6f, 0x6e, 0xfc, 0xe0, 0xf8, 0xcd, 0x57, 0x5e, 0x68, 0xbc, - 0x0a, 0xd3, 0x15, 0x9b, 0x1a, 0x9d, 0x3b, 0xf0, 0x30, 0xc7, 0xd4, 0x40, 0x9e, 0xba, 0x2a, 0x4f, - 0xd7, 0x5e, 0x69, 0xe3, 0x35, 0xed, 0xc6, 0xdb, 0x79, 0xfb, 0x37, 0x00, 0x00, 0xff, 0xff, 0x9f, - 0x91, 0x02, 0xea, 0xe6, 0x03, 0x00, 0x00, + // 493 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xc1, 0x6e, 0x13, 0x31, + 0x14, 0x45, 0x99, 0xb4, 0x04, 0xea, 0x88, 0xb4, 0xb2, 0x0a, 0x1d, 0x22, 0x81, 0xa2, 0x54, 0x42, + 0xd9, 0x30, 0x53, 0x05, 0x56, 0xdd, 0xb5, 0x50, 0x24, 0x16, 0x88, 0xca, 0xa9, 0x58, 0xb0, 0xa9, + 0x9c, 0xc9, 0xcb, 0xd4, 0x62, 0xec, 0x67, 0xec, 0xe7, 0xa0, 0x2c, 0xf9, 0x15, 0x7e, 0x02, 0xfe, + 0x81, 0x9f, 0x42, 0xf1, 0x4c, 0xa3, 0x92, 0x52, 0x29, 0x1b, 0x56, 0xc9, 0xf8, 0x1e, 0x5f, 0x5f, + 0xdf, 0x79, 0xc3, 0x0e, 0x35, 0x16, 0x97, 0x06, 0xa7, 0x20, 0x4b, 0x30, 0x74, 0x29, 0xe7, 0x52, + 0x55, 0x72, 0xa2, 0x2a, 0x45, 0x0b, 0x0f, 0x94, 0x59, 0x87, 0x84, 0xfc, 0xb1, 0xc6, 0x22, 0x5b, + 0x41, 0x59, 0x81, 0xda, 0x06, 0x82, 0xde, 0xf3, 0x12, 0xb1, 0xac, 0x20, 0x8f, 0xd0, 0x24, 0xcc, + 0xf2, 0x6f, 0x4e, 0x5a, 0x0b, 0xce, 0xd7, 0xdb, 0x7a, 0x07, 0x4b, 0xef, 0x02, 0xb5, 0x46, 0xd3, + 0xfc, 0xd4, 0xc2, 0xe0, 0x47, 0xc2, 0x9e, 0x9c, 0xdc, 0x38, 0x69, 0x0c, 0x24, 0xe0, 0x6b, 0x00, + 0x4f, 0x5c, 0xb0, 0xbd, 0x35, 0xc5, 0xa7, 0x49, 0x7f, 0x6b, 0xd8, 0x19, 0xbd, 0xc8, 0xfe, 0x99, + 0x22, 0x5b, 0x37, 0xba, 0xb5, 0x9f, 0xbf, 0x66, 0x8f, 0x3e, 0x5a, 0x70, 0x92, 0x14, 0x9a, 0x8b, + 0x85, 0x85, 0xb4, 0xd5, 0x4f, 0x86, 0xdd, 0x51, 0x37, 0x1a, 0xae, 0x14, 0xf1, 0x37, 0x34, 0xf8, + 0x99, 0xb0, 0x83, 0x5b, 0x21, 0xbd, 0x45, 0xe3, 0xe1, 0xbf, 0xa4, 0x1c, 0xb1, 0xb6, 0x00, 0x1f, + 0x2a, 0x8a, 0xf1, 0x3a, 0xa3, 0x5e, 0x56, 0xd7, 0x9b, 0x5d, 0xd7, 0x9b, 0x9d, 0x22, 0x56, 0x9f, + 0x64, 0x15, 0x40, 0x34, 0x24, 0xdf, 0x67, 0xf7, 0xcf, 0x9c, 0x43, 0x97, 0x6e, 0xf5, 0x93, 0xe1, + 0x8e, 0xa8, 0x1f, 0x06, 0xbf, 0x13, 0xb6, 0xbb, 0x66, 0xcf, 0x39, 0xdb, 0x36, 0x52, 0x43, 0x9a, + 0x44, 0x30, 0xfe, 0xe7, 0x5d, 0xd6, 0x52, 0xd3, 0x78, 0xda, 0x8e, 0x68, 0xa9, 0x29, 0x7f, 0xc6, + 0xb6, 0x49, 0x96, 0x3e, 0x6d, 0xc7, 0xf3, 0x77, 0xe2, 0x4d, 0x2e, 0x64, 0xe9, 0x45, 0x5c, 0xe6, + 0x87, 0xac, 0x0d, 0x86, 0x14, 0x2d, 0xd2, 0x07, 0x11, 0xe8, 0x44, 0xe0, 0x2c, 0x2e, 0x89, 0x46, + 0xe2, 0xe7, 0x8c, 0x59, 0x87, 0x16, 0x1c, 0x29, 0xf0, 0xe9, 0xc3, 0x08, 0x1e, 0x6d, 0xd6, 0xc9, + 0xf9, 0x6a, 0x9f, 0xb8, 0xe1, 0x31, 0xf8, 0x95, 0xb0, 0xa7, 0x77, 0x92, 0xfc, 0x98, 0xa5, 0xb6, + 0x92, 0x34, 0x43, 0xa7, 0xdf, 0xc9, 0x50, 0xd1, 0x5b, 0xd4, 0x52, 0x99, 0x37, 0x18, 0x0c, 0x35, + 0x77, 0xbd, 0x53, 0xe7, 0xc7, 0x6c, 0x77, 0xae, 0x1c, 0x05, 0x59, 0x7d, 0x90, 0xc5, 0x95, 0x32, + 0xe0, 0xd3, 0x56, 0x7c, 0x89, 0x7b, 0x31, 0xf0, 0x38, 0x4c, 0x04, 0x78, 0x0c, 0xae, 0x00, 0xb1, + 0x0e, 0x2e, 0xcb, 0xf0, 0x24, 0x29, 0xf8, 0x58, 0xfd, 0x75, 0x19, 0xe3, 0xb8, 0x24, 0x1a, 0x69, + 0xf4, 0x3d, 0x61, 0xfb, 0x6b, 0xd1, 0x4f, 0x96, 0x0d, 0x70, 0xc5, 0xda, 0xef, 0xcd, 0x1c, 0xbf, + 0x00, 0x7f, 0xb9, 0xe1, 0xbc, 0xd4, 0x9f, 0x47, 0x2f, 0xdb, 0x14, 0xaf, 0x07, 0x75, 0x70, 0xef, + 0xf4, 0xe8, 0x73, 0x56, 0x2a, 0xba, 0x0a, 0x93, 0x25, 0x9b, 0x6b, 0x55, 0x38, 0xf4, 0x38, 0xa3, + 0x5c, 0x63, 0x91, 0x3b, 0x5b, 0xe4, 0x2b, 0xaf, 0xbc, 0xf1, 0x9a, 0xb4, 0xe3, 0xc0, 0xbd, 0xfa, + 0x13, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x24, 0x02, 0xd4, 0x1b, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From dfe363be827d55c23e57e857e320d391b17158e1 Mon Sep 17 00:00:00 2001 From: John Carden Date: Thu, 18 Jan 2024 16:22:04 +0000 Subject: [PATCH 12/25] updated the cloudagent avset and vm messages to align with models at https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go --- .../moc_cloudagent_availabilityset.proto | 22 +- .../moc_cloudagent_availabilityset.pb.go | 205 +++++----- .../moc_cloudagent_virtualmachine.pb.go | 281 ++++++-------- .../moc_cloudagent_virtualmachine.proto | 7 +- rpc/common/moc_common_common.pb.go | 351 ++++++++++-------- rpc/common/moc_common_common.proto | 14 +- .../moc_nodeagent_availabilityset.proto | 14 +- .../moc_nodeagent_availabilityset.pb.go | 111 +++--- 8 files changed, 494 insertions(+), 511 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index d94715b..b48308f 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -9,42 +9,34 @@ import "google/protobuf/wrappers.proto"; import "moc_common_common.proto"; message AvailabilitySetRequest { - // avset field repeated AvailabilitySet AvailabilitySets = 1; - // common field Operation OperationType = 2; } message AvailabilitySetResponse { - // avset field repeated AvailabilitySet AvailabilitySets = 1; - // common fields google.protobuf.BoolValue Result = 2; string Error = 3; } +// avset structure is modeled after the Azure sdk for go at +// https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { - // identifier fields string name = 1; string id = 2; string locationName = 3; string groupName = 4; - // common fields Status status = 5; Tags tags = 6; - // avset fields - uint32 platformFaultDomainCount = 7; - repeated VirtualMachine virtualMachines = 8; + AvailabilitySetProperties properties = 7; } -// These are the only fields used in the cloudagent Virtual Machine provider to decide -// if a VM POST request is a create or update. -message VirtualMachine { - string name = 1; - string groupName = 2; +message AvailabilitySetProperties { + string platformFaultDomainCount = 1; + repeated CloudSubResource virtualMachines = 2; + Status status = 3; } - service AvailabilitySetAgent { rpc Invoke(AvailabilitySetRequest) returns (AvailabilitySetResponse) {} } diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index 41015d5..c0f6ee9 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -27,13 +27,11 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - // avset field - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` - // common field - OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } @@ -76,9 +74,7 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - // avset field - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` - // common fields + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -132,21 +128,19 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } +// avset structure is modeled after the Azure sdk for go at +// https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet struct { - // identifier fields - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` - GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` - // common fields - Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` - Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` - // avset fields - PlatformFaultDomainCount uint32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*VirtualMachine `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` + GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` + Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + Properties *AvailabilitySetProperties `protobuf:"bytes,7,opt,name=properties,proto3" json:"properties,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } @@ -216,74 +210,73 @@ func (m *AvailabilitySet) GetTags() *common.Tags { return nil } -func (m *AvailabilitySet) GetPlatformFaultDomainCount() uint32 { +func (m *AvailabilitySet) GetProperties() *AvailabilitySetProperties { + if m != nil { + return m.Properties + } + return nil +} + +type AvailabilitySetProperties struct { + PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*common.CloudSubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetProperties) Reset() { *m = AvailabilitySetProperties{} } +func (m *AvailabilitySetProperties) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetProperties) ProtoMessage() {} +func (*AvailabilitySetProperties) Descriptor() ([]byte, []int) { + return fileDescriptor_f2024bad12ef389f, []int{3} +} + +func (m *AvailabilitySetProperties) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetProperties.Unmarshal(m, b) +} +func (m *AvailabilitySetProperties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetProperties.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetProperties) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetProperties.Merge(m, src) +} +func (m *AvailabilitySetProperties) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetProperties.Size(m) +} +func (m *AvailabilitySetProperties) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetProperties.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetProperties proto.InternalMessageInfo + +func (m *AvailabilitySetProperties) GetPlatformFaultDomainCount() string { if m != nil { return m.PlatformFaultDomainCount } - return 0 + return "" } -func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachine { +func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.CloudSubResource { if m != nil { return m.VirtualMachines } return nil } -// These are the only fields used in the cloudagent Virtual Machine provider to decide -// if a VM POST request is a create or update. -type VirtualMachine struct { - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - GroupName string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -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_f2024bad12ef389f, []int{3} -} - -func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_VirtualMachine.Unmarshal(m, b) -} -func (m *VirtualMachine) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_VirtualMachine.Marshal(b, m, deterministic) -} -func (m *VirtualMachine) XXX_Merge(src proto.Message) { - xxx_messageInfo_VirtualMachine.Merge(m, src) -} -func (m *VirtualMachine) XXX_Size() int { - return xxx_messageInfo_VirtualMachine.Size(m) -} -func (m *VirtualMachine) XXX_DiscardUnknown() { - xxx_messageInfo_VirtualMachine.DiscardUnknown(m) -} - -var xxx_messageInfo_VirtualMachine proto.InternalMessageInfo - -func (m *VirtualMachine) GetName() string { +func (m *AvailabilitySetProperties) GetStatus() *common.Status { if m != nil { - return m.Name + return m.Status } - return "" -} - -func (m *VirtualMachine) GetGroupName() string { - if m != nil { - return m.GroupName - } - return "" + return nil } func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.cloudagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.cloudagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") - proto.RegisterType((*VirtualMachine)(nil), "moc.cloudagent.compute.VirtualMachine") + proto.RegisterType((*AvailabilitySetProperties)(nil), "moc.cloudagent.compute.AvailabilitySetProperties") } func init() { @@ -291,38 +284,40 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 491 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcb, 0x6e, 0xd3, 0x4e, - 0x14, 0xc6, 0xff, 0x4e, 0xd3, 0xfc, 0xc9, 0x09, 0x4d, 0xd1, 0xa8, 0x6a, 0xad, 0x08, 0x50, 0x64, - 0x10, 0x64, 0x65, 0x0b, 0xc3, 0x8a, 0x5d, 0xc3, 0x45, 0x62, 0xc1, 0x45, 0x93, 0xaa, 0x0b, 0x36, - 0xd5, 0xc4, 0x99, 0xb8, 0xa3, 0xce, 0xf8, 0x0c, 0x73, 0x09, 0xea, 0x9a, 0x47, 0xe1, 0x25, 0x78, - 0x05, 0xde, 0x0a, 0x65, 0x1c, 0x08, 0x76, 0x5b, 0xa9, 0x1b, 0x56, 0x89, 0xcf, 0xf9, 0xcd, 0x37, - 0x9f, 0xbf, 0x73, 0x0c, 0x8f, 0x15, 0x16, 0x67, 0x85, 0x44, 0xbf, 0x60, 0x25, 0xaf, 0xdc, 0x19, - 0x5b, 0x31, 0x21, 0xd9, 0x5c, 0x48, 0xe1, 0x2e, 0x2d, 0x77, 0xa9, 0x36, 0xe8, 0x90, 0x1c, 0x2a, - 0x2c, 0xd2, 0x2d, 0x95, 0x16, 0xa8, 0xb4, 0x77, 0x7c, 0xf4, 0xb0, 0x44, 0x2c, 0x25, 0xcf, 0x02, - 0x35, 0xf7, 0xcb, 0xec, 0xab, 0x61, 0x5a, 0x73, 0x63, 0xeb, 0x73, 0xa3, 0xa3, 0xa0, 0x8e, 0x4a, - 0x61, 0xb5, 0xf9, 0xa9, 0x1b, 0xc9, 0xf7, 0x08, 0x0e, 0x8f, 0xff, 0xba, 0x6a, 0xc6, 0x1d, 0xe5, - 0x5f, 0x3c, 0xb7, 0x8e, 0xcc, 0xe0, 0x5e, 0xab, 0x63, 0xe3, 0x68, 0xbc, 0x33, 0x19, 0xe4, 0x4f, - 0xd3, 0xeb, 0x6d, 0xa4, 0x6d, 0xa5, 0x2b, 0x02, 0xe4, 0x05, 0xec, 0x7d, 0xd4, 0xdc, 0x30, 0x27, - 0xb0, 0x3a, 0xb9, 0xd4, 0x3c, 0xee, 0x8c, 0xa3, 0xc9, 0x30, 0x1f, 0x06, 0xc5, 0x3f, 0x1d, 0xda, - 0x84, 0x92, 0x1f, 0x11, 0x1c, 0x5d, 0x71, 0x69, 0x35, 0x56, 0x96, 0xff, 0x1b, 0x9b, 0x39, 0xf4, - 0x28, 0xb7, 0x5e, 0xba, 0xe0, 0x6f, 0x90, 0x8f, 0xd2, 0x3a, 0xe0, 0xf4, 0x77, 0xc0, 0xe9, 0x14, - 0x51, 0x9e, 0x32, 0xe9, 0x39, 0xdd, 0x90, 0xe4, 0x00, 0x76, 0xdf, 0x18, 0x83, 0x26, 0xde, 0x19, - 0x47, 0x93, 0x3e, 0xad, 0x1f, 0x92, 0x9f, 0x1d, 0xd8, 0x6f, 0xc9, 0x13, 0x02, 0xdd, 0x8a, 0x29, - 0x1e, 0x47, 0x01, 0x0c, 0xff, 0xc9, 0x10, 0x3a, 0x62, 0x11, 0x6e, 0xeb, 0xd3, 0x8e, 0x58, 0x90, - 0x04, 0xee, 0x4a, 0x2c, 0x42, 0x04, 0x1f, 0xd6, 0x6c, 0x2d, 0xda, 0xa8, 0x91, 0xfb, 0xd0, 0x2f, - 0x0d, 0x7a, 0x1d, 0x80, 0x6e, 0x00, 0xb6, 0x05, 0xf2, 0x08, 0x7a, 0xd6, 0x31, 0xe7, 0x6d, 0xbc, - 0x1b, 0xde, 0x61, 0x10, 0xe2, 0x98, 0x85, 0x12, 0xdd, 0xb4, 0xc8, 0x03, 0xe8, 0x3a, 0x56, 0xda, - 0xb8, 0x17, 0x90, 0x7e, 0x40, 0x4e, 0x58, 0x69, 0x69, 0x28, 0x93, 0x97, 0x10, 0x6b, 0xc9, 0xdc, - 0x12, 0x8d, 0x7a, 0xcb, 0xbc, 0x74, 0xaf, 0x51, 0x31, 0x51, 0xbd, 0x42, 0x5f, 0xb9, 0xf8, 0xff, - 0x71, 0x34, 0xd9, 0xa3, 0x37, 0xf6, 0xc9, 0x27, 0xd8, 0x5f, 0x09, 0xe3, 0x3c, 0x93, 0xef, 0x59, - 0x71, 0x2e, 0x2a, 0x6e, 0xe3, 0x3b, 0x61, 0x2e, 0x4f, 0x6e, 0x9a, 0xcb, 0x69, 0x03, 0xa7, 0xed, - 0xe3, 0xc9, 0x14, 0x86, 0x4d, 0xe4, 0xda, 0x24, 0x1b, 0xa9, 0x74, 0x5a, 0xa9, 0xe4, 0xdf, 0x22, - 0x38, 0x68, 0xcd, 0xe3, 0x78, 0x6d, 0x82, 0x5c, 0x40, 0xef, 0x5d, 0xb5, 0xc2, 0x0b, 0x4e, 0xd2, - 0xdb, 0xee, 0x4d, 0xfd, 0xa1, 0x8c, 0xb2, 0x5b, 0xf3, 0xf5, 0xca, 0x26, 0xff, 0x4d, 0x9f, 0x7d, - 0xce, 0x4a, 0xe1, 0xce, 0xfd, 0x7c, 0xcd, 0x66, 0x4a, 0x14, 0x06, 0x2d, 0x2e, 0x5d, 0xa6, 0xb0, - 0xc8, 0x8c, 0x2e, 0xb2, 0xad, 0x58, 0xb6, 0x11, 0x9b, 0xf7, 0xc2, 0xea, 0x3d, 0xff, 0x15, 0x00, - 0x00, 0xff, 0xff, 0xdf, 0xb3, 0x42, 0x6b, 0x29, 0x04, 0x00, 0x00, + // 515 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcd, 0x6e, 0xd3, 0x4e, + 0x14, 0xc5, 0xff, 0x4e, 0xd2, 0xfc, 0x95, 0x1b, 0x48, 0xd1, 0xa8, 0xb4, 0x26, 0x02, 0x14, 0x19, + 0x24, 0xb2, 0xb2, 0xd5, 0xc0, 0x8a, 0x0d, 0x6a, 0x0b, 0x48, 0x2c, 0xf8, 0x9a, 0x54, 0x2c, 0xd8, + 0x54, 0x13, 0x67, 0xe2, 0x8e, 0x3a, 0xe3, 0x3b, 0xcc, 0x47, 0x50, 0xd7, 0xec, 0x79, 0x09, 0x5e, + 0x82, 0x0d, 0xef, 0x86, 0x32, 0x0e, 0x4d, 0xea, 0x12, 0x29, 0x1b, 0x56, 0x89, 0xef, 0xf9, 0xcd, + 0x99, 0xe3, 0xa3, 0x6b, 0x78, 0xac, 0x30, 0x3f, 0xcb, 0x25, 0xfa, 0x29, 0x2b, 0x78, 0xe9, 0xce, + 0xd8, 0x9c, 0x09, 0xc9, 0x26, 0x42, 0x0a, 0x77, 0x69, 0xb9, 0x4b, 0xb5, 0x41, 0x87, 0x64, 0x5f, + 0x61, 0x9e, 0xae, 0xa8, 0x34, 0x47, 0xa5, 0xbd, 0xe3, 0xfd, 0x87, 0x05, 0x62, 0x21, 0x79, 0x16, + 0xa8, 0x89, 0x9f, 0x65, 0x5f, 0x0d, 0xd3, 0x9a, 0x1b, 0x5b, 0x9d, 0xeb, 0x1f, 0x04, 0x77, 0x54, + 0x0a, 0xcb, 0xe5, 0x4f, 0x25, 0x24, 0x3f, 0x22, 0xd8, 0x3f, 0x5a, 0xbb, 0x6a, 0xcc, 0x1d, 0xe5, + 0x5f, 0x3c, 0xb7, 0x8e, 0x8c, 0xe1, 0x4e, 0x4d, 0xb1, 0x71, 0x34, 0x68, 0x0e, 0xbb, 0xa3, 0x27, + 0xe9, 0xdf, 0x63, 0xa4, 0x75, 0xa7, 0x1b, 0x06, 0xe4, 0x19, 0xdc, 0x7e, 0xaf, 0xb9, 0x61, 0x4e, + 0x60, 0x79, 0x7a, 0xa9, 0x79, 0xdc, 0x18, 0x44, 0xc3, 0xde, 0xa8, 0x17, 0x1c, 0xaf, 0x14, 0x7a, + 0x1d, 0x4a, 0x7e, 0x46, 0x70, 0x70, 0x23, 0xa5, 0xd5, 0x58, 0x5a, 0xfe, 0x6f, 0x62, 0x8e, 0xa0, + 0x4d, 0xb9, 0xf5, 0xd2, 0x85, 0x7c, 0xdd, 0x51, 0x3f, 0xad, 0x0a, 0x4e, 0xff, 0x14, 0x9c, 0x1e, + 0x23, 0xca, 0x4f, 0x4c, 0x7a, 0x4e, 0x97, 0x24, 0xd9, 0x83, 0x9d, 0x57, 0xc6, 0xa0, 0x89, 0x9b, + 0x83, 0x68, 0xd8, 0xa1, 0xd5, 0x43, 0xf2, 0xbd, 0x01, 0xbb, 0x35, 0x7b, 0x42, 0xa0, 0x55, 0x32, + 0xc5, 0xe3, 0x28, 0x80, 0xe1, 0x3f, 0xe9, 0x41, 0x43, 0x4c, 0xc3, 0x6d, 0x1d, 0xda, 0x10, 0x53, + 0x92, 0xc0, 0x2d, 0x89, 0x79, 0xa8, 0xe0, 0xdd, 0x82, 0xad, 0x4c, 0xaf, 0xcd, 0xc8, 0x7d, 0xe8, + 0x14, 0x06, 0xbd, 0x0e, 0x40, 0x2b, 0x00, 0xab, 0x01, 0x79, 0x04, 0x6d, 0xeb, 0x98, 0xf3, 0x36, + 0xde, 0x09, 0xef, 0xd0, 0x0d, 0x75, 0x8c, 0xc3, 0x88, 0x2e, 0x25, 0xf2, 0x00, 0x5a, 0x8e, 0x15, + 0x36, 0x6e, 0x07, 0xa4, 0x13, 0x90, 0x53, 0x56, 0x58, 0x1a, 0xc6, 0xe4, 0x23, 0x80, 0x36, 0xa8, + 0xb9, 0x71, 0x82, 0xdb, 0xf8, 0xff, 0x00, 0x1d, 0x6e, 0x59, 0xeb, 0x87, 0xab, 0x83, 0x74, 0xcd, + 0x24, 0xf9, 0x15, 0xc1, 0xbd, 0x8d, 0x24, 0x79, 0x0e, 0xb1, 0x96, 0xcc, 0xcd, 0xd0, 0xa8, 0xd7, + 0xcc, 0x4b, 0xf7, 0x12, 0x15, 0x13, 0xe5, 0x09, 0xfa, 0xd2, 0x2d, 0xeb, 0xda, 0xa8, 0x93, 0x17, + 0xb0, 0x3b, 0x17, 0xc6, 0x79, 0x26, 0xdf, 0xb2, 0xfc, 0x5c, 0x94, 0xdc, 0xc6, 0x8d, 0xb0, 0x08, + 0x77, 0x43, 0xe2, 0x93, 0x45, 0xe2, 0xb1, 0x9f, 0x50, 0x6e, 0xd1, 0x9b, 0x9c, 0xd3, 0x3a, 0xbd, + 0xd6, 0x58, 0x73, 0x63, 0x63, 0xa3, 0x6f, 0x11, 0xec, 0xd5, 0xf2, 0x1f, 0x2d, 0x6a, 0x20, 0x17, + 0xd0, 0x7e, 0x53, 0xce, 0xf1, 0x82, 0x93, 0x74, 0xdb, 0xc5, 0xab, 0xbe, 0xb4, 0x7e, 0xb6, 0x35, + 0x5f, 0xed, 0x7c, 0xf2, 0xdf, 0xf1, 0xe1, 0xe7, 0xac, 0x10, 0xee, 0xdc, 0x4f, 0x16, 0x6c, 0xa6, + 0x44, 0x6e, 0xd0, 0xe2, 0xcc, 0x65, 0x0a, 0xf3, 0xcc, 0xe8, 0x3c, 0x5b, 0x99, 0x65, 0x4b, 0xb3, + 0x49, 0x3b, 0xec, 0xee, 0xd3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x30, 0xe6, 0x6b, 0x39, 0x6a, + 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go index 1a13110..27b3f82 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go @@ -842,53 +842,6 @@ func (m *SecurityConfiguration) GetSecurityType() common.SecurityType { return common.SecurityType_NOTCONFIGURED } -type AvailabilitySet struct { - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - GroupName string `protobuf:"bytes,2,opt,name=groupName,proto3" json:"groupName,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } -func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } -func (*AvailabilitySet) ProtoMessage() {} -func (*AvailabilitySet) Descriptor() ([]byte, []int) { - return fileDescriptor_a65ab853cd24c92b, []int{15} -} - -func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_AvailabilitySet.Unmarshal(m, b) -} -func (m *AvailabilitySet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_AvailabilitySet.Marshal(b, m, deterministic) -} -func (m *AvailabilitySet) XXX_Merge(src proto.Message) { - xxx_messageInfo_AvailabilitySet.Merge(m, src) -} -func (m *AvailabilitySet) XXX_Size() int { - return xxx_messageInfo_AvailabilitySet.Size(m) -} -func (m *AvailabilitySet) XXX_DiscardUnknown() { - xxx_messageInfo_AvailabilitySet.DiscardUnknown(m) -} - -var xxx_messageInfo_AvailabilitySet proto.InternalMessageInfo - -func (m *AvailabilitySet) GetName() string { - if m != nil { - return m.Name - } - return "" -} - -func (m *AvailabilitySet) GetGroupName() string { - if m != nil { - return m.GroupName - } - 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"` @@ -908,7 +861,7 @@ type VirtualMachine struct { Tags *common.Tags `protobuf:"bytes,16,opt,name=tags,proto3" json:"tags,omitempty"` GuestAgent *common.GuestAgentConfiguration `protobuf:"bytes,17,opt,name=guestAgent,proto3" json:"guestAgent,omitempty"` GuestAgentInstanceView *common.VirtualMachineAgentInstanceView `protobuf:"bytes,18,opt,name=guestAgentInstanceView,proto3" json:"guestAgentInstanceView,omitempty"` - AvailabilitySet *AvailabilitySet `protobuf:"bytes,19,opt,name=availabilitySet,proto3" json:"availabilitySet,omitempty"` + AvailabilitySet *common.CloudSubResource `protobuf:"bytes,19,opt,name=availabilitySet,proto3" json:"availabilitySet,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -918,7 +871,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_a65ab853cd24c92b, []int{16} + return fileDescriptor_a65ab853cd24c92b, []int{15} } func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { @@ -1065,7 +1018,7 @@ func (m *VirtualMachine) GetGuestAgentInstanceView() *common.VirtualMachineAgent return nil } -func (m *VirtualMachine) GetAvailabilitySet() *AvailabilitySet { +func (m *VirtualMachine) GetAvailabilitySet() *common.CloudSubResource { if m != nil { return m.AvailabilitySet } @@ -1085,7 +1038,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_a65ab853cd24c92b, []int{17} + return fileDescriptor_a65ab853cd24c92b, []int{16} } func (m *VirtualMachineOperationRequest) XXX_Unmarshal(b []byte) error { @@ -1141,7 +1094,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_a65ab853cd24c92b, []int{18} + return fileDescriptor_a65ab853cd24c92b, []int{17} } func (m *VirtualMachineOperationResponse) XXX_Unmarshal(b []byte) error { @@ -1198,7 +1151,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_a65ab853cd24c92b, []int{19} + return fileDescriptor_a65ab853cd24c92b, []int{18} } func (m *VirtualMachineRunCommandRequest) XXX_Unmarshal(b []byte) error { @@ -1266,7 +1219,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_a65ab853cd24c92b, []int{20} + return fileDescriptor_a65ab853cd24c92b, []int{19} } func (m *VirtualMachineRunCommandResponse) XXX_Unmarshal(b []byte) error { @@ -1318,7 +1271,6 @@ func init() { proto.RegisterType((*HardwareConfiguration)(nil), "moc.cloudagent.compute.HardwareConfiguration") proto.RegisterType((*UefiSettings)(nil), "moc.cloudagent.compute.UefiSettings") proto.RegisterType((*SecurityConfiguration)(nil), "moc.cloudagent.compute.SecurityConfiguration") - proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") proto.RegisterType((*VirtualMachine)(nil), "moc.cloudagent.compute.VirtualMachine") proto.RegisterType((*VirtualMachineOperationRequest)(nil), "moc.cloudagent.compute.VirtualMachineOperationRequest") proto.RegisterType((*VirtualMachineOperationResponse)(nil), "moc.cloudagent.compute.VirtualMachineOperationResponse") @@ -1331,116 +1283,115 @@ func init() { } var fileDescriptor_a65ab853cd24c92b = []byte{ - // 1732 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0x5f, 0x6f, 0xe3, 0xc6, - 0x11, 0x8f, 0x64, 0x5b, 0xb6, 0xc6, 0xff, 0xf7, 0x6c, 0x1f, 0xeb, 0xde, 0x39, 0x06, 0x2f, 0x48, - 0x9d, 0x6b, 0x22, 0xb5, 0xce, 0xf5, 0x1a, 0x14, 0x29, 0x02, 0xd9, 0x52, 0x62, 0x23, 0xb6, 0xac, - 0xac, 0x74, 0x77, 0xc0, 0xa1, 0xc0, 0x65, 0x4d, 0xae, 0xe5, 0x85, 0x45, 0x2e, 0xbb, 0xbb, 0xb4, - 0xa2, 0xa2, 0x2f, 0xbd, 0xa7, 0xf6, 0xa9, 0x1f, 0xa1, 0x5f, 0xa2, 0xed, 0x5b, 0x1f, 0xfa, 0xde, - 0xcf, 0xd1, 0xa7, 0x02, 0xfd, 0x0a, 0xc5, 0x2e, 0x29, 0x89, 0xa4, 0x48, 0xc3, 0x07, 0x34, 0x0f, - 0x79, 0x92, 0x38, 0x33, 0xbf, 0xdf, 0xce, 0xce, 0xce, 0xcc, 0xce, 0xc2, 0x13, 0x8f, 0x3b, 0x6f, - 0x9c, 0x01, 0x0f, 0x5d, 0xd2, 0xa7, 0xbe, 0x7a, 0x73, 0xcb, 0x84, 0x0a, 0xc9, 0xc0, 0x23, 0xce, - 0x35, 0xf3, 0x69, 0x2d, 0x10, 0x5c, 0x71, 0xb4, 0xe3, 0x71, 0xa7, 0x36, 0x35, 0xaa, 0x39, 0xdc, - 0x0b, 0x42, 0x45, 0x77, 0xf7, 0xfa, 0x9c, 0xf7, 0x07, 0xb4, 0x6e, 0xac, 0x2e, 0xc3, 0xab, 0xfa, - 0x50, 0x90, 0x20, 0xa0, 0x42, 0x46, 0xb8, 0xdd, 0x87, 0x86, 0x9c, 0x7b, 0x1e, 0xf7, 0xe3, 0x9f, - 0x58, 0xb1, 0x97, 0x56, 0x68, 0xb2, 0xa4, 0xde, 0xfe, 0x4b, 0x09, 0xb6, 0x5f, 0x46, 0x9e, 0x9c, - 0x47, 0x9e, 0x60, 0xfa, 0xdb, 0x90, 0x4a, 0x85, 0x3a, 0xb0, 0x9e, 0x56, 0x48, 0xab, 0xb4, 0x3f, - 0x77, 0xb0, 0x7c, 0xf8, 0x61, 0x2d, 0xdf, 0xc9, 0x5a, 0x86, 0x27, 0x0b, 0x47, 0xcf, 0x60, 0xf5, - 0x22, 0xa0, 0x82, 0x28, 0xc6, 0xfd, 0xde, 0x28, 0xa0, 0x56, 0x79, 0xbf, 0x74, 0xb0, 0x76, 0xb8, - 0x66, 0xf8, 0x26, 0x1a, 0x9c, 0x36, 0xb2, 0xff, 0x5a, 0x82, 0x9d, 0xac, 0x87, 0x32, 0xe0, 0xbe, - 0xa4, 0xdf, 0x83, 0x8b, 0x87, 0x50, 0xc1, 0x54, 0x86, 0x03, 0x65, 0x7c, 0x5b, 0x3e, 0xdc, 0xad, - 0x45, 0x81, 0xaf, 0x8d, 0x03, 0x5f, 0x3b, 0xe2, 0x7c, 0xf0, 0x92, 0x0c, 0x42, 0x8a, 0x63, 0x4b, - 0xb4, 0x05, 0x0b, 0x2d, 0x21, 0xb8, 0xb0, 0xe6, 0xf6, 0x4b, 0x07, 0x55, 0x1c, 0x7d, 0xd8, 0x35, - 0x58, 0xe9, 0x76, 0x4f, 0x3a, 0xe1, 0xe5, 0x80, 0x39, 0x5f, 0xd3, 0x11, 0xda, 0x83, 0xc5, 0x1b, - 0x3a, 0x72, 0x89, 0x22, 0x56, 0x49, 0xdb, 0x1d, 0xcd, 0xff, 0xf1, 0x6f, 0x56, 0x09, 0x8f, 0x85, - 0xb6, 0x0d, 0xf3, 0x4d, 0x26, 0x6f, 0xd0, 0x2e, 0x2c, 0xb9, 0x4c, 0xde, 0xf8, 0xc4, 0xa3, 0x91, - 0x21, 0x9e, 0x7c, 0xdb, 0xff, 0x2e, 0xc1, 0x56, 0x57, 0x71, 0x41, 0xfa, 0xf4, 0x98, 0xfb, 0x57, - 0xac, 0x1f, 0x46, 0x71, 0x42, 0xcf, 0xa0, 0xc2, 0xa5, 0x36, 0x33, 0x90, 0xe5, 0xc3, 0x47, 0x45, - 0xfb, 0xd7, 0x4b, 0xe0, 0xd8, 0x16, 0xfd, 0x0a, 0xaa, 0x7a, 0x69, 0xfd, 0x5f, 0x5a, 0x65, 0x13, - 0xb8, 0xbb, 0x81, 0x53, 0x73, 0xf4, 0x21, 0xac, 0x31, 0x8f, 0xf4, 0x29, 0xa6, 0x57, 0x54, 0x50, - 0xdf, 0xa1, 0xf1, 0xee, 0x33, 0x52, 0xf4, 0x0c, 0xb6, 0x6f, 0xbd, 0xc8, 0xd9, 0x63, 0xee, 0x2b, - 0xc2, 0x7c, 0x2a, 0xda, 0x7a, 0x6f, 0xf3, 0xc6, 0x3c, 0x5f, 0x69, 0x7f, 0x09, 0x1b, 0x6d, 0xaa, - 0x86, 0x5c, 0xdc, 0x9c, 0xfa, 0x8a, 0x8a, 0x2b, 0xe2, 0x50, 0x74, 0x08, 0x5b, 0x7e, 0x46, 0xd6, - 0x9e, 0x06, 0x29, 0x57, 0x67, 0x7f, 0x0b, 0x5b, 0x31, 0x4f, 0x3a, 0x5e, 0x27, 0x00, 0x6c, 0x6c, - 0x38, 0xce, 0x99, 0x83, 0xa2, 0xad, 0x67, 0x3d, 0xc1, 0x09, 0xac, 0xfd, 0xb6, 0x04, 0x9b, 0x2f, - 0x24, 0x15, 0x69, 0xfe, 0x7d, 0x58, 0x0a, 0x25, 0x15, 0xd3, 0x43, 0x8c, 0x4f, 0x7b, 0x22, 0xd5, - 0x16, 0x01, 0x91, 0x72, 0xc8, 0x85, 0x6b, 0x52, 0x6d, 0x62, 0x31, 0x96, 0xa2, 0x8f, 0x22, 0x0e, - 0xa5, 0x0b, 0x65, 0xce, 0x14, 0xca, 0xaa, 0xf1, 0x50, 0xaf, 0xa6, 0x0b, 0x03, 0x4f, 0xd4, 0x3a, - 0x5c, 0xb8, 0xd9, 0x49, 0xbb, 0xb0, 0x07, 0xe0, 0x32, 0x49, 0x2e, 0x07, 0x14, 0x37, 0x3b, 0xc6, - 0x89, 0x25, 0x9c, 0x90, 0x20, 0x04, 0xf3, 0x01, 0x17, 0x51, 0x9e, 0xaf, 0x62, 0xf3, 0xdf, 0x7e, - 0x0d, 0xe8, 0x8c, 0xf9, 0xe1, 0x77, 0x69, 0xa6, 0x26, 0x3c, 0x8e, 0x71, 0x9d, 0xd8, 0xb7, 0x46, - 0xa8, 0xae, 0xa9, 0xaf, 0x98, 0x63, 0x0c, 0x62, 0xf2, 0xbb, 0x8d, 0xec, 0x3f, 0x95, 0x61, 0xeb, - 0x15, 0xf3, 0x5d, 0x3e, 0x94, 0x69, 0xfa, 0xe7, 0xb0, 0x43, 0x7d, 0x0d, 0x6c, 0x84, 0x8a, 0x7b, - 0x44, 0x31, 0xe7, 0x45, 0xe0, 0x12, 0x65, 0xce, 0x45, 0xf3, 0x16, 0x68, 0x75, 0xa1, 0x28, 0xe6, - 0xd1, 0xd7, 0xdc, 0x8f, 0x1a, 0x49, 0x15, 0x4f, 0xbe, 0x51, 0x6f, 0x36, 0x20, 0x26, 0x86, 0x77, - 0x9c, 0x72, 0xd6, 0x1e, 0xcf, 0x86, 0xf4, 0x2b, 0x40, 0xaf, 0x98, 0x8f, 0xcf, 0xd3, 0xbc, 0xf3, - 0x86, 0xf7, 0xa1, 0xe1, 0x9d, 0x55, 0xe3, 0x1c, 0x88, 0xfd, 0xaf, 0x05, 0x78, 0x14, 0x37, 0x39, - 0xbf, 0xdf, 0x1d, 0x49, 0x45, 0xbd, 0xf4, 0x4a, 0x36, 0xac, 0xc4, 0x7e, 0x89, 0x44, 0x8e, 0xa7, - 0x64, 0xe8, 0x02, 0x56, 0x89, 0xeb, 0x31, 0x9f, 0x49, 0x25, 0x88, 0xe2, 0x22, 0xee, 0x58, 0x1f, - 0x15, 0x6d, 0x70, 0x26, 0x4b, 0x71, 0x1a, 0x8f, 0xbe, 0x80, 0x05, 0x9d, 0x51, 0xd2, 0x9a, 0x33, - 0xf5, 0xf0, 0x0e, 0x44, 0x11, 0x0e, 0x7d, 0x00, 0xe0, 0x84, 0x52, 0x71, 0xaf, 0xa9, 0xbb, 0xdc, - 0x7c, 0x22, 0xab, 0x13, 0x72, 0xd4, 0x04, 0x08, 0x4c, 0x57, 0xbc, 0xa1, 0x23, 0x69, 0x2d, 0x98, - 0xb5, 0x3e, 0x28, 0x5a, 0x2b, 0xd9, 0x42, 0x71, 0x02, 0x87, 0x7e, 0xa6, 0x3b, 0x9e, 0xa9, 0x8d, - 0x8a, 0xa9, 0x0d, 0x2b, 0x79, 0x89, 0x8c, 0x83, 0x6a, 0xca, 0x24, 0xb6, 0x43, 0xdf, 0xc0, 0x26, - 0x97, 0x47, 0x9c, 0x2b, 0xbd, 0xdf, 0xa0, 0xe5, 0xf7, 0x99, 0x4f, 0xad, 0x45, 0x03, 0x7e, 0x92, - 0x07, 0xce, 0x98, 0xe2, 0x59, 0x34, 0x7a, 0x0d, 0x68, 0x30, 0x53, 0x2f, 0xd6, 0x92, 0x39, 0x87, - 0xa7, 0x45, 0x5b, 0x9a, 0xad, 0x30, 0x9c, 0xc3, 0x82, 0xbe, 0x85, 0xad, 0x61, 0x4e, 0xb9, 0x58, - 0x55, 0xc3, 0xfe, 0x71, 0x11, 0x7b, 0x5e, 0x89, 0xe1, 0x5c, 0x26, 0x9d, 0xce, 0x81, 0xe0, 0xdf, - 0x8d, 0xd2, 0xfc, 0x90, 0x48, 0xe7, 0xce, 0x8c, 0x1a, 0xe7, 0x40, 0xec, 0xff, 0x94, 0x60, 0xfb, - 0x84, 0x08, 0x77, 0x48, 0x44, 0xe6, 0x5e, 0xfa, 0x14, 0x2a, 0x2f, 0xcf, 0xbb, 0xec, 0x77, 0x51, - 0x06, 0xaf, 0x1d, 0xfe, 0xd8, 0xd0, 0xa6, 0x2f, 0x5d, 0xad, 0x8e, 0x0e, 0x2a, 0x32, 0x45, 0xbf, - 0x1e, 0xa7, 0x91, 0x01, 0x46, 0x59, 0xfd, 0x38, 0x07, 0x78, 0x3c, 0x31, 0xc2, 0x09, 0x00, 0x7a, - 0x03, 0xbb, 0xee, 0xc8, 0x27, 0x1e, 0x73, 0xce, 0xa9, 0xc7, 0xc5, 0x28, 0xaf, 0x0b, 0xbc, 0x6f, - 0xe8, 0x9a, 0x85, 0x66, 0xf8, 0x0e, 0x0a, 0xfb, 0x73, 0x58, 0x79, 0x41, 0xaf, 0x58, 0x97, 0x2a, - 0x9d, 0x2c, 0x12, 0x7d, 0x0c, 0x9b, 0x92, 0x3a, 0xa1, 0xa0, 0x3a, 0x3d, 0x5a, 0xa6, 0x59, 0xb9, - 0x71, 0xef, 0x9a, 0x55, 0xd8, 0x7f, 0x2f, 0xc1, 0x76, 0x57, 0x4b, 0x99, 0x4a, 0xf3, 0xa2, 0x47, - 0x50, 0x8d, 0x5a, 0x5d, 0xaf, 0x73, 0x1e, 0xe3, 0xa7, 0x02, 0x74, 0x02, 0x2b, 0x61, 0x62, 0xd5, - 0x38, 0x2e, 0x85, 0x85, 0x93, 0xf4, 0x10, 0xa7, 0x90, 0xe8, 0x17, 0xb0, 0x22, 0x63, 0x07, 0x7a, - 0xd3, 0xcb, 0x65, 0xd3, 0x30, 0x75, 0x13, 0x0a, 0x9c, 0x32, 0xb3, 0x8f, 0x61, 0xbd, 0x71, 0x4b, - 0xd8, 0x80, 0x5c, 0xb2, 0x01, 0x53, 0xa3, 0x2e, 0x55, 0xfa, 0x0e, 0x49, 0xcc, 0x29, 0xe6, 0xbf, - 0xde, 0x45, 0x5f, 0xf0, 0x30, 0x30, 0x7d, 0x2b, 0xea, 0xcb, 0x53, 0x81, 0xfd, 0x76, 0x09, 0xd6, - 0xd2, 0xa7, 0x98, 0x4b, 0xb2, 0x06, 0x65, 0x16, 0xdf, 0x8b, 0xb8, 0xcc, 0x5c, 0xf4, 0x25, 0x2c, - 0xca, 0x68, 0xee, 0x89, 0x0f, 0xb0, 0x30, 0xff, 0xf3, 0xc6, 0x23, 0x3c, 0x06, 0xa3, 0x26, 0x94, - 0xb9, 0x8c, 0x3b, 0xf6, 0xb3, 0x22, 0x8a, 0xbb, 0x3a, 0x33, 0x2e, 0x73, 0xa9, 0xbd, 0x89, 0xa7, - 0x0d, 0x6b, 0xe1, 0x6e, 0x6f, 0xf2, 0x86, 0x0f, 0x3c, 0x06, 0xeb, 0x1b, 0xcc, 0xe7, 0x6e, 0x34, - 0xc5, 0x54, 0xa2, 0x1b, 0x6c, 0xfc, 0x9d, 0x0e, 0xe3, 0x62, 0x26, 0x8c, 0xe8, 0x09, 0x54, 0xa4, - 0x22, 0x2a, 0x94, 0x71, 0xb3, 0x59, 0x8e, 0x0e, 0xcf, 0x88, 0x70, 0xac, 0xd2, 0x97, 0xc8, 0x80, - 0x47, 0xb7, 0xaf, 0x61, 0xa9, 0x46, 0x97, 0x48, 0x52, 0x86, 0x3e, 0x83, 0x87, 0xf1, 0xb5, 0x7d, - 0xc2, 0xfa, 0xd7, 0xc9, 0xf3, 0x35, 0x8d, 0x60, 0x09, 0x17, 0xa9, 0xd1, 0x73, 0xa8, 0xdc, 0x9a, - 0x06, 0x6b, 0x2d, 0x9b, 0xfc, 0xd9, 0x2b, 0x1c, 0xb9, 0xcf, 0xa3, 0xea, 0x8e, 0xac, 0xd1, 0x29, - 0x2c, 0x5d, 0xc7, 0xbd, 0xc2, 0x5a, 0x31, 0xce, 0x7f, 0x52, 0x84, 0xcc, 0xed, 0x29, 0x78, 0x02, - 0xd7, 0x85, 0x47, 0x06, 0x03, 0x3e, 0xa4, 0xee, 0xc5, 0x50, 0x4f, 0x8e, 0xdc, 0xa5, 0xd2, 0x5a, - 0xdd, 0x9f, 0x3b, 0xa8, 0xe2, 0x59, 0x05, 0xaa, 0x03, 0x04, 0x7c, 0x48, 0x85, 0x8e, 0x12, 0xb5, - 0xd6, 0x8c, 0xd3, 0xeb, 0x51, 0x9b, 0x9b, 0x88, 0x71, 0xc2, 0x44, 0x7b, 0x3a, 0x2e, 0x00, 0x6b, - 0xfd, 0x6e, 0x4f, 0x73, 0x0b, 0x1a, 0x4f, 0xe0, 0xe8, 0x31, 0xcc, 0x2b, 0xd2, 0x97, 0xd6, 0x86, - 0xa1, 0xa9, 0x1a, 0x9a, 0x1e, 0xe9, 0x4b, 0x6c, 0xc4, 0xe8, 0x73, 0x80, 0xbe, 0x7e, 0x73, 0x35, - 0x34, 0xa9, 0xb5, 0x99, 0x18, 0xe1, 0xbf, 0x9a, 0x88, 0xd3, 0xd4, 0x09, 0x7b, 0xf4, 0x1b, 0xd8, - 0x99, 0x7e, 0x9d, 0xfa, 0x52, 0x11, 0xdf, 0xa1, 0x2f, 0x19, 0x1d, 0x5a, 0x28, 0xd1, 0x23, 0xd2, - 0x55, 0x37, 0x63, 0x8b, 0x0b, 0x38, 0xd0, 0x37, 0xb0, 0x4e, 0xd2, 0x65, 0x6f, 0x3d, 0x30, 0xb4, - 0x3f, 0x29, 0x0a, 0x46, 0xa6, 0x4b, 0xe0, 0x2c, 0xde, 0xfe, 0x73, 0x19, 0xf6, 0xd2, 0xee, 0x4c, - 0x1f, 0x7f, 0xdf, 0xdb, 0xe3, 0xf3, 0x15, 0xec, 0x5c, 0x1c, 0x75, 0x2f, 0xce, 0x5a, 0xbd, 0xd6, - 0x9b, 0xbc, 0x57, 0xe8, 0xa3, 0x9c, 0x28, 0x4d, 0xec, 0x8e, 0xca, 0x56, 0x09, 0x6f, 0x8f, 0xf1, - 0x29, 0x38, 0x3a, 0xca, 0xbe, 0x6a, 0xe7, 0x12, 0x7c, 0x1d, 0xc1, 0x6f, 0x99, 0x4b, 0x45, 0xc3, - 0x71, 0xa8, 0x94, 0x85, 0x6f, 0xdc, 0x7f, 0x94, 0xe0, 0xfd, 0xc2, 0x88, 0xfc, 0x00, 0x1e, 0xbb, - 0xff, 0x2d, 0x67, 0xfd, 0xc7, 0xa1, 0x7f, 0xcc, 0x3d, 0x8f, 0xf8, 0xee, 0xf8, 0x48, 0xdb, 0xd9, - 0xce, 0x1f, 0xbf, 0x55, 0xef, 0xeb, 0x7e, 0xf6, 0xde, 0x68, 0x40, 0xa5, 0xcb, 0x43, 0xe1, 0xd0, - 0xd4, 0xe0, 0x5b, 0xe4, 0x45, 0xd7, 0x11, 0x2c, 0x50, 0x11, 0x00, 0xc7, 0x40, 0xc4, 0xe0, 0x47, - 0x53, 0x8b, 0x53, 0x3f, 0x08, 0x55, 0x87, 0x08, 0xe2, 0x51, 0x35, 0x9d, 0x82, 0x7f, 0x7a, 0x27, - 0x6b, 0x1a, 0x83, 0x8b, 0xd9, 0x90, 0x0d, 0x55, 0x1c, 0xfa, 0x0d, 0xa9, 0x87, 0xe7, 0xd4, 0x68, - 0x3c, 0x15, 0xa3, 0xa7, 0xb0, 0x6a, 0x3e, 0xc6, 0x2f, 0x28, 0x73, 0xbb, 0x8c, 0xed, 0xd2, 0x2a, - 0xfb, 0x9f, 0x25, 0xd8, 0x2f, 0x8e, 0x78, 0x9c, 0x32, 0xff, 0xef, 0x90, 0x9f, 0xc3, 0x4a, 0xaa, - 0xbf, 0xdc, 0x27, 0xf0, 0xa9, 0x26, 0x93, 0x82, 0x3f, 0xfd, 0x42, 0x4f, 0x87, 0xa6, 0x86, 0x00, - 0x2a, 0xbd, 0x56, 0xbb, 0xd1, 0xee, 0x6d, 0xbc, 0x87, 0x36, 0x60, 0xe5, 0xec, 0xa2, 0xd1, 0x3c, - 0x6a, 0x9c, 0x35, 0xda, 0xc7, 0x2d, 0xbc, 0x51, 0x42, 0x0f, 0xe1, 0x41, 0xb7, 0xd7, 0x38, 0xfe, - 0xba, 0xd5, 0x3c, 0xbe, 0x68, 0xf7, 0xf0, 0xc5, 0x59, 0xe7, 0xac, 0xd1, 0x6e, 0x6d, 0x94, 0x0f, - 0xdf, 0xce, 0xc1, 0x83, 0x9c, 0xbe, 0x86, 0x18, 0x54, 0x4e, 0xfd, 0x5b, 0x7e, 0x43, 0xd1, 0x27, - 0xf7, 0xdc, 0x69, 0x94, 0xa3, 0xbb, 0xb5, 0xfb, 0x9a, 0x47, 0x01, 0xb6, 0xdf, 0x43, 0xbf, 0x87, - 0xc5, 0xa8, 0x54, 0x29, 0x7a, 0x7e, 0x3f, 0x70, 0xb6, 0xd7, 0xed, 0xfe, 0xf2, 0x9d, 0x71, 0x93, - 0xd5, 0xff, 0x50, 0x02, 0x98, 0x86, 0x1a, 0xdd, 0x93, 0x69, 0xa6, 0x36, 0x77, 0x3f, 0x7b, 0x77, - 0xe0, 0xd8, 0x87, 0xa3, 0x9f, 0xbf, 0xae, 0xf7, 0x99, 0xba, 0x0e, 0x2f, 0x35, 0xa8, 0xee, 0x31, - 0x47, 0x70, 0xc9, 0xaf, 0x54, 0xdd, 0xe3, 0x4e, 0x5d, 0x04, 0x4e, 0x7d, 0xca, 0x5a, 0x8f, 0x59, - 0x2f, 0x2b, 0xa6, 0xc1, 0x7c, 0xfa, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xf4, 0x02, 0x86, - 0x13, 0x15, 0x00, 0x00, + // 1726 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0x4f, 0x6f, 0xe3, 0xc6, + 0x15, 0x8f, 0x64, 0x5b, 0xb6, 0x9e, 0xff, 0xac, 0x3d, 0x6b, 0x7b, 0x59, 0x77, 0xd7, 0x31, 0xb8, + 0x41, 0xe0, 0x6c, 0x13, 0xa9, 0x75, 0xb6, 0xdb, 0xa0, 0x48, 0xb1, 0x90, 0x2d, 0x25, 0x36, 0x62, + 0xcb, 0xea, 0x48, 0xbb, 0x0b, 0x2c, 0x0a, 0x38, 0x63, 0x72, 0x2c, 0x0f, 0x2c, 0x72, 0xd8, 0x99, + 0xa1, 0x15, 0x15, 0xbd, 0x34, 0xa7, 0xf6, 0xd4, 0x8f, 0xd0, 0x2f, 0xd1, 0xf6, 0xd6, 0x43, 0xef, + 0xfd, 0x1c, 0x3d, 0x15, 0x68, 0x3f, 0x42, 0x31, 0x43, 0x52, 0x22, 0x25, 0xd2, 0xf0, 0x02, 0xdd, + 0x43, 0x4f, 0x12, 0xdf, 0xfb, 0xfd, 0x7e, 0x7c, 0x7c, 0xf3, 0xde, 0x9b, 0x19, 0x78, 0xea, 0x71, + 0xe7, 0xc2, 0x19, 0xf0, 0xd0, 0x25, 0x7d, 0xea, 0xab, 0x8b, 0x5b, 0x26, 0x54, 0x48, 0x06, 0x1e, + 0x71, 0xae, 0x99, 0x4f, 0x6b, 0x81, 0xe0, 0x8a, 0xa3, 0x6d, 0x8f, 0x3b, 0xb5, 0x09, 0xa8, 0xe6, + 0x70, 0x2f, 0x08, 0x15, 0xdd, 0xd9, 0xed, 0x73, 0xde, 0x1f, 0xd0, 0xba, 0x41, 0x5d, 0x86, 0x57, + 0xf5, 0xa1, 0x20, 0x41, 0x40, 0x85, 0x8c, 0x78, 0x3b, 0x8f, 0x8c, 0x38, 0xf7, 0x3c, 0xee, 0xc7, + 0x3f, 0xb1, 0x63, 0x37, 0xeb, 0xd0, 0x62, 0x69, 0xbf, 0xfd, 0xa7, 0x12, 0x6c, 0xbd, 0x8e, 0x22, + 0x39, 0x8b, 0x22, 0xc1, 0xf4, 0xd7, 0x21, 0x95, 0x0a, 0x75, 0xe0, 0x41, 0xd6, 0x21, 0xad, 0xd2, + 0xde, 0xdc, 0xfe, 0xf2, 0xc1, 0xc7, 0xb5, 0xfc, 0x20, 0x6b, 0x53, 0x3a, 0xd3, 0x74, 0xf4, 0x1c, + 0x56, 0xcf, 0x03, 0x2a, 0x88, 0x62, 0xdc, 0xef, 0x8d, 0x02, 0x6a, 0x95, 0xf7, 0x4a, 0xfb, 0x6b, + 0x07, 0x6b, 0x46, 0x6f, 0xec, 0xc1, 0x59, 0x90, 0xfd, 0xe7, 0x12, 0x6c, 0x4f, 0x47, 0x28, 0x03, + 0xee, 0x4b, 0xfa, 0x1e, 0x42, 0x3c, 0x80, 0x0a, 0xa6, 0x32, 0x1c, 0x28, 0x13, 0xdb, 0xf2, 0xc1, + 0x4e, 0x2d, 0x4a, 0x7c, 0x2d, 0x49, 0x7c, 0xed, 0x90, 0xf3, 0xc1, 0x6b, 0x32, 0x08, 0x29, 0x8e, + 0x91, 0x68, 0x13, 0x16, 0x5a, 0x42, 0x70, 0x61, 0xcd, 0xed, 0x95, 0xf6, 0xab, 0x38, 0x7a, 0xb0, + 0x6b, 0xb0, 0xd2, 0xed, 0x1e, 0x77, 0xc2, 0xcb, 0x01, 0x73, 0xbe, 0xa1, 0x23, 0xb4, 0x0b, 0x8b, + 0x37, 0x74, 0xe4, 0x12, 0x45, 0xac, 0x92, 0xc6, 0x1d, 0xce, 0xff, 0xfe, 0x2f, 0x56, 0x09, 0x27, + 0x46, 0xdb, 0x86, 0xf9, 0x26, 0x93, 0x37, 0x68, 0x07, 0x96, 0x5c, 0x26, 0x6f, 0x7c, 0xe2, 0xd1, + 0x08, 0x88, 0xc7, 0xcf, 0xf6, 0x3f, 0x4b, 0xb0, 0xd9, 0x55, 0x5c, 0x90, 0x3e, 0x3d, 0xe2, 0xfe, + 0x15, 0xeb, 0x87, 0x51, 0x9e, 0xd0, 0x73, 0xa8, 0x70, 0xa9, 0x61, 0x86, 0xb2, 0x7c, 0xf0, 0xb8, + 0xe8, 0xfb, 0xf5, 0x2b, 0x70, 0x8c, 0x45, 0x3f, 0x87, 0xaa, 0x7e, 0xb5, 0xfe, 0x2f, 0xad, 0xb2, + 0x49, 0xdc, 0xdd, 0xc4, 0x09, 0x1c, 0x7d, 0x0c, 0x6b, 0xcc, 0x23, 0x7d, 0x8a, 0xe9, 0x15, 0x15, + 0xd4, 0x77, 0x68, 0xfc, 0xf5, 0x53, 0x56, 0xf4, 0x1c, 0xb6, 0x6e, 0xbd, 0x28, 0xd8, 0x23, 0xee, + 0x2b, 0xc2, 0x7c, 0x2a, 0xda, 0xfa, 0xdb, 0xe6, 0x0d, 0x3c, 0xdf, 0x69, 0x7f, 0x05, 0xeb, 0x6d, + 0xaa, 0x86, 0x5c, 0xdc, 0x9c, 0xf8, 0x8a, 0x8a, 0x2b, 0xe2, 0x50, 0x74, 0x00, 0x9b, 0xfe, 0x94, + 0xad, 0x3d, 0x49, 0x52, 0xae, 0xcf, 0xfe, 0x16, 0x36, 0x63, 0x9d, 0x6c, 0xbe, 0x8e, 0x01, 0x58, + 0x02, 0x4c, 0x6a, 0x66, 0xbf, 0xe8, 0xd3, 0xa7, 0x23, 0xc1, 0x29, 0xae, 0xfd, 0x7d, 0x09, 0x36, + 0x5e, 0x49, 0x2a, 0xb2, 0xfa, 0x7b, 0xb0, 0x14, 0x4a, 0x2a, 0x26, 0x8b, 0x18, 0xaf, 0xf6, 0xd8, + 0xaa, 0x11, 0x01, 0x91, 0x72, 0xc8, 0x85, 0x6b, 0x4a, 0x6d, 0x8c, 0x48, 0xac, 0xe8, 0x93, 0x48, + 0x43, 0xe9, 0x46, 0x99, 0x33, 0x8d, 0xb2, 0x6a, 0x22, 0xd4, 0x6f, 0xd3, 0x8d, 0x81, 0xc7, 0x6e, + 0x9d, 0x2e, 0xdc, 0xec, 0x64, 0x43, 0xd8, 0x05, 0x70, 0x99, 0x24, 0x97, 0x03, 0x8a, 0x9b, 0x1d, + 0x13, 0xc4, 0x12, 0x4e, 0x59, 0x10, 0x82, 0xf9, 0x80, 0x8b, 0xa8, 0xce, 0x57, 0xb1, 0xf9, 0x6f, + 0xbf, 0x05, 0x74, 0xca, 0xfc, 0xf0, 0xbb, 0xac, 0x52, 0x13, 0x9e, 0xc4, 0xbc, 0x4e, 0x1c, 0x5b, + 0x23, 0x54, 0xd7, 0xd4, 0x57, 0xcc, 0x31, 0x80, 0x58, 0xfc, 0x6e, 0x90, 0xfd, 0x87, 0x32, 0x6c, + 0xbe, 0x61, 0xbe, 0xcb, 0x87, 0x32, 0x2b, 0xff, 0x02, 0xb6, 0xa9, 0xaf, 0x89, 0x8d, 0x50, 0x71, + 0x8f, 0x28, 0xe6, 0xbc, 0x0a, 0x5c, 0xa2, 0xcc, 0xba, 0x68, 0xdd, 0x02, 0xaf, 0x6e, 0x14, 0xc5, + 0x3c, 0xfa, 0x96, 0xfb, 0xd1, 0x20, 0xa9, 0xe2, 0xf1, 0x33, 0xea, 0xcd, 0x26, 0xc4, 0xe4, 0xf0, + 0x8e, 0x55, 0x9e, 0xc6, 0xe3, 0xd9, 0x94, 0x7e, 0x0d, 0xe8, 0x0d, 0xf3, 0xf1, 0x59, 0x56, 0x77, + 0xde, 0xe8, 0x3e, 0x32, 0xba, 0xb3, 0x6e, 0x9c, 0x43, 0xb1, 0xff, 0xb1, 0x00, 0x8f, 0xe3, 0x21, + 0xe7, 0xf7, 0xbb, 0x23, 0xa9, 0xa8, 0x97, 0x7d, 0x93, 0x0d, 0x2b, 0x71, 0x5c, 0x22, 0x55, 0xe3, + 0x19, 0x1b, 0x3a, 0x87, 0x55, 0xe2, 0x7a, 0xcc, 0x67, 0x52, 0x09, 0xa2, 0xb8, 0x88, 0x27, 0xd6, + 0x27, 0x45, 0x1f, 0x38, 0x53, 0xa5, 0x38, 0xcb, 0x47, 0x2f, 0x61, 0x41, 0x57, 0x94, 0xb4, 0xe6, + 0x4c, 0x3f, 0xbc, 0x83, 0x50, 0xc4, 0x43, 0x1f, 0x01, 0x38, 0xa1, 0x54, 0xdc, 0x6b, 0xea, 0x29, + 0x37, 0x9f, 0xaa, 0xea, 0x94, 0x1d, 0x35, 0x01, 0x02, 0x33, 0x15, 0x6f, 0xe8, 0x48, 0x5a, 0x0b, + 0xe6, 0x5d, 0x1f, 0x15, 0xbd, 0x2b, 0x3d, 0x42, 0x71, 0x8a, 0x87, 0x7e, 0xac, 0x27, 0x9e, 0xe9, + 0x8d, 0x8a, 0xe9, 0x0d, 0x2b, 0xbd, 0x89, 0x24, 0x49, 0x35, 0x6d, 0x12, 0xe3, 0xd0, 0x2f, 0x61, + 0x83, 0xcb, 0x43, 0xce, 0x95, 0xfe, 0xde, 0xa0, 0xe5, 0xf7, 0x99, 0x4f, 0xad, 0x45, 0x43, 0x7e, + 0x9a, 0x47, 0x9e, 0x82, 0xe2, 0x59, 0x36, 0x7a, 0x0b, 0x68, 0x30, 0xd3, 0x2f, 0xd6, 0x92, 0x59, + 0x87, 0x67, 0x45, 0x9f, 0x34, 0xdb, 0x61, 0x38, 0x47, 0x05, 0x7d, 0x0b, 0x9b, 0xc3, 0x9c, 0x76, + 0xb1, 0xaa, 0x46, 0xfd, 0xd3, 0x22, 0xf5, 0xbc, 0x16, 0xc3, 0xb9, 0x4a, 0xba, 0x9c, 0x03, 0xc1, + 0xbf, 0x1b, 0x65, 0xf5, 0x21, 0x55, 0xce, 0x9d, 0x19, 0x37, 0xce, 0xa1, 0xd8, 0xff, 0x2a, 0xc1, + 0xd6, 0x31, 0x11, 0xee, 0x90, 0x88, 0xa9, 0x7d, 0xe9, 0x73, 0xa8, 0xbc, 0x3e, 0xeb, 0xb2, 0xdf, + 0x44, 0x15, 0xbc, 0x76, 0xf0, 0x43, 0x23, 0x9b, 0xdd, 0x74, 0xb5, 0x3b, 0x5a, 0xa8, 0x08, 0x8a, + 0x7e, 0x91, 0x94, 0x91, 0x21, 0x46, 0x55, 0xfd, 0x24, 0x87, 0x78, 0x34, 0x06, 0xe1, 0x14, 0x01, + 0x5d, 0xc0, 0x8e, 0x3b, 0xf2, 0x89, 0xc7, 0x9c, 0x33, 0xea, 0x71, 0x31, 0xca, 0x9b, 0x02, 0x1f, + 0x1a, 0xb9, 0x66, 0x21, 0x0c, 0xdf, 0x21, 0x61, 0x7f, 0x09, 0x2b, 0xaf, 0xe8, 0x15, 0xeb, 0x52, + 0xa5, 0x8b, 0x45, 0xa2, 0x4f, 0x61, 0x43, 0x52, 0x27, 0x14, 0x54, 0x97, 0x47, 0xcb, 0x0c, 0x2b, + 0x37, 0x9e, 0x5d, 0xb3, 0x0e, 0xfb, 0xaf, 0x25, 0xd8, 0xea, 0x6a, 0x2b, 0x53, 0x59, 0x5d, 0xf4, + 0x18, 0xaa, 0xd1, 0xa8, 0xeb, 0x75, 0xce, 0x62, 0xfe, 0xc4, 0x80, 0x8e, 0x61, 0x25, 0x4c, 0xbd, + 0x35, 0xce, 0x4b, 0x61, 0xe3, 0xa4, 0x23, 0xc4, 0x19, 0x26, 0xfa, 0x29, 0xac, 0xc8, 0x38, 0x80, + 0xde, 0x64, 0x73, 0xd9, 0x30, 0x4a, 0xdd, 0x94, 0x03, 0x67, 0x60, 0xf6, 0x7f, 0x16, 0x61, 0x2d, + 0xbb, 0x00, 0x7a, 0x0f, 0x49, 0x9d, 0x53, 0xcc, 0x7f, 0xb4, 0x06, 0x65, 0x16, 0x6f, 0x69, 0xb8, + 0xcc, 0x5c, 0xf4, 0x15, 0x2c, 0xca, 0xe8, 0xc8, 0x12, 0xe7, 0xbe, 0xb0, 0x74, 0xf3, 0x4e, 0x36, + 0x38, 0x21, 0xa3, 0x26, 0x94, 0xb9, 0x8c, 0x87, 0xed, 0xf3, 0x22, 0x89, 0xbb, 0x86, 0x2a, 0x2e, + 0x73, 0xa9, 0xa3, 0x89, 0x0f, 0x0a, 0xd6, 0xc2, 0xdd, 0xd1, 0xe4, 0x9d, 0x1b, 0x70, 0x42, 0xd6, + 0x9b, 0x8f, 0xcf, 0xdd, 0xe8, 0x00, 0x52, 0x89, 0x36, 0x9f, 0xe4, 0x59, 0xaf, 0x63, 0x5f, 0xf0, + 0x30, 0x30, 0xce, 0x45, 0xe3, 0x9c, 0x18, 0xd0, 0x53, 0xa8, 0x48, 0x45, 0x54, 0x28, 0xe3, 0x39, + 0xb1, 0x1c, 0xe5, 0xdd, 0x98, 0x70, 0xec, 0xd2, 0xf3, 0x7f, 0xc0, 0xa3, 0x8d, 0xd3, 0xa8, 0x54, + 0xa3, 0xf9, 0x9f, 0xb6, 0xa1, 0x2f, 0xe0, 0x51, 0xbc, 0xe3, 0x1e, 0xb3, 0xfe, 0x75, 0xe3, 0x96, + 0xb0, 0x01, 0xb9, 0x64, 0x03, 0xa6, 0x46, 0xa6, 0x87, 0x97, 0x70, 0x91, 0x1b, 0xbd, 0x80, 0xca, + 0xad, 0x99, 0x8d, 0xd6, 0xb2, 0x59, 0xfa, 0xdd, 0xc2, 0xd3, 0xf2, 0x59, 0xd4, 0x98, 0x11, 0x1a, + 0x9d, 0xc0, 0xd2, 0x75, 0xdc, 0xe6, 0xd6, 0x8a, 0x09, 0xfe, 0xb3, 0x22, 0x66, 0xee, 0x38, 0xc0, + 0x63, 0xba, 0xee, 0x19, 0x32, 0x18, 0xf0, 0x21, 0x75, 0xcf, 0x87, 0xfa, 0xd0, 0xc7, 0x5d, 0x2a, + 0xad, 0xd5, 0xbd, 0xb9, 0xfd, 0x2a, 0x9e, 0x75, 0xa0, 0x3a, 0x40, 0xc0, 0x87, 0x54, 0xe8, 0x2c, + 0x51, 0x6b, 0xcd, 0x04, 0xfd, 0x20, 0x9a, 0x50, 0x63, 0x33, 0x4e, 0x41, 0x74, 0xa4, 0x49, 0xed, + 0x5a, 0x0f, 0xee, 0x8e, 0x34, 0xb7, 0x17, 0xf1, 0x98, 0x8e, 0x9e, 0xc0, 0xbc, 0x22, 0x7d, 0x69, + 0xad, 0x1b, 0x99, 0xaa, 0x91, 0xe9, 0x91, 0xbe, 0xc4, 0xc6, 0x8c, 0xbe, 0x04, 0xe8, 0xeb, 0xeb, + 0x52, 0x43, 0x8b, 0x5a, 0x1b, 0xa9, 0xd3, 0xf7, 0xd7, 0x63, 0x73, 0x56, 0x3a, 0x85, 0x47, 0xbf, + 0x82, 0xed, 0xc9, 0xd3, 0x89, 0x2f, 0x15, 0xf1, 0x1d, 0xfa, 0x9a, 0xd1, 0xa1, 0x85, 0x52, 0xed, + 0x9d, 0xed, 0xba, 0x19, 0x2c, 0x2e, 0xd0, 0x40, 0x2f, 0xe1, 0x01, 0x49, 0xad, 0x7b, 0x97, 0x2a, + 0xeb, 0xa1, 0x91, 0xdd, 0x32, 0xb2, 0x47, 0x3a, 0x19, 0xdd, 0xf0, 0x12, 0x53, 0xc9, 0x43, 0xe1, + 0x50, 0x3c, 0x8d, 0xb6, 0xff, 0x58, 0x86, 0xdd, 0xec, 0xcb, 0x27, 0xb7, 0xb4, 0xf7, 0x76, 0x4b, + 0x7c, 0x03, 0xdb, 0xe7, 0x87, 0xdd, 0xf3, 0xd3, 0x56, 0xaf, 0x75, 0x91, 0x77, 0x5d, 0x7c, 0x9c, + 0x93, 0x93, 0x31, 0xee, 0xb0, 0x6c, 0x95, 0xf0, 0x56, 0xc2, 0xcf, 0xd0, 0xd1, 0xe1, 0xf4, 0xf5, + 0x73, 0x2e, 0xa5, 0xd7, 0x11, 0xfc, 0x96, 0xb9, 0x54, 0x34, 0x1c, 0x87, 0x4a, 0x59, 0x78, 0x19, + 0xfd, 0x5b, 0x09, 0x3e, 0x2c, 0xcc, 0xc8, 0xff, 0xc1, 0xad, 0xf4, 0xdf, 0xe5, 0xe9, 0xf8, 0x71, + 0xe8, 0x1f, 0x71, 0xcf, 0x23, 0xbe, 0x9b, 0x2c, 0x69, 0x7b, 0x7a, 0xce, 0xc7, 0x97, 0xca, 0xfb, + 0x86, 0x3f, 0xbd, 0x4b, 0x34, 0xa0, 0xd2, 0x35, 0x05, 0x96, 0x39, 0xa1, 0x16, 0x45, 0xd1, 0x75, + 0x04, 0x0b, 0x54, 0x44, 0xc0, 0x31, 0x11, 0x31, 0xf8, 0xc1, 0x04, 0x71, 0xe2, 0x07, 0xa1, 0xea, + 0x10, 0x41, 0x3c, 0xaa, 0x26, 0xc7, 0xd5, 0x1f, 0xdd, 0xa9, 0x9a, 0xe5, 0xe0, 0x62, 0x35, 0x64, + 0x43, 0x15, 0x87, 0x7e, 0x43, 0xea, 0x53, 0x6e, 0xe6, 0x0c, 0x3b, 0x31, 0xa3, 0x67, 0xb0, 0x6a, + 0x1e, 0x92, 0xab, 0x8e, 0xd9, 0x4b, 0x12, 0x5c, 0xd6, 0x65, 0xff, 0xbd, 0x04, 0x7b, 0xc5, 0x19, + 0x8f, 0x4b, 0xe6, 0x7f, 0x9d, 0xf2, 0x33, 0x58, 0xc9, 0x4c, 0x93, 0xfb, 0x24, 0x3e, 0x33, 0x52, + 0x32, 0xf4, 0x67, 0x2f, 0xf5, 0x31, 0xce, 0xf4, 0x10, 0x40, 0xa5, 0xd7, 0x6a, 0x37, 0xda, 0xbd, + 0xf5, 0x0f, 0xd0, 0x3a, 0xac, 0x9c, 0x9e, 0x37, 0x9a, 0x87, 0x8d, 0xd3, 0x46, 0xfb, 0xa8, 0x85, + 0xd7, 0x4b, 0xe8, 0x11, 0x3c, 0xec, 0xf6, 0x1a, 0x47, 0xdf, 0xb4, 0x9a, 0x47, 0xe7, 0xed, 0x1e, + 0x3e, 0x3f, 0xed, 0x9c, 0x36, 0xda, 0xad, 0xf5, 0xf2, 0xc1, 0xf7, 0x73, 0xf0, 0x30, 0x67, 0x8a, + 0x21, 0x06, 0x95, 0x13, 0xff, 0x96, 0xdf, 0x50, 0xf4, 0xd9, 0x3d, 0xbf, 0x34, 0xaa, 0xd1, 0x9d, + 0xda, 0x7d, 0xe1, 0x51, 0x82, 0xed, 0x0f, 0xd0, 0x6f, 0x61, 0x31, 0x6a, 0x55, 0x8a, 0x5e, 0xdc, + 0x8f, 0x3c, 0x3d, 0xeb, 0x76, 0x7e, 0xf6, 0xce, 0xbc, 0xf1, 0xdb, 0x7f, 0x57, 0x02, 0x98, 0xa4, + 0x1a, 0xdd, 0x53, 0x69, 0xa6, 0x37, 0x77, 0xbe, 0x78, 0x77, 0x62, 0x12, 0xc3, 0xe1, 0x4f, 0xde, + 0xd6, 0xfb, 0x4c, 0x5d, 0x87, 0x97, 0x9a, 0x54, 0xf7, 0x98, 0x23, 0xb8, 0xe4, 0x57, 0xaa, 0xee, + 0x71, 0xa7, 0x2e, 0x02, 0xa7, 0x3e, 0x51, 0xad, 0xc7, 0xaa, 0x97, 0x15, 0x33, 0x60, 0x3e, 0xff, + 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x53, 0x5f, 0xf8, 0xbc, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto index 1677156..23f15e7 100644 --- a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto +++ b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto @@ -103,11 +103,6 @@ message SecurityConfiguration { SecurityType securityType = 3; } -message AvailabilitySet { - string name = 1; - string groupName = 2; -} - message VirtualMachine { string name = 1; string id = 2; @@ -127,7 +122,7 @@ message VirtualMachine { Tags tags = 16; GuestAgentConfiguration guestAgent = 17; VirtualMachineAgentInstanceView guestAgentInstanceView = 18; - AvailabilitySet availabilitySet = 19; + CloudSubResource availabilitySet = 19; } message VirtualMachineOperationRequest { diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index 60be4e2..7440f8b 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -1273,41 +1273,93 @@ func (m *Status) GetValidationStatus() *ValidationStatus { return nil } -type SubResource struct { - Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` +// in the current implementation, cloudagent objects are generally identified by their group name +// and name. These fields are used to identify if a POST request should be treated as a create or +// an update +type CloudSubResource struct { + GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` } -func (m *SubResource) Reset() { *m = SubResource{} } -func (m *SubResource) String() string { return proto.CompactTextString(m) } -func (*SubResource) ProtoMessage() {} -func (*SubResource) Descriptor() ([]byte, []int) { +func (m *CloudSubResource) Reset() { *m = CloudSubResource{} } +func (m *CloudSubResource) String() string { return proto.CompactTextString(m) } +func (*CloudSubResource) ProtoMessage() {} +func (*CloudSubResource) Descriptor() ([]byte, []int) { return fileDescriptor_681f78e46755eb93, []int{8} } -func (m *SubResource) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_SubResource.Unmarshal(m, b) +func (m *CloudSubResource) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CloudSubResource.Unmarshal(m, b) } -func (m *SubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_SubResource.Marshal(b, m, deterministic) +func (m *CloudSubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CloudSubResource.Marshal(b, m, deterministic) } -func (m *SubResource) XXX_Merge(src proto.Message) { - xxx_messageInfo_SubResource.Merge(m, src) +func (m *CloudSubResource) XXX_Merge(src proto.Message) { + xxx_messageInfo_CloudSubResource.Merge(m, src) } -func (m *SubResource) XXX_Size() int { - return xxx_messageInfo_SubResource.Size(m) +func (m *CloudSubResource) XXX_Size() int { + return xxx_messageInfo_CloudSubResource.Size(m) } -func (m *SubResource) XXX_DiscardUnknown() { - xxx_messageInfo_SubResource.DiscardUnknown(m) +func (m *CloudSubResource) XXX_DiscardUnknown() { + xxx_messageInfo_CloudSubResource.DiscardUnknown(m) } -var xxx_messageInfo_SubResource proto.InternalMessageInfo +var xxx_messageInfo_CloudSubResource proto.InternalMessageInfo -func (m *SubResource) GetId() string { +func (m *CloudSubResource) GetGroupName() string { if m != nil { - return m.Id + return m.GroupName + } + return "" +} + +func (m *CloudSubResource) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +// in the current implementation, nodeagent objects are generally identified by their name +// this field is used to identify if a POST request should be treated as a create or an update +type NodeSubResource 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 (m *NodeSubResource) Reset() { *m = NodeSubResource{} } +func (m *NodeSubResource) String() string { return proto.CompactTextString(m) } +func (*NodeSubResource) ProtoMessage() {} +func (*NodeSubResource) Descriptor() ([]byte, []int) { + return fileDescriptor_681f78e46755eb93, []int{9} +} + +func (m *NodeSubResource) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_NodeSubResource.Unmarshal(m, b) +} +func (m *NodeSubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_NodeSubResource.Marshal(b, m, deterministic) +} +func (m *NodeSubResource) XXX_Merge(src proto.Message) { + xxx_messageInfo_NodeSubResource.Merge(m, src) +} +func (m *NodeSubResource) XXX_Size() int { + return xxx_messageInfo_NodeSubResource.Size(m) +} +func (m *NodeSubResource) XXX_DiscardUnknown() { + xxx_messageInfo_NodeSubResource.DiscardUnknown(m) +} + +var xxx_messageInfo_NodeSubResource proto.InternalMessageInfo + +func (m *NodeSubResource) GetName() string { + if m != nil { + return m.Name } return "" } @@ -1323,7 +1375,7 @@ func (m *Entity) Reset() { *m = Entity{} } func (m *Entity) String() string { return proto.CompactTextString(m) } func (*Entity) ProtoMessage() {} func (*Entity) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{9} + return fileDescriptor_681f78e46755eb93, []int{10} } func (m *Entity) XXX_Unmarshal(b []byte) error { @@ -1363,7 +1415,7 @@ func (m *Tag) Reset() { *m = Tag{} } func (m *Tag) String() string { return proto.CompactTextString(m) } func (*Tag) ProtoMessage() {} func (*Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{10} + return fileDescriptor_681f78e46755eb93, []int{11} } func (m *Tag) XXX_Unmarshal(b []byte) error { @@ -1409,7 +1461,7 @@ func (m *Tags) Reset() { *m = Tags{} } func (m *Tags) String() string { return proto.CompactTextString(m) } func (*Tags) ProtoMessage() {} func (*Tags) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{11} + return fileDescriptor_681f78e46755eb93, []int{12} } func (m *Tags) XXX_Unmarshal(b []byte) error { @@ -1468,7 +1520,8 @@ func init() { proto.RegisterType((*ValidationStatus)(nil), "moc.ValidationStatus") proto.RegisterType((*Version)(nil), "moc.Version") proto.RegisterType((*Status)(nil), "moc.Status") - proto.RegisterType((*SubResource)(nil), "moc.SubResource") + proto.RegisterType((*CloudSubResource)(nil), "moc.CloudSubResource") + proto.RegisterType((*NodeSubResource)(nil), "moc.NodeSubResource") proto.RegisterType((*Entity)(nil), "moc.Entity") proto.RegisterType((*Tag)(nil), "moc.Tag") proto.RegisterType((*Tags)(nil), "moc.Tags") @@ -1478,9 +1531,9 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ - // 2540 bytes of a gzipped FileDescriptorProto + // 2568 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x6b, 0x88, 0x64, 0x47, - 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x36, 0x9b, 0x6c, 0x26, + 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x76, 0x93, 0x6c, 0x26, 0xc9, 0xb2, 0x34, 0xff, 0xcc, 0xfe, 0x5d, 0x45, 0x51, 0x51, 0xb9, 0xd3, 0x7d, 0x67, 0xa6, 0xd9, 0x9e, 0xee, 0xe6, 0xf6, 0x9d, 0x49, 0x14, 0xa1, 0xb9, 0x73, 0xbb, 0xa6, 0xe7, 0xb2, 0xb7, 0x6f, 0x35, 0x75, 0xab, 0x7b, 0xe9, 0x7c, 0x32, 0x60, 0x44, 0x41, 0x41, 0xc5, 0x80, 0x42, 0x04, 0x05, @@ -1515,127 +1568,129 @@ var fileDescriptor_681f78e46755eb93 = []byte{ 0xd1, 0x11, 0x8a, 0x69, 0xc9, 0x5b, 0x8a, 0x8e, 0x1e, 0x61, 0x96, 0x16, 0x92, 0xb7, 0xa3, 0x7c, 0x67, 0xaa, 0xb0, 0x8b, 0x19, 0x49, 0x8f, 0x6e, 0xc5, 0x74, 0xcd, 0x5b, 0x33, 0x54, 0x62, 0x20, 0x3c, 0x9c, 0x89, 0x7d, 0x31, 0x2b, 0xd5, 0xd7, 0x63, 0x02, 0x3d, 0x08, 0xad, 0x0b, 0xf4, 0xed, - 0x2b, 0x28, 0xd7, 0x1a, 0x9c, 0x58, 0x34, 0x64, 0x03, 0xee, 0x52, 0x92, 0x47, 0x49, 0xaf, 0xa3, - 0x42, 0x9d, 0xf4, 0x3a, 0xdb, 0x3b, 0x28, 0x6b, 0x06, 0xc2, 0x13, 0x23, 0x72, 0x3f, 0x5a, 0xae, - 0x86, 0x4d, 0xdf, 0x71, 0xe9, 0x19, 0xf3, 0x3b, 0x2a, 0x1f, 0x0b, 0xd6, 0x34, 0xb8, 0xfd, 0x20, - 0x4a, 0xd9, 0x4e, 0x97, 0x60, 0x94, 0xba, 0x4d, 0x47, 0xca, 0x0e, 0x7c, 0x92, 0x35, 0x94, 0x19, - 0x3a, 0xfe, 0x40, 0x97, 0x59, 0xb4, 0xd8, 0xbe, 0x1f, 0xa5, 0x6d, 0xa7, 0x1b, 0x92, 0xbb, 0x50, - 0x5a, 0x38, 0xdd, 0x50, 0x55, 0xc9, 0x82, 0x74, 0xde, 0x76, 0xba, 0x96, 0x44, 0x4b, 0xef, 0x45, - 0x8b, 0x8d, 0x3e, 0xe5, 0xd2, 0x6d, 0x32, 0x8f, 0x52, 0xfb, 0xa6, 0x8d, 0xe7, 0xc8, 0x02, 0x4a, - 0x37, 0x1b, 0x2d, 0x1b, 0x27, 0x08, 0x42, 0xd9, 0x8a, 0x59, 0x33, 0x6d, 0x13, 0x27, 0xe1, 0xfb, - 0xa8, 0x59, 0x31, 0x6c, 0x13, 0xa7, 0xe0, 0xbb, 0x7a, 0xd8, 0x6c, 0x58, 0x36, 0x4e, 0xc3, 0xb7, - 0xf9, 0xb0, 0xfc, 0xce, 0x90, 0x25, 0xb4, 0x70, 0x6c, 0xd4, 0xaa, 0x92, 0x95, 0x2d, 0xfd, 0x26, - 0x89, 0xf2, 0xd3, 0xdd, 0x87, 0xe4, 0xd0, 0xfc, 0x51, 0xfd, 0x56, 0xbd, 0xf1, 0x50, 0x1d, 0xcf, - 0x01, 0xbb, 0x6c, 0x99, 0x86, 0x5d, 0xad, 0xef, 0xe3, 0x04, 0x88, 0xe4, 0xca, 0xac, 0xe0, 0x24, - 0x59, 0x41, 0xcb, 0xd1, 0xa2, 0xbd, 0x67, 0x54, 0x6b, 0x66, 0x05, 0xa7, 0x80, 0x2d, 0x7d, 0x01, - 0x76, 0x1a, 0x08, 0x91, 0x67, 0x9a, 0x90, 0x01, 0x03, 0x11, 0x54, 0xc1, 0x59, 0x60, 0x4b, 0x6f, - 0x81, 0x3d, 0x0f, 0xec, 0xc8, 0x77, 0xcd, 0x5e, 0x90, 0x9e, 0x48, 0xa8, 0x82, 0x17, 0x09, 0x46, - 0x4b, 0x4d, 0xab, 0x71, 0x5c, 0x6d, 0x55, 0x1b, 0x75, 0xd0, 0x40, 0xa4, 0x80, 0x72, 0x63, 0xc4, - 0xac, 0xe0, 0x1c, 0x59, 0x43, 0x78, 0x0c, 0x68, 0x2b, 0x4b, 0x84, 0xa0, 0x7c, 0xc5, 0x9c, 0x52, - 0x5d, 0x8e, 0x5c, 0x9b, 0x54, 0xce, 0x93, 0x0d, 0x44, 0x26, 0x20, 0xad, 0x5e, 0x88, 0xd4, 0xe5, - 0x29, 0x9a, 0x66, 0xbd, 0x02, 0xea, 0x98, 0x2c, 0xa3, 0xc5, 0x28, 0xb6, 0xb0, 0x5c, 0x81, 0x83, - 0x44, 0x4b, 0xb3, 0x82, 0x09, 0xd8, 0x8e, 0x56, 0xda, 0xc6, 0x6a, 0x69, 0x0f, 0xad, 0x1f, 0x78, - 0xdd, 0x33, 0x63, 0xe8, 0x78, 0xbe, 0x73, 0xe2, 0xf9, 0x9e, 0x18, 0x45, 0xb1, 0x5e, 0x43, 0x58, - 0xc5, 0xba, 0x7d, 0x60, 0xb4, 0x5b, 0x36, 0x24, 0x65, 0x0e, 0xd2, 0xd5, 0xb2, 0x8d, 0xdd, 0x9a, - 0x19, 0x85, 0x5c, 0xef, 0x9b, 0x2c, 0x75, 0x51, 0x6e, 0xa2, 0x21, 0xc2, 0xbe, 0xf5, 0x86, 0xad, - 0x53, 0x95, 0x45, 0xc9, 0xc6, 0xad, 0x48, 0xe3, 0x21, 0xc3, 0x92, 0x07, 0x4d, 0x46, 0xf9, 0xab, - 0xda, 0xd5, 0xb2, 0x51, 0xc3, 0x29, 0x10, 0x1d, 0x56, 0x5b, 0xad, 0x28, 0x3d, 0x32, 0x59, 0xfb, - 0x96, 0x51, 0x91, 0x99, 0x89, 0x6c, 0xed, 0x35, 0x8e, 0xea, 0x15, 0x9c, 0x2d, 0x3d, 0x9e, 0x40, - 0xab, 0x31, 0x7d, 0x13, 0xfc, 0xad, 0x37, 0x2a, 0x66, 0xfb, 0xa8, 0x6e, 0x99, 0x46, 0xf9, 0x40, - 0xfa, 0x38, 0x07, 0x21, 0x32, 0xeb, 0x76, 0xd5, 0x7e, 0x77, 0x5b, 0x5b, 0x4f, 0x90, 0xcb, 0x68, - 0xb3, 0x5c, 0xab, 0x9a, 0x75, 0xbb, 0x1d, 0xd5, 0x8f, 0x0a, 0xe9, 0x91, 0x05, 0x75, 0x4a, 0x50, - 0x7e, 0xaf, 0x61, 0x1d, 0x1a, 0x76, 0xbb, 0x5a, 0x97, 0xc5, 0x88, 0x53, 0x90, 0xdf, 0x6a, 0x7d, - 0xaf, 0xd1, 0x3e, 0x77, 0x10, 0x02, 0xa9, 0x90, 0x43, 0xc3, 0x2e, 0x1f, 0xe0, 0x4c, 0x89, 0x23, - 0x54, 0xf6, 0x3d, 0x1a, 0x08, 0x7b, 0xd4, 0xa7, 0xa0, 0x52, 0x6e, 0xd4, 0x6d, 0xab, 0x51, 0x6b, - 0xd6, 0x8c, 0xba, 0xf6, 0xe4, 0x61, 0xdb, 0xb4, 0xea, 0x46, 0x2d, 0xda, 0x1d, 0x27, 0xe0, 0xaa, - 0x80, 0xcf, 0x38, 0x49, 0x16, 0x51, 0xc6, 0xa8, 0x1c, 0x56, 0xeb, 0x38, 0x05, 0x19, 0xdc, 0x35, - 0x2c, 0xf3, 0xd0, 0xb4, 0x8d, 0x1a, 0x4e, 0x83, 0xa5, 0x5a, 0xc3, 0xa8, 0xec, 0x1a, 0x35, 0xa3, - 0x5e, 0x36, 0x2d, 0x9c, 0x01, 0xad, 0x03, 0xb8, 0x60, 0xd9, 0xd2, 0x4d, 0x44, 0x8c, 0x81, 0x38, - 0xa3, 0x81, 0xf0, 0x5c, 0x19, 0x0e, 0xb9, 0x77, 0x1e, 0xa1, 0x96, 0x59, 0xdb, 0x6b, 0x55, 0xf7, - 0xa1, 0x7c, 0xa2, 0x8b, 0x62, 0xa8, 0x55, 0xa2, 0xf4, 0x64, 0x06, 0x2d, 0xc9, 0x6b, 0xd5, 0xa1, - 0x5c, 0xd2, 0x0b, 0x28, 0x67, 0x04, 0x23, 0x0d, 0x45, 0x9e, 0x1e, 0x7b, 0x5c, 0x0c, 0x1c, 0xff, - 0xd0, 0x71, 0xcf, 0xbc, 0x80, 0xe2, 0x04, 0xd9, 0x42, 0x1b, 0xd3, 0x58, 0xcb, 0x75, 0x7c, 0xda, - 0xa2, 0x02, 0x27, 0xa5, 0x87, 0xcc, 0xe9, 0xec, 0x3a, 0xbe, 0x13, 0xb8, 0x94, 0xe3, 0xd4, 0x84, - 0x85, 0x3a, 0x15, 0x77, 0x18, 0xbf, 0x8d, 0xd3, 0x64, 0x15, 0x15, 0x14, 0x76, 0xe0, 0xf0, 0x4e, - 0xc5, 0x0b, 0x6f, 0xe3, 0x0c, 0xa8, 0xee, 0x3b, 0xbe, 0x4f, 0xf9, 0xa8, 0xda, 0x73, 0xba, 0x14, - 0x67, 0xc9, 0x26, 0x5a, 0x9d, 0xde, 0x28, 0x12, 0xcc, 0xcb, 0xfc, 0x46, 0xc6, 0xaa, 0x81, 0xa0, - 0xfc, 0xd4, 0x71, 0x29, 0x5e, 0x00, 0xe7, 0xcb, 0x94, 0x0b, 0xef, 0x14, 0x02, 0x40, 0xf1, 0x22, - 0xb4, 0xa1, 0x5b, 0x74, 0x84, 0x91, 0xac, 0x54, 0xea, 0x72, 0x2a, 0x70, 0x0e, 0x22, 0x70, 0x8b, - 0x8e, 0x8e, 0x9d, 0x81, 0x2f, 0xf0, 0x92, 0xbc, 0x13, 0x1d, 0x2a, 0xbb, 0x27, 0x5e, 0x86, 0x68, - 0x5a, 0xcc, 0xa7, 0x38, 0x0f, 0x5e, 0xc3, 0x97, 0x11, 0x86, 0x5e, 0x37, 0xe8, 0xd1, 0x40, 0xe0, - 0x02, 0xc4, 0xf2, 0xd6, 0xe0, 0x84, 0xf2, 0x80, 0x0a, 0x1a, 0x62, 0x2c, 0xdb, 0x8c, 0x3f, 0x08, - 0x05, 0xe5, 0x78, 0x45, 0x26, 0x99, 0x05, 0x82, 0x33, 0xbf, 0xe9, 0x3b, 0x01, 0xc5, 0x04, 0xd2, - 0xb8, 0xcf, 0xd9, 0xa0, 0x8f, 0x57, 0x65, 0x6e, 0x59, 0x87, 0xe2, 0x35, 0xd8, 0xaf, 0xc6, 0xa2, - 0xfc, 0xe0, 0x75, 0x38, 0x47, 0x4b, 0x30, 0xee, 0x74, 0x29, 0xe8, 0x3a, 0x5e, 0x40, 0x39, 0xde, - 0x80, 0x73, 0x28, 0x74, 0xcf, 0xf3, 0x29, 0xde, 0x9c, 0xa0, 0x55, 0x3c, 0x4e, 0x5d, 0xc1, 0xf8, - 0x08, 0x17, 0x61, 0xc7, 0xd6, 0xe0, 0x24, 0x9a, 0x31, 0xc1, 0xdc, 0x25, 0x70, 0xe8, 0xd8, 0xeb, - 0x37, 0x19, 0xf3, 0xf1, 0x96, 0xbc, 0x44, 0x8e, 0x2b, 0x17, 0x97, 0xc1, 0xa4, 0x29, 0xdc, 0x8e, - 0x76, 0xf7, 0x2e, 0x38, 0x0b, 0x00, 0x2d, 0xca, 0x87, 0x94, 0xe3, 0x2b, 0xb0, 0xc5, 0xae, 0xc3, - 0xe9, 0x21, 0x15, 0xe7, 0x99, 0xbe, 0x9b, 0xac, 0xa3, 0x95, 0x32, 0xa7, 0x32, 0x3e, 0x8e, 0x7f, - 0xc8, 0x02, 0x4f, 0x30, 0x8e, 0xef, 0x01, 0xd3, 0x35, 0xd6, 0xed, 0x7a, 0x41, 0x17, 0x5f, 0x85, - 0x13, 0x59, 0xd4, 0x65, 0x43, 0xca, 0x47, 0xf8, 0x5e, 0x38, 0x74, 0x85, 0x9e, 0x0c, 0xba, 0x78, - 0x1b, 0xee, 0xc5, 0xd8, 0xe4, 0x01, 0x0b, 0x05, 0xbe, 0x0f, 0xa2, 0x3a, 0x5d, 0xa3, 0xf8, 0x7e, - 0xa0, 0x45, 0xcd, 0x42, 0xdb, 0x7f, 0x00, 0xca, 0x63, 0xaa, 0x07, 0x51, 0x81, 0xaf, 0x95, 0xbe, - 0x45, 0xd0, 0xa6, 0x2e, 0x4c, 0xc3, 0x75, 0x69, 0x18, 0x9e, 0xbf, 0x37, 0x05, 0x94, 0x3b, 0x0a, - 0xc2, 0x3e, 0x75, 0xbd, 0x53, 0x8f, 0x76, 0xf0, 0x1c, 0x29, 0xa2, 0xb5, 0xe9, 0x8d, 0xda, 0x35, - 0xd6, 0xf5, 0x02, 0xdc, 0x21, 0x9b, 0x88, 0x4c, 0x14, 0x49, 0xbb, 0xcc, 0x29, 0xd4, 0xca, 0x0f, - 0x12, 0xb3, 0x82, 0xa3, 0x7e, 0x07, 0x04, 0x3f, 0x4c, 0x90, 0x35, 0x54, 0x98, 0x14, 0xec, 0x53, - 0x81, 0x7f, 0x74, 0x81, 0x5e, 0xa1, 0x3e, 0x15, 0x14, 0xff, 0x38, 0x41, 0xd6, 0x11, 0x9e, 0x14, - 0xb4, 0xbc, 0x6e, 0x80, 0x9f, 0x4b, 0x90, 0x0d, 0xb4, 0x32, 0x09, 0x5b, 0x34, 0xa0, 0x77, 0xf0, - 0xf3, 0xd2, 0xba, 0x2e, 0x40, 0xed, 0xcc, 0x17, 0x93, 0x53, 0xa8, 0xf2, 0xe4, 0xa9, 0x69, 0xd4, - 0xa2, 0x43, 0x76, 0x9b, 0xe2, 0x2f, 0xcd, 0xa0, 0x0c, 0x7a, 0x20, 0xfe, 0x72, 0x92, 0xdc, 0x83, - 0xb6, 0x34, 0x1a, 0x73, 0xde, 0x8f, 0xa6, 0x5e, 0x8f, 0xa0, 0x76, 0xfb, 0x58, 0x8a, 0xdc, 0x8d, - 0x2e, 0xc5, 0x11, 0x22, 0xcf, 0x3f, 0x9e, 0x22, 0x05, 0x84, 0x6e, 0xd1, 0xb1, 0xd3, 0x7f, 0x1d, - 0x03, 0xca, 0xc2, 0xdf, 0xa0, 0x57, 0xe6, 0x00, 0x30, 0x03, 0x97, 0x8f, 0xfa, 0x02, 0xff, 0x7d, - 0x8c, 0x54, 0x68, 0x84, 0xfc, 0x63, 0x8c, 0x3c, 0xc4, 0x9d, 0x3e, 0xdc, 0xd5, 0x57, 0xa1, 0x61, - 0x2c, 0x4b, 0x33, 0xc1, 0x1d, 0x85, 0xbd, 0x06, 0x7d, 0x10, 0x2e, 0x6d, 0x14, 0xcc, 0x7f, 0x8e, - 0x77, 0x3a, 0xa6, 0xdc, 0x3b, 0x1d, 0xe1, 0x7f, 0xa5, 0xc8, 0x16, 0x5a, 0x9f, 0xee, 0x14, 0xda, - 0xad, 0x9f, 0xa5, 0x63, 0x64, 0xca, 0xc3, 0x9f, 0xc7, 0xc9, 0x54, 0x22, 0x7f, 0x91, 0x26, 0x77, - 0xa1, 0xcd, 0x19, 0x99, 0x7a, 0x6a, 0x28, 0xfe, 0x65, 0x9a, 0x5c, 0x42, 0x6b, 0x33, 0xd2, 0x96, - 0x70, 0xb8, 0xc0, 0x2f, 0xa6, 0x49, 0x71, 0xb6, 0x6d, 0xb5, 0x5b, 0x82, 0xf5, 0xf1, 0x4b, 0x71, - 0x4a, 0x16, 0x0d, 0xa9, 0xc0, 0xbf, 0x4a, 0x93, 0x6b, 0xe8, 0xde, 0x0b, 0xa2, 0xbe, 0xe3, 0xf1, - 0xf6, 0xfe, 0x80, 0x86, 0xa2, 0x6d, 0x74, 0xa1, 0x07, 0xfd, 0x3a, 0xce, 0x44, 0xd3, 0x19, 0x84, - 0x14, 0xbf, 0x1c, 0xbb, 0xaf, 0x33, 0xa4, 0xf8, 0x15, 0xe8, 0xb7, 0x79, 0x75, 0xf5, 0x75, 0x5c, - 0xbe, 0x9d, 0x99, 0x04, 0x55, 0x40, 0xbe, 0x93, 0x01, 0x1b, 0x1a, 0x84, 0x3e, 0xae, 0x1b, 0xc6, - 0x77, 0x33, 0x10, 0xaa, 0x31, 0x5d, 0xce, 0xb7, 0x5a, 0xf6, 0xbd, 0x8c, 0xbc, 0x0c, 0x4a, 0xb6, - 0x4f, 0x85, 0x16, 0x3c, 0x9d, 0x91, 0x97, 0xe1, 0x5c, 0x00, 0x3d, 0x30, 0xc4, 0xcf, 0x64, 0xe0, - 0x32, 0xc8, 0x2e, 0xd1, 0x96, 0xff, 0xaa, 0x26, 0xf4, 0x99, 0x2c, 0xd0, 0x23, 0xbc, 0x25, 0x1c, - 0xf7, 0xb6, 0xcd, 0xa1, 0xaf, 0x7f, 0x36, 0x0b, 0x67, 0x86, 0x4e, 0xd2, 0xd3, 0x9d, 0x44, 0x1f, - 0xe2, 0xfd, 0xf3, 0x17, 0x45, 0xea, 0x28, 0x8f, 0xcd, 0x43, 0xfe, 0xc6, 0xa2, 0x99, 0xaa, 0xf8, - 0x7d, 0xbc, 0x54, 0xe9, 0xfe, 0x61, 0x5e, 0x86, 0x61, 0xa2, 0x9b, 0x6b, 0xbd, 0xe7, 0x16, 0x2e, - 0x48, 0x94, 0xce, 0xf3, 0x0b, 0x10, 0x84, 0x89, 0x1e, 0xab, 0x55, 0xbe, 0xb2, 0x38, 0x2b, 0x50, - 0x1a, 0x5f, 0x5d, 0x84, 0x30, 0x9c, 0x37, 0x61, 0xad, 0xf0, 0x09, 0x34, 0x83, 0x2b, 0xfe, 0xe3, - 0x08, 0xf6, 0x9e, 0x7c, 0x21, 0xb5, 0xc6, 0xab, 0x17, 0x25, 0x4a, 0xe7, 0x35, 0x44, 0x56, 0xd0, - 0x92, 0x7c, 0x85, 0x34, 0xf9, 0xc5, 0xdc, 0x39, 0xa4, 0x58, 0x2f, 0xc1, 0x48, 0x5a, 0xd0, 0x8f, - 0xa2, 0x26, 0x3e, 0xbd, 0x34, 0x85, 0x2a, 0xee, 0x33, 0x4b, 0xe0, 0xdd, 0xf9, 0x33, 0xa8, 0xd9, - 0x9f, 0x5b, 0x9e, 0xc1, 0x15, 0xff, 0xf3, 0xcb, 0xe0, 0xdb, 0xe4, 0x48, 0xa0, 0x35, 0x3e, 0x98, - 0xbf, 0x20, 0x51, 0x3a, 0x1f, 0xca, 0xc3, 0xce, 0xfa, 0x99, 0xd4, 0xfc, 0x3f, 0x4e, 0xa3, 0x8a, - 0xfb, 0xa7, 0x3c, 0xd4, 0xf1, 0xa1, 0xe3, 0xf6, 0x19, 0xf3, 0x35, 0xf5, 0x27, 0x85, 0x49, 0x50, - 0x31, 0x5f, 0x28, 0x40, 0xce, 0x67, 0xc7, 0x06, 0xad, 0xf2, 0x35, 0x1c, 0x2b, 0x55, 0xba, 0x5f, - 0xc7, 0xd0, 0xa7, 0xa0, 0x7c, 0x35, 0xff, 0x93, 0x2b, 0x63, 0x44, 0x71, 0x3e, 0xb5, 0x02, 0xfe, - 0xe9, 0xa7, 0x50, 0xf3, 0xfe, 0x3d, 0x8d, 0x2a, 0xee, 0x7f, 0xa4, 0x36, 0x0c, 0x18, 0x9a, 0xf7, - 0x32, 0x19, 0x23, 0x8a, 0xf3, 0x0a, 0x81, 0x2b, 0x37, 0x3d, 0x84, 0x68, 0xf6, 0xf7, 0x57, 0x63, - 0x64, 0x4a, 0xef, 0xd9, 0x55, 0xe8, 0xa0, 0xd1, 0xb8, 0xa3, 0xf9, 0x5f, 0x58, 0x9b, 0xc0, 0x14, - 0xef, 0xc9, 0x35, 0x38, 0xf1, 0xec, 0xf8, 0xa1, 0x35, 0x3e, 0xbc, 0x1e, 0x2b, 0x55, 0xba, 0x1f, - 0x59, 0x87, 0xdc, 0x4d, 0x4e, 0x1f, 0x5a, 0xef, 0xcf, 0x17, 0x25, 0x4a, 0xe7, 0x2f, 0x52, 0x72, - 0x3e, 0xad, 0x9f, 0x77, 0xd3, 0x9f, 0x6e, 0x40, 0xba, 0xd4, 0xe4, 0xa2, 0x0d, 0x7d, 0x63, 0x73, - 0x12, 0x54, 0x36, 0xbe, 0xb9, 0x49, 0x2e, 0x8f, 0x87, 0x4f, 0x3d, 0x3a, 0x6a, 0x8d, 0x27, 0x8a, - 0x71, 0x42, 0xa5, 0xf9, 0xe9, 0x22, 0x3c, 0x78, 0x31, 0xd3, 0xa4, 0xd6, 0x7e, 0xdf, 0xa5, 0xd7, - 0x23, 0x28, 0x0b, 0x8f, 0x5e, 0x22, 0xdb, 0xe8, 0x4a, 0xfc, 0xe0, 0xab, 0x8d, 0xfc, 0xf6, 0x7f, - 0x71, 0x94, 0x9d, 0xdf, 0x5d, 0x9a, 0x78, 0x75, 0x54, 0xc1, 0x8d, 0xc7, 0x90, 0xad, 0x18, 0x99, - 0x9e, 0x44, 0xb6, 0xe0, 0x78, 0x33, 0x73, 0xd1, 0x78, 0x64, 0xb8, 0x1c, 0x27, 0x54, 0x6f, 0xd9, - 0x53, 0x97, 0x4b, 0x16, 0xca, 0xc9, 0xc3, 0xb4, 0xa2, 0x5f, 0x10, 0xe4, 0xdf, 0x11, 0x65, 0xa3, - 0xd6, 0x6e, 0x35, 0x8e, 0xac, 0x32, 0xfc, 0x45, 0x02, 0x7f, 0x27, 0xec, 0xb5, 0xf4, 0x3a, 0x01, - 0x13, 0xd5, 0x81, 0x6d, 0x37, 0x35, 0x20, 0x07, 0xfb, 0x72, 0xad, 0x51, 0x37, 0x35, 0x92, 0x2a, - 0xed, 0x22, 0x7c, 0x30, 0xea, 0x53, 0x7e, 0xbc, 0x4f, 0x03, 0x3d, 0x88, 0x6d, 0x20, 0x32, 0x8b, - 0x1d, 0xdf, 0xc4, 0x73, 0xb1, 0xf8, 0x1b, 0x70, 0xa2, 0xf4, 0x2e, 0x94, 0x87, 0x2c, 0xc1, 0x9c, - 0xbb, 0xc7, 0x78, 0xcf, 0x11, 0xf2, 0xef, 0xdb, 0x29, 0xe4, 0xf8, 0xa0, 0xf2, 0x30, 0x9e, 0x83, - 0x51, 0xf4, 0x02, 0x8e, 0x13, 0xa5, 0x07, 0xe1, 0xbd, 0x62, 0x83, 0x4e, 0x35, 0xf0, 0x44, 0xc5, - 0x11, 0x8e, 0x3a, 0x60, 0x0e, 0xcd, 0xd7, 0x99, 0x14, 0xe0, 0x39, 0xf9, 0xf7, 0xd4, 0x23, 0x03, - 0x4e, 0x71, 0xe2, 0x6d, 0xef, 0x40, 0x8b, 0x21, 0x0d, 0x42, 0x4f, 0x78, 0x43, 0x4a, 0xae, 0xec, - 0x44, 0x3f, 0xd9, 0xee, 0xe8, 0x9f, 0x6c, 0x77, 0xf6, 0x3c, 0xea, 0x77, 0x1a, 0xb2, 0x6c, 0xc3, - 0xe2, 0x0b, 0x1f, 0x48, 0xc9, 0x5f, 0x4f, 0xce, 0x35, 0x76, 0x1f, 0x78, 0xcf, 0x7d, 0x5d, 0x4f, - 0x9c, 0x0d, 0x4e, 0x76, 0x5c, 0xd6, 0xbb, 0xd1, 0xf3, 0x5c, 0xce, 0x42, 0x76, 0x2a, 0x6e, 0xf4, - 0x98, 0x7b, 0x83, 0xf7, 0xdd, 0x1b, 0xd1, 0xaf, 0xc2, 0x27, 0x59, 0x69, 0xf0, 0x8d, 0xff, 0x0d, - 0x00, 0x00, 0xff, 0xff, 0xd3, 0xa4, 0x61, 0xed, 0x31, 0x16, 0x00, 0x00, + 0x0a, 0xc2, 0x65, 0x9f, 0x0d, 0x3a, 0xad, 0xc1, 0x89, 0x45, 0x43, 0x36, 0xe0, 0x2e, 0x25, 0x57, + 0xd0, 0x62, 0x97, 0xb3, 0x41, 0xbf, 0xee, 0xf4, 0x74, 0x17, 0x39, 0x07, 0xa0, 0x8f, 0x04, 0x20, + 0x88, 0xea, 0x45, 0x7e, 0x6f, 0x3f, 0x80, 0x0a, 0x75, 0xd6, 0xa1, 0x93, 0x46, 0x34, 0x2d, 0x31, + 0x41, 0xdb, 0x41, 0x59, 0x33, 0x10, 0x9e, 0x18, 0x91, 0xfb, 0xd1, 0x72, 0x35, 0x6c, 0xfa, 0x8e, + 0x4b, 0xcf, 0x98, 0xdf, 0x51, 0xd9, 0x5d, 0xb0, 0xa6, 0xc1, 0xed, 0x07, 0x51, 0xca, 0x76, 0xba, + 0x04, 0xa3, 0xd4, 0x6d, 0x3a, 0x52, 0x96, 0xe0, 0x93, 0xac, 0xa1, 0xcc, 0xd0, 0xf1, 0x07, 0xda, + 0x89, 0x68, 0xb1, 0x7d, 0x3f, 0x4a, 0xdb, 0x4e, 0x37, 0x24, 0x57, 0x50, 0x5a, 0x38, 0xdd, 0x50, + 0xd5, 0xdc, 0x82, 0x0c, 0x85, 0xed, 0x74, 0x2d, 0x89, 0x96, 0xde, 0x8b, 0x16, 0x1b, 0x7d, 0xca, + 0x65, 0x10, 0xc8, 0x3c, 0x4a, 0xed, 0x9b, 0x36, 0x9e, 0x23, 0x0b, 0x28, 0xdd, 0x6c, 0xb4, 0x6c, + 0x9c, 0x20, 0x08, 0x65, 0x2b, 0x66, 0xcd, 0xb4, 0x4d, 0x9c, 0x84, 0xef, 0xa3, 0x66, 0xc5, 0xb0, + 0x4d, 0x9c, 0x82, 0xef, 0xea, 0x61, 0xb3, 0x61, 0xd9, 0x38, 0x0d, 0xdf, 0xe6, 0xc3, 0xf2, 0x3b, + 0x43, 0x96, 0xd0, 0xc2, 0xb1, 0x51, 0xab, 0x4a, 0x56, 0xb6, 0xf4, 0x9b, 0x24, 0xca, 0x4f, 0xf7, + 0x32, 0x92, 0x43, 0xf3, 0x47, 0xf5, 0x5b, 0xf5, 0xc6, 0x43, 0x75, 0x3c, 0x07, 0xec, 0xb2, 0x65, + 0x1a, 0x76, 0xb5, 0xbe, 0x8f, 0x13, 0x20, 0x92, 0x2b, 0xb3, 0x82, 0x93, 0x64, 0x05, 0x2d, 0x47, + 0x8b, 0xf6, 0x9e, 0x51, 0xad, 0x99, 0x15, 0x9c, 0x02, 0xb6, 0xf4, 0x05, 0xd8, 0x69, 0x20, 0x44, + 0x9e, 0x69, 0x42, 0x06, 0x0c, 0x44, 0x50, 0x05, 0x67, 0x81, 0x2d, 0xbd, 0x05, 0xf6, 0x3c, 0xb0, + 0x23, 0xdf, 0x35, 0x7b, 0x41, 0x7a, 0x22, 0xa1, 0x0a, 0x5e, 0x24, 0x18, 0x2d, 0x35, 0xad, 0xc6, + 0x71, 0xb5, 0x55, 0x6d, 0xd4, 0x41, 0x03, 0x91, 0x02, 0xca, 0x8d, 0x11, 0xb3, 0x82, 0x73, 0x64, + 0x0d, 0xe1, 0x31, 0xa0, 0xad, 0x2c, 0x11, 0x82, 0xf2, 0x15, 0x73, 0x4a, 0x75, 0x39, 0x72, 0x6d, + 0x52, 0x39, 0x4f, 0x36, 0x10, 0x99, 0x80, 0xb4, 0x7a, 0x21, 0x52, 0x97, 0xa7, 0x68, 0x9a, 0xf5, + 0x0a, 0xa8, 0x63, 0xb2, 0x8c, 0x16, 0xa3, 0xd8, 0xc2, 0x72, 0x05, 0x0e, 0x12, 0x2d, 0xcd, 0x0a, + 0x26, 0x60, 0x3b, 0x5a, 0x69, 0x1b, 0xab, 0xa5, 0x3d, 0xb4, 0x7e, 0xe0, 0x75, 0xcf, 0x8c, 0xa1, + 0xe3, 0xf9, 0xce, 0x89, 0xe7, 0x7b, 0x62, 0x14, 0xc5, 0x7a, 0x0d, 0x61, 0x15, 0xeb, 0xf6, 0x81, + 0xd1, 0x6e, 0xd9, 0x90, 0x94, 0x39, 0x48, 0x57, 0xcb, 0x36, 0x76, 0x6b, 0x66, 0x14, 0x72, 0xbd, + 0x6f, 0xb2, 0xd4, 0x45, 0xb9, 0x89, 0xf6, 0x0a, 0xfb, 0xd6, 0x1b, 0xb6, 0x4e, 0x55, 0x16, 0x25, + 0x1b, 0xb7, 0x22, 0x8d, 0x87, 0x0c, 0x4b, 0x1e, 0x34, 0x19, 0xe5, 0xaf, 0x6a, 0x57, 0xcb, 0x46, + 0x0d, 0xa7, 0x40, 0x74, 0x58, 0x6d, 0xb5, 0xa2, 0xf4, 0xc8, 0x64, 0xed, 0x5b, 0x46, 0x45, 0x66, + 0x26, 0xb2, 0xb5, 0xd7, 0x38, 0xaa, 0x57, 0x70, 0xb6, 0xf4, 0x78, 0x02, 0xad, 0xc6, 0x74, 0x61, + 0xf0, 0xb7, 0xde, 0xa8, 0x98, 0xed, 0xa3, 0xba, 0x65, 0x1a, 0xe5, 0x03, 0xe9, 0xe3, 0x1c, 0x84, + 0xc8, 0xac, 0xdb, 0x55, 0xfb, 0xdd, 0x6d, 0x6d, 0x3d, 0x41, 0x2e, 0xa3, 0xcd, 0x72, 0xad, 0x6a, + 0xd6, 0xed, 0x76, 0x54, 0x3f, 0x2a, 0xa4, 0x47, 0x16, 0xd4, 0x29, 0x41, 0xf9, 0xbd, 0x86, 0x75, + 0x68, 0xd8, 0xed, 0x6a, 0x5d, 0x16, 0x23, 0x4e, 0x41, 0x7e, 0xab, 0xf5, 0xbd, 0x46, 0xfb, 0xdc, + 0x41, 0x08, 0xa4, 0x42, 0x0e, 0x0d, 0xbb, 0x7c, 0x80, 0x33, 0x25, 0x8e, 0x50, 0xd9, 0xf7, 0x68, + 0x20, 0xec, 0x51, 0x9f, 0x82, 0x4a, 0xb9, 0x51, 0xb7, 0xad, 0x46, 0xad, 0x59, 0x33, 0xea, 0xda, + 0x93, 0x87, 0x6d, 0xd3, 0xaa, 0x1b, 0xb5, 0x68, 0x77, 0x9c, 0x80, 0xab, 0x02, 0x3e, 0xe3, 0x24, + 0x59, 0x44, 0x19, 0xa3, 0x72, 0x58, 0xad, 0xe3, 0x14, 0x64, 0x70, 0xd7, 0xb0, 0xcc, 0x43, 0xd3, + 0x36, 0x6a, 0x38, 0x0d, 0x96, 0x6a, 0x0d, 0xa3, 0xb2, 0x6b, 0xd4, 0x8c, 0x7a, 0xd9, 0xb4, 0x70, + 0x06, 0xb4, 0x0e, 0xe0, 0x82, 0x65, 0x4b, 0x37, 0x11, 0x31, 0x06, 0xe2, 0x8c, 0x06, 0xc2, 0x73, + 0x65, 0x38, 0xe4, 0xde, 0x79, 0x84, 0x5a, 0x66, 0x6d, 0xaf, 0x55, 0xdd, 0x87, 0xf2, 0x89, 0x2e, + 0x8a, 0xa1, 0x56, 0x89, 0xd2, 0x93, 0x19, 0xb4, 0x24, 0xaf, 0x55, 0x87, 0x72, 0x49, 0x2f, 0xa0, + 0x9c, 0x11, 0x8c, 0x34, 0x14, 0x79, 0x7a, 0xec, 0x71, 0x31, 0x70, 0xfc, 0x43, 0xc7, 0x3d, 0xf3, + 0x02, 0x8a, 0x13, 0x64, 0x0b, 0x6d, 0x4c, 0x63, 0x2d, 0xd7, 0xf1, 0x69, 0x8b, 0x0a, 0x9c, 0x94, + 0x1e, 0x32, 0xa7, 0xb3, 0xeb, 0xf8, 0x4e, 0xe0, 0x52, 0x8e, 0x53, 0x13, 0x16, 0xea, 0x54, 0xdc, + 0x61, 0xfc, 0x36, 0x4e, 0x93, 0x55, 0x54, 0x50, 0xd8, 0x81, 0xc3, 0x3b, 0x15, 0x2f, 0xbc, 0x8d, + 0x33, 0xa0, 0xba, 0xef, 0xf8, 0x3e, 0xe5, 0xa3, 0x6a, 0xcf, 0xe9, 0x52, 0x9c, 0x25, 0x9b, 0x68, + 0x75, 0x7a, 0xa3, 0x48, 0x30, 0x2f, 0xf3, 0x1b, 0x19, 0xab, 0x06, 0x82, 0xf2, 0x53, 0xc7, 0xa5, + 0x78, 0x01, 0x9c, 0x2f, 0x53, 0x2e, 0xbc, 0x53, 0x08, 0x00, 0xc5, 0x8b, 0xd0, 0x86, 0x6e, 0xd1, + 0x11, 0x46, 0xb2, 0x52, 0xa9, 0xcb, 0xa9, 0xc0, 0x39, 0x88, 0xc0, 0x2d, 0x3a, 0x3a, 0x76, 0x06, + 0xbe, 0xc0, 0x4b, 0xf2, 0x4e, 0x74, 0xa8, 0xec, 0x9e, 0x78, 0x19, 0xa2, 0x69, 0x31, 0x9f, 0xe2, + 0x3c, 0x78, 0x0d, 0x5f, 0x46, 0x18, 0x7a, 0xdd, 0xa0, 0x47, 0x03, 0x81, 0x0b, 0x10, 0xcb, 0x5b, + 0x83, 0x13, 0xca, 0x03, 0x2a, 0x68, 0x88, 0xb1, 0x6c, 0x33, 0xfe, 0x20, 0x14, 0x94, 0xe3, 0x15, + 0x99, 0x64, 0x16, 0x08, 0xce, 0xfc, 0xa6, 0xef, 0x04, 0x14, 0x13, 0x48, 0xe3, 0x3e, 0xb4, 0x77, + 0xbc, 0x2a, 0x73, 0xcb, 0x3a, 0x14, 0xaf, 0xc1, 0x7e, 0x35, 0x16, 0xe5, 0x07, 0xaf, 0xc3, 0x39, + 0x5a, 0x82, 0x71, 0xa7, 0x4b, 0x41, 0xd7, 0xf1, 0x02, 0xca, 0xf1, 0x06, 0x9c, 0x43, 0xa1, 0x7b, + 0x9e, 0x4f, 0xf1, 0xe6, 0x04, 0xad, 0xe2, 0x71, 0xea, 0x0a, 0xc6, 0x47, 0xb8, 0x08, 0x3b, 0xb6, + 0x06, 0x27, 0xd1, 0xc4, 0x0a, 0xe6, 0x2e, 0x81, 0x43, 0xc7, 0x5e, 0xbf, 0xc9, 0x98, 0x8f, 0xb7, + 0xe4, 0x25, 0x72, 0x5c, 0xb9, 0xb8, 0x0c, 0x26, 0x4d, 0xe1, 0x76, 0xb4, 0xbb, 0x57, 0xe0, 0x2c, + 0x00, 0xb4, 0x28, 0x1f, 0x52, 0x8e, 0xef, 0x82, 0x2d, 0x76, 0x1d, 0x4e, 0x0f, 0xa9, 0x38, 0xcf, + 0xf4, 0xdd, 0x64, 0x1d, 0xad, 0x94, 0x39, 0x95, 0xf1, 0x71, 0xfc, 0x43, 0x16, 0x78, 0x82, 0x71, + 0x7c, 0x0f, 0x98, 0xae, 0xb1, 0x6e, 0xd7, 0x0b, 0xba, 0xf8, 0x2a, 0x9c, 0xc8, 0xa2, 0x2e, 0x1b, + 0x52, 0x3e, 0xc2, 0xf7, 0xc2, 0xa1, 0x2b, 0xf4, 0x64, 0xd0, 0xc5, 0xdb, 0x70, 0x2f, 0xc6, 0x26, + 0x0f, 0x58, 0x28, 0xf0, 0x7d, 0x10, 0xd5, 0xe9, 0x1a, 0xc5, 0xf7, 0x03, 0x2d, 0x6a, 0x16, 0xda, + 0xfe, 0x03, 0x50, 0x1e, 0x53, 0x3d, 0x88, 0x0a, 0x7c, 0xad, 0xf4, 0x2d, 0x82, 0x36, 0x75, 0x61, + 0x1a, 0xae, 0x4b, 0xc3, 0xf0, 0xfc, 0xbd, 0x29, 0xa0, 0xdc, 0x51, 0x10, 0xf6, 0xa9, 0xeb, 0x9d, + 0x7a, 0xb4, 0x83, 0xe7, 0x48, 0x11, 0xad, 0x4d, 0x6f, 0xd4, 0xae, 0xb1, 0xae, 0x17, 0xe0, 0x0e, + 0xd9, 0x44, 0x64, 0xa2, 0x48, 0xda, 0x65, 0x4e, 0xa1, 0x56, 0x7e, 0x90, 0x98, 0x15, 0x1c, 0xf5, + 0x3b, 0x20, 0xf8, 0x61, 0x82, 0xac, 0xa1, 0xc2, 0xa4, 0x60, 0x9f, 0x0a, 0xfc, 0xa3, 0x0b, 0xf4, + 0x0a, 0xf5, 0xa9, 0xa0, 0xf8, 0xc7, 0x09, 0xb2, 0x8e, 0xf0, 0xa4, 0xa0, 0xe5, 0x75, 0x03, 0xfc, + 0x5c, 0x82, 0x6c, 0xa0, 0x95, 0x49, 0xd8, 0xa2, 0x01, 0xbd, 0x83, 0x9f, 0x97, 0xd6, 0x75, 0x01, + 0x6a, 0x67, 0xbe, 0x98, 0x9c, 0x42, 0x95, 0x27, 0x4f, 0x4d, 0xa3, 0x16, 0x1d, 0xb2, 0xdb, 0x14, + 0x7f, 0x69, 0x06, 0x65, 0xd0, 0x03, 0xf1, 0x97, 0x93, 0xe4, 0x1e, 0xb4, 0xa5, 0xd1, 0x98, 0xf3, + 0x7e, 0x34, 0xf5, 0x7a, 0x04, 0xb5, 0xdb, 0xc7, 0x52, 0xe4, 0x6e, 0x74, 0x29, 0x8e, 0x10, 0x79, + 0xfe, 0xf1, 0x14, 0x29, 0x20, 0x74, 0x8b, 0x8e, 0x9d, 0xfe, 0xeb, 0x18, 0x50, 0x16, 0xfe, 0x06, + 0xbd, 0x32, 0x07, 0x80, 0x19, 0xb8, 0x7c, 0xd4, 0x17, 0xf8, 0xef, 0x63, 0xa4, 0x42, 0x23, 0xe4, + 0x1f, 0x63, 0xe4, 0x21, 0xee, 0xf4, 0xe1, 0xae, 0xbe, 0x0a, 0x0d, 0x63, 0x59, 0x9a, 0x09, 0xee, + 0x28, 0xec, 0x35, 0xe8, 0x83, 0x70, 0x69, 0xa3, 0x60, 0xfe, 0x73, 0xbc, 0xd3, 0x31, 0xe5, 0xde, + 0xe9, 0x08, 0xff, 0x2b, 0x45, 0xb6, 0xd0, 0xfa, 0x74, 0xa7, 0xd0, 0x6e, 0xfd, 0x2c, 0x1d, 0x23, + 0x53, 0x1e, 0xfe, 0x3c, 0x4e, 0xa6, 0x12, 0xf9, 0x8b, 0x34, 0xb9, 0x82, 0x36, 0x67, 0x64, 0xea, + 0xa9, 0xa1, 0xf8, 0x97, 0x69, 0x72, 0x09, 0xad, 0xcd, 0x48, 0x5b, 0xc2, 0xe1, 0x02, 0xbf, 0x98, + 0x26, 0xc5, 0xd9, 0xb6, 0xd5, 0x6e, 0x09, 0xd6, 0xc7, 0x2f, 0xc5, 0x29, 0x59, 0x34, 0xa4, 0x02, + 0xff, 0x2a, 0x4d, 0xae, 0xa1, 0x7b, 0x2f, 0x88, 0xfa, 0x8e, 0xc7, 0xdb, 0xfb, 0x03, 0x1a, 0x8a, + 0xb6, 0xd1, 0x85, 0x1e, 0xf4, 0xeb, 0x38, 0x13, 0x4d, 0x67, 0x10, 0x52, 0xfc, 0x72, 0xec, 0xbe, + 0xce, 0x90, 0xe2, 0x57, 0xa0, 0xdf, 0xe6, 0xd5, 0xd5, 0xd7, 0x71, 0xf9, 0x76, 0x66, 0x12, 0x54, + 0x01, 0xf9, 0x4e, 0x06, 0x6c, 0x68, 0x10, 0xfa, 0xb8, 0x6e, 0x18, 0xdf, 0xcd, 0x40, 0xa8, 0xc6, + 0x74, 0x39, 0x2d, 0x6b, 0xd9, 0xf7, 0x32, 0xf2, 0x32, 0x28, 0xd9, 0x3e, 0x15, 0x5a, 0xf0, 0x74, + 0x46, 0x5e, 0x86, 0x73, 0x01, 0xf4, 0xc0, 0x10, 0x3f, 0x93, 0x81, 0xcb, 0x20, 0xbb, 0x44, 0x5b, + 0xfe, 0xab, 0x9a, 0xd0, 0x67, 0xb2, 0x40, 0x8f, 0xf0, 0x96, 0x70, 0xdc, 0xdb, 0x36, 0x87, 0xbe, + 0xfe, 0xd9, 0x2c, 0x9c, 0x19, 0x3a, 0x49, 0x4f, 0x77, 0x12, 0x7d, 0x88, 0xf7, 0xcf, 0x5f, 0x14, + 0xa9, 0xa3, 0x3c, 0x36, 0x0f, 0xf9, 0x1b, 0x8b, 0x66, 0xaa, 0xe2, 0xf7, 0xf1, 0x52, 0xa5, 0xfb, + 0x87, 0x79, 0x19, 0x86, 0x89, 0x6e, 0xae, 0xf5, 0x9e, 0x5b, 0xb8, 0x20, 0x51, 0x3a, 0xcf, 0x2f, + 0x40, 0x10, 0x26, 0x7a, 0xac, 0x56, 0xf9, 0xca, 0xe2, 0xac, 0x40, 0x69, 0x7c, 0x75, 0x11, 0xc2, + 0x70, 0xde, 0x84, 0xb5, 0xc2, 0x27, 0xd0, 0x0c, 0xae, 0xf8, 0x8f, 0x23, 0xd8, 0x7b, 0xf2, 0x85, + 0xd4, 0x1a, 0xaf, 0x5e, 0x94, 0x28, 0x9d, 0xd7, 0x10, 0x59, 0x41, 0x4b, 0xf2, 0x15, 0xd2, 0xe4, + 0x17, 0x73, 0xe7, 0x90, 0x62, 0xbd, 0x04, 0x23, 0x69, 0x41, 0x3f, 0x8a, 0x9a, 0xf8, 0xf4, 0xd2, + 0x14, 0xaa, 0xb8, 0xcf, 0x2c, 0x81, 0x77, 0xe7, 0xcf, 0xa0, 0x66, 0x7f, 0x6e, 0x79, 0x06, 0x57, + 0xfc, 0xcf, 0x2f, 0x83, 0x6f, 0x93, 0x23, 0x81, 0xd6, 0xf8, 0x60, 0xfe, 0x82, 0x44, 0xe9, 0x7c, + 0x28, 0x0f, 0x3b, 0xeb, 0x67, 0x52, 0xf3, 0xff, 0x38, 0x8d, 0x2a, 0xee, 0x9f, 0xf2, 0x50, 0xc7, + 0x87, 0x8e, 0xdb, 0x67, 0xcc, 0xd7, 0xd4, 0x9f, 0x14, 0x26, 0x41, 0xc5, 0x7c, 0xa1, 0x00, 0x39, + 0x9f, 0x1d, 0x1b, 0xb4, 0xca, 0xd7, 0x70, 0xac, 0x54, 0xe9, 0x7e, 0x1d, 0x43, 0x9f, 0x82, 0xf2, + 0xd5, 0xfc, 0x4f, 0xae, 0x8c, 0x11, 0xc5, 0xf9, 0xd4, 0x0a, 0xf8, 0xa7, 0x9f, 0x42, 0xcd, 0xfb, + 0xf7, 0x34, 0xaa, 0xb8, 0xff, 0x91, 0xda, 0x30, 0x60, 0x68, 0xde, 0xcb, 0x64, 0x8c, 0x28, 0xce, + 0x2b, 0x04, 0xae, 0xdc, 0xf4, 0x10, 0xa2, 0xd9, 0xdf, 0x5f, 0x8d, 0x91, 0x29, 0xbd, 0x67, 0x57, + 0xa1, 0x83, 0x46, 0xe3, 0x8e, 0xe6, 0x7f, 0x61, 0x6d, 0x02, 0x53, 0xbc, 0x27, 0xd7, 0xe0, 0xc4, + 0xb3, 0xe3, 0x87, 0xd6, 0xf8, 0xf0, 0x7a, 0xac, 0x54, 0xe9, 0x7e, 0x64, 0x1d, 0x72, 0x37, 0x39, + 0x7d, 0x68, 0xbd, 0x3f, 0x5f, 0x94, 0x28, 0x9d, 0xbf, 0x48, 0xc9, 0xf9, 0xb4, 0x7e, 0xde, 0x4d, + 0x7f, 0xba, 0x01, 0xe9, 0x52, 0x93, 0x8b, 0x36, 0xf4, 0x8d, 0xcd, 0x49, 0x50, 0xd9, 0xf8, 0xe6, + 0x26, 0xb9, 0x3c, 0x1e, 0x3e, 0xf5, 0xe8, 0xa8, 0x35, 0x9e, 0x28, 0xc6, 0x09, 0x95, 0xe6, 0xa7, + 0x8b, 0xf0, 0xe0, 0xc5, 0x4c, 0x93, 0x5a, 0xfb, 0x7d, 0x97, 0x5e, 0x8f, 0xa0, 0x2c, 0x3c, 0x7a, + 0x89, 0x6c, 0xa3, 0xbb, 0xe2, 0x07, 0x5f, 0x6d, 0xe4, 0xb7, 0xff, 0x8b, 0xa3, 0xec, 0xfc, 0xee, + 0xd2, 0xc4, 0xab, 0xa3, 0x0a, 0x6e, 0x3c, 0x86, 0x6c, 0xc5, 0xc8, 0xf4, 0x24, 0xb2, 0x05, 0xc7, + 0x9b, 0x99, 0x8b, 0xc6, 0x23, 0xc3, 0xe5, 0x38, 0xa1, 0x7a, 0xcb, 0x9e, 0xba, 0x5c, 0xb2, 0x50, + 0x4e, 0x1e, 0xa6, 0x15, 0xfd, 0x8a, 0x20, 0xff, 0x8e, 0x28, 0x1b, 0xb5, 0x76, 0xab, 0x71, 0x64, + 0x95, 0xe1, 0x2f, 0x12, 0xf8, 0x3b, 0x61, 0xaf, 0xa5, 0xd7, 0x09, 0x98, 0xa8, 0x0e, 0x6c, 0xbb, + 0xa9, 0x01, 0x39, 0xd8, 0x97, 0x6b, 0x8d, 0xba, 0xa9, 0x91, 0x54, 0x69, 0x17, 0xe1, 0x83, 0x51, + 0x9f, 0xf2, 0xe3, 0x7d, 0x1a, 0xe8, 0x41, 0x6c, 0x03, 0x91, 0x59, 0xec, 0xf8, 0x26, 0x9e, 0x8b, + 0xc5, 0xdf, 0x80, 0x13, 0xa5, 0x77, 0xa1, 0x3c, 0x64, 0x09, 0xe6, 0xdc, 0x3d, 0xc6, 0x7b, 0x8e, + 0x90, 0x7f, 0xdf, 0x4e, 0x21, 0xc7, 0x07, 0x95, 0x87, 0xf1, 0x1c, 0x8c, 0xa2, 0x17, 0x70, 0x9c, + 0x28, 0x3d, 0x08, 0xef, 0x15, 0x1b, 0x74, 0xaa, 0x81, 0x27, 0x2a, 0x8e, 0x70, 0xd4, 0x01, 0x73, + 0x68, 0xbe, 0xce, 0xa4, 0x00, 0xcf, 0xc9, 0xbf, 0xa7, 0x1e, 0x19, 0x70, 0x8a, 0x13, 0x6f, 0x7b, + 0x07, 0x5a, 0x0c, 0x69, 0x10, 0x7a, 0xc2, 0x1b, 0x52, 0x72, 0xd7, 0x4e, 0xf4, 0x03, 0xf0, 0x8e, + 0xfe, 0x01, 0x78, 0x67, 0xcf, 0xa3, 0x7e, 0xa7, 0x21, 0xcb, 0x36, 0x2c, 0xbe, 0xf0, 0x81, 0x94, + 0xfc, 0xf5, 0xe4, 0x5c, 0x63, 0xf7, 0x81, 0xf7, 0xdc, 0xd7, 0xf5, 0xc4, 0xd9, 0xe0, 0x64, 0xc7, + 0x65, 0xbd, 0x1b, 0x3d, 0xcf, 0xe5, 0x2c, 0x64, 0xa7, 0xe2, 0x46, 0x8f, 0xb9, 0x37, 0x78, 0xdf, + 0xbd, 0x11, 0xfd, 0xc6, 0x7c, 0x92, 0x95, 0x06, 0xdf, 0xf8, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x5b, 0x49, 0x13, 0x5a, 0x7f, 0x16, 0x00, 0x00, } diff --git a/rpc/common/moc_common_common.proto b/rpc/common/moc_common_common.proto index 9123211..142bf85 100644 --- a/rpc/common/moc_common_common.proto +++ b/rpc/common/moc_common_common.proto @@ -112,8 +112,18 @@ message Status { ValidationStatus validationStatus = 6; } -message SubResource { - string id = 1; +// in the current implementation, cloudagent objects are generally identified by their group name +// and name. These fields are used to identify if a POST request should be treated as a create or +// an update +message CloudSubResource { + string groupName = 1; + string name = 2; +} + +// in the current implementation, nodeagent objects are generally identified by their name +// this field is used to identify if a POST request should be treated as a create or an update +message NodeSubResource { + string name = 1; } message Entity { diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 9997d81..736c641 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -9,37 +9,29 @@ import "google/protobuf/wrappers.proto"; import "moc_common_common.proto"; message AvailabilitySetRequest { - // avset field repeated AvailabilitySet AvailabilitySets = 1; - // common field Operation OperationType = 2; } message AvailabilitySetResponse { - // avset field repeated AvailabilitySet AvailabilitySets = 1; - // common fields google.protobuf.BoolValue Result = 2; string Error = 3; } +// avset structure is modeled after the Azure sdk for go at +// https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { - // identifier fields string name = 1; string id = 2; - // common fields Tags tags = 6; Entity entity = 7; - // avset fields AvailabilitySetProperties properties = 8; } message AvailabilitySetProperties { string platformFaultDomainCount = 1; - // The ID of the SubResource in this instance is simply the virtual machine name. - // The vm name is the only field used in the nodeagent vm provider to decide if a - // VM POST request is a create or update. - repeated SubResource virtualMachines = 2; + repeated NodeSubResource virtualMachines = 2; Status status = 3; } diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 8948346..9e19153 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -27,13 +27,11 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type AvailabilitySetRequest struct { - // avset field - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` - // common field - OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` + OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySetRequest) Reset() { *m = AvailabilitySetRequest{} } @@ -76,9 +74,7 @@ func (m *AvailabilitySetRequest) GetOperationType() common.Operation { } type AvailabilitySetResponse struct { - // avset field - AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` - // common fields + AvailabilitySets []*AvailabilitySet `protobuf:"bytes,1,rep,name=AvailabilitySets,proto3" json:"AvailabilitySets,omitempty"` Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"` Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -132,14 +128,13 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } +// avset structure is modeled after the Azure sdk for go at +// https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet struct { - // identifier fields - Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` - // common fields - Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` - Entity *common.Entity `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"` - // avset fields + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + Entity *common.Entity `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"` Properties *AvailabilitySetProperties `protobuf:"bytes,8,opt,name=properties,proto3" json:"properties,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -207,15 +202,12 @@ func (m *AvailabilitySet) GetProperties() *AvailabilitySetProperties { } type AvailabilitySetProperties struct { - PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - // The ID of the SubResource in this instance is simply the virtual machine name. - // The vm name is the only field used in the nodeagent vm provider to decide if a - // VM POST request is a create or update. - VirtualMachines []*common.SubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*common.NodeSubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySetProperties) Reset() { *m = AvailabilitySetProperties{} } @@ -250,7 +242,7 @@ func (m *AvailabilitySetProperties) GetPlatformFaultDomainCount() string { return "" } -func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.SubResource { +func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.NodeSubResource { if m != nil { return m.VirtualMachines } @@ -276,38 +268,39 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 493 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xc1, 0x6e, 0x13, 0x31, - 0x14, 0x45, 0x99, 0xb4, 0x04, 0xea, 0x88, 0xb4, 0xb2, 0x0a, 0x1d, 0x22, 0x81, 0xa2, 0x54, 0x42, - 0xd9, 0x30, 0x53, 0x05, 0x56, 0xdd, 0xb5, 0x50, 0x24, 0x16, 0x88, 0xca, 0xa9, 0x58, 0xb0, 0xa9, - 0x9c, 0xc9, 0xcb, 0xd4, 0x62, 0xec, 0x67, 0xec, 0xe7, 0xa0, 0x2c, 0xf9, 0x15, 0x7e, 0x02, 0xfe, - 0x81, 0x9f, 0x42, 0xf1, 0x4c, 0xa3, 0x92, 0x52, 0x29, 0x1b, 0x56, 0xc9, 0xf8, 0x1e, 0x5f, 0x5f, - 0xdf, 0x79, 0xc3, 0x0e, 0x35, 0x16, 0x97, 0x06, 0xa7, 0x20, 0x4b, 0x30, 0x74, 0x29, 0xe7, 0x52, - 0x55, 0x72, 0xa2, 0x2a, 0x45, 0x0b, 0x0f, 0x94, 0x59, 0x87, 0x84, 0xfc, 0xb1, 0xc6, 0x22, 0x5b, - 0x41, 0x59, 0x81, 0xda, 0x06, 0x82, 0xde, 0xf3, 0x12, 0xb1, 0xac, 0x20, 0x8f, 0xd0, 0x24, 0xcc, - 0xf2, 0x6f, 0x4e, 0x5a, 0x0b, 0xce, 0xd7, 0xdb, 0x7a, 0x07, 0x4b, 0xef, 0x02, 0xb5, 0x46, 0xd3, - 0xfc, 0xd4, 0xc2, 0xe0, 0x47, 0xc2, 0x9e, 0x9c, 0xdc, 0x38, 0x69, 0x0c, 0x24, 0xe0, 0x6b, 0x00, - 0x4f, 0x5c, 0xb0, 0xbd, 0x35, 0xc5, 0xa7, 0x49, 0x7f, 0x6b, 0xd8, 0x19, 0xbd, 0xc8, 0xfe, 0x99, - 0x22, 0x5b, 0x37, 0xba, 0xb5, 0x9f, 0xbf, 0x66, 0x8f, 0x3e, 0x5a, 0x70, 0x92, 0x14, 0x9a, 0x8b, - 0x85, 0x85, 0xb4, 0xd5, 0x4f, 0x86, 0xdd, 0x51, 0x37, 0x1a, 0xae, 0x14, 0xf1, 0x37, 0x34, 0xf8, - 0x99, 0xb0, 0x83, 0x5b, 0x21, 0xbd, 0x45, 0xe3, 0xe1, 0xbf, 0xa4, 0x1c, 0xb1, 0xb6, 0x00, 0x1f, - 0x2a, 0x8a, 0xf1, 0x3a, 0xa3, 0x5e, 0x56, 0xd7, 0x9b, 0x5d, 0xd7, 0x9b, 0x9d, 0x22, 0x56, 0x9f, - 0x64, 0x15, 0x40, 0x34, 0x24, 0xdf, 0x67, 0xf7, 0xcf, 0x9c, 0x43, 0x97, 0x6e, 0xf5, 0x93, 0xe1, - 0x8e, 0xa8, 0x1f, 0x06, 0xbf, 0x13, 0xb6, 0xbb, 0x66, 0xcf, 0x39, 0xdb, 0x36, 0x52, 0x43, 0x9a, - 0x44, 0x30, 0xfe, 0xe7, 0x5d, 0xd6, 0x52, 0xd3, 0x78, 0xda, 0x8e, 0x68, 0xa9, 0x29, 0x7f, 0xc6, - 0xb6, 0x49, 0x96, 0x3e, 0x6d, 0xc7, 0xf3, 0x77, 0xe2, 0x4d, 0x2e, 0x64, 0xe9, 0x45, 0x5c, 0xe6, - 0x87, 0xac, 0x0d, 0x86, 0x14, 0x2d, 0xd2, 0x07, 0x11, 0xe8, 0x44, 0xe0, 0x2c, 0x2e, 0x89, 0x46, - 0xe2, 0xe7, 0x8c, 0x59, 0x87, 0x16, 0x1c, 0x29, 0xf0, 0xe9, 0xc3, 0x08, 0x1e, 0x6d, 0xd6, 0xc9, - 0xf9, 0x6a, 0x9f, 0xb8, 0xe1, 0x31, 0xf8, 0x95, 0xb0, 0xa7, 0x77, 0x92, 0xfc, 0x98, 0xa5, 0xb6, - 0x92, 0x34, 0x43, 0xa7, 0xdf, 0xc9, 0x50, 0xd1, 0x5b, 0xd4, 0x52, 0x99, 0x37, 0x18, 0x0c, 0x35, - 0x77, 0xbd, 0x53, 0xe7, 0xc7, 0x6c, 0x77, 0xae, 0x1c, 0x05, 0x59, 0x7d, 0x90, 0xc5, 0x95, 0x32, - 0xe0, 0xd3, 0x56, 0x7c, 0x89, 0x7b, 0x31, 0xf0, 0x38, 0x4c, 0x04, 0x78, 0x0c, 0xae, 0x00, 0xb1, - 0x0e, 0x2e, 0xcb, 0xf0, 0x24, 0x29, 0xf8, 0x58, 0xfd, 0x75, 0x19, 0xe3, 0xb8, 0x24, 0x1a, 0x69, - 0xf4, 0x3d, 0x61, 0xfb, 0x6b, 0xd1, 0x4f, 0x96, 0x0d, 0x70, 0xc5, 0xda, 0xef, 0xcd, 0x1c, 0xbf, - 0x00, 0x7f, 0xb9, 0xe1, 0xbc, 0xd4, 0x9f, 0x47, 0x2f, 0xdb, 0x14, 0xaf, 0x07, 0x75, 0x70, 0xef, - 0xf4, 0xe8, 0x73, 0x56, 0x2a, 0xba, 0x0a, 0x93, 0x25, 0x9b, 0x6b, 0x55, 0x38, 0xf4, 0x38, 0xa3, - 0x5c, 0x63, 0x91, 0x3b, 0x5b, 0xe4, 0x2b, 0xaf, 0xbc, 0xf1, 0x9a, 0xb4, 0xe3, 0xc0, 0xbd, 0xfa, - 0x13, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x24, 0x02, 0xd4, 0x1b, 0x04, 0x00, 0x00, + // 498 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x41, 0x6f, 0xd3, 0x30, + 0x18, 0x86, 0x49, 0x37, 0x0a, 0x75, 0x45, 0x87, 0xac, 0xc2, 0x42, 0x25, 0x50, 0xd5, 0x49, 0xa8, + 0x17, 0x92, 0xa9, 0x70, 0xe2, 0x80, 0xb4, 0xc1, 0x90, 0x38, 0x00, 0x93, 0x3b, 0x71, 0xe0, 0x32, + 0xb9, 0xe9, 0xd7, 0xcc, 0x22, 0xf1, 0x67, 0xec, 0xcf, 0x45, 0x3d, 0xf2, 0x57, 0xf8, 0x13, 0x5c, + 0xf8, 0x07, 0xfc, 0x29, 0x54, 0x27, 0xab, 0x46, 0xc6, 0xa4, 0x5e, 0x38, 0xb5, 0xf1, 0xfb, 0xf8, + 0xf5, 0xeb, 0x37, 0x5f, 0xd8, 0x41, 0x89, 0xd9, 0xb9, 0xc6, 0x39, 0xc8, 0x1c, 0x34, 0x9d, 0xcb, + 0xa5, 0x54, 0x85, 0x9c, 0xa9, 0x42, 0xd1, 0xca, 0x01, 0x25, 0xc6, 0x22, 0x21, 0x7f, 0x50, 0x62, + 0x96, 0x6c, 0xa0, 0x24, 0xc3, 0xd2, 0x78, 0x82, 0xc1, 0x93, 0x1c, 0x31, 0x2f, 0x20, 0x0d, 0xd0, + 0xcc, 0x2f, 0xd2, 0x6f, 0x56, 0x1a, 0x03, 0xd6, 0x55, 0xdb, 0x06, 0xfb, 0x6b, 0xef, 0x0c, 0xcb, + 0x12, 0x75, 0xfd, 0x53, 0x09, 0xa3, 0x1f, 0x11, 0x7b, 0x78, 0x74, 0xe5, 0xa4, 0x29, 0x90, 0x80, + 0xaf, 0x1e, 0x1c, 0x71, 0xc1, 0xee, 0x37, 0x14, 0x17, 0x47, 0xc3, 0x9d, 0x71, 0x77, 0xf2, 0x34, + 0xf9, 0x67, 0x8a, 0xa4, 0x69, 0x74, 0x6d, 0x3f, 0x7f, 0xc1, 0xee, 0x7d, 0x34, 0x60, 0x25, 0x29, + 0xd4, 0x67, 0x2b, 0x03, 0x71, 0x6b, 0x18, 0x8d, 0x7b, 0x93, 0x5e, 0x30, 0xdc, 0x28, 0xe2, 0x6f, + 0x68, 0xf4, 0x33, 0x62, 0xfb, 0xd7, 0x42, 0x3a, 0x83, 0xda, 0xc1, 0x7f, 0x49, 0x39, 0x61, 0x6d, + 0x01, 0xce, 0x17, 0x14, 0xe2, 0x75, 0x27, 0x83, 0xa4, 0xaa, 0x37, 0xb9, 0xac, 0x37, 0x39, 0x46, + 0x2c, 0x3e, 0xc9, 0xc2, 0x83, 0xa8, 0x49, 0xde, 0x67, 0xb7, 0x4f, 0xac, 0x45, 0x1b, 0xef, 0x0c, + 0xa3, 0x71, 0x47, 0x54, 0x0f, 0xa3, 0xdf, 0x11, 0xdb, 0x6b, 0xd8, 0x73, 0xce, 0x76, 0xb5, 0x2c, + 0x21, 0x8e, 0x02, 0x18, 0xfe, 0xf3, 0x1e, 0x6b, 0xa9, 0x79, 0x38, 0xad, 0x23, 0x5a, 0x6a, 0xce, + 0x1f, 0xb3, 0x5d, 0x92, 0xb9, 0x8b, 0xdb, 0xe1, 0xfc, 0x4e, 0xb8, 0xc9, 0x99, 0xcc, 0x9d, 0x08, + 0xcb, 0xfc, 0x80, 0xb5, 0x41, 0x93, 0xa2, 0x55, 0x7c, 0x27, 0x00, 0xdd, 0x00, 0x9c, 0x84, 0x25, + 0x51, 0x4b, 0xfc, 0x94, 0x31, 0x63, 0xd1, 0x80, 0x25, 0x05, 0x2e, 0xbe, 0x1b, 0xc0, 0xc3, 0xed, + 0x3a, 0x39, 0xdd, 0xec, 0x13, 0x57, 0x3c, 0x46, 0xbf, 0x22, 0xf6, 0xe8, 0x46, 0x92, 0xbf, 0x64, + 0xb1, 0x29, 0x24, 0x2d, 0xd0, 0x96, 0x6f, 0xa5, 0x2f, 0xe8, 0x0d, 0x96, 0x52, 0xe9, 0xd7, 0xe8, + 0x35, 0xd5, 0x77, 0xbd, 0x51, 0xe7, 0xaf, 0xd8, 0xde, 0x52, 0x59, 0xf2, 0xb2, 0x78, 0x2f, 0xb3, + 0x0b, 0xa5, 0xc1, 0xc5, 0xad, 0xf0, 0x12, 0xfb, 0x21, 0xf0, 0x07, 0x9c, 0xc3, 0xd4, 0xcf, 0x04, + 0x38, 0xf4, 0x36, 0x03, 0xd1, 0x84, 0xd7, 0x85, 0x38, 0x92, 0xe4, 0x5d, 0xa8, 0xff, 0xb2, 0x90, + 0x69, 0x58, 0x12, 0xb5, 0x34, 0xf9, 0x1e, 0xb1, 0x7e, 0x23, 0xfe, 0xd1, 0xba, 0x05, 0xae, 0x58, + 0xfb, 0x9d, 0x5e, 0xe2, 0x17, 0xe0, 0xcf, 0xb6, 0x9c, 0x99, 0xea, 0x13, 0x19, 0x24, 0xdb, 0xe2, + 0xd5, 0xb0, 0x8e, 0x6e, 0x1d, 0x1f, 0x7e, 0x4e, 0x72, 0x45, 0x17, 0x7e, 0xb6, 0x66, 0xd3, 0x52, + 0x65, 0x16, 0x1d, 0x2e, 0x28, 0x2d, 0x31, 0x4b, 0xad, 0xc9, 0xd2, 0x8d, 0x57, 0x5a, 0x7b, 0xcd, + 0xda, 0x61, 0xe8, 0x9e, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x97, 0x9e, 0x3d, 0xb6, 0x1f, 0x04, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From d758aa8003fce46a516510f89fcabd7163407c7d Mon Sep 17 00:00:00 2001 From: John Carden Date: Fri, 19 Jan 2024 14:58:47 +0000 Subject: [PATCH 13/25] flattened the avset data model for grpc in line with existing repo patterns --- .../moc_cloudagent_availabilityset.proto | 11 +- .../moc_cloudagent_availabilityset.pb.go | 141 ++++++----------- .../moc_nodeagent_availabilityset.proto | 14 +- .../moc_nodeagent_availabilityset.pb.go | 144 +++++++----------- 4 files changed, 104 insertions(+), 206 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index b48308f..6d6acd2 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -19,7 +19,7 @@ message AvailabilitySetResponse { string Error = 3; } -// avset structure is modeled after the Azure sdk for go at +// avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { string name = 1; @@ -28,13 +28,8 @@ message AvailabilitySet { string groupName = 4; Status status = 5; Tags tags = 6; - AvailabilitySetProperties properties = 7; -} - -message AvailabilitySetProperties { - string platformFaultDomainCount = 1; - repeated CloudSubResource virtualMachines = 2; - Status status = 3; + string platformFaultDomainCount = 7; + repeated CloudSubResource virtualMachines = 8; } service AvailabilitySetAgent { diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index c0f6ee9..6805500 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -128,19 +128,20 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } -// avset structure is modeled after the Azure sdk for go at +// avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet 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"` - LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` - GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` - Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` - Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` - Properties *AvailabilitySetProperties `protobuf:"bytes,7,opt,name=properties,proto3" json:"properties,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + LocationName string `protobuf:"bytes,3,opt,name=locationName,proto3" json:"locationName,omitempty"` + GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` + Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` + PlatformFaultDomainCount string `protobuf:"bytes,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*common.CloudSubResource `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } @@ -210,73 +211,24 @@ func (m *AvailabilitySet) GetTags() *common.Tags { return nil } -func (m *AvailabilitySet) GetProperties() *AvailabilitySetProperties { - if m != nil { - return m.Properties - } - return nil -} - -type AvailabilitySetProperties struct { - PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*common.CloudSubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *AvailabilitySetProperties) Reset() { *m = AvailabilitySetProperties{} } -func (m *AvailabilitySetProperties) String() string { return proto.CompactTextString(m) } -func (*AvailabilitySetProperties) ProtoMessage() {} -func (*AvailabilitySetProperties) Descriptor() ([]byte, []int) { - return fileDescriptor_f2024bad12ef389f, []int{3} -} - -func (m *AvailabilitySetProperties) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_AvailabilitySetProperties.Unmarshal(m, b) -} -func (m *AvailabilitySetProperties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_AvailabilitySetProperties.Marshal(b, m, deterministic) -} -func (m *AvailabilitySetProperties) XXX_Merge(src proto.Message) { - xxx_messageInfo_AvailabilitySetProperties.Merge(m, src) -} -func (m *AvailabilitySetProperties) XXX_Size() int { - return xxx_messageInfo_AvailabilitySetProperties.Size(m) -} -func (m *AvailabilitySetProperties) XXX_DiscardUnknown() { - xxx_messageInfo_AvailabilitySetProperties.DiscardUnknown(m) -} - -var xxx_messageInfo_AvailabilitySetProperties proto.InternalMessageInfo - -func (m *AvailabilitySetProperties) GetPlatformFaultDomainCount() string { +func (m *AvailabilitySet) GetPlatformFaultDomainCount() string { if m != nil { return m.PlatformFaultDomainCount } return "" } -func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.CloudSubResource { +func (m *AvailabilitySet) GetVirtualMachines() []*common.CloudSubResource { if m != nil { return m.VirtualMachines } return nil } -func (m *AvailabilitySetProperties) GetStatus() *common.Status { - if m != nil { - return m.Status - } - return nil -} - func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.cloudagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.cloudagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") - proto.RegisterType((*AvailabilitySetProperties)(nil), "moc.cloudagent.compute.AvailabilitySetProperties") } func init() { @@ -284,40 +236,37 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 515 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcd, 0x6e, 0xd3, 0x4e, - 0x14, 0xc5, 0xff, 0x4e, 0xd2, 0xfc, 0x95, 0x1b, 0x48, 0xd1, 0xa8, 0xb4, 0x26, 0x02, 0x14, 0x19, - 0x24, 0xb2, 0xb2, 0xd5, 0xc0, 0x8a, 0x0d, 0x6a, 0x0b, 0x48, 0x2c, 0xf8, 0x9a, 0x54, 0x2c, 0xd8, - 0x54, 0x13, 0x67, 0xe2, 0x8e, 0x3a, 0xe3, 0x3b, 0xcc, 0x47, 0x50, 0xd7, 0xec, 0x79, 0x09, 0x5e, - 0x82, 0x0d, 0xef, 0x86, 0x32, 0x0e, 0x4d, 0xea, 0x12, 0x29, 0x1b, 0x56, 0x89, 0xef, 0xf9, 0xcd, - 0x99, 0xe3, 0xa3, 0x6b, 0x78, 0xac, 0x30, 0x3f, 0xcb, 0x25, 0xfa, 0x29, 0x2b, 0x78, 0xe9, 0xce, - 0xd8, 0x9c, 0x09, 0xc9, 0x26, 0x42, 0x0a, 0x77, 0x69, 0xb9, 0x4b, 0xb5, 0x41, 0x87, 0x64, 0x5f, - 0x61, 0x9e, 0xae, 0xa8, 0x34, 0x47, 0xa5, 0xbd, 0xe3, 0xfd, 0x87, 0x05, 0x62, 0x21, 0x79, 0x16, - 0xa8, 0x89, 0x9f, 0x65, 0x5f, 0x0d, 0xd3, 0x9a, 0x1b, 0x5b, 0x9d, 0xeb, 0x1f, 0x04, 0x77, 0x54, - 0x0a, 0xcb, 0xe5, 0x4f, 0x25, 0x24, 0x3f, 0x22, 0xd8, 0x3f, 0x5a, 0xbb, 0x6a, 0xcc, 0x1d, 0xe5, - 0x5f, 0x3c, 0xb7, 0x8e, 0x8c, 0xe1, 0x4e, 0x4d, 0xb1, 0x71, 0x34, 0x68, 0x0e, 0xbb, 0xa3, 0x27, - 0xe9, 0xdf, 0x63, 0xa4, 0x75, 0xa7, 0x1b, 0x06, 0xe4, 0x19, 0xdc, 0x7e, 0xaf, 0xb9, 0x61, 0x4e, - 0x60, 0x79, 0x7a, 0xa9, 0x79, 0xdc, 0x18, 0x44, 0xc3, 0xde, 0xa8, 0x17, 0x1c, 0xaf, 0x14, 0x7a, - 0x1d, 0x4a, 0x7e, 0x46, 0x70, 0x70, 0x23, 0xa5, 0xd5, 0x58, 0x5a, 0xfe, 0x6f, 0x62, 0x8e, 0xa0, - 0x4d, 0xb9, 0xf5, 0xd2, 0x85, 0x7c, 0xdd, 0x51, 0x3f, 0xad, 0x0a, 0x4e, 0xff, 0x14, 0x9c, 0x1e, - 0x23, 0xca, 0x4f, 0x4c, 0x7a, 0x4e, 0x97, 0x24, 0xd9, 0x83, 0x9d, 0x57, 0xc6, 0xa0, 0x89, 0x9b, - 0x83, 0x68, 0xd8, 0xa1, 0xd5, 0x43, 0xf2, 0xbd, 0x01, 0xbb, 0x35, 0x7b, 0x42, 0xa0, 0x55, 0x32, - 0xc5, 0xe3, 0x28, 0x80, 0xe1, 0x3f, 0xe9, 0x41, 0x43, 0x4c, 0xc3, 0x6d, 0x1d, 0xda, 0x10, 0x53, - 0x92, 0xc0, 0x2d, 0x89, 0x79, 0xa8, 0xe0, 0xdd, 0x82, 0xad, 0x4c, 0xaf, 0xcd, 0xc8, 0x7d, 0xe8, - 0x14, 0x06, 0xbd, 0x0e, 0x40, 0x2b, 0x00, 0xab, 0x01, 0x79, 0x04, 0x6d, 0xeb, 0x98, 0xf3, 0x36, - 0xde, 0x09, 0xef, 0xd0, 0x0d, 0x75, 0x8c, 0xc3, 0x88, 0x2e, 0x25, 0xf2, 0x00, 0x5a, 0x8e, 0x15, - 0x36, 0x6e, 0x07, 0xa4, 0x13, 0x90, 0x53, 0x56, 0x58, 0x1a, 0xc6, 0xe4, 0x23, 0x80, 0x36, 0xa8, - 0xb9, 0x71, 0x82, 0xdb, 0xf8, 0xff, 0x00, 0x1d, 0x6e, 0x59, 0xeb, 0x87, 0xab, 0x83, 0x74, 0xcd, - 0x24, 0xf9, 0x15, 0xc1, 0xbd, 0x8d, 0x24, 0x79, 0x0e, 0xb1, 0x96, 0xcc, 0xcd, 0xd0, 0xa8, 0xd7, - 0xcc, 0x4b, 0xf7, 0x12, 0x15, 0x13, 0xe5, 0x09, 0xfa, 0xd2, 0x2d, 0xeb, 0xda, 0xa8, 0x93, 0x17, - 0xb0, 0x3b, 0x17, 0xc6, 0x79, 0x26, 0xdf, 0xb2, 0xfc, 0x5c, 0x94, 0xdc, 0xc6, 0x8d, 0xb0, 0x08, - 0x77, 0x43, 0xe2, 0x93, 0x45, 0xe2, 0xb1, 0x9f, 0x50, 0x6e, 0xd1, 0x9b, 0x9c, 0xd3, 0x3a, 0xbd, - 0xd6, 0x58, 0x73, 0x63, 0x63, 0xa3, 0x6f, 0x11, 0xec, 0xd5, 0xf2, 0x1f, 0x2d, 0x6a, 0x20, 0x17, - 0xd0, 0x7e, 0x53, 0xce, 0xf1, 0x82, 0x93, 0x74, 0xdb, 0xc5, 0xab, 0xbe, 0xb4, 0x7e, 0xb6, 0x35, - 0x5f, 0xed, 0x7c, 0xf2, 0xdf, 0xf1, 0xe1, 0xe7, 0xac, 0x10, 0xee, 0xdc, 0x4f, 0x16, 0x6c, 0xa6, - 0x44, 0x6e, 0xd0, 0xe2, 0xcc, 0x65, 0x0a, 0xf3, 0xcc, 0xe8, 0x3c, 0x5b, 0x99, 0x65, 0x4b, 0xb3, - 0x49, 0x3b, 0xec, 0xee, 0xd3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x30, 0xe6, 0x6b, 0x39, 0x6a, - 0x04, 0x00, 0x00, + // 478 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd3, 0x40, + 0x10, 0xc6, 0x71, 0xda, 0x06, 0xb2, 0x81, 0x14, 0xad, 0x4a, 0x6b, 0x45, 0x80, 0x22, 0x83, 0x44, + 0x4e, 0xb6, 0x30, 0x9c, 0xb8, 0xa0, 0xb6, 0x80, 0xc4, 0x01, 0x90, 0x36, 0x15, 0x07, 0x2e, 0xd5, + 0x7a, 0xb3, 0x71, 0x57, 0xdd, 0xf5, 0x2c, 0xfb, 0x27, 0xa8, 0x67, 0x1e, 0x85, 0x97, 0xe8, 0xe3, + 0xa1, 0x8c, 0x03, 0xa1, 0x2e, 0x48, 0xbd, 0x70, 0x4a, 0x3c, 0xdf, 0xcf, 0xdf, 0x8c, 0xbf, 0x19, + 0xf2, 0xd4, 0x80, 0x38, 0x15, 0x1a, 0xe2, 0x9c, 0xd7, 0xb2, 0x09, 0xa7, 0x7c, 0xc9, 0x95, 0xe6, + 0x95, 0xd2, 0x2a, 0x5c, 0x78, 0x19, 0x72, 0xeb, 0x20, 0x00, 0xdd, 0x37, 0x20, 0xf2, 0x0d, 0x95, + 0x0b, 0x30, 0x36, 0x06, 0x39, 0x7e, 0x5c, 0x03, 0xd4, 0x5a, 0x16, 0x48, 0x55, 0x71, 0x51, 0x7c, + 0x73, 0xdc, 0x5a, 0xe9, 0x7c, 0xfb, 0xde, 0xf8, 0x00, 0xdd, 0xc1, 0x18, 0x68, 0xd6, 0x3f, 0xad, + 0x90, 0xfd, 0x48, 0xc8, 0xfe, 0xe1, 0x1f, 0xad, 0x66, 0x32, 0x30, 0xf9, 0x35, 0x4a, 0x1f, 0xe8, + 0x8c, 0xdc, 0xef, 0x28, 0x3e, 0x4d, 0x26, 0x5b, 0xd3, 0x61, 0xf9, 0x2c, 0xff, 0xfb, 0x18, 0x79, + 0xd7, 0xe9, 0x9a, 0x01, 0x7d, 0x49, 0xee, 0x7d, 0xb2, 0xd2, 0xf1, 0xa0, 0xa0, 0x39, 0xb9, 0xb0, + 0x32, 0xed, 0x4d, 0x92, 0xe9, 0xa8, 0x1c, 0xa1, 0xe3, 0x6f, 0x85, 0x5d, 0x85, 0xb2, 0xcb, 0x84, + 0x1c, 0x5c, 0x9b, 0xd2, 0x5b, 0x68, 0xbc, 0xfc, 0x3f, 0x63, 0x96, 0xa4, 0xcf, 0xa4, 0x8f, 0x3a, + 0xe0, 0x7c, 0xc3, 0x72, 0x9c, 0xb7, 0x01, 0xe7, 0xbf, 0x02, 0xce, 0x8f, 0x00, 0xf4, 0x67, 0xae, + 0xa3, 0x64, 0x6b, 0x92, 0xee, 0x91, 0x9d, 0xb7, 0xce, 0x81, 0x4b, 0xb7, 0x26, 0xc9, 0x74, 0xc0, + 0xda, 0x87, 0xec, 0xb2, 0x47, 0x76, 0x3b, 0xf6, 0x94, 0x92, 0xed, 0x86, 0x1b, 0x99, 0x26, 0x08, + 0xe2, 0x7f, 0x3a, 0x22, 0x3d, 0x35, 0xc7, 0x6e, 0x03, 0xd6, 0x53, 0x73, 0x9a, 0x91, 0xbb, 0x1a, + 0x04, 0x46, 0xf0, 0x71, 0xc5, 0xb6, 0xa6, 0x57, 0x6a, 0xf4, 0x21, 0x19, 0xd4, 0x0e, 0xa2, 0x45, + 0x60, 0x1b, 0x81, 0x4d, 0x81, 0x3e, 0x21, 0x7d, 0x1f, 0x78, 0x88, 0x3e, 0xdd, 0xc1, 0x6f, 0x18, + 0x62, 0x1c, 0x33, 0x2c, 0xb1, 0xb5, 0x44, 0x1f, 0x91, 0xed, 0xc0, 0x6b, 0x9f, 0xf6, 0x11, 0x19, + 0x20, 0x72, 0xc2, 0x6b, 0xcf, 0xb0, 0x4c, 0x5f, 0x91, 0xd4, 0x6a, 0x1e, 0x16, 0xe0, 0xcc, 0x3b, + 0x1e, 0x75, 0x78, 0x03, 0x86, 0xab, 0xe6, 0x18, 0x62, 0x13, 0xd2, 0xdb, 0xd8, 0xf0, 0x9f, 0x3a, + 0x7d, 0x4d, 0x76, 0x97, 0xca, 0x85, 0xc8, 0xf5, 0x07, 0x2e, 0xce, 0x54, 0x23, 0x7d, 0x7a, 0x07, + 0xf7, 0xf2, 0x00, 0xbb, 0x1c, 0xaf, 0xf6, 0x32, 0x8b, 0x15, 0x93, 0x1e, 0xa2, 0x13, 0x92, 0x75, + 0xe9, 0xf2, 0x7b, 0x42, 0xf6, 0x3a, 0xd1, 0x1d, 0xae, 0xf6, 0x48, 0xcf, 0x49, 0xff, 0x7d, 0xb3, + 0x84, 0x73, 0x49, 0xf3, 0x9b, 0xae, 0xb8, 0xbd, 0xe9, 0x71, 0x71, 0x63, 0xbe, 0xbd, 0xae, 0xec, + 0xd6, 0xd1, 0xf3, 0x2f, 0x45, 0xad, 0xc2, 0x59, 0xac, 0x56, 0x6c, 0x61, 0x94, 0x70, 0xe0, 0x61, + 0x11, 0x0a, 0x03, 0xa2, 0x70, 0x56, 0x14, 0x1b, 0xb3, 0x62, 0x6d, 0x56, 0xf5, 0xf1, 0x4a, 0x5e, + 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x4d, 0x2d, 0xc6, 0xd4, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 736c641..aa172a8 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -19,20 +19,16 @@ message AvailabilitySetResponse { string Error = 3; } -// avset structure is modeled after the Azure sdk for go at +// avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { string name = 1; string id = 2; - Tags tags = 6; - Entity entity = 7; - AvailabilitySetProperties properties = 8; -} - -message AvailabilitySetProperties { - string platformFaultDomainCount = 1; - repeated NodeSubResource virtualMachines = 2; Status status = 3; + Tags tags = 4; + Entity entity = 5; + string platformFaultDomainCount = 6; + repeated NodeSubResource virtualMachines = 7; } service AvailabilitySetAgent { diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 9e19153..7d17611 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -128,17 +128,19 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } -// avset structure is modeled after the Azure sdk for go at +// avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet 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"` - Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` - Entity *common.Entity `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"` - Properties *AvailabilitySetProperties `protobuf:"bytes,8,opt,name=properties,proto3" json:"properties,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,4,opt,name=tags,proto3" json:"tags,omitempty"` + Entity *common.Entity `protobuf:"bytes,5,opt,name=entity,proto3" json:"entity,omitempty"` + PlatformFaultDomainCount string `protobuf:"bytes,6,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*common.NodeSubResource `protobuf:"bytes,7,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } @@ -180,6 +182,13 @@ func (m *AvailabilitySet) GetId() string { return "" } +func (m *AvailabilitySet) GetStatus() *common.Status { + if m != nil { + return m.Status + } + return nil +} + func (m *AvailabilitySet) GetTags() *common.Tags { if m != nil { return m.Tags @@ -194,73 +203,24 @@ func (m *AvailabilitySet) GetEntity() *common.Entity { return nil } -func (m *AvailabilitySet) GetProperties() *AvailabilitySetProperties { - if m != nil { - return m.Properties - } - return nil -} - -type AvailabilitySetProperties struct { - PlatformFaultDomainCount string `protobuf:"bytes,1,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*common.NodeSubResource `protobuf:"bytes,2,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *AvailabilitySetProperties) Reset() { *m = AvailabilitySetProperties{} } -func (m *AvailabilitySetProperties) String() string { return proto.CompactTextString(m) } -func (*AvailabilitySetProperties) ProtoMessage() {} -func (*AvailabilitySetProperties) Descriptor() ([]byte, []int) { - return fileDescriptor_d615df2311cce965, []int{3} -} - -func (m *AvailabilitySetProperties) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_AvailabilitySetProperties.Unmarshal(m, b) -} -func (m *AvailabilitySetProperties) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_AvailabilitySetProperties.Marshal(b, m, deterministic) -} -func (m *AvailabilitySetProperties) XXX_Merge(src proto.Message) { - xxx_messageInfo_AvailabilitySetProperties.Merge(m, src) -} -func (m *AvailabilitySetProperties) XXX_Size() int { - return xxx_messageInfo_AvailabilitySetProperties.Size(m) -} -func (m *AvailabilitySetProperties) XXX_DiscardUnknown() { - xxx_messageInfo_AvailabilitySetProperties.DiscardUnknown(m) -} - -var xxx_messageInfo_AvailabilitySetProperties proto.InternalMessageInfo - -func (m *AvailabilitySetProperties) GetPlatformFaultDomainCount() string { +func (m *AvailabilitySet) GetPlatformFaultDomainCount() string { if m != nil { return m.PlatformFaultDomainCount } return "" } -func (m *AvailabilitySetProperties) GetVirtualMachines() []*common.NodeSubResource { +func (m *AvailabilitySet) GetVirtualMachines() []*common.NodeSubResource { if m != nil { return m.VirtualMachines } return nil } -func (m *AvailabilitySetProperties) GetStatus() *common.Status { - if m != nil { - return m.Status - } - return nil -} - func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.nodeagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.nodeagent.compute.AvailabilitySetResponse") proto.RegisterType((*AvailabilitySet)(nil), "moc.nodeagent.compute.AvailabilitySet") - proto.RegisterType((*AvailabilitySetProperties)(nil), "moc.nodeagent.compute.AvailabilitySetProperties") } func init() { @@ -268,39 +228,37 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 498 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x41, 0x6f, 0xd3, 0x30, - 0x18, 0x86, 0x49, 0x37, 0x0a, 0x75, 0x45, 0x87, 0xac, 0xc2, 0x42, 0x25, 0x50, 0xd5, 0x49, 0xa8, - 0x17, 0x92, 0xa9, 0x70, 0xe2, 0x80, 0xb4, 0xc1, 0x90, 0x38, 0x00, 0x93, 0x3b, 0x71, 0xe0, 0x32, - 0xb9, 0xe9, 0xd7, 0xcc, 0x22, 0xf1, 0x67, 0xec, 0xcf, 0x45, 0x3d, 0xf2, 0x57, 0xf8, 0x13, 0x5c, - 0xf8, 0x07, 0xfc, 0x29, 0x54, 0x27, 0xab, 0x46, 0xc6, 0xa4, 0x5e, 0x38, 0xb5, 0xf1, 0xfb, 0xf8, - 0xf5, 0xeb, 0x37, 0x5f, 0xd8, 0x41, 0x89, 0xd9, 0xb9, 0xc6, 0x39, 0xc8, 0x1c, 0x34, 0x9d, 0xcb, - 0xa5, 0x54, 0x85, 0x9c, 0xa9, 0x42, 0xd1, 0xca, 0x01, 0x25, 0xc6, 0x22, 0x21, 0x7f, 0x50, 0x62, - 0x96, 0x6c, 0xa0, 0x24, 0xc3, 0xd2, 0x78, 0x82, 0xc1, 0x93, 0x1c, 0x31, 0x2f, 0x20, 0x0d, 0xd0, - 0xcc, 0x2f, 0xd2, 0x6f, 0x56, 0x1a, 0x03, 0xd6, 0x55, 0xdb, 0x06, 0xfb, 0x6b, 0xef, 0x0c, 0xcb, - 0x12, 0x75, 0xfd, 0x53, 0x09, 0xa3, 0x1f, 0x11, 0x7b, 0x78, 0x74, 0xe5, 0xa4, 0x29, 0x90, 0x80, - 0xaf, 0x1e, 0x1c, 0x71, 0xc1, 0xee, 0x37, 0x14, 0x17, 0x47, 0xc3, 0x9d, 0x71, 0x77, 0xf2, 0x34, - 0xf9, 0x67, 0x8a, 0xa4, 0x69, 0x74, 0x6d, 0x3f, 0x7f, 0xc1, 0xee, 0x7d, 0x34, 0x60, 0x25, 0x29, - 0xd4, 0x67, 0x2b, 0x03, 0x71, 0x6b, 0x18, 0x8d, 0x7b, 0x93, 0x5e, 0x30, 0xdc, 0x28, 0xe2, 0x6f, - 0x68, 0xf4, 0x33, 0x62, 0xfb, 0xd7, 0x42, 0x3a, 0x83, 0xda, 0xc1, 0x7f, 0x49, 0x39, 0x61, 0x6d, - 0x01, 0xce, 0x17, 0x14, 0xe2, 0x75, 0x27, 0x83, 0xa4, 0xaa, 0x37, 0xb9, 0xac, 0x37, 0x39, 0x46, - 0x2c, 0x3e, 0xc9, 0xc2, 0x83, 0xa8, 0x49, 0xde, 0x67, 0xb7, 0x4f, 0xac, 0x45, 0x1b, 0xef, 0x0c, - 0xa3, 0x71, 0x47, 0x54, 0x0f, 0xa3, 0xdf, 0x11, 0xdb, 0x6b, 0xd8, 0x73, 0xce, 0x76, 0xb5, 0x2c, - 0x21, 0x8e, 0x02, 0x18, 0xfe, 0xf3, 0x1e, 0x6b, 0xa9, 0x79, 0x38, 0xad, 0x23, 0x5a, 0x6a, 0xce, - 0x1f, 0xb3, 0x5d, 0x92, 0xb9, 0x8b, 0xdb, 0xe1, 0xfc, 0x4e, 0xb8, 0xc9, 0x99, 0xcc, 0x9d, 0x08, - 0xcb, 0xfc, 0x80, 0xb5, 0x41, 0x93, 0xa2, 0x55, 0x7c, 0x27, 0x00, 0xdd, 0x00, 0x9c, 0x84, 0x25, - 0x51, 0x4b, 0xfc, 0x94, 0x31, 0x63, 0xd1, 0x80, 0x25, 0x05, 0x2e, 0xbe, 0x1b, 0xc0, 0xc3, 0xed, - 0x3a, 0x39, 0xdd, 0xec, 0x13, 0x57, 0x3c, 0x46, 0xbf, 0x22, 0xf6, 0xe8, 0x46, 0x92, 0xbf, 0x64, - 0xb1, 0x29, 0x24, 0x2d, 0xd0, 0x96, 0x6f, 0xa5, 0x2f, 0xe8, 0x0d, 0x96, 0x52, 0xe9, 0xd7, 0xe8, - 0x35, 0xd5, 0x77, 0xbd, 0x51, 0xe7, 0xaf, 0xd8, 0xde, 0x52, 0x59, 0xf2, 0xb2, 0x78, 0x2f, 0xb3, - 0x0b, 0xa5, 0xc1, 0xc5, 0xad, 0xf0, 0x12, 0xfb, 0x21, 0xf0, 0x07, 0x9c, 0xc3, 0xd4, 0xcf, 0x04, - 0x38, 0xf4, 0x36, 0x03, 0xd1, 0x84, 0xd7, 0x85, 0x38, 0x92, 0xe4, 0x5d, 0xa8, 0xff, 0xb2, 0x90, - 0x69, 0x58, 0x12, 0xb5, 0x34, 0xf9, 0x1e, 0xb1, 0x7e, 0x23, 0xfe, 0xd1, 0xba, 0x05, 0xae, 0x58, - 0xfb, 0x9d, 0x5e, 0xe2, 0x17, 0xe0, 0xcf, 0xb6, 0x9c, 0x99, 0xea, 0x13, 0x19, 0x24, 0xdb, 0xe2, - 0xd5, 0xb0, 0x8e, 0x6e, 0x1d, 0x1f, 0x7e, 0x4e, 0x72, 0x45, 0x17, 0x7e, 0xb6, 0x66, 0xd3, 0x52, - 0x65, 0x16, 0x1d, 0x2e, 0x28, 0x2d, 0x31, 0x4b, 0xad, 0xc9, 0xd2, 0x8d, 0x57, 0x5a, 0x7b, 0xcd, - 0xda, 0x61, 0xe8, 0x9e, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x97, 0x9e, 0x3d, 0xb6, 0x1f, 0x04, - 0x00, 0x00, + // 469 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0xd3, 0x4e, + 0x10, 0xc6, 0xff, 0x4e, 0xd3, 0xfc, 0x95, 0x8d, 0x48, 0xd1, 0x2a, 0x50, 0x2b, 0x12, 0x28, 0x4a, + 0x25, 0x94, 0x0b, 0x6b, 0x64, 0x38, 0x71, 0x40, 0x6a, 0xa1, 0x48, 0x1c, 0x00, 0x69, 0x53, 0x71, + 0xe0, 0x52, 0x6d, 0x9c, 0x89, 0xbb, 0xc2, 0xbb, 0x63, 0x76, 0x67, 0x83, 0x72, 0xe4, 0x35, 0x38, + 0xf2, 0x12, 0xbc, 0x1e, 0xca, 0x3a, 0x44, 0xc5, 0x05, 0xa9, 0x17, 0x4e, 0xb6, 0xe7, 0xfb, 0xed, + 0x37, 0x9f, 0x67, 0x87, 0x9d, 0x18, 0x2c, 0x2e, 0x2d, 0x2e, 0x41, 0x95, 0x60, 0xe9, 0x52, 0xad, + 0x95, 0xae, 0xd4, 0x42, 0x57, 0x9a, 0x36, 0x1e, 0x48, 0xd4, 0x0e, 0x09, 0xf9, 0x3d, 0x83, 0x85, + 0xd8, 0x43, 0xa2, 0x40, 0x53, 0x07, 0x82, 0xf1, 0xc3, 0x12, 0xb1, 0xac, 0x20, 0x8b, 0xd0, 0x22, + 0xac, 0xb2, 0x2f, 0x4e, 0xd5, 0x35, 0x38, 0xdf, 0x1c, 0x1b, 0x1f, 0x6f, 0xbd, 0x0b, 0x34, 0x06, + 0xed, 0xee, 0xd1, 0x08, 0xd3, 0xef, 0x09, 0xbb, 0x7f, 0x7a, 0xad, 0xd3, 0x1c, 0x48, 0xc2, 0xe7, + 0x00, 0x9e, 0xb8, 0x64, 0x77, 0x5b, 0x8a, 0x4f, 0x93, 0xc9, 0xc1, 0x6c, 0x90, 0x3f, 0x12, 0x7f, + 0x4c, 0x21, 0xda, 0x46, 0x37, 0xce, 0xf3, 0x67, 0xec, 0xce, 0xfb, 0x1a, 0x9c, 0x22, 0x8d, 0xf6, + 0x62, 0x53, 0x43, 0xda, 0x99, 0x24, 0xb3, 0x61, 0x3e, 0x8c, 0x86, 0x7b, 0x45, 0xfe, 0x0e, 0x4d, + 0x7f, 0x24, 0xec, 0xf8, 0x46, 0x48, 0x5f, 0xa3, 0xf5, 0xf0, 0x4f, 0x52, 0xe6, 0xac, 0x27, 0xc1, + 0x87, 0x8a, 0x62, 0xbc, 0x41, 0x3e, 0x16, 0xcd, 0x78, 0xc5, 0xaf, 0xf1, 0x8a, 0x33, 0xc4, 0xea, + 0x83, 0xaa, 0x02, 0xc8, 0x1d, 0xc9, 0x47, 0xec, 0xf0, 0xdc, 0x39, 0x74, 0xe9, 0xc1, 0x24, 0x99, + 0xf5, 0x65, 0xf3, 0x31, 0xfd, 0xd6, 0x61, 0x47, 0x2d, 0x7b, 0xce, 0x59, 0xd7, 0x2a, 0x03, 0x69, + 0x12, 0xc1, 0xf8, 0xce, 0x87, 0xac, 0xa3, 0x97, 0xb1, 0x5b, 0x5f, 0x76, 0xf4, 0x92, 0x9f, 0xb0, + 0x9e, 0x27, 0x45, 0xc1, 0x47, 0xbb, 0x41, 0x3e, 0x88, 0xff, 0x32, 0x8f, 0x25, 0xb9, 0x93, 0xf8, + 0x03, 0xd6, 0x25, 0x55, 0xfa, 0xb4, 0x1b, 0x91, 0x7e, 0x44, 0x2e, 0x54, 0xe9, 0x65, 0x2c, 0x6f, + 0x3d, 0xc0, 0x92, 0xa6, 0x4d, 0x7a, 0x78, 0xcd, 0xe3, 0x3c, 0x96, 0xe4, 0x4e, 0xe2, 0xcf, 0x59, + 0x5a, 0x57, 0x8a, 0x56, 0xe8, 0xcc, 0x6b, 0x15, 0x2a, 0x7a, 0x85, 0x46, 0x69, 0xfb, 0x12, 0x83, + 0xa5, 0xb4, 0x17, 0xe3, 0xfc, 0x55, 0xe7, 0x2f, 0xd8, 0xd1, 0x5a, 0x3b, 0x0a, 0xaa, 0x7a, 0xab, + 0x8a, 0x2b, 0x6d, 0xc1, 0xa7, 0xff, 0xc7, 0xc9, 0x8f, 0x62, 0xa7, 0x77, 0xb8, 0x84, 0x79, 0x58, + 0x48, 0xf0, 0x18, 0x5c, 0x01, 0xb2, 0x0d, 0xe7, 0x5f, 0x13, 0x36, 0x6a, 0x0d, 0xe7, 0x74, 0x7b, + 0x53, 0x5c, 0xb3, 0xde, 0x1b, 0xbb, 0xc6, 0x4f, 0xc0, 0x1f, 0xdf, 0xf2, 0x0e, 0x9b, 0x95, 0x1d, + 0x8b, 0xdb, 0xe2, 0xcd, 0xf2, 0x4c, 0xff, 0x3b, 0x7b, 0xf2, 0x51, 0x94, 0x9a, 0xae, 0xc2, 0x62, + 0xcb, 0x66, 0x46, 0x17, 0x0e, 0x3d, 0xae, 0x28, 0x33, 0x58, 0x64, 0xae, 0x2e, 0xb2, 0xbd, 0x57, + 0xb6, 0xf3, 0x5a, 0xf4, 0xe2, 0x12, 0x3c, 0xfd, 0x19, 0x00, 0x00, 0xff, 0xff, 0x7e, 0x7a, 0x6b, + 0x0f, 0xaf, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 63b19fe56ac557b42d3ca75512db2af5713b4d42 Mon Sep 17 00:00:00 2001 From: John Carden Date: Fri, 19 Jan 2024 16:06:28 +0000 Subject: [PATCH 14/25] changed avset platformFaultDomainCount to int32 --- .../moc_cloudagent_availabilityset.proto | 2 +- .../moc_cloudagent_availabilityset.pb.go | 61 +++++++++-------- .../moc_nodeagent_availabilityset.proto | 2 +- .../moc_nodeagent_availabilityset.pb.go | 68 +++++++++---------- 4 files changed, 67 insertions(+), 66 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index 6d6acd2..efb0a7f 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -28,7 +28,7 @@ message AvailabilitySet { string groupName = 4; Status status = 5; Tags tags = 6; - string platformFaultDomainCount = 7; + int32 platformFaultDomainCount = 7; repeated CloudSubResource virtualMachines = 8; } diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index 6805500..3e4ca7f 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -137,7 +137,7 @@ type AvailabilitySet struct { GroupName string `protobuf:"bytes,4,opt,name=groupName,proto3" json:"groupName,omitempty"` Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` - PlatformFaultDomainCount string `protobuf:"bytes,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + PlatformFaultDomainCount int32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` VirtualMachines []*common.CloudSubResource `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -211,11 +211,11 @@ func (m *AvailabilitySet) GetTags() *common.Tags { return nil } -func (m *AvailabilitySet) GetPlatformFaultDomainCount() string { +func (m *AvailabilitySet) GetPlatformFaultDomainCount() int32 { if m != nil { return m.PlatformFaultDomainCount } - return "" + return 0 } func (m *AvailabilitySet) GetVirtualMachines() []*common.CloudSubResource { @@ -236,37 +236,38 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 478 bytes of a gzipped FileDescriptorProto + // 481 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0x71, 0xda, 0x06, 0xb2, 0x81, 0x14, 0xad, 0x4a, 0x6b, 0x45, 0x80, 0x22, 0x83, 0x44, + 0x10, 0xc6, 0x71, 0x9a, 0x04, 0xb2, 0x81, 0x14, 0xad, 0x4a, 0x6b, 0x45, 0x80, 0xa2, 0x80, 0x44, 0x4e, 0xb6, 0x30, 0x9c, 0xb8, 0xa0, 0xb6, 0x80, 0xc4, 0x01, 0x90, 0x36, 0x15, 0x07, 0x2e, 0xd5, 0x7a, 0xb3, 0x71, 0x57, 0xdd, 0xf5, 0x2c, 0xfb, 0x27, 0xa8, 0x67, 0x1e, 0x85, 0x97, 0xe8, 0xe3, 0xa1, 0x8c, 0x03, 0xa1, 0x2e, 0x48, 0xbd, 0x70, 0x4a, 0x3c, 0xdf, 0xcf, 0xdf, 0x8c, 0xbf, 0x19, - 0xf2, 0xd4, 0x80, 0x38, 0x15, 0x1a, 0xe2, 0x9c, 0xd7, 0xb2, 0x09, 0xa7, 0x7c, 0xc9, 0x95, 0xe6, - 0x95, 0xd2, 0x2a, 0x5c, 0x78, 0x19, 0x72, 0xeb, 0x20, 0x00, 0xdd, 0x37, 0x20, 0xf2, 0x0d, 0x95, - 0x0b, 0x30, 0x36, 0x06, 0x39, 0x7e, 0x5c, 0x03, 0xd4, 0x5a, 0x16, 0x48, 0x55, 0x71, 0x51, 0x7c, - 0x73, 0xdc, 0x5a, 0xe9, 0x7c, 0xfb, 0xde, 0xf8, 0x00, 0xdd, 0xc1, 0x18, 0x68, 0xd6, 0x3f, 0xad, - 0x90, 0xfd, 0x48, 0xc8, 0xfe, 0xe1, 0x1f, 0xad, 0x66, 0x32, 0x30, 0xf9, 0x35, 0x4a, 0x1f, 0xe8, - 0x8c, 0xdc, 0xef, 0x28, 0x3e, 0x4d, 0x26, 0x5b, 0xd3, 0x61, 0xf9, 0x2c, 0xff, 0xfb, 0x18, 0x79, - 0xd7, 0xe9, 0x9a, 0x01, 0x7d, 0x49, 0xee, 0x7d, 0xb2, 0xd2, 0xf1, 0xa0, 0xa0, 0x39, 0xb9, 0xb0, - 0x32, 0xed, 0x4d, 0x92, 0xe9, 0xa8, 0x1c, 0xa1, 0xe3, 0x6f, 0x85, 0x5d, 0x85, 0xb2, 0xcb, 0x84, - 0x1c, 0x5c, 0x9b, 0xd2, 0x5b, 0x68, 0xbc, 0xfc, 0x3f, 0x63, 0x96, 0xa4, 0xcf, 0xa4, 0x8f, 0x3a, - 0xe0, 0x7c, 0xc3, 0x72, 0x9c, 0xb7, 0x01, 0xe7, 0xbf, 0x02, 0xce, 0x8f, 0x00, 0xf4, 0x67, 0xae, - 0xa3, 0x64, 0x6b, 0x92, 0xee, 0x91, 0x9d, 0xb7, 0xce, 0x81, 0x4b, 0xb7, 0x26, 0xc9, 0x74, 0xc0, - 0xda, 0x87, 0xec, 0xb2, 0x47, 0x76, 0x3b, 0xf6, 0x94, 0x92, 0xed, 0x86, 0x1b, 0x99, 0x26, 0x08, - 0xe2, 0x7f, 0x3a, 0x22, 0x3d, 0x35, 0xc7, 0x6e, 0x03, 0xd6, 0x53, 0x73, 0x9a, 0x91, 0xbb, 0x1a, - 0x04, 0x46, 0xf0, 0x71, 0xc5, 0xb6, 0xa6, 0x57, 0x6a, 0xf4, 0x21, 0x19, 0xd4, 0x0e, 0xa2, 0x45, - 0x60, 0x1b, 0x81, 0x4d, 0x81, 0x3e, 0x21, 0x7d, 0x1f, 0x78, 0x88, 0x3e, 0xdd, 0xc1, 0x6f, 0x18, - 0x62, 0x1c, 0x33, 0x2c, 0xb1, 0xb5, 0x44, 0x1f, 0x91, 0xed, 0xc0, 0x6b, 0x9f, 0xf6, 0x11, 0x19, - 0x20, 0x72, 0xc2, 0x6b, 0xcf, 0xb0, 0x4c, 0x5f, 0x91, 0xd4, 0x6a, 0x1e, 0x16, 0xe0, 0xcc, 0x3b, - 0x1e, 0x75, 0x78, 0x03, 0x86, 0xab, 0xe6, 0x18, 0x62, 0x13, 0xd2, 0xdb, 0xd8, 0xf0, 0x9f, 0x3a, - 0x7d, 0x4d, 0x76, 0x97, 0xca, 0x85, 0xc8, 0xf5, 0x07, 0x2e, 0xce, 0x54, 0x23, 0x7d, 0x7a, 0x07, - 0xf7, 0xf2, 0x00, 0xbb, 0x1c, 0xaf, 0xf6, 0x32, 0x8b, 0x15, 0x93, 0x1e, 0xa2, 0x13, 0x92, 0x75, - 0xe9, 0xf2, 0x7b, 0x42, 0xf6, 0x3a, 0xd1, 0x1d, 0xae, 0xf6, 0x48, 0xcf, 0x49, 0xff, 0x7d, 0xb3, - 0x84, 0x73, 0x49, 0xf3, 0x9b, 0xae, 0xb8, 0xbd, 0xe9, 0x71, 0x71, 0x63, 0xbe, 0xbd, 0xae, 0xec, - 0xd6, 0xd1, 0xf3, 0x2f, 0x45, 0xad, 0xc2, 0x59, 0xac, 0x56, 0x6c, 0x61, 0x94, 0x70, 0xe0, 0x61, - 0x11, 0x0a, 0x03, 0xa2, 0x70, 0x56, 0x14, 0x1b, 0xb3, 0x62, 0x6d, 0x56, 0xf5, 0xf1, 0x4a, 0x5e, - 0xfc, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x4d, 0x2d, 0xc6, 0xd4, 0x03, 0x00, 0x00, + 0xf2, 0xd4, 0x80, 0x38, 0x15, 0x1a, 0xe2, 0x82, 0x57, 0xb2, 0x0e, 0xa7, 0x7c, 0xc5, 0x95, 0xe6, + 0xa5, 0xd2, 0x2a, 0x5c, 0x78, 0x19, 0x32, 0xeb, 0x20, 0x00, 0xdd, 0x37, 0x20, 0xb2, 0x2d, 0x95, + 0x09, 0x30, 0x36, 0x06, 0x39, 0x7e, 0x5c, 0x01, 0x54, 0x5a, 0xe6, 0x48, 0x95, 0x71, 0x99, 0x7f, + 0x73, 0xdc, 0x5a, 0xe9, 0x7c, 0xf3, 0xde, 0xf8, 0x00, 0xdd, 0xc1, 0x18, 0xa8, 0x37, 0x3f, 0x8d, + 0x30, 0xfd, 0x91, 0x90, 0xfd, 0xc3, 0x3f, 0x5a, 0xcd, 0x65, 0x60, 0xf2, 0x6b, 0x94, 0x3e, 0xd0, + 0x39, 0xb9, 0xdf, 0x52, 0x7c, 0x9a, 0x4c, 0x76, 0x66, 0xc3, 0xe2, 0x59, 0xf6, 0xf7, 0x31, 0xb2, + 0xb6, 0xd3, 0x35, 0x03, 0xfa, 0x92, 0xdc, 0xfb, 0x64, 0xa5, 0xe3, 0x41, 0x41, 0x7d, 0x72, 0x61, + 0x65, 0xda, 0x99, 0x24, 0xb3, 0x51, 0x31, 0x42, 0xc7, 0xdf, 0x0a, 0xbb, 0x0a, 0x4d, 0x2f, 0x13, + 0x72, 0x70, 0x6d, 0x4a, 0x6f, 0xa1, 0xf6, 0xf2, 0xff, 0x8c, 0x59, 0x90, 0x3e, 0x93, 0x3e, 0xea, + 0x80, 0xf3, 0x0d, 0x8b, 0x71, 0xd6, 0x04, 0x9c, 0xfd, 0x0a, 0x38, 0x3b, 0x02, 0xd0, 0x9f, 0xb9, + 0x8e, 0x92, 0x6d, 0x48, 0xba, 0x47, 0x7a, 0x6f, 0x9d, 0x03, 0x97, 0xee, 0x4c, 0x92, 0xd9, 0x80, + 0x35, 0x0f, 0xd3, 0xcb, 0x0e, 0xd9, 0x6d, 0xd9, 0x53, 0x4a, 0xba, 0x35, 0x37, 0x32, 0x4d, 0x10, + 0xc4, 0xff, 0x74, 0x44, 0x3a, 0x6a, 0x81, 0xdd, 0x06, 0xac, 0xa3, 0x16, 0x74, 0x4a, 0xee, 0x6a, + 0x10, 0x18, 0xc1, 0xc7, 0x35, 0xdb, 0x98, 0x5e, 0xa9, 0xd1, 0x87, 0x64, 0x50, 0x39, 0x88, 0x16, + 0x81, 0x2e, 0x02, 0xdb, 0x02, 0x7d, 0x42, 0xfa, 0x3e, 0xf0, 0x10, 0x7d, 0xda, 0xc3, 0x6f, 0x18, + 0x62, 0x1c, 0x73, 0x2c, 0xb1, 0x8d, 0x44, 0x1f, 0x91, 0x6e, 0xe0, 0x95, 0x4f, 0xfb, 0x88, 0x0c, + 0x10, 0x39, 0xe1, 0x95, 0x67, 0x58, 0xa6, 0xaf, 0x48, 0x6a, 0x35, 0x0f, 0x4b, 0x70, 0xe6, 0x1d, + 0x8f, 0x3a, 0xbc, 0x01, 0xc3, 0x55, 0x7d, 0x0c, 0xb1, 0x0e, 0xe9, 0xed, 0x49, 0x32, 0xeb, 0xb1, + 0x7f, 0xea, 0xf4, 0x35, 0xd9, 0x5d, 0x29, 0x17, 0x22, 0xd7, 0x1f, 0xb8, 0x38, 0x53, 0xb5, 0xf4, + 0xe9, 0x1d, 0xdc, 0xcb, 0x03, 0xec, 0x72, 0xbc, 0xde, 0xcb, 0x3c, 0x96, 0x4c, 0x7a, 0x88, 0x4e, + 0x48, 0xd6, 0xa6, 0x8b, 0xef, 0x09, 0xd9, 0x6b, 0x45, 0x77, 0xb8, 0xde, 0x23, 0x3d, 0x27, 0xfd, + 0xf7, 0xf5, 0x0a, 0xce, 0x25, 0xcd, 0x6e, 0xba, 0xe2, 0xe6, 0xa6, 0xc7, 0xf9, 0x8d, 0xf9, 0xe6, + 0xba, 0xa6, 0xb7, 0x8e, 0x9e, 0x7f, 0xc9, 0x2b, 0x15, 0xce, 0x62, 0xb9, 0x66, 0x73, 0xa3, 0x84, + 0x03, 0x0f, 0xcb, 0x90, 0x1b, 0x10, 0xb9, 0xb3, 0x22, 0xdf, 0x9a, 0xe5, 0x1b, 0xb3, 0xb2, 0x8f, + 0x57, 0xf2, 0xe2, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8c, 0xb9, 0xe9, 0xbe, 0xd4, 0x03, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index aa172a8..604436e 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -27,7 +27,7 @@ message AvailabilitySet { Status status = 3; Tags tags = 4; Entity entity = 5; - string platformFaultDomainCount = 6; + int32 platformFaultDomainCount = 6; repeated NodeSubResource virtualMachines = 7; } diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 7d17611..1bffe37 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -136,7 +136,7 @@ type AvailabilitySet struct { Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,4,opt,name=tags,proto3" json:"tags,omitempty"` Entity *common.Entity `protobuf:"bytes,5,opt,name=entity,proto3" json:"entity,omitempty"` - PlatformFaultDomainCount string `protobuf:"bytes,6,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + PlatformFaultDomainCount int32 `protobuf:"varint,6,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` VirtualMachines []*common.NodeSubResource `protobuf:"bytes,7,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -203,11 +203,11 @@ func (m *AvailabilitySet) GetEntity() *common.Entity { return nil } -func (m *AvailabilitySet) GetPlatformFaultDomainCount() string { +func (m *AvailabilitySet) GetPlatformFaultDomainCount() int32 { if m != nil { return m.PlatformFaultDomainCount } - return "" + return 0 } func (m *AvailabilitySet) GetVirtualMachines() []*common.NodeSubResource { @@ -228,37 +228,37 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 469 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0xd3, 0x4e, - 0x10, 0xc6, 0xff, 0x4e, 0xd3, 0xfc, 0x95, 0x8d, 0x48, 0xd1, 0x2a, 0x50, 0x2b, 0x12, 0x28, 0x4a, - 0x25, 0x94, 0x0b, 0x6b, 0x64, 0x38, 0x71, 0x40, 0x6a, 0xa1, 0x48, 0x1c, 0x00, 0x69, 0x53, 0x71, - 0xe0, 0x52, 0x6d, 0x9c, 0x89, 0xbb, 0xc2, 0xbb, 0x63, 0x76, 0x67, 0x83, 0x72, 0xe4, 0x35, 0x38, - 0xf2, 0x12, 0xbc, 0x1e, 0xca, 0x3a, 0x44, 0xc5, 0x05, 0xa9, 0x17, 0x4e, 0xb6, 0xe7, 0xfb, 0xed, - 0x37, 0x9f, 0x67, 0x87, 0x9d, 0x18, 0x2c, 0x2e, 0x2d, 0x2e, 0x41, 0x95, 0x60, 0xe9, 0x52, 0xad, - 0x95, 0xae, 0xd4, 0x42, 0x57, 0x9a, 0x36, 0x1e, 0x48, 0xd4, 0x0e, 0x09, 0xf9, 0x3d, 0x83, 0x85, - 0xd8, 0x43, 0xa2, 0x40, 0x53, 0x07, 0x82, 0xf1, 0xc3, 0x12, 0xb1, 0xac, 0x20, 0x8b, 0xd0, 0x22, - 0xac, 0xb2, 0x2f, 0x4e, 0xd5, 0x35, 0x38, 0xdf, 0x1c, 0x1b, 0x1f, 0x6f, 0xbd, 0x0b, 0x34, 0x06, - 0xed, 0xee, 0xd1, 0x08, 0xd3, 0xef, 0x09, 0xbb, 0x7f, 0x7a, 0xad, 0xd3, 0x1c, 0x48, 0xc2, 0xe7, - 0x00, 0x9e, 0xb8, 0x64, 0x77, 0x5b, 0x8a, 0x4f, 0x93, 0xc9, 0xc1, 0x6c, 0x90, 0x3f, 0x12, 0x7f, - 0x4c, 0x21, 0xda, 0x46, 0x37, 0xce, 0xf3, 0x67, 0xec, 0xce, 0xfb, 0x1a, 0x9c, 0x22, 0x8d, 0xf6, - 0x62, 0x53, 0x43, 0xda, 0x99, 0x24, 0xb3, 0x61, 0x3e, 0x8c, 0x86, 0x7b, 0x45, 0xfe, 0x0e, 0x4d, - 0x7f, 0x24, 0xec, 0xf8, 0x46, 0x48, 0x5f, 0xa3, 0xf5, 0xf0, 0x4f, 0x52, 0xe6, 0xac, 0x27, 0xc1, - 0x87, 0x8a, 0x62, 0xbc, 0x41, 0x3e, 0x16, 0xcd, 0x78, 0xc5, 0xaf, 0xf1, 0x8a, 0x33, 0xc4, 0xea, - 0x83, 0xaa, 0x02, 0xc8, 0x1d, 0xc9, 0x47, 0xec, 0xf0, 0xdc, 0x39, 0x74, 0xe9, 0xc1, 0x24, 0x99, - 0xf5, 0x65, 0xf3, 0x31, 0xfd, 0xd6, 0x61, 0x47, 0x2d, 0x7b, 0xce, 0x59, 0xd7, 0x2a, 0x03, 0x69, - 0x12, 0xc1, 0xf8, 0xce, 0x87, 0xac, 0xa3, 0x97, 0xb1, 0x5b, 0x5f, 0x76, 0xf4, 0x92, 0x9f, 0xb0, - 0x9e, 0x27, 0x45, 0xc1, 0x47, 0xbb, 0x41, 0x3e, 0x88, 0xff, 0x32, 0x8f, 0x25, 0xb9, 0x93, 0xf8, - 0x03, 0xd6, 0x25, 0x55, 0xfa, 0xb4, 0x1b, 0x91, 0x7e, 0x44, 0x2e, 0x54, 0xe9, 0x65, 0x2c, 0x6f, - 0x3d, 0xc0, 0x92, 0xa6, 0x4d, 0x7a, 0x78, 0xcd, 0xe3, 0x3c, 0x96, 0xe4, 0x4e, 0xe2, 0xcf, 0x59, - 0x5a, 0x57, 0x8a, 0x56, 0xe8, 0xcc, 0x6b, 0x15, 0x2a, 0x7a, 0x85, 0x46, 0x69, 0xfb, 0x12, 0x83, - 0xa5, 0xb4, 0x17, 0xe3, 0xfc, 0x55, 0xe7, 0x2f, 0xd8, 0xd1, 0x5a, 0x3b, 0x0a, 0xaa, 0x7a, 0xab, - 0x8a, 0x2b, 0x6d, 0xc1, 0xa7, 0xff, 0xc7, 0xc9, 0x8f, 0x62, 0xa7, 0x77, 0xb8, 0x84, 0x79, 0x58, - 0x48, 0xf0, 0x18, 0x5c, 0x01, 0xb2, 0x0d, 0xe7, 0x5f, 0x13, 0x36, 0x6a, 0x0d, 0xe7, 0x74, 0x7b, - 0x53, 0x5c, 0xb3, 0xde, 0x1b, 0xbb, 0xc6, 0x4f, 0xc0, 0x1f, 0xdf, 0xf2, 0x0e, 0x9b, 0x95, 0x1d, - 0x8b, 0xdb, 0xe2, 0xcd, 0xf2, 0x4c, 0xff, 0x3b, 0x7b, 0xf2, 0x51, 0x94, 0x9a, 0xae, 0xc2, 0x62, - 0xcb, 0x66, 0x46, 0x17, 0x0e, 0x3d, 0xae, 0x28, 0x33, 0x58, 0x64, 0xae, 0x2e, 0xb2, 0xbd, 0x57, - 0xb6, 0xf3, 0x5a, 0xf4, 0xe2, 0x12, 0x3c, 0xfd, 0x19, 0x00, 0x00, 0xff, 0xff, 0x7e, 0x7a, 0x6b, - 0x0f, 0xaf, 0x03, 0x00, 0x00, + // 470 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0x13, 0x31, + 0x10, 0x86, 0xd9, 0x34, 0x09, 0x8a, 0x23, 0x52, 0x64, 0x05, 0xba, 0x8a, 0x04, 0x8a, 0x52, 0x09, + 0xe5, 0x82, 0x17, 0x2d, 0x9c, 0x38, 0x20, 0xb5, 0x50, 0x24, 0x0e, 0x80, 0xe4, 0x54, 0x1c, 0xb8, + 0x54, 0xce, 0x66, 0xb2, 0xb5, 0x58, 0x7b, 0x16, 0x7b, 0x1c, 0x94, 0x23, 0xaf, 0xc1, 0x91, 0x97, + 0xe0, 0xf5, 0x50, 0xbc, 0x21, 0x2a, 0x29, 0x48, 0xbd, 0xf4, 0xb4, 0xbb, 0xf3, 0x7f, 0xfe, 0x67, + 0xf6, 0xf7, 0xb0, 0x63, 0x83, 0xc5, 0x85, 0xc5, 0x05, 0xa8, 0x12, 0x2c, 0x5d, 0xa8, 0x95, 0xd2, + 0x95, 0x9a, 0xeb, 0x4a, 0xd3, 0xda, 0x03, 0x89, 0xda, 0x21, 0x21, 0x7f, 0x60, 0xb0, 0x10, 0x3b, + 0x48, 0x14, 0x68, 0xea, 0x40, 0x30, 0x7a, 0x5c, 0x22, 0x96, 0x15, 0x64, 0x11, 0x9a, 0x87, 0x65, + 0xf6, 0xcd, 0xa9, 0xba, 0x06, 0xe7, 0x9b, 0x63, 0xa3, 0xa3, 0x8d, 0x77, 0x81, 0xc6, 0xa0, 0xdd, + 0x3e, 0x1a, 0x61, 0xf2, 0x33, 0x61, 0x0f, 0x4f, 0xae, 0x74, 0x9a, 0x01, 0x49, 0xf8, 0x1a, 0xc0, + 0x13, 0x97, 0xec, 0xfe, 0x9e, 0xe2, 0xd3, 0x64, 0x7c, 0x30, 0xed, 0xe7, 0x4f, 0xc4, 0x3f, 0xa7, + 0x10, 0xfb, 0x46, 0xd7, 0xce, 0xf3, 0x17, 0xec, 0xde, 0xc7, 0x1a, 0x9c, 0x22, 0x8d, 0xf6, 0x7c, + 0x5d, 0x43, 0xda, 0x1a, 0x27, 0xd3, 0x41, 0x3e, 0x88, 0x86, 0x3b, 0x45, 0xfe, 0x0d, 0x4d, 0x7e, + 0x25, 0xec, 0xe8, 0xda, 0x90, 0xbe, 0x46, 0xeb, 0xe1, 0x56, 0xa6, 0xcc, 0x59, 0x57, 0x82, 0x0f, + 0x15, 0xc5, 0xf1, 0xfa, 0xf9, 0x48, 0x34, 0xf1, 0x8a, 0x3f, 0xf1, 0x8a, 0x53, 0xc4, 0xea, 0x93, + 0xaa, 0x02, 0xc8, 0x2d, 0xc9, 0x87, 0xac, 0x73, 0xe6, 0x1c, 0xba, 0xf4, 0x60, 0x9c, 0x4c, 0x7b, + 0xb2, 0xf9, 0x98, 0xfc, 0x68, 0xb1, 0xc3, 0x3d, 0x7b, 0xce, 0x59, 0xdb, 0x2a, 0x03, 0x69, 0x12, + 0xc1, 0xf8, 0xce, 0x07, 0xac, 0xa5, 0x17, 0xb1, 0x5b, 0x4f, 0xb6, 0xf4, 0x82, 0x1f, 0xb3, 0xae, + 0x27, 0x45, 0xc1, 0x47, 0xbb, 0x7e, 0xde, 0x8f, 0xff, 0x32, 0x8b, 0x25, 0xb9, 0x95, 0xf8, 0x23, + 0xd6, 0x26, 0x55, 0xfa, 0xb4, 0x1d, 0x91, 0x5e, 0x44, 0xce, 0x55, 0xe9, 0x65, 0x2c, 0x6f, 0x3c, + 0xc0, 0x92, 0xa6, 0x75, 0xda, 0xb9, 0xe2, 0x71, 0x16, 0x4b, 0x72, 0x2b, 0xf1, 0x97, 0x2c, 0xad, + 0x2b, 0x45, 0x4b, 0x74, 0xe6, 0xad, 0x0a, 0x15, 0xbd, 0x41, 0xa3, 0xb4, 0x7d, 0x8d, 0xc1, 0x52, + 0xda, 0x1d, 0x27, 0xd3, 0x8e, 0xfc, 0xaf, 0xce, 0x5f, 0xb1, 0xc3, 0x95, 0x76, 0x14, 0x54, 0xf5, + 0x5e, 0x15, 0x97, 0xda, 0x82, 0x4f, 0xef, 0xc6, 0xe4, 0x87, 0xb1, 0xd3, 0x07, 0x5c, 0xc0, 0x2c, + 0xcc, 0x25, 0x78, 0x0c, 0xae, 0x00, 0xb9, 0x0f, 0xe7, 0xdf, 0x13, 0x36, 0xdc, 0x0b, 0xe7, 0x64, + 0x73, 0x53, 0x5c, 0xb3, 0xee, 0x3b, 0xbb, 0xc2, 0x2f, 0xc0, 0x9f, 0xde, 0xf0, 0x0e, 0x9b, 0x95, + 0x1d, 0x89, 0x9b, 0xe2, 0xcd, 0xf2, 0x4c, 0xee, 0x9c, 0x3e, 0xfb, 0x2c, 0x4a, 0x4d, 0x97, 0x61, + 0xbe, 0x61, 0x33, 0xa3, 0x0b, 0x87, 0x1e, 0x97, 0x94, 0x19, 0x2c, 0x32, 0x57, 0x17, 0xd9, 0xce, + 0x2b, 0xdb, 0x7a, 0xcd, 0xbb, 0x71, 0x09, 0x9e, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x6a, + 0x42, 0xd2, 0xaf, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 7fb926d0bfca2f657fc8d620d9bc41720d180279 Mon Sep 17 00:00:00 2001 From: John Carden Date: Wed, 14 Feb 2024 19:26:04 +0000 Subject: [PATCH 15/25] generated new pb.go files based on last change to .proto --- rpc/common/moc_common_common.pb.go | 500 ++++++++++------------------- 1 file changed, 165 insertions(+), 335 deletions(-) diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index f87ac41..2de8642 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -353,11 +353,8 @@ const ( ProviderType_BareMetalHost ProviderType = 35 ProviderType_Authentication ProviderType = 36 ProviderType_HealthMonitor ProviderType = 37 -<<<<<<< HEAD - ProviderType_AvailabilitySet ProviderType = 38 -======= ProviderType_LogicalNetwork ProviderType = 38 ->>>>>>> main + ProviderType_AvailabilitySet ProviderType = 39 ) var ProviderType_name = map[int32]string{ @@ -399,11 +396,8 @@ var ProviderType_name = map[int32]string{ 35: "BareMetalHost", 36: "Authentication", 37: "HealthMonitor", -<<<<<<< HEAD - 38: "AvailabilitySet", -======= 38: "LogicalNetwork", ->>>>>>> main + 39: "AvailabilitySet", } var ProviderType_value = map[string]int32{ @@ -445,11 +439,8 @@ var ProviderType_value = map[string]int32{ "BareMetalHost": 35, "Authentication": 36, "HealthMonitor": 37, -<<<<<<< HEAD - "AvailabilitySet": 38, -======= "LogicalNetwork": 38, ->>>>>>> main + "AvailabilitySet": 39, } func (x ProviderType) String() string { @@ -1543,327 +1534,166 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ -<<<<<<< HEAD - // 2568 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x6b, 0x88, 0x64, 0x47, - 0xf5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x76, 0x93, 0x6c, 0x26, - 0xc9, 0xb2, 0x34, 0xff, 0xcc, 0xfe, 0x5d, 0x45, 0x51, 0x51, 0xb9, 0xd3, 0x7d, 0x67, 0xa6, 0xd9, - 0x9e, 0xee, 0xe6, 0xf6, 0x9d, 0x49, 0x14, 0xa1, 0xb9, 0x73, 0xbb, 0xa6, 0xe7, 0xb2, 0xb7, 0x6f, - 0x35, 0x75, 0xab, 0x7b, 0xe9, 0x7c, 0x32, 0x60, 0x44, 0x41, 0x41, 0xc5, 0x80, 0x42, 0x04, 0x05, - 0x05, 0x03, 0xc6, 0x07, 0x28, 0xa8, 0xf8, 0x48, 0xc0, 0x80, 0x8f, 0x04, 0x0c, 0xf8, 0xc1, 0x47, - 0xa2, 0x09, 0x2a, 0x28, 0x28, 0x28, 0xf8, 0x48, 0x7c, 0x80, 0x9c, 0xba, 0x55, 0x3d, 0xdd, 0x3d, - 0x37, 0x7e, 0xd9, 0xbd, 0xf5, 0x3b, 0xbf, 0x73, 0xea, 0xd4, 0x39, 0xa7, 0x4e, 0x9d, 0x69, 0xb4, - 0xd9, 0x63, 0x6e, 0xdb, 0x65, 0xbd, 0x1e, 0x0b, 0xd4, 0x7f, 0x3b, 0x7d, 0xce, 0x04, 0x23, 0xa9, - 0x1e, 0x73, 0xb7, 0xae, 0x76, 0x19, 0xeb, 0xfa, 0xf4, 0x86, 0x84, 0x4e, 0x06, 0xa7, 0x37, 0x3a, - 0x34, 0x74, 0xb9, 0xd7, 0x17, 0x8c, 0x47, 0xb4, 0xed, 0x23, 0x94, 0x31, 0x39, 0x67, 0x9c, 0x14, - 0xd1, 0xfc, 0x21, 0x0d, 0x43, 0xa7, 0x4b, 0x8b, 0x89, 0xab, 0x89, 0xeb, 0x8b, 0x96, 0x5e, 0x12, - 0x82, 0xd2, 0x65, 0xd6, 0xa1, 0xc5, 0xe4, 0xd5, 0xc4, 0xf5, 0x8c, 0x25, 0xbf, 0xc9, 0xdd, 0x08, - 0x35, 0x1d, 0xee, 0xf4, 0xa8, 0xa0, 0x3c, 0x2c, 0xa6, 0xa4, 0xc2, 0x04, 0xb2, 0xfd, 0x58, 0x02, - 0x15, 0x9a, 0x9c, 0x0d, 0xbd, 0xd0, 0x63, 0x41, 0x4b, 0x38, 0x62, 0x10, 0x92, 0xb7, 0xa0, 0x25, - 0x77, 0xc0, 0x39, 0x0d, 0x04, 0x00, 0xd1, 0x36, 0xf9, 0x9b, 0xab, 0x3b, 0x3d, 0xe6, 0xee, 0x4c, - 0x71, 0xa9, 0x35, 0x45, 0x24, 0x6f, 0x45, 0xcb, 0x7d, 0x4e, 0x87, 0x1e, 0x1b, 0x84, 0x91, 0x66, - 0xf2, 0xf5, 0x35, 0xa7, 0x99, 0xdb, 0x4f, 0x24, 0x50, 0xbe, 0xc2, 0xee, 0x04, 0x3e, 0x73, 0x3a, - 0xca, 0x8d, 0x1d, 0x44, 0xfa, 0x9c, 0x75, 0x39, 0x0d, 0xc3, 0x26, 0xe5, 0x2e, 0x0d, 0x84, 0x3e, - 0x73, 0xca, 0x8a, 0x91, 0x90, 0xff, 0x47, 0xab, 0x1d, 0x6d, 0xc1, 0x7b, 0x84, 0x56, 0x83, 0xdd, - 0x91, 0xa0, 0xa1, 0xf4, 0x21, 0x65, 0xc5, 0x89, 0xc8, 0x75, 0x54, 0x38, 0xf5, 0x7c, 0x3a, 0xc9, - 0x4e, 0x49, 0xf6, 0x2c, 0xbc, 0x3d, 0x44, 0xd9, 0x03, 0xea, 0xf8, 0xe2, 0x8c, 0xbc, 0x29, 0x36, - 0x38, 0x58, 0x1e, 0x31, 0xa2, 0xc4, 0x45, 0xe6, 0xcd, 0xf1, 0x91, 0xb9, 0xa8, 0x36, 0x13, 0x96, - 0x47, 0x13, 0xa8, 0x70, 0xec, 0xf8, 0x5e, 0xc7, 0x11, 0x3a, 0x72, 0xe4, 0xff, 0x50, 0xda, 0x85, - 0x34, 0x47, 0x3b, 0x17, 0xa5, 0x89, 0x19, 0x0e, 0xa4, 0xde, 0x92, 0x2c, 0x28, 0x97, 0x9e, 0x2a, - 0x97, 0x64, 0x54, 0x2e, 0x6a, 0x49, 0xae, 0xa1, 0x3c, 0xa7, 0x50, 0x8a, 0x34, 0x88, 0x54, 0x55, - 0x79, 0xcc, 0xa0, 0xdb, 0x16, 0xc2, 0xd3, 0xe6, 0x07, 0x21, 0x79, 0x27, 0x2a, 0x0c, 0xa7, 0xb7, - 0x2c, 0x26, 0xae, 0xa6, 0xae, 0xe7, 0x6e, 0xae, 0xc5, 0xb9, 0x63, 0xcd, 0x92, 0xb7, 0xef, 0x45, - 0xf3, 0xc7, 0x94, 0x43, 0x35, 0x90, 0x0d, 0x94, 0x0d, 0x06, 0xbd, 0x13, 0xca, 0x55, 0x39, 0xab, - 0xd5, 0xf6, 0xb3, 0x49, 0x94, 0x55, 0xbb, 0xdd, 0x87, 0xb2, 0x67, 0x32, 0x46, 0x92, 0x92, 0xbb, - 0x99, 0x9b, 0x08, 0x9b, 0xa5, 0x44, 0xa4, 0x22, 0xcb, 0x25, 0x2a, 0x31, 0x2f, 0xe8, 0x46, 0xaa, - 0xf2, 0xcc, 0xda, 0xab, 0x99, 0x3a, 0xb7, 0x62, 0xf8, 0xe4, 0x3a, 0x5a, 0xf4, 0x9d, 0x50, 0xc8, - 0xab, 0x26, 0xe3, 0x91, 0xbb, 0x89, 0xa4, 0xb2, 0x44, 0xac, 0x73, 0x21, 0xb9, 0x86, 0xe6, 0x87, - 0xd1, 0x11, 0x8a, 0x69, 0xc9, 0x5b, 0x8a, 0x8e, 0x1e, 0x61, 0x96, 0x16, 0x92, 0xb7, 0xa3, 0x7c, - 0x67, 0xaa, 0xb0, 0x8b, 0x19, 0x49, 0x8f, 0x6e, 0xc5, 0x74, 0xcd, 0x5b, 0x33, 0x54, 0x62, 0x20, - 0x3c, 0x9c, 0x89, 0x7d, 0x31, 0x2b, 0xd5, 0xd7, 0x63, 0x02, 0x3d, 0x08, 0xad, 0x0b, 0xf4, 0xed, - 0x0a, 0xc2, 0x65, 0x9f, 0x0d, 0x3a, 0xad, 0xc1, 0x89, 0x45, 0x43, 0x36, 0xe0, 0x2e, 0x25, 0x57, - 0xd0, 0x62, 0x97, 0xb3, 0x41, 0xbf, 0xee, 0xf4, 0x74, 0x17, 0x39, 0x07, 0xa0, 0x8f, 0x04, 0x20, - 0x88, 0xea, 0x45, 0x7e, 0x6f, 0x3f, 0x80, 0x0a, 0x75, 0xd6, 0xa1, 0x93, 0x46, 0x34, 0x2d, 0x31, - 0x41, 0xdb, 0x41, 0x59, 0x33, 0x10, 0x9e, 0x18, 0x91, 0xfb, 0xd1, 0x72, 0x35, 0x6c, 0xfa, 0x8e, - 0x4b, 0xcf, 0x98, 0xdf, 0x51, 0xd9, 0x5d, 0xb0, 0xa6, 0xc1, 0xed, 0x07, 0x51, 0xca, 0x76, 0xba, - 0x04, 0xa3, 0xd4, 0x6d, 0x3a, 0x52, 0x96, 0xe0, 0x93, 0xac, 0xa1, 0xcc, 0xd0, 0xf1, 0x07, 0xda, - 0x89, 0x68, 0xb1, 0x7d, 0x3f, 0x4a, 0xdb, 0x4e, 0x37, 0x24, 0x57, 0x50, 0x5a, 0x38, 0xdd, 0x50, - 0xd5, 0xdc, 0x82, 0x0c, 0x85, 0xed, 0x74, 0x2d, 0x89, 0x96, 0xde, 0x8b, 0x16, 0x1b, 0x7d, 0xca, - 0x65, 0x10, 0xc8, 0x3c, 0x4a, 0xed, 0x9b, 0x36, 0x9e, 0x23, 0x0b, 0x28, 0xdd, 0x6c, 0xb4, 0x6c, - 0x9c, 0x20, 0x08, 0x65, 0x2b, 0x66, 0xcd, 0xb4, 0x4d, 0x9c, 0x84, 0xef, 0xa3, 0x66, 0xc5, 0xb0, - 0x4d, 0x9c, 0x82, 0xef, 0xea, 0x61, 0xb3, 0x61, 0xd9, 0x38, 0x0d, 0xdf, 0xe6, 0xc3, 0xf2, 0x3b, - 0x43, 0x96, 0xd0, 0xc2, 0xb1, 0x51, 0xab, 0x4a, 0x56, 0xb6, 0xf4, 0x9b, 0x24, 0xca, 0x4f, 0xf7, - 0x32, 0x92, 0x43, 0xf3, 0x47, 0xf5, 0x5b, 0xf5, 0xc6, 0x43, 0x75, 0x3c, 0x07, 0xec, 0xb2, 0x65, - 0x1a, 0x76, 0xb5, 0xbe, 0x8f, 0x13, 0x20, 0x92, 0x2b, 0xb3, 0x82, 0x93, 0x64, 0x05, 0x2d, 0x47, - 0x8b, 0xf6, 0x9e, 0x51, 0xad, 0x99, 0x15, 0x9c, 0x02, 0xb6, 0xf4, 0x05, 0xd8, 0x69, 0x20, 0x44, - 0x9e, 0x69, 0x42, 0x06, 0x0c, 0x44, 0x50, 0x05, 0x67, 0x81, 0x2d, 0xbd, 0x05, 0xf6, 0x3c, 0xb0, - 0x23, 0xdf, 0x35, 0x7b, 0x41, 0x7a, 0x22, 0xa1, 0x0a, 0x5e, 0x24, 0x18, 0x2d, 0x35, 0xad, 0xc6, - 0x71, 0xb5, 0x55, 0x6d, 0xd4, 0x41, 0x03, 0x91, 0x02, 0xca, 0x8d, 0x11, 0xb3, 0x82, 0x73, 0x64, - 0x0d, 0xe1, 0x31, 0xa0, 0xad, 0x2c, 0x11, 0x82, 0xf2, 0x15, 0x73, 0x4a, 0x75, 0x39, 0x72, 0x6d, - 0x52, 0x39, 0x4f, 0x36, 0x10, 0x99, 0x80, 0xb4, 0x7a, 0x21, 0x52, 0x97, 0xa7, 0x68, 0x9a, 0xf5, - 0x0a, 0xa8, 0x63, 0xb2, 0x8c, 0x16, 0xa3, 0xd8, 0xc2, 0x72, 0x05, 0x0e, 0x12, 0x2d, 0xcd, 0x0a, - 0x26, 0x60, 0x3b, 0x5a, 0x69, 0x1b, 0xab, 0xa5, 0x3d, 0xb4, 0x7e, 0xe0, 0x75, 0xcf, 0x8c, 0xa1, - 0xe3, 0xf9, 0xce, 0x89, 0xe7, 0x7b, 0x62, 0x14, 0xc5, 0x7a, 0x0d, 0x61, 0x15, 0xeb, 0xf6, 0x81, - 0xd1, 0x6e, 0xd9, 0x90, 0x94, 0x39, 0x48, 0x57, 0xcb, 0x36, 0x76, 0x6b, 0x66, 0x14, 0x72, 0xbd, - 0x6f, 0xb2, 0xd4, 0x45, 0xb9, 0x89, 0xf6, 0x0a, 0xfb, 0xd6, 0x1b, 0xb6, 0x4e, 0x55, 0x16, 0x25, - 0x1b, 0xb7, 0x22, 0x8d, 0x87, 0x0c, 0x4b, 0x1e, 0x34, 0x19, 0xe5, 0xaf, 0x6a, 0x57, 0xcb, 0x46, - 0x0d, 0xa7, 0x40, 0x74, 0x58, 0x6d, 0xb5, 0xa2, 0xf4, 0xc8, 0x64, 0xed, 0x5b, 0x46, 0x45, 0x66, - 0x26, 0xb2, 0xb5, 0xd7, 0x38, 0xaa, 0x57, 0x70, 0xb6, 0xf4, 0x78, 0x02, 0xad, 0xc6, 0x74, 0x61, - 0xf0, 0xb7, 0xde, 0xa8, 0x98, 0xed, 0xa3, 0xba, 0x65, 0x1a, 0xe5, 0x03, 0xe9, 0xe3, 0x1c, 0x84, - 0xc8, 0xac, 0xdb, 0x55, 0xfb, 0xdd, 0x6d, 0x6d, 0x3d, 0x41, 0x2e, 0xa3, 0xcd, 0x72, 0xad, 0x6a, - 0xd6, 0xed, 0x76, 0x54, 0x3f, 0x2a, 0xa4, 0x47, 0x16, 0xd4, 0x29, 0x41, 0xf9, 0xbd, 0x86, 0x75, - 0x68, 0xd8, 0xed, 0x6a, 0x5d, 0x16, 0x23, 0x4e, 0x41, 0x7e, 0xab, 0xf5, 0xbd, 0x46, 0xfb, 0xdc, - 0x41, 0x08, 0xa4, 0x42, 0x0e, 0x0d, 0xbb, 0x7c, 0x80, 0x33, 0x25, 0x8e, 0x50, 0xd9, 0xf7, 0x68, - 0x20, 0xec, 0x51, 0x9f, 0x82, 0x4a, 0xb9, 0x51, 0xb7, 0xad, 0x46, 0xad, 0x59, 0x33, 0xea, 0xda, - 0x93, 0x87, 0x6d, 0xd3, 0xaa, 0x1b, 0xb5, 0x68, 0x77, 0x9c, 0x80, 0xab, 0x02, 0x3e, 0xe3, 0x24, - 0x59, 0x44, 0x19, 0xa3, 0x72, 0x58, 0xad, 0xe3, 0x14, 0x64, 0x70, 0xd7, 0xb0, 0xcc, 0x43, 0xd3, - 0x36, 0x6a, 0x38, 0x0d, 0x96, 0x6a, 0x0d, 0xa3, 0xb2, 0x6b, 0xd4, 0x8c, 0x7a, 0xd9, 0xb4, 0x70, - 0x06, 0xb4, 0x0e, 0xe0, 0x82, 0x65, 0x4b, 0x37, 0x11, 0x31, 0x06, 0xe2, 0x8c, 0x06, 0xc2, 0x73, - 0x65, 0x38, 0xe4, 0xde, 0x79, 0x84, 0x5a, 0x66, 0x6d, 0xaf, 0x55, 0xdd, 0x87, 0xf2, 0x89, 0x2e, - 0x8a, 0xa1, 0x56, 0x89, 0xd2, 0x93, 0x19, 0xb4, 0x24, 0xaf, 0x55, 0x87, 0x72, 0x49, 0x2f, 0xa0, - 0x9c, 0x11, 0x8c, 0x34, 0x14, 0x79, 0x7a, 0xec, 0x71, 0x31, 0x70, 0xfc, 0x43, 0xc7, 0x3d, 0xf3, - 0x02, 0x8a, 0x13, 0x64, 0x0b, 0x6d, 0x4c, 0x63, 0x2d, 0xd7, 0xf1, 0x69, 0x8b, 0x0a, 0x9c, 0x94, - 0x1e, 0x32, 0xa7, 0xb3, 0xeb, 0xf8, 0x4e, 0xe0, 0x52, 0x8e, 0x53, 0x13, 0x16, 0xea, 0x54, 0xdc, - 0x61, 0xfc, 0x36, 0x4e, 0x93, 0x55, 0x54, 0x50, 0xd8, 0x81, 0xc3, 0x3b, 0x15, 0x2f, 0xbc, 0x8d, - 0x33, 0xa0, 0xba, 0xef, 0xf8, 0x3e, 0xe5, 0xa3, 0x6a, 0xcf, 0xe9, 0x52, 0x9c, 0x25, 0x9b, 0x68, - 0x75, 0x7a, 0xa3, 0x48, 0x30, 0x2f, 0xf3, 0x1b, 0x19, 0xab, 0x06, 0x82, 0xf2, 0x53, 0xc7, 0xa5, - 0x78, 0x01, 0x9c, 0x2f, 0x53, 0x2e, 0xbc, 0x53, 0x08, 0x00, 0xc5, 0x8b, 0xd0, 0x86, 0x6e, 0xd1, - 0x11, 0x46, 0xb2, 0x52, 0xa9, 0xcb, 0xa9, 0xc0, 0x39, 0x88, 0xc0, 0x2d, 0x3a, 0x3a, 0x76, 0x06, - 0xbe, 0xc0, 0x4b, 0xf2, 0x4e, 0x74, 0xa8, 0xec, 0x9e, 0x78, 0x19, 0xa2, 0x69, 0x31, 0x9f, 0xe2, - 0x3c, 0x78, 0x0d, 0x5f, 0x46, 0x18, 0x7a, 0xdd, 0xa0, 0x47, 0x03, 0x81, 0x0b, 0x10, 0xcb, 0x5b, - 0x83, 0x13, 0xca, 0x03, 0x2a, 0x68, 0x88, 0xb1, 0x6c, 0x33, 0xfe, 0x20, 0x14, 0x94, 0xe3, 0x15, - 0x99, 0x64, 0x16, 0x08, 0xce, 0xfc, 0xa6, 0xef, 0x04, 0x14, 0x13, 0x48, 0xe3, 0x3e, 0xb4, 0x77, - 0xbc, 0x2a, 0x73, 0xcb, 0x3a, 0x14, 0xaf, 0xc1, 0x7e, 0x35, 0x16, 0xe5, 0x07, 0xaf, 0xc3, 0x39, - 0x5a, 0x82, 0x71, 0xa7, 0x4b, 0x41, 0xd7, 0xf1, 0x02, 0xca, 0xf1, 0x06, 0x9c, 0x43, 0xa1, 0x7b, - 0x9e, 0x4f, 0xf1, 0xe6, 0x04, 0xad, 0xe2, 0x71, 0xea, 0x0a, 0xc6, 0x47, 0xb8, 0x08, 0x3b, 0xb6, - 0x06, 0x27, 0xd1, 0xc4, 0x0a, 0xe6, 0x2e, 0x81, 0x43, 0xc7, 0x5e, 0xbf, 0xc9, 0x98, 0x8f, 0xb7, - 0xe4, 0x25, 0x72, 0x5c, 0xb9, 0xb8, 0x0c, 0x26, 0x4d, 0xe1, 0x76, 0xb4, 0xbb, 0x57, 0xe0, 0x2c, - 0x00, 0xb4, 0x28, 0x1f, 0x52, 0x8e, 0xef, 0x82, 0x2d, 0x76, 0x1d, 0x4e, 0x0f, 0xa9, 0x38, 0xcf, - 0xf4, 0xdd, 0x64, 0x1d, 0xad, 0x94, 0x39, 0x95, 0xf1, 0x71, 0xfc, 0x43, 0x16, 0x78, 0x82, 0x71, - 0x7c, 0x0f, 0x98, 0xae, 0xb1, 0x6e, 0xd7, 0x0b, 0xba, 0xf8, 0x2a, 0x9c, 0xc8, 0xa2, 0x2e, 0x1b, - 0x52, 0x3e, 0xc2, 0xf7, 0xc2, 0xa1, 0x2b, 0xf4, 0x64, 0xd0, 0xc5, 0xdb, 0x70, 0x2f, 0xc6, 0x26, - 0x0f, 0x58, 0x28, 0xf0, 0x7d, 0x10, 0xd5, 0xe9, 0x1a, 0xc5, 0xf7, 0x03, 0x2d, 0x6a, 0x16, 0xda, - 0xfe, 0x03, 0x50, 0x1e, 0x53, 0x3d, 0x88, 0x0a, 0x7c, 0xad, 0xf4, 0x2d, 0x82, 0x36, 0x75, 0x61, - 0x1a, 0xae, 0x4b, 0xc3, 0xf0, 0xfc, 0xbd, 0x29, 0xa0, 0xdc, 0x51, 0x10, 0xf6, 0xa9, 0xeb, 0x9d, - 0x7a, 0xb4, 0x83, 0xe7, 0x48, 0x11, 0xad, 0x4d, 0x6f, 0xd4, 0xae, 0xb1, 0xae, 0x17, 0xe0, 0x0e, - 0xd9, 0x44, 0x64, 0xa2, 0x48, 0xda, 0x65, 0x4e, 0xa1, 0x56, 0x7e, 0x90, 0x98, 0x15, 0x1c, 0xf5, - 0x3b, 0x20, 0xf8, 0x61, 0x82, 0xac, 0xa1, 0xc2, 0xa4, 0x60, 0x9f, 0x0a, 0xfc, 0xa3, 0x0b, 0xf4, - 0x0a, 0xf5, 0xa9, 0xa0, 0xf8, 0xc7, 0x09, 0xb2, 0x8e, 0xf0, 0xa4, 0xa0, 0xe5, 0x75, 0x03, 0xfc, - 0x5c, 0x82, 0x6c, 0xa0, 0x95, 0x49, 0xd8, 0xa2, 0x01, 0xbd, 0x83, 0x9f, 0x97, 0xd6, 0x75, 0x01, - 0x6a, 0x67, 0xbe, 0x98, 0x9c, 0x42, 0x95, 0x27, 0x4f, 0x4d, 0xa3, 0x16, 0x1d, 0xb2, 0xdb, 0x14, - 0x7f, 0x69, 0x06, 0x65, 0xd0, 0x03, 0xf1, 0x97, 0x93, 0xe4, 0x1e, 0xb4, 0xa5, 0xd1, 0x98, 0xf3, - 0x7e, 0x34, 0xf5, 0x7a, 0x04, 0xb5, 0xdb, 0xc7, 0x52, 0xe4, 0x6e, 0x74, 0x29, 0x8e, 0x10, 0x79, - 0xfe, 0xf1, 0x14, 0x29, 0x20, 0x74, 0x8b, 0x8e, 0x9d, 0xfe, 0xeb, 0x18, 0x50, 0x16, 0xfe, 0x06, - 0xbd, 0x32, 0x07, 0x80, 0x19, 0xb8, 0x7c, 0xd4, 0x17, 0xf8, 0xef, 0x63, 0xa4, 0x42, 0x23, 0xe4, - 0x1f, 0x63, 0xe4, 0x21, 0xee, 0xf4, 0xe1, 0xae, 0xbe, 0x0a, 0x0d, 0x63, 0x59, 0x9a, 0x09, 0xee, - 0x28, 0xec, 0x35, 0xe8, 0x83, 0x70, 0x69, 0xa3, 0x60, 0xfe, 0x73, 0xbc, 0xd3, 0x31, 0xe5, 0xde, - 0xe9, 0x08, 0xff, 0x2b, 0x45, 0xb6, 0xd0, 0xfa, 0x74, 0xa7, 0xd0, 0x6e, 0xfd, 0x2c, 0x1d, 0x23, - 0x53, 0x1e, 0xfe, 0x3c, 0x4e, 0xa6, 0x12, 0xf9, 0x8b, 0x34, 0xb9, 0x82, 0x36, 0x67, 0x64, 0xea, - 0xa9, 0xa1, 0xf8, 0x97, 0x69, 0x72, 0x09, 0xad, 0xcd, 0x48, 0x5b, 0xc2, 0xe1, 0x02, 0xbf, 0x98, - 0x26, 0xc5, 0xd9, 0xb6, 0xd5, 0x6e, 0x09, 0xd6, 0xc7, 0x2f, 0xc5, 0x29, 0x59, 0x34, 0xa4, 0x02, - 0xff, 0x2a, 0x4d, 0xae, 0xa1, 0x7b, 0x2f, 0x88, 0xfa, 0x8e, 0xc7, 0xdb, 0xfb, 0x03, 0x1a, 0x8a, - 0xb6, 0xd1, 0x85, 0x1e, 0xf4, 0xeb, 0x38, 0x13, 0x4d, 0x67, 0x10, 0x52, 0xfc, 0x72, 0xec, 0xbe, - 0xce, 0x90, 0xe2, 0x57, 0xa0, 0xdf, 0xe6, 0xd5, 0xd5, 0xd7, 0x71, 0xf9, 0x76, 0x66, 0x12, 0x54, - 0x01, 0xf9, 0x4e, 0x06, 0x6c, 0x68, 0x10, 0xfa, 0xb8, 0x6e, 0x18, 0xdf, 0xcd, 0x40, 0xa8, 0xc6, - 0x74, 0x39, 0x2d, 0x6b, 0xd9, 0xf7, 0x32, 0xf2, 0x32, 0x28, 0xd9, 0x3e, 0x15, 0x5a, 0xf0, 0x74, - 0x46, 0x5e, 0x86, 0x73, 0x01, 0xf4, 0xc0, 0x10, 0x3f, 0x93, 0x81, 0xcb, 0x20, 0xbb, 0x44, 0x5b, - 0xfe, 0xab, 0x9a, 0xd0, 0x67, 0xb2, 0x40, 0x8f, 0xf0, 0x96, 0x70, 0xdc, 0xdb, 0x36, 0x87, 0xbe, - 0xfe, 0xd9, 0x2c, 0x9c, 0x19, 0x3a, 0x49, 0x4f, 0x77, 0x12, 0x7d, 0x88, 0xf7, 0xcf, 0x5f, 0x14, - 0xa9, 0xa3, 0x3c, 0x36, 0x0f, 0xf9, 0x1b, 0x8b, 0x66, 0xaa, 0xe2, 0xf7, 0xf1, 0x52, 0xa5, 0xfb, - 0x87, 0x79, 0x19, 0x86, 0x89, 0x6e, 0xae, 0xf5, 0x9e, 0x5b, 0xb8, 0x20, 0x51, 0x3a, 0xcf, 0x2f, - 0x40, 0x10, 0x26, 0x7a, 0xac, 0x56, 0xf9, 0xca, 0xe2, 0xac, 0x40, 0x69, 0x7c, 0x75, 0x11, 0xc2, - 0x70, 0xde, 0x84, 0xb5, 0xc2, 0x27, 0xd0, 0x0c, 0xae, 0xf8, 0x8f, 0x23, 0xd8, 0x7b, 0xf2, 0x85, - 0xd4, 0x1a, 0xaf, 0x5e, 0x94, 0x28, 0x9d, 0xd7, 0x10, 0x59, 0x41, 0x4b, 0xf2, 0x15, 0xd2, 0xe4, - 0x17, 0x73, 0xe7, 0x90, 0x62, 0xbd, 0x04, 0x23, 0x69, 0x41, 0x3f, 0x8a, 0x9a, 0xf8, 0xf4, 0xd2, - 0x14, 0xaa, 0xb8, 0xcf, 0x2c, 0x81, 0x77, 0xe7, 0xcf, 0xa0, 0x66, 0x7f, 0x6e, 0x79, 0x06, 0x57, - 0xfc, 0xcf, 0x2f, 0x83, 0x6f, 0x93, 0x23, 0x81, 0xd6, 0xf8, 0x60, 0xfe, 0x82, 0x44, 0xe9, 0x7c, - 0x28, 0x0f, 0x3b, 0xeb, 0x67, 0x52, 0xf3, 0xff, 0x38, 0x8d, 0x2a, 0xee, 0x9f, 0xf2, 0x50, 0xc7, - 0x87, 0x8e, 0xdb, 0x67, 0xcc, 0xd7, 0xd4, 0x9f, 0x14, 0x26, 0x41, 0xc5, 0x7c, 0xa1, 0x00, 0x39, - 0x9f, 0x1d, 0x1b, 0xb4, 0xca, 0xd7, 0x70, 0xac, 0x54, 0xe9, 0x7e, 0x1d, 0x43, 0x9f, 0x82, 0xf2, - 0xd5, 0xfc, 0x4f, 0xae, 0x8c, 0x11, 0xc5, 0xf9, 0xd4, 0x0a, 0xf8, 0xa7, 0x9f, 0x42, 0xcd, 0xfb, - 0xf7, 0x34, 0xaa, 0xb8, 0xff, 0x91, 0xda, 0x30, 0x60, 0x68, 0xde, 0xcb, 0x64, 0x8c, 0x28, 0xce, - 0x2b, 0x04, 0xae, 0xdc, 0xf4, 0x10, 0xa2, 0xd9, 0xdf, 0x5f, 0x8d, 0x91, 0x29, 0xbd, 0x67, 0x57, - 0xa1, 0x83, 0x46, 0xe3, 0x8e, 0xe6, 0x7f, 0x61, 0x6d, 0x02, 0x53, 0xbc, 0x27, 0xd7, 0xe0, 0xc4, - 0xb3, 0xe3, 0x87, 0xd6, 0xf8, 0xf0, 0x7a, 0xac, 0x54, 0xe9, 0x7e, 0x64, 0x1d, 0x72, 0x37, 0x39, - 0x7d, 0x68, 0xbd, 0x3f, 0x5f, 0x94, 0x28, 0x9d, 0xbf, 0x48, 0xc9, 0xf9, 0xb4, 0x7e, 0xde, 0x4d, - 0x7f, 0xba, 0x01, 0xe9, 0x52, 0x93, 0x8b, 0x36, 0xf4, 0x8d, 0xcd, 0x49, 0x50, 0xd9, 0xf8, 0xe6, - 0x26, 0xb9, 0x3c, 0x1e, 0x3e, 0xf5, 0xe8, 0xa8, 0x35, 0x9e, 0x28, 0xc6, 0x09, 0x95, 0xe6, 0xa7, - 0x8b, 0xf0, 0xe0, 0xc5, 0x4c, 0x93, 0x5a, 0xfb, 0x7d, 0x97, 0x5e, 0x8f, 0xa0, 0x2c, 0x3c, 0x7a, - 0x89, 0x6c, 0xa3, 0xbb, 0xe2, 0x07, 0x5f, 0x6d, 0xe4, 0xb7, 0xff, 0x8b, 0xa3, 0xec, 0xfc, 0xee, - 0xd2, 0xc4, 0xab, 0xa3, 0x0a, 0x6e, 0x3c, 0x86, 0x6c, 0xc5, 0xc8, 0xf4, 0x24, 0xb2, 0x05, 0xc7, - 0x9b, 0x99, 0x8b, 0xc6, 0x23, 0xc3, 0xe5, 0x38, 0xa1, 0x7a, 0xcb, 0x9e, 0xba, 0x5c, 0xb2, 0x50, - 0x4e, 0x1e, 0xa6, 0x15, 0xfd, 0x8a, 0x20, 0xff, 0x8e, 0x28, 0x1b, 0xb5, 0x76, 0xab, 0x71, 0x64, - 0x95, 0xe1, 0x2f, 0x12, 0xf8, 0x3b, 0x61, 0xaf, 0xa5, 0xd7, 0x09, 0x98, 0xa8, 0x0e, 0x6c, 0xbb, - 0xa9, 0x01, 0x39, 0xd8, 0x97, 0x6b, 0x8d, 0xba, 0xa9, 0x91, 0x54, 0x69, 0x17, 0xe1, 0x83, 0x51, - 0x9f, 0xf2, 0xe3, 0x7d, 0x1a, 0xe8, 0x41, 0x6c, 0x03, 0x91, 0x59, 0xec, 0xf8, 0x26, 0x9e, 0x8b, - 0xc5, 0xdf, 0x80, 0x13, 0xa5, 0x77, 0xa1, 0x3c, 0x64, 0x09, 0xe6, 0xdc, 0x3d, 0xc6, 0x7b, 0x8e, - 0x90, 0x7f, 0xdf, 0x4e, 0x21, 0xc7, 0x07, 0x95, 0x87, 0xf1, 0x1c, 0x8c, 0xa2, 0x17, 0x70, 0x9c, - 0x28, 0x3d, 0x08, 0xef, 0x15, 0x1b, 0x74, 0xaa, 0x81, 0x27, 0x2a, 0x8e, 0x70, 0xd4, 0x01, 0x73, - 0x68, 0xbe, 0xce, 0xa4, 0x00, 0xcf, 0xc9, 0xbf, 0xa7, 0x1e, 0x19, 0x70, 0x8a, 0x13, 0x6f, 0x7b, - 0x07, 0x5a, 0x0c, 0x69, 0x10, 0x7a, 0xc2, 0x1b, 0x52, 0x72, 0xd7, 0x4e, 0xf4, 0x03, 0xf0, 0x8e, - 0xfe, 0x01, 0x78, 0x67, 0xcf, 0xa3, 0x7e, 0xa7, 0x21, 0xcb, 0x36, 0x2c, 0xbe, 0xf0, 0x81, 0x94, - 0xfc, 0xf5, 0xe4, 0x5c, 0x63, 0xf7, 0x81, 0xf7, 0xdc, 0xd7, 0xf5, 0xc4, 0xd9, 0xe0, 0x64, 0xc7, - 0x65, 0xbd, 0x1b, 0x3d, 0xcf, 0xe5, 0x2c, 0x64, 0xa7, 0xe2, 0x46, 0x8f, 0xb9, 0x37, 0x78, 0xdf, - 0xbd, 0x11, 0xfd, 0xc6, 0x7c, 0x92, 0x95, 0x06, 0xdf, 0xf8, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x5b, 0x49, 0x13, 0x5a, 0x7f, 0x16, 0x00, 0x00, -======= - // 2500 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x7d, 0x88, 0x6b, 0x47, - 0x15, 0xdf, 0x7c, 0xee, 0xee, 0x64, 0x37, 0x99, 0x9d, 0xfd, 0xca, 0xdb, 0x7e, 0xbd, 0x6e, 0xdb, - 0xc7, 0x23, 0xd8, 0x7d, 0xfa, 0x14, 0x45, 0x45, 0xe5, 0x6e, 0x72, 0x77, 0x37, 0x6c, 0x36, 0x09, - 0x37, 0x77, 0xb7, 0x55, 0x84, 0x70, 0xf7, 0x66, 0x36, 0x7b, 0x79, 0x37, 0x77, 0xc2, 0xdc, 0x49, - 0x1e, 0xe9, 0x5f, 0x2d, 0x58, 0x51, 0x50, 0x50, 0xb1, 0xa0, 0x50, 0x41, 0x41, 0xa1, 0x82, 0x9f, - 0xa0, 0xa0, 0xe0, 0x47, 0x0b, 0x16, 0xfc, 0x68, 0xc1, 0x82, 0x7f, 0xf8, 0xd1, 0x6a, 0x8b, 0x0a, - 0x0a, 0x0a, 0x0a, 0x7e, 0xb4, 0x7e, 0x80, 0x9c, 0xb9, 0x33, 0xd9, 0x24, 0x7b, 0xeb, 0x3f, 0xef, - 0xdd, 0xf9, 0x9d, 0xdf, 0x39, 0x73, 0xe6, 0x9c, 0x33, 0x67, 0xce, 0x06, 0x6d, 0xf6, 0x98, 0xdb, - 0x76, 0x59, 0xaf, 0xc7, 0x02, 0xf5, 0xdf, 0x4e, 0x9f, 0x33, 0xc1, 0x48, 0xaa, 0xc7, 0xdc, 0xad, - 0xab, 0x5d, 0xc6, 0xba, 0x3e, 0xbd, 0x21, 0xa1, 0xd3, 0xc1, 0xd9, 0x8d, 0x0e, 0x0d, 0x5d, 0xee, - 0xf5, 0x05, 0xe3, 0x11, 0x6d, 0xfb, 0x18, 0x65, 0x4c, 0xce, 0x19, 0x27, 0x45, 0x34, 0x7f, 0x44, - 0xc3, 0xd0, 0xe9, 0xd2, 0x62, 0xe2, 0x6a, 0xe2, 0xfa, 0xa2, 0xa5, 0x97, 0x84, 0xa0, 0x74, 0x99, - 0x75, 0x68, 0x31, 0x79, 0x35, 0x71, 0x3d, 0x63, 0xc9, 0x6f, 0x72, 0x37, 0x42, 0x4d, 0x87, 0x3b, - 0x3d, 0x2a, 0x28, 0x0f, 0x8b, 0x29, 0xa9, 0x30, 0x81, 0x6c, 0x3f, 0x9e, 0x40, 0x85, 0x26, 0x67, - 0x43, 0x2f, 0xf4, 0x58, 0xd0, 0x12, 0x8e, 0x18, 0x84, 0xe4, 0x6d, 0x68, 0xc9, 0x1d, 0x70, 0x4e, - 0x03, 0x01, 0x40, 0xb4, 0x4d, 0xfe, 0xe6, 0xea, 0x4e, 0x8f, 0xb9, 0x3b, 0x53, 0x5c, 0x6a, 0x4d, - 0x11, 0xc9, 0xdb, 0xd1, 0x72, 0x9f, 0xd3, 0xa1, 0xc7, 0x06, 0x61, 0xa4, 0x99, 0x7c, 0x7d, 0xcd, - 0x69, 0xe6, 0xf6, 0x93, 0x09, 0x94, 0xaf, 0xb0, 0xdb, 0x81, 0xcf, 0x9c, 0x8e, 0x72, 0x63, 0x07, - 0x91, 0x3e, 0x67, 0x5d, 0x4e, 0xc3, 0xb0, 0x49, 0xb9, 0x4b, 0x03, 0xa1, 0xcf, 0x9c, 0xb2, 0x62, - 0x24, 0xe4, 0x8d, 0x68, 0xb5, 0xa3, 0x2d, 0x78, 0x8f, 0xd0, 0x6a, 0xb0, 0x3b, 0x12, 0x34, 0x94, - 0x3e, 0xa4, 0xac, 0x38, 0x11, 0xb9, 0x8e, 0x0a, 0x67, 0x9e, 0x4f, 0x27, 0xd9, 0x29, 0xc9, 0x9e, - 0x85, 0xb7, 0x87, 0x28, 0x7b, 0x40, 0x1d, 0x5f, 0x9c, 0x93, 0xb7, 0xc4, 0x06, 0x07, 0xcb, 0x23, - 0x46, 0x94, 0xb8, 0xc8, 0xbc, 0x35, 0x3e, 0x32, 0x97, 0xd5, 0x66, 0xc2, 0xf2, 0x58, 0x02, 0x15, - 0x4e, 0x1c, 0xdf, 0xeb, 0x38, 0x42, 0x47, 0x8e, 0xbc, 0x01, 0xa5, 0x5d, 0x48, 0x73, 0xb4, 0x73, - 0x51, 0x9a, 0x98, 0xe1, 0x40, 0xea, 0x2d, 0xc9, 0x82, 0x72, 0xe9, 0xa9, 0x72, 0x49, 0x46, 0xe5, - 0xa2, 0x96, 0xe4, 0x1a, 0xca, 0x73, 0x0a, 0xa5, 0x48, 0x83, 0x48, 0x55, 0x95, 0xc7, 0x0c, 0xba, - 0x6d, 0x21, 0x3c, 0x6d, 0x7e, 0x10, 0x92, 0x77, 0xa3, 0xc2, 0x70, 0x7a, 0xcb, 0x62, 0xe2, 0x6a, - 0xea, 0x7a, 0xee, 0xe6, 0x5a, 0x9c, 0x3b, 0xd6, 0x2c, 0x79, 0xfb, 0x5e, 0x34, 0x7f, 0x42, 0x39, - 0x54, 0x03, 0xd9, 0x40, 0xd9, 0x60, 0xd0, 0x3b, 0xa5, 0x5c, 0x95, 0xb3, 0x5a, 0x6d, 0x3f, 0x9b, - 0x44, 0x59, 0xb5, 0xdb, 0x7d, 0x28, 0x7b, 0x2e, 0x63, 0x24, 0x29, 0xb9, 0x9b, 0xb9, 0x89, 0xb0, - 0x59, 0x4a, 0x44, 0x2a, 0xb2, 0x5c, 0xa2, 0x12, 0xf3, 0x82, 0x6e, 0xa4, 0x2a, 0xcf, 0xac, 0xbd, - 0x9a, 0xa9, 0x73, 0x2b, 0x86, 0x4f, 0xae, 0xa3, 0x45, 0xdf, 0x09, 0x85, 0xbc, 0x6a, 0x32, 0x1e, - 0xb9, 0x9b, 0x48, 0x2a, 0x4b, 0xc4, 0xba, 0x10, 0x92, 0x6b, 0x68, 0x7e, 0x18, 0x1d, 0xa1, 0x98, - 0x96, 0xbc, 0xa5, 0xe8, 0xe8, 0x11, 0x66, 0x69, 0x21, 0x79, 0x27, 0xca, 0x77, 0xa6, 0x0a, 0xbb, - 0x98, 0x91, 0xf4, 0xe8, 0x56, 0x4c, 0xd7, 0xbc, 0x35, 0x43, 0x25, 0x06, 0xc2, 0xc3, 0x99, 0xd8, - 0x17, 0xb3, 0x52, 0x7d, 0x3d, 0x26, 0xd0, 0x83, 0xd0, 0xba, 0x44, 0xdf, 0xde, 0x41, 0x59, 0x33, - 0x10, 0x9e, 0x18, 0x91, 0xfb, 0xd1, 0x72, 0x35, 0x6c, 0xfa, 0x8e, 0x4b, 0xcf, 0x99, 0xdf, 0x51, - 0x01, 0x5f, 0xb0, 0xa6, 0xc1, 0xed, 0x07, 0x51, 0xca, 0x76, 0xba, 0x04, 0xa3, 0xd4, 0x2d, 0x3a, - 0x52, 0x39, 0x81, 0x4f, 0xb2, 0x86, 0x32, 0x43, 0xc7, 0x1f, 0xe8, 0x3a, 0x8a, 0x16, 0xdb, 0xf7, - 0xa3, 0xb4, 0xed, 0x74, 0x43, 0x72, 0x27, 0x4a, 0x0b, 0xa7, 0x1b, 0xaa, 0x32, 0x58, 0x90, 0xde, - 0xd9, 0x4e, 0xd7, 0x92, 0x68, 0xe9, 0xfd, 0x68, 0xb1, 0xd1, 0xa7, 0x5c, 0xfa, 0x45, 0xe6, 0x51, - 0x6a, 0xdf, 0xb4, 0xf1, 0x1c, 0x59, 0x40, 0xe9, 0x66, 0xa3, 0x65, 0xe3, 0x04, 0x41, 0x28, 0x5b, - 0x31, 0x6b, 0xa6, 0x6d, 0xe2, 0x24, 0x7c, 0x1f, 0x37, 0x2b, 0x86, 0x6d, 0xe2, 0x14, 0x7c, 0x57, - 0x8f, 0x9a, 0x0d, 0xcb, 0xc6, 0x69, 0xf8, 0x36, 0x1f, 0x96, 0xdf, 0x19, 0xb2, 0x84, 0x16, 0x4e, - 0x8c, 0x5a, 0x55, 0xb2, 0xb2, 0xa5, 0xdf, 0x26, 0x51, 0x7e, 0xba, 0xbd, 0x90, 0x1c, 0x9a, 0x3f, - 0xae, 0x1f, 0xd6, 0x1b, 0x0f, 0xd5, 0xf1, 0x1c, 0xb0, 0xcb, 0x96, 0x69, 0xd8, 0xd5, 0xfa, 0x3e, - 0x4e, 0x80, 0x48, 0xae, 0xcc, 0x0a, 0x4e, 0x92, 0x15, 0xb4, 0x1c, 0x2d, 0xda, 0x7b, 0x46, 0xb5, - 0x66, 0x56, 0x70, 0x0a, 0xd8, 0xd2, 0x17, 0x60, 0xa7, 0x81, 0x10, 0x79, 0xa6, 0x09, 0x19, 0x30, - 0x10, 0x41, 0x15, 0x9c, 0x05, 0xb6, 0xf4, 0x16, 0xd8, 0xf3, 0xc0, 0x8e, 0x7c, 0xd7, 0xec, 0x05, - 0xe9, 0x89, 0x84, 0x2a, 0x78, 0x91, 0x60, 0xb4, 0xd4, 0xb4, 0x1a, 0x27, 0xd5, 0x56, 0xb5, 0x51, - 0x07, 0x0d, 0x44, 0x0a, 0x28, 0x37, 0x46, 0xcc, 0x0a, 0xce, 0x91, 0x35, 0x84, 0xc7, 0x80, 0xb6, - 0xb2, 0x44, 0x08, 0xca, 0x57, 0xcc, 0x29, 0xd5, 0xe5, 0xc8, 0xb5, 0x49, 0xe5, 0x3c, 0xd9, 0x40, - 0x64, 0x02, 0xd2, 0xea, 0x85, 0x48, 0x5d, 0x9e, 0xa2, 0x69, 0xd6, 0x2b, 0xa0, 0x8e, 0xc9, 0x32, - 0x5a, 0x8c, 0x62, 0x0b, 0xcb, 0x15, 0x38, 0x48, 0xb4, 0x34, 0x2b, 0x98, 0x80, 0xed, 0x68, 0xa5, - 0x6d, 0xac, 0x96, 0xf6, 0xd0, 0xfa, 0x81, 0xd7, 0x3d, 0x37, 0x86, 0x8e, 0xe7, 0x3b, 0xa7, 0x9e, - 0xef, 0x89, 0x51, 0x14, 0xeb, 0x35, 0x84, 0x55, 0xac, 0xdb, 0x07, 0x46, 0xbb, 0x65, 0x43, 0x52, - 0xe6, 0x20, 0x5d, 0x2d, 0xdb, 0xd8, 0xad, 0x99, 0x51, 0xc8, 0xf5, 0xbe, 0xc9, 0x52, 0x17, 0xe5, - 0x26, 0x3a, 0x1e, 0xec, 0x5b, 0x6f, 0xd8, 0x3a, 0x55, 0x59, 0x94, 0x6c, 0x1c, 0x46, 0x1a, 0x0f, - 0x19, 0x96, 0x3c, 0x68, 0x32, 0xca, 0x5f, 0xd5, 0xae, 0x96, 0x8d, 0x1a, 0x4e, 0x81, 0xe8, 0xa8, - 0xda, 0x6a, 0x45, 0xe9, 0x91, 0xc9, 0xda, 0xb7, 0x8c, 0x8a, 0xcc, 0x4c, 0x64, 0x6b, 0xaf, 0x71, - 0x5c, 0xaf, 0xe0, 0x6c, 0xe9, 0x89, 0x04, 0x5a, 0x8d, 0x69, 0x8c, 0xe0, 0x6f, 0xbd, 0x51, 0x31, - 0xdb, 0xc7, 0x75, 0xcb, 0x34, 0xca, 0x07, 0xd2, 0xc7, 0x39, 0x08, 0x91, 0x59, 0xb7, 0xab, 0xf6, - 0x7b, 0xdb, 0xda, 0x7a, 0x82, 0xdc, 0x81, 0x36, 0xcb, 0xb5, 0xaa, 0x59, 0xb7, 0xdb, 0x51, 0xfd, - 0xa8, 0x90, 0x1e, 0x5b, 0x50, 0xa7, 0x04, 0xe5, 0xf7, 0x1a, 0xd6, 0x91, 0x61, 0xb7, 0xab, 0x75, - 0x59, 0x8c, 0x38, 0x05, 0xf9, 0xad, 0xd6, 0xf7, 0x1a, 0xed, 0x0b, 0x07, 0x21, 0x90, 0x0a, 0x39, - 0x32, 0xec, 0xf2, 0x01, 0xce, 0x94, 0x38, 0x42, 0x65, 0xdf, 0xa3, 0x81, 0xb0, 0x47, 0x7d, 0x0a, - 0x2a, 0xe5, 0x46, 0xdd, 0xb6, 0x1a, 0xb5, 0x66, 0xcd, 0xa8, 0x6b, 0x4f, 0x1e, 0xb6, 0x4d, 0xab, - 0x6e, 0xd4, 0xa2, 0xdd, 0x71, 0x02, 0xae, 0x0a, 0xf8, 0x8c, 0x93, 0x64, 0x11, 0x65, 0x8c, 0xca, - 0x51, 0xb5, 0x8e, 0x53, 0x90, 0xc1, 0x5d, 0xc3, 0x32, 0x8f, 0x4c, 0xdb, 0xa8, 0xe1, 0x34, 0x58, - 0xaa, 0x35, 0x8c, 0xca, 0xae, 0x51, 0x33, 0xea, 0x65, 0xd3, 0xc2, 0x19, 0xd0, 0x3a, 0x80, 0x0b, - 0x96, 0x2d, 0xdd, 0x44, 0xc4, 0x18, 0x88, 0x73, 0x1a, 0x08, 0xcf, 0x95, 0xe1, 0x90, 0x7b, 0xe7, - 0x11, 0x6a, 0x99, 0xb5, 0xbd, 0x56, 0x75, 0x1f, 0xca, 0x27, 0xba, 0x28, 0x86, 0x5a, 0x25, 0x4a, - 0x4f, 0x65, 0xd0, 0x92, 0xbc, 0x56, 0x1d, 0xca, 0x25, 0xbd, 0x80, 0x72, 0x46, 0x30, 0xd2, 0x50, - 0xe4, 0xe9, 0x89, 0xc7, 0xc5, 0xc0, 0xf1, 0x8f, 0x1c, 0xf7, 0xdc, 0x0b, 0x28, 0x4e, 0x90, 0x2d, - 0xb4, 0x31, 0x8d, 0xb5, 0x5c, 0xc7, 0xa7, 0x2d, 0x2a, 0x70, 0x52, 0x7a, 0xc8, 0x9c, 0xce, 0xae, - 0xe3, 0x3b, 0x81, 0x4b, 0x39, 0x4e, 0x4d, 0x58, 0xa8, 0x53, 0x71, 0x9b, 0xf1, 0x5b, 0x38, 0x4d, - 0x56, 0x51, 0x41, 0x61, 0x07, 0x0e, 0xef, 0x54, 0xbc, 0xf0, 0x16, 0xce, 0x80, 0xea, 0xbe, 0xe3, - 0xfb, 0x94, 0x8f, 0xaa, 0x3d, 0xa7, 0x4b, 0x71, 0x96, 0x6c, 0xa2, 0xd5, 0xe9, 0x8d, 0x22, 0xc1, - 0xbc, 0xcc, 0x6f, 0x64, 0xac, 0x1a, 0x08, 0xca, 0xcf, 0x1c, 0x97, 0xe2, 0x05, 0x70, 0xbe, 0x4c, - 0xb9, 0xf0, 0xce, 0x20, 0x00, 0x14, 0x2f, 0x42, 0x1b, 0x3a, 0xa4, 0x23, 0x8c, 0x64, 0xa5, 0x52, - 0x97, 0x53, 0x81, 0x73, 0x10, 0x81, 0x43, 0x3a, 0x3a, 0x71, 0x06, 0xbe, 0xc0, 0x4b, 0xf2, 0x4e, - 0x74, 0xa8, 0xec, 0x9e, 0x78, 0x19, 0xa2, 0x69, 0x31, 0x9f, 0xe2, 0x3c, 0x78, 0x0d, 0x5f, 0x46, - 0x18, 0x7a, 0xdd, 0xa0, 0x47, 0x03, 0x81, 0x0b, 0x10, 0xcb, 0xc3, 0xc1, 0x29, 0xe5, 0x01, 0x15, - 0x34, 0xc4, 0x58, 0xb6, 0x19, 0x7f, 0x10, 0x0a, 0xca, 0xf1, 0x8a, 0x4c, 0x32, 0x0b, 0x04, 0x67, - 0x7e, 0xd3, 0x77, 0x02, 0x8a, 0x09, 0xa4, 0x71, 0x9f, 0xb3, 0x41, 0x1f, 0xaf, 0xca, 0xdc, 0xb2, - 0x0e, 0xc5, 0x6b, 0xb0, 0x5f, 0x8d, 0x45, 0xf9, 0xc1, 0xeb, 0x70, 0x8e, 0x96, 0x60, 0xdc, 0xe9, - 0x52, 0xd0, 0x75, 0xbc, 0x80, 0x72, 0xbc, 0x01, 0xe7, 0x50, 0xe8, 0x9e, 0xe7, 0x53, 0xbc, 0x39, - 0x41, 0xab, 0x78, 0x9c, 0xba, 0x82, 0xf1, 0x11, 0x2e, 0xc2, 0x8e, 0xad, 0xc1, 0x69, 0x34, 0x44, - 0x82, 0xb9, 0x2b, 0xe0, 0xd0, 0x89, 0xd7, 0x6f, 0x32, 0xe6, 0xe3, 0x2d, 0x79, 0x89, 0x1c, 0x57, - 0x2e, 0xee, 0x00, 0x93, 0xa6, 0x70, 0x3b, 0xda, 0xdd, 0x3b, 0xe1, 0x2c, 0x00, 0xb4, 0x28, 0x1f, - 0x52, 0x8e, 0xef, 0x82, 0x2d, 0x76, 0x1d, 0x4e, 0x8f, 0xa8, 0xb8, 0xc8, 0xf4, 0xdd, 0x64, 0x1d, - 0xad, 0x94, 0x39, 0x95, 0xf1, 0x71, 0xfc, 0x23, 0x16, 0x78, 0x82, 0x71, 0x7c, 0x0f, 0x98, 0xae, - 0xb1, 0x6e, 0xd7, 0x0b, 0xba, 0xf8, 0x2a, 0x9c, 0xc8, 0xa2, 0x2e, 0x1b, 0x52, 0x3e, 0xc2, 0xf7, - 0xc2, 0xa1, 0x2b, 0xf4, 0x74, 0xd0, 0xc5, 0xdb, 0x70, 0x2f, 0xc6, 0x26, 0x0f, 0x58, 0x28, 0xf0, - 0x7d, 0x10, 0xd5, 0xe9, 0x1a, 0xc5, 0xf7, 0x03, 0x2d, 0x6a, 0x16, 0xda, 0xfe, 0x03, 0x40, 0xab, - 0xb1, 0xae, 0xe7, 0x5e, 0x94, 0xcc, 0xb5, 0xd2, 0xa3, 0x04, 0x6d, 0xea, 0xba, 0x34, 0x5c, 0x97, - 0x86, 0xe1, 0xc5, 0x73, 0x53, 0x40, 0xb9, 0xe3, 0x20, 0xec, 0x53, 0xd7, 0x3b, 0xf3, 0x68, 0x07, - 0xcf, 0x91, 0x22, 0x5a, 0x9b, 0xde, 0xa7, 0x0d, 0xf6, 0x02, 0xdc, 0x21, 0x9b, 0x88, 0x4c, 0xd4, - 0x48, 0xbb, 0xcc, 0x29, 0x94, 0xca, 0x0f, 0x13, 0xb3, 0x82, 0xe3, 0x7e, 0x07, 0x04, 0x3f, 0x4a, - 0x90, 0x35, 0x54, 0x98, 0x14, 0xec, 0x53, 0x81, 0x7f, 0x7c, 0x89, 0x5e, 0xa1, 0x3e, 0x15, 0x14, - 0xff, 0x24, 0x41, 0xd6, 0x11, 0x9e, 0x14, 0xb4, 0xbc, 0x6e, 0x80, 0x9f, 0x4b, 0x90, 0x0d, 0xb4, - 0x32, 0x09, 0x5b, 0x34, 0xa0, 0xb7, 0xf1, 0xf3, 0xd2, 0xba, 0xae, 0x3f, 0xed, 0xcc, 0x97, 0x92, - 0x53, 0xa8, 0xf2, 0xe4, 0xcb, 0xd3, 0xa8, 0x45, 0x87, 0xec, 0x16, 0xc5, 0x5f, 0x99, 0x41, 0x19, - 0xb4, 0x40, 0xfc, 0xd5, 0x24, 0xb9, 0x07, 0x6d, 0x69, 0x34, 0xe6, 0xbc, 0x1f, 0x4b, 0xbd, 0x1e, - 0x41, 0xed, 0xf6, 0xf1, 0x14, 0xb9, 0x1b, 0x5d, 0x89, 0x23, 0x44, 0x9e, 0x7f, 0x22, 0x45, 0x0a, - 0x08, 0x1d, 0xd2, 0xb1, 0xd3, 0x7f, 0x1b, 0x03, 0xca, 0xc2, 0xdf, 0xa1, 0x55, 0xe6, 0x00, 0x30, - 0x03, 0x97, 0x8f, 0xfa, 0x02, 0xff, 0x63, 0x8c, 0x54, 0x68, 0x84, 0xfc, 0x73, 0x8c, 0x3c, 0xc4, - 0x9d, 0x3e, 0x5c, 0xd5, 0x57, 0xa1, 0x5f, 0x2c, 0x4b, 0x33, 0xc1, 0x6d, 0x85, 0xbd, 0x06, 0x6d, - 0x10, 0xee, 0x6c, 0x14, 0xcc, 0x7f, 0x8d, 0x77, 0x3a, 0xa1, 0xdc, 0x3b, 0x1b, 0xe1, 0x7f, 0xa7, - 0xc8, 0x16, 0x5a, 0x9f, 0x6e, 0x14, 0xda, 0xad, 0x9f, 0xa7, 0x63, 0x64, 0xca, 0xc3, 0x5f, 0xc4, - 0xc9, 0x54, 0x22, 0x7f, 0x99, 0x26, 0x77, 0xa2, 0xcd, 0x19, 0x99, 0x7a, 0x69, 0x28, 0xfe, 0x55, - 0x9a, 0x5c, 0x41, 0x6b, 0x33, 0xd2, 0x96, 0x70, 0xb8, 0xc0, 0x2f, 0xa6, 0x49, 0x71, 0xb6, 0x6b, - 0xb5, 0x5b, 0x82, 0xf5, 0xf1, 0x4b, 0x71, 0x4a, 0x16, 0x0d, 0xa9, 0xc0, 0xbf, 0x4e, 0x93, 0x6b, - 0xe8, 0xde, 0x4b, 0xa2, 0xbe, 0xe3, 0xf1, 0xf6, 0xfe, 0x80, 0x86, 0xa2, 0x6d, 0x74, 0xa1, 0x05, - 0xfd, 0x26, 0xce, 0x44, 0xd3, 0x19, 0x84, 0x14, 0xbf, 0x1c, 0xbb, 0xaf, 0x33, 0xa4, 0xf8, 0x15, - 0x68, 0xb7, 0x79, 0x75, 0xf3, 0x75, 0x5c, 0xbe, 0x93, 0x99, 0x04, 0x55, 0x40, 0xbe, 0x9b, 0x01, - 0x1b, 0x1a, 0x84, 0x36, 0xae, 0xfb, 0xc5, 0xf7, 0x32, 0x10, 0xaa, 0x31, 0x5d, 0xce, 0xaf, 0x5a, - 0xf6, 0xfd, 0x8c, 0xbc, 0x0c, 0x4a, 0xb6, 0x4f, 0x85, 0x16, 0x3c, 0x9d, 0x91, 0x97, 0xe1, 0x42, - 0x00, 0x2d, 0x30, 0xc4, 0xcf, 0x64, 0xe0, 0x32, 0xc8, 0x26, 0xd1, 0x96, 0xff, 0xaa, 0x1e, 0xf4, - 0xd9, 0x2c, 0xd0, 0x23, 0xbc, 0x25, 0x1c, 0xf7, 0x96, 0xcd, 0xa1, 0xad, 0x7f, 0x2e, 0x0b, 0x67, - 0x86, 0x46, 0xd2, 0xd3, 0x8d, 0x44, 0x1f, 0xe2, 0x03, 0xf3, 0x97, 0x45, 0xea, 0x28, 0x8f, 0xcf, - 0x43, 0xfe, 0xc6, 0xa2, 0x99, 0xaa, 0xf8, 0x43, 0xbc, 0x54, 0xe9, 0xfe, 0x71, 0x5e, 0x86, 0x61, - 0xa2, 0x99, 0x6b, 0xbd, 0xe7, 0x16, 0x2e, 0x49, 0x94, 0xce, 0xf3, 0x0b, 0x10, 0x84, 0x89, 0x16, - 0xab, 0x55, 0xbe, 0xb6, 0x38, 0x2b, 0x50, 0x1a, 0x5f, 0x5f, 0x84, 0x30, 0x5c, 0xf4, 0x60, 0xad, - 0xf0, 0x49, 0x34, 0x83, 0x2b, 0xfe, 0x13, 0x08, 0xf6, 0x9e, 0x7c, 0x20, 0xb5, 0xc6, 0xab, 0x97, - 0x25, 0x4a, 0xe7, 0x35, 0x44, 0x56, 0xd0, 0x92, 0x7c, 0x84, 0x34, 0xf9, 0xc5, 0xdc, 0x05, 0xa4, - 0x58, 0x2f, 0xc1, 0x44, 0x5a, 0xd0, 0x6f, 0xa2, 0x26, 0x3e, 0xbd, 0x34, 0x85, 0x2a, 0xee, 0x33, - 0x4b, 0xe0, 0xdd, 0xc5, 0x2b, 0xa8, 0xd9, 0x9f, 0x5f, 0x9e, 0xc1, 0x15, 0xff, 0x0b, 0xcb, 0xe0, - 0xdb, 0xe4, 0x44, 0xa0, 0x35, 0x3e, 0x94, 0xbf, 0x24, 0x51, 0x3a, 0x1f, 0xce, 0xc3, 0xce, 0xfa, - 0x95, 0xd4, 0xfc, 0x3f, 0x4d, 0xa3, 0x8a, 0xfb, 0xe7, 0x3c, 0xd4, 0xf1, 0x91, 0xe3, 0xf6, 0x19, - 0xf3, 0x35, 0xf5, 0xa7, 0x85, 0x49, 0x50, 0x31, 0x5f, 0x28, 0x40, 0xce, 0x67, 0xa7, 0x06, 0xad, - 0xf2, 0x0d, 0x1c, 0x2b, 0x55, 0xba, 0xdf, 0xc4, 0xd0, 0xa7, 0xa0, 0x7c, 0x35, 0xff, 0x53, 0x2b, - 0x63, 0x44, 0x71, 0x3e, 0xbd, 0x02, 0xfe, 0xe9, 0x97, 0x50, 0xf3, 0xfe, 0x33, 0x8d, 0x2a, 0xee, - 0x7f, 0xa5, 0x36, 0xcc, 0x17, 0x9a, 0xf7, 0x32, 0x19, 0x23, 0x8a, 0xf3, 0x0a, 0x81, 0x2b, 0x37, - 0x3d, 0x83, 0x68, 0xf6, 0x0f, 0x56, 0x63, 0x64, 0x4a, 0xef, 0xd9, 0x55, 0xe8, 0xa0, 0xd1, 0xb4, - 0xa3, 0xf9, 0x4f, 0xad, 0x4d, 0x60, 0x8a, 0xf7, 0xc5, 0x35, 0x38, 0xf1, 0xec, 0xf4, 0xa1, 0x35, - 0x3e, 0xb2, 0x1e, 0x2b, 0x55, 0xba, 0x1f, 0x5d, 0x87, 0xdc, 0x4d, 0x0e, 0x1f, 0x5a, 0xef, 0x2f, - 0x97, 0x25, 0x4a, 0xe7, 0xaf, 0x52, 0x72, 0x31, 0xac, 0x5f, 0x74, 0xd3, 0x9f, 0x6d, 0x40, 0xba, - 0xd4, 0xe0, 0xa2, 0x0d, 0x7d, 0x6b, 0x73, 0x12, 0x54, 0x36, 0xbe, 0xbd, 0x49, 0xee, 0x18, 0xcf, - 0x9e, 0x7a, 0x72, 0xd4, 0x1a, 0x4f, 0x16, 0xe3, 0x84, 0x4a, 0xf3, 0x33, 0x45, 0x78, 0xf0, 0x62, - 0x86, 0x49, 0xad, 0xfd, 0xe8, 0x95, 0xd7, 0x23, 0x28, 0x0b, 0x8f, 0x5d, 0x21, 0xdb, 0xe8, 0xae, - 0xf8, 0xb9, 0x57, 0x1b, 0xf9, 0xdd, 0xff, 0xe3, 0x28, 0x3b, 0xbf, 0xbf, 0x32, 0xf1, 0xea, 0xa8, - 0x82, 0x1b, 0x8f, 0x21, 0x5b, 0x31, 0x32, 0x3d, 0x89, 0x6c, 0x95, 0x2c, 0x94, 0x93, 0x2e, 0xb5, - 0xd8, 0x80, 0xbb, 0x34, 0xfa, 0x63, 0xa0, 0x6c, 0xd4, 0xda, 0xad, 0xc6, 0xb1, 0x55, 0x86, 0x3f, - 0x2b, 0x60, 0xd8, 0xdf, 0x6b, 0xe9, 0x75, 0x02, 0xe6, 0xa2, 0x03, 0xdb, 0x6e, 0x6a, 0x40, 0x4e, - 0xe7, 0xe5, 0x5a, 0xa3, 0x6e, 0x6a, 0x24, 0x55, 0xda, 0x45, 0xf8, 0x60, 0xd4, 0xa7, 0xfc, 0x64, - 0x9f, 0x06, 0x7a, 0x9c, 0xda, 0x40, 0x64, 0x16, 0x3b, 0xb9, 0x89, 0xe7, 0x62, 0xf1, 0x37, 0xe1, - 0x44, 0xe9, 0x3d, 0x28, 0x0f, 0xb1, 0x86, 0x61, 0x75, 0x8f, 0xf1, 0x9e, 0x23, 0xe4, 0x1f, 0xa9, - 0x53, 0xc8, 0xc9, 0x41, 0xe5, 0x61, 0x3c, 0x07, 0xf3, 0xe4, 0x25, 0x1c, 0x27, 0x4a, 0x0f, 0xc2, - 0xab, 0xc3, 0x06, 0x9d, 0x6a, 0xe0, 0x89, 0x8a, 0x23, 0x1c, 0x75, 0xc0, 0x1c, 0x9a, 0xaf, 0x33, - 0x29, 0xc0, 0x73, 0xf2, 0x8f, 0xa2, 0x47, 0x06, 0x9c, 0xe2, 0xc4, 0x3b, 0xde, 0x85, 0x16, 0x43, - 0x1a, 0x84, 0x9e, 0xf0, 0x86, 0x94, 0xdc, 0xb5, 0x13, 0xfd, 0xb0, 0xba, 0xa3, 0x7f, 0x58, 0xdd, - 0xd9, 0xf3, 0xa8, 0xdf, 0x69, 0xc8, 0xe2, 0x0b, 0x8b, 0x2f, 0x7c, 0x30, 0x25, 0x7f, 0x02, 0xb9, - 0xd0, 0xd8, 0x7d, 0xe0, 0x7d, 0xf7, 0x75, 0x3d, 0x71, 0x3e, 0x38, 0xdd, 0x71, 0x59, 0xef, 0x46, - 0xcf, 0x73, 0x39, 0x0b, 0xd9, 0x99, 0xb8, 0xd1, 0x63, 0xee, 0x0d, 0xde, 0x77, 0x6f, 0x44, 0xbf, - 0xdd, 0x9e, 0x66, 0xa5, 0xc1, 0x37, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x38, 0x56, 0xb8, - 0xd7, 0x15, 0x00, 0x00, ->>>>>>> main + // 2575 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x7b, 0x88, 0x64, 0x47, + 0xd5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x76, 0x93, 0x6c, 0x3a, + 0xc9, 0x7e, 0x4b, 0xf3, 0x65, 0xf6, 0xfb, 0x56, 0x51, 0x54, 0x54, 0xee, 0x74, 0xdf, 0x99, 0x69, + 0xb6, 0xa7, 0xbb, 0xb9, 0xdd, 0x33, 0x89, 0x22, 0x34, 0x77, 0x6e, 0xd7, 0xf4, 0x5c, 0xf6, 0xf6, + 0xad, 0xa6, 0x6e, 0x75, 0x2f, 0x9d, 0xbf, 0x0c, 0x18, 0x51, 0x50, 0x50, 0x31, 0xa0, 0x10, 0x41, + 0x41, 0x41, 0xc1, 0xf8, 0x00, 0x05, 0x15, 0xa3, 0x09, 0x18, 0xf0, 0x91, 0x80, 0x01, 0xff, 0xf0, + 0x91, 0x68, 0x82, 0x0a, 0x0a, 0x0a, 0x0a, 0x3e, 0x12, 0x1f, 0x20, 0xa7, 0x6e, 0x55, 0xbf, 0xe6, + 0xc6, 0x7f, 0x76, 0x6f, 0xfd, 0xce, 0xef, 0x9c, 0x3a, 0x75, 0xce, 0xa9, 0x53, 0x67, 0x1a, 0x6d, + 0xf7, 0x98, 0xd3, 0x76, 0x58, 0xaf, 0xc7, 0x7c, 0xf5, 0xdf, 0x6e, 0x9f, 0x33, 0xc1, 0x48, 0xa2, + 0xc7, 0x9c, 0x9d, 0xab, 0x5d, 0xc6, 0xba, 0x1e, 0xbd, 0x21, 0xa1, 0xd3, 0xc1, 0xd9, 0x8d, 0x0e, + 0x0d, 0x1c, 0xee, 0xf6, 0x05, 0xe3, 0x21, 0xad, 0x70, 0x8c, 0x52, 0x26, 0xe7, 0x8c, 0x93, 0x3c, + 0x5a, 0x3c, 0xa2, 0x41, 0x60, 0x77, 0x69, 0x3e, 0x76, 0x35, 0x76, 0x7d, 0xd9, 0xd2, 0x4b, 0x42, + 0x50, 0xb2, 0xc4, 0x3a, 0x34, 0x1f, 0xbf, 0x1a, 0xbb, 0x9e, 0xb2, 0xe4, 0x37, 0xb9, 0x1b, 0xa1, + 0x86, 0xcd, 0xed, 0x1e, 0x15, 0x94, 0x07, 0xf9, 0x84, 0x54, 0x98, 0x42, 0x0a, 0x8f, 0xc5, 0x50, + 0xae, 0xc1, 0xd9, 0xd0, 0x0d, 0x5c, 0xe6, 0x37, 0x85, 0x2d, 0x06, 0x01, 0x79, 0x33, 0x5a, 0x71, + 0x06, 0x9c, 0x53, 0x5f, 0x00, 0x10, 0x6e, 0x93, 0xbd, 0xb9, 0xbe, 0xdb, 0x63, 0xce, 0xee, 0x0c, + 0x97, 0x5a, 0x33, 0x44, 0xf2, 0x16, 0xb4, 0xda, 0xe7, 0x74, 0xe8, 0xb2, 0x41, 0x10, 0x6a, 0xc6, + 0x5f, 0x5f, 0x73, 0x96, 0x59, 0x78, 0x22, 0x86, 0xb2, 0x65, 0x76, 0xc7, 0xf7, 0x98, 0xdd, 0x51, + 0x6e, 0xec, 0x22, 0xd2, 0xe7, 0xac, 0xcb, 0x69, 0x10, 0x34, 0x28, 0x77, 0xa8, 0x2f, 0xf4, 0x99, + 0x13, 0x56, 0x84, 0x84, 0xfc, 0x1f, 0x5a, 0xef, 0x68, 0x0b, 0xee, 0x23, 0xb4, 0xe2, 0xef, 0x8d, + 0x04, 0x0d, 0xa4, 0x0f, 0x09, 0x2b, 0x4a, 0x44, 0xae, 0xa3, 0xdc, 0x99, 0xeb, 0xd1, 0x69, 0x76, + 0x42, 0xb2, 0xe7, 0xe1, 0xc2, 0x10, 0xa5, 0x0f, 0xa9, 0xed, 0x89, 0x73, 0xf2, 0xc6, 0xc8, 0xe0, + 0x60, 0x79, 0xc4, 0x90, 0x12, 0x15, 0x99, 0x37, 0x45, 0x47, 0xe6, 0xa2, 0xda, 0x5c, 0x58, 0x1e, + 0x8d, 0xa1, 0xdc, 0x89, 0xed, 0xb9, 0x1d, 0x5b, 0xe8, 0xc8, 0x91, 0xff, 0x45, 0x49, 0x07, 0xd2, + 0x1c, 0xee, 0x9c, 0x97, 0x26, 0xe6, 0x38, 0x90, 0x7a, 0x4b, 0xb2, 0xa0, 0x5c, 0x7a, 0xaa, 0x5c, + 0xe2, 0x61, 0xb9, 0xa8, 0x25, 0xb9, 0x86, 0xb2, 0x9c, 0x42, 0x29, 0x52, 0x3f, 0x54, 0x55, 0xe5, + 0x31, 0x87, 0x16, 0x2c, 0x84, 0x67, 0xcd, 0x0f, 0x02, 0xf2, 0x0e, 0x94, 0x1b, 0xce, 0x6e, 0x99, + 0x8f, 0x5d, 0x4d, 0x5c, 0xcf, 0xdc, 0xdc, 0x88, 0x72, 0xc7, 0x9a, 0x27, 0x17, 0xee, 0x45, 0x8b, + 0x27, 0x94, 0x43, 0x35, 0x90, 0x2d, 0x94, 0xf6, 0x07, 0xbd, 0x53, 0xca, 0x55, 0x39, 0xab, 0x55, + 0xe1, 0xd9, 0x38, 0x4a, 0xab, 0xdd, 0xee, 0x43, 0xe9, 0x73, 0x19, 0x23, 0x49, 0xc9, 0xdc, 0xcc, + 0x4c, 0x85, 0xcd, 0x52, 0x22, 0x52, 0x96, 0xe5, 0x12, 0x96, 0x98, 0xeb, 0x77, 0x43, 0x55, 0x79, + 0x66, 0xed, 0xd5, 0x5c, 0x9d, 0x5b, 0x11, 0x7c, 0x72, 0x1d, 0x2d, 0x7b, 0x76, 0x20, 0xe4, 0x55, + 0x93, 0xf1, 0xc8, 0xdc, 0x44, 0x52, 0x59, 0x22, 0xd6, 0x44, 0x48, 0xae, 0xa1, 0xc5, 0x61, 0x78, + 0x84, 0x7c, 0x52, 0xf2, 0x56, 0xc2, 0xa3, 0x87, 0x98, 0xa5, 0x85, 0xe4, 0x6d, 0x28, 0xdb, 0x99, + 0x29, 0xec, 0x7c, 0x4a, 0xd2, 0xc3, 0x5b, 0x31, 0x5b, 0xf3, 0xd6, 0x1c, 0x95, 0x18, 0x08, 0x0f, + 0xe7, 0x62, 0x9f, 0x4f, 0x4b, 0xf5, 0xcd, 0x88, 0x40, 0x0f, 0x02, 0xeb, 0x02, 0xbd, 0x50, 0x46, + 0xb8, 0xe4, 0xb1, 0x41, 0xa7, 0x39, 0x38, 0xb5, 0x68, 0xc0, 0x06, 0xdc, 0xa1, 0xe4, 0x0a, 0x5a, + 0xee, 0x72, 0x36, 0xe8, 0xd7, 0xec, 0x9e, 0xee, 0x22, 0x13, 0x00, 0xfa, 0x88, 0x0f, 0x82, 0xb0, + 0x5e, 0xe4, 0x77, 0xe1, 0x01, 0x94, 0xab, 0xb1, 0x0e, 0x9d, 0x36, 0xa2, 0x69, 0xb1, 0x29, 0xda, + 0x2e, 0x4a, 0x9b, 0xbe, 0x70, 0xc5, 0x88, 0xdc, 0x8f, 0x56, 0x2b, 0x41, 0xc3, 0xb3, 0x1d, 0x7a, + 0xce, 0xbc, 0x8e, 0xca, 0xee, 0x92, 0x35, 0x0b, 0x16, 0x1e, 0x44, 0x89, 0x96, 0xdd, 0x25, 0x18, + 0x25, 0x6e, 0xd3, 0x91, 0xb2, 0x04, 0x9f, 0x64, 0x03, 0xa5, 0x86, 0xb6, 0x37, 0xd0, 0x4e, 0x84, + 0x8b, 0xc2, 0xfd, 0x28, 0xd9, 0xb2, 0xbb, 0x01, 0xb9, 0x82, 0x92, 0xc2, 0xee, 0x06, 0xaa, 0xe6, + 0x96, 0x64, 0x28, 0x5a, 0x76, 0xd7, 0x92, 0x68, 0xf1, 0x3d, 0x68, 0xb9, 0xde, 0xa7, 0x5c, 0x06, + 0x81, 0x2c, 0xa2, 0xc4, 0x81, 0xd9, 0xc2, 0x0b, 0x64, 0x09, 0x25, 0x1b, 0xf5, 0x66, 0x0b, 0xc7, + 0x08, 0x42, 0xe9, 0xb2, 0x59, 0x35, 0x5b, 0x26, 0x8e, 0xc3, 0xf7, 0x71, 0xa3, 0x6c, 0xb4, 0x4c, + 0x9c, 0x80, 0xef, 0xca, 0x51, 0xa3, 0x6e, 0xb5, 0x70, 0x12, 0xbe, 0xcd, 0x87, 0xe5, 0x77, 0x8a, + 0xac, 0xa0, 0xa5, 0x13, 0xa3, 0x5a, 0x91, 0xac, 0x74, 0xf1, 0xd7, 0x71, 0x94, 0x9d, 0xed, 0x65, + 0x24, 0x83, 0x16, 0x8f, 0x6b, 0xb7, 0x6a, 0xf5, 0x87, 0x6a, 0x78, 0x01, 0xd8, 0x25, 0xcb, 0x34, + 0x5a, 0x95, 0xda, 0x01, 0x8e, 0x81, 0x48, 0xae, 0xcc, 0x32, 0x8e, 0x93, 0x35, 0xb4, 0x1a, 0x2e, + 0xda, 0xfb, 0x46, 0xa5, 0x6a, 0x96, 0x71, 0x02, 0xd8, 0xd2, 0x17, 0x60, 0x27, 0x81, 0x10, 0x7a, + 0xa6, 0x09, 0x29, 0x30, 0x10, 0x42, 0x65, 0x9c, 0x06, 0xb6, 0xf4, 0x16, 0xd8, 0x8b, 0xc0, 0x0e, + 0x7d, 0xd7, 0xec, 0x25, 0xe9, 0x89, 0x84, 0xca, 0x78, 0x99, 0x60, 0xb4, 0xd2, 0xb0, 0xea, 0x27, + 0x95, 0x66, 0xa5, 0x5e, 0x03, 0x0d, 0x44, 0x72, 0x28, 0x33, 0x46, 0xcc, 0x32, 0xce, 0x90, 0x0d, + 0x84, 0xc7, 0x80, 0xb6, 0xb2, 0x42, 0x08, 0xca, 0x96, 0xcd, 0x19, 0xd5, 0xd5, 0xd0, 0xb5, 0x69, + 0xe5, 0x2c, 0xd9, 0x42, 0x64, 0x0a, 0xd2, 0xea, 0xb9, 0x50, 0x5d, 0x9e, 0xa2, 0x61, 0xd6, 0xca, + 0xa0, 0x8e, 0xc9, 0x2a, 0x5a, 0x0e, 0x63, 0x0b, 0xcb, 0x35, 0x38, 0x48, 0xb8, 0x34, 0xcb, 0x98, + 0x80, 0xed, 0x70, 0xa5, 0x6d, 0xac, 0x17, 0xf7, 0xd1, 0xe6, 0xa1, 0xdb, 0x3d, 0x37, 0x86, 0xb6, + 0xeb, 0xd9, 0xa7, 0xae, 0xe7, 0x8a, 0x51, 0x18, 0xeb, 0x0d, 0x84, 0x55, 0xac, 0xdb, 0x87, 0x46, + 0xbb, 0xd9, 0x82, 0xa4, 0x2c, 0x40, 0xba, 0x9a, 0x2d, 0x63, 0xaf, 0x6a, 0x86, 0x21, 0xd7, 0xfb, + 0xc6, 0x8b, 0x5d, 0x94, 0x99, 0x6a, 0xaf, 0xb0, 0x6f, 0xad, 0xde, 0xd2, 0xa9, 0x4a, 0xa3, 0x78, + 0xfd, 0x56, 0xa8, 0xf1, 0x90, 0x61, 0xc9, 0x83, 0xc6, 0xc3, 0xfc, 0x55, 0x5a, 0x95, 0x92, 0x51, + 0xc5, 0x09, 0x10, 0x1d, 0x55, 0x9a, 0xcd, 0x30, 0x3d, 0x32, 0x59, 0x07, 0x96, 0x51, 0x96, 0x99, + 0x09, 0x6d, 0xed, 0xd7, 0x8f, 0x6b, 0x65, 0x9c, 0x2e, 0x3e, 0x1e, 0x43, 0xeb, 0x11, 0x5d, 0x18, + 0xfc, 0xad, 0xd5, 0xcb, 0x66, 0xfb, 0xb8, 0x66, 0x99, 0x46, 0xe9, 0x50, 0xfa, 0xb8, 0x00, 0x21, + 0x32, 0x6b, 0xad, 0x4a, 0xeb, 0x5d, 0x6d, 0x6d, 0x3d, 0x46, 0x2e, 0xa3, 0xed, 0x52, 0xb5, 0x62, + 0xd6, 0x5a, 0xed, 0xb0, 0x7e, 0x54, 0x48, 0x8f, 0x2d, 0xa8, 0x53, 0x82, 0xb2, 0xfb, 0x75, 0xeb, + 0xc8, 0x68, 0xb5, 0x2b, 0x35, 0x59, 0x8c, 0x38, 0x01, 0xf9, 0xad, 0xd4, 0xf6, 0xeb, 0xed, 0x89, + 0x83, 0x10, 0x48, 0x85, 0x1c, 0x19, 0xad, 0xd2, 0x21, 0x4e, 0x15, 0x39, 0x42, 0x25, 0xcf, 0xa5, + 0xbe, 0x68, 0x8d, 0xfa, 0x14, 0x54, 0x4a, 0xf5, 0x5a, 0xcb, 0xaa, 0x57, 0x1b, 0x55, 0xa3, 0xa6, + 0x3d, 0x79, 0xb8, 0x65, 0x5a, 0x35, 0xa3, 0x1a, 0xee, 0x8e, 0x63, 0x70, 0x55, 0xc0, 0x67, 0x1c, + 0x27, 0xcb, 0x28, 0x65, 0x94, 0x8f, 0x2a, 0x35, 0x9c, 0x80, 0x0c, 0xee, 0x19, 0x96, 0x79, 0x64, + 0xb6, 0x8c, 0x2a, 0x4e, 0x82, 0xa5, 0x6a, 0xdd, 0x28, 0xef, 0x19, 0x55, 0xa3, 0x56, 0x32, 0x2d, + 0x9c, 0x02, 0xad, 0x43, 0xb8, 0x60, 0xe9, 0xe2, 0x4d, 0x44, 0x8c, 0x81, 0x38, 0xa7, 0xbe, 0x70, + 0x1d, 0x19, 0x0e, 0xb9, 0x77, 0x16, 0xa1, 0xa6, 0x59, 0xdd, 0x6f, 0x56, 0x0e, 0xa0, 0x7c, 0xc2, + 0x8b, 0x62, 0xa8, 0x55, 0xac, 0xf8, 0x54, 0x0a, 0xad, 0xc8, 0x6b, 0xd5, 0xa1, 0x5c, 0xd2, 0x73, + 0x28, 0x63, 0xf8, 0x23, 0x0d, 0x85, 0x9e, 0x9e, 0xb8, 0x5c, 0x0c, 0x6c, 0xef, 0xc8, 0x76, 0xce, + 0x5d, 0x9f, 0xe2, 0x18, 0xd9, 0x41, 0x5b, 0xb3, 0x58, 0xd3, 0xb1, 0x3d, 0xda, 0xa4, 0x02, 0xc7, + 0xa5, 0x87, 0xcc, 0xee, 0xec, 0xd9, 0x9e, 0xed, 0x3b, 0x94, 0xe3, 0xc4, 0x94, 0x85, 0x1a, 0x15, + 0x77, 0x18, 0xbf, 0x8d, 0x93, 0x64, 0x1d, 0xe5, 0x14, 0x76, 0x68, 0xf3, 0x4e, 0xd9, 0x0d, 0x6e, + 0xe3, 0x14, 0xa8, 0x1e, 0xd8, 0x9e, 0x47, 0xf9, 0xa8, 0xd2, 0xb3, 0xbb, 0x14, 0xa7, 0xc9, 0x36, + 0x5a, 0x9f, 0xdd, 0x28, 0x14, 0x2c, 0xca, 0xfc, 0x86, 0xc6, 0x2a, 0xbe, 0xa0, 0xfc, 0xcc, 0x76, + 0x28, 0x5e, 0x02, 0xe7, 0x4b, 0x94, 0x0b, 0xf7, 0x0c, 0x02, 0x40, 0xf1, 0x32, 0xb4, 0xa1, 0x5b, + 0x74, 0x84, 0x91, 0xac, 0x54, 0xea, 0x70, 0x2a, 0x70, 0x06, 0x22, 0x70, 0x8b, 0x8e, 0x4e, 0xec, + 0x81, 0x27, 0xf0, 0x8a, 0xbc, 0x13, 0x1d, 0x2a, 0xbb, 0x27, 0x5e, 0x85, 0x68, 0x5a, 0xcc, 0xa3, + 0x38, 0x0b, 0x5e, 0xc3, 0x97, 0x11, 0x04, 0x6e, 0xd7, 0xef, 0x51, 0x5f, 0xe0, 0x1c, 0xc4, 0xf2, + 0xd6, 0xe0, 0x94, 0x72, 0x9f, 0x0a, 0x1a, 0x60, 0x2c, 0xdb, 0x8c, 0x37, 0x08, 0x04, 0xe5, 0x78, + 0x4d, 0x26, 0x99, 0xf9, 0x82, 0x33, 0xaf, 0xe1, 0xd9, 0x3e, 0xc5, 0x04, 0xd2, 0x78, 0x00, 0xed, + 0x1d, 0xaf, 0xcb, 0xdc, 0xb2, 0x0e, 0xc5, 0x1b, 0xb0, 0x5f, 0x95, 0x85, 0xf9, 0xc1, 0x9b, 0x70, + 0x8e, 0xa6, 0x60, 0xdc, 0xee, 0x52, 0xd0, 0xb5, 0x5d, 0x9f, 0x72, 0xbc, 0x05, 0xe7, 0x50, 0xe8, + 0xbe, 0xeb, 0x51, 0xbc, 0x3d, 0x45, 0x2b, 0xbb, 0x9c, 0x3a, 0x82, 0xf1, 0x11, 0xce, 0xc3, 0x8e, + 0xcd, 0xc1, 0x69, 0x38, 0xb1, 0x82, 0xb9, 0x4b, 0xe0, 0xd0, 0x89, 0xdb, 0x6f, 0x30, 0xe6, 0xe1, + 0x1d, 0x79, 0x89, 0x6c, 0x47, 0x2e, 0x2e, 0x83, 0x49, 0x53, 0x38, 0x1d, 0xed, 0xee, 0x15, 0x38, + 0x0b, 0x00, 0x4d, 0xca, 0x87, 0x94, 0xe3, 0xbb, 0x60, 0x8b, 0x3d, 0x9b, 0xd3, 0x23, 0x2a, 0x26, + 0x99, 0xbe, 0x9b, 0x6c, 0xa2, 0xb5, 0x12, 0xa7, 0x32, 0x3e, 0xb6, 0x77, 0xc4, 0x7c, 0x57, 0x30, + 0x8e, 0xef, 0x01, 0xd3, 0x55, 0xd6, 0xed, 0xba, 0x7e, 0x17, 0x5f, 0x85, 0x13, 0x59, 0xd4, 0x61, + 0x43, 0xca, 0x47, 0xf8, 0x5e, 0x38, 0x74, 0x99, 0x9e, 0x0e, 0xba, 0xb8, 0x00, 0xf7, 0x62, 0x6c, + 0xf2, 0x90, 0x05, 0x02, 0xdf, 0x07, 0x51, 0x9d, 0xad, 0x51, 0x7c, 0x3f, 0xd0, 0xc2, 0x66, 0xa1, + 0xed, 0x3f, 0x00, 0xb4, 0x2a, 0xeb, 0xba, 0xce, 0xa4, 0x64, 0xae, 0x41, 0xc9, 0xcc, 0xf4, 0x25, + 0x2a, 0xf0, 0xff, 0x14, 0xbf, 0x45, 0xd0, 0xb6, 0x2e, 0x56, 0xc3, 0x71, 0x68, 0x10, 0x4c, 0xde, + 0xa0, 0x1c, 0xca, 0x1c, 0xfb, 0x41, 0x9f, 0x3a, 0xee, 0x99, 0x4b, 0x3b, 0x78, 0x81, 0xe4, 0xd1, + 0xc6, 0xec, 0xe6, 0x6d, 0xd8, 0xc4, 0xc7, 0x1d, 0xb2, 0x8d, 0xc8, 0x54, 0xe1, 0xb4, 0x4b, 0x9c, + 0x42, 0xfd, 0x7c, 0x3f, 0x36, 0x2f, 0x38, 0xee, 0x77, 0x40, 0xf0, 0x83, 0x18, 0xd9, 0x40, 0xb9, + 0x69, 0xc1, 0x01, 0x15, 0xf8, 0x87, 0x17, 0xe8, 0x65, 0xea, 0x51, 0x41, 0xf1, 0x8f, 0x62, 0x64, + 0x13, 0xe1, 0x69, 0x41, 0xd3, 0xed, 0xfa, 0xf8, 0xb9, 0x18, 0xd9, 0x42, 0x6b, 0xd3, 0xb0, 0x45, + 0x7d, 0x7a, 0x07, 0x3f, 0x2f, 0xad, 0xeb, 0xa2, 0xd4, 0xce, 0x7c, 0x31, 0x3e, 0x83, 0x2a, 0x4f, + 0x9e, 0x9c, 0x45, 0x2d, 0x3a, 0x64, 0xb7, 0x29, 0xfe, 0xd2, 0x1c, 0xca, 0xa0, 0x2f, 0xe2, 0x2f, + 0xc7, 0xc9, 0x3d, 0x68, 0x47, 0xa3, 0x11, 0xe7, 0xfd, 0x48, 0xe2, 0xf5, 0x08, 0x6a, 0xb7, 0x8f, + 0x26, 0xc8, 0xdd, 0xe8, 0x52, 0x14, 0x21, 0xf4, 0xfc, 0x63, 0x09, 0x92, 0x43, 0xe8, 0x16, 0x1d, + 0x3b, 0xfd, 0x97, 0x31, 0xa0, 0x2c, 0xfc, 0x15, 0xfa, 0x67, 0x06, 0x00, 0xd3, 0x77, 0xf8, 0xa8, + 0x2f, 0xf0, 0xdf, 0xc6, 0x48, 0x99, 0x86, 0xc8, 0xdf, 0xc7, 0xc8, 0x43, 0xdc, 0xee, 0xc3, 0xfd, + 0x7d, 0x15, 0x9a, 0xc8, 0xaa, 0x34, 0xe3, 0xdf, 0x51, 0xd8, 0x6b, 0xd0, 0x1b, 0xe1, 0x22, 0x87, + 0xc1, 0xfc, 0xc7, 0x78, 0xa7, 0x13, 0xca, 0xdd, 0xb3, 0x11, 0xfe, 0x67, 0x82, 0xec, 0xa0, 0xcd, + 0xd9, 0xee, 0xa1, 0xdd, 0xfa, 0x69, 0x32, 0x42, 0xa6, 0x3c, 0xfc, 0x59, 0x94, 0x4c, 0x25, 0xf2, + 0xe7, 0x49, 0x72, 0x05, 0x6d, 0xcf, 0xc9, 0xd4, 0xf3, 0x43, 0xf1, 0x2f, 0x92, 0xe4, 0x12, 0xda, + 0x98, 0x93, 0x36, 0x85, 0xcd, 0x05, 0x7e, 0x31, 0x49, 0xf2, 0xf3, 0xad, 0xac, 0xdd, 0x14, 0xac, + 0x8f, 0x5f, 0x8a, 0x52, 0xb2, 0x68, 0x40, 0x05, 0xfe, 0x65, 0x92, 0x5c, 0x43, 0xf7, 0x5e, 0x10, + 0xf5, 0x6d, 0x97, 0xb7, 0x0f, 0x06, 0x34, 0x10, 0x6d, 0xa3, 0x0b, 0x7d, 0xe9, 0x57, 0x51, 0x26, + 0x1a, 0xf6, 0x20, 0xa0, 0xf8, 0xe5, 0xc8, 0x7d, 0xed, 0x21, 0xc5, 0xaf, 0x40, 0x0f, 0xce, 0xaa, + 0x76, 0xa0, 0xe3, 0xf2, 0xed, 0xd4, 0x34, 0xa8, 0x02, 0xf2, 0x54, 0x0a, 0x6c, 0x68, 0x10, 0x7a, + 0xbb, 0x6e, 0x22, 0xdf, 0x49, 0x41, 0xa8, 0xc6, 0x74, 0x39, 0x41, 0x6b, 0xd9, 0x77, 0x53, 0xf2, + 0x32, 0x28, 0xd9, 0x01, 0x15, 0x5a, 0xf0, 0x74, 0x4a, 0x5e, 0x86, 0x89, 0x00, 0xfa, 0x62, 0x80, + 0x9f, 0x49, 0xc1, 0x65, 0x90, 0x9d, 0xa3, 0x2d, 0xff, 0x55, 0x8d, 0xe9, 0xd3, 0x69, 0xa0, 0x87, + 0x78, 0x53, 0xd8, 0xce, 0xed, 0x16, 0x87, 0x5e, 0xff, 0x99, 0x34, 0x9c, 0x19, 0xba, 0x4b, 0x4f, + 0x77, 0x17, 0x7d, 0x88, 0xf7, 0x2d, 0x5e, 0x14, 0xa9, 0xa3, 0x3c, 0xb6, 0x08, 0xf9, 0x1b, 0x8b, + 0xe6, 0xaa, 0xe2, 0x77, 0xd1, 0x52, 0xa5, 0xfb, 0xfb, 0x45, 0x19, 0x86, 0xa9, 0x0e, 0xaf, 0xf5, + 0x9e, 0x5b, 0xba, 0x20, 0x51, 0x3a, 0xcf, 0x2f, 0x41, 0x10, 0xa6, 0xfa, 0xae, 0x56, 0xf9, 0xca, + 0xf2, 0xbc, 0x40, 0x69, 0x7c, 0x75, 0x19, 0xc2, 0x30, 0x69, 0xcc, 0x5a, 0xe1, 0xe3, 0x68, 0x0e, + 0x57, 0xfc, 0xc7, 0x11, 0xec, 0x3d, 0xfd, 0x6a, 0x6a, 0x8d, 0x57, 0x2f, 0x4a, 0x94, 0xce, 0x6b, + 0x88, 0xac, 0xa1, 0x15, 0xf9, 0x32, 0x69, 0xf2, 0x8b, 0x99, 0x09, 0xa4, 0x58, 0x2f, 0xc1, 0x98, + 0x9a, 0xd3, 0x0f, 0xa5, 0x26, 0x3e, 0xbd, 0x32, 0x83, 0x2a, 0xee, 0x33, 0x2b, 0xe0, 0xdd, 0xe4, + 0x69, 0xd4, 0xec, 0xcf, 0xae, 0xce, 0xe1, 0x8a, 0xff, 0xb9, 0x55, 0xf0, 0x6d, 0x7a, 0x4c, 0xd0, + 0x1a, 0x1f, 0xc8, 0x5e, 0x90, 0x28, 0x9d, 0x0f, 0x66, 0x61, 0x67, 0xfd, 0x74, 0x6a, 0xfe, 0x1f, + 0x66, 0x51, 0xc5, 0xfd, 0x63, 0x16, 0xea, 0xf8, 0xc8, 0x76, 0xfa, 0x8c, 0x79, 0x9a, 0xfa, 0xe3, + 0xdc, 0x34, 0xa8, 0x98, 0x2f, 0xe4, 0x20, 0xe7, 0xf3, 0xa3, 0x84, 0x56, 0xf9, 0x1a, 0x8e, 0x94, + 0x2a, 0xdd, 0xaf, 0x63, 0xe8, 0x53, 0x50, 0xbe, 0x9a, 0xff, 0x89, 0xb5, 0x31, 0xa2, 0x38, 0x9f, + 0x5c, 0x03, 0xff, 0xf4, 0xf3, 0xa8, 0x79, 0xff, 0x9a, 0x45, 0x15, 0xf7, 0xdf, 0x52, 0x1b, 0x86, + 0x0e, 0xcd, 0x7b, 0x99, 0x8c, 0x11, 0xc5, 0x79, 0x85, 0xc0, 0x95, 0x9b, 0x1d, 0x4c, 0x34, 0xfb, + 0x7b, 0xeb, 0x11, 0x32, 0xa5, 0xf7, 0xec, 0x3a, 0x74, 0xd0, 0x70, 0x04, 0xd2, 0xfc, 0xcf, 0x6f, + 0x4c, 0x61, 0x8a, 0xf7, 0x85, 0x0d, 0x38, 0xf1, 0xfc, 0x48, 0xa2, 0x35, 0x3e, 0xb4, 0x19, 0x29, + 0x55, 0xba, 0x1f, 0xde, 0x84, 0xdc, 0x4d, 0x4f, 0x24, 0x5a, 0xef, 0x4f, 0x17, 0x25, 0x4a, 0xe7, + 0xcf, 0x52, 0x32, 0x99, 0xe0, 0x27, 0xdd, 0xf4, 0x27, 0x5b, 0x90, 0x2e, 0x35, 0xcd, 0x68, 0x43, + 0xdf, 0xd8, 0x9e, 0x06, 0x95, 0x8d, 0x6f, 0x6e, 0x93, 0xcb, 0xe3, 0x81, 0x54, 0x8f, 0x93, 0x5a, + 0xe3, 0x89, 0x7c, 0x94, 0x50, 0x69, 0x7e, 0x2a, 0x0f, 0x0f, 0x5e, 0xc4, 0x84, 0xa9, 0xb5, 0xdf, + 0x7b, 0xe9, 0xf5, 0x08, 0xca, 0xc2, 0xa3, 0x97, 0x48, 0x01, 0xdd, 0x15, 0x3d, 0x0c, 0x6b, 0x23, + 0xbf, 0xf9, 0x6f, 0x1c, 0x65, 0xe7, 0xb7, 0x97, 0xa6, 0x5e, 0x1d, 0x55, 0x70, 0xe3, 0x31, 0x64, + 0x27, 0x42, 0xa6, 0x27, 0x91, 0x1d, 0x38, 0xde, 0xdc, 0x5c, 0x34, 0x1e, 0x19, 0x2e, 0x47, 0x09, + 0xd5, 0x5b, 0xf6, 0xe4, 0xe5, 0xa2, 0x85, 0x32, 0xf2, 0x30, 0xcd, 0xf0, 0x97, 0x05, 0xf9, 0xb7, + 0x45, 0xc9, 0xa8, 0xb6, 0x9b, 0xf5, 0x63, 0xab, 0x04, 0x7f, 0xa5, 0xc0, 0xdf, 0x0e, 0xfb, 0x4d, + 0xbd, 0x8e, 0xc1, 0x44, 0x75, 0xd8, 0x6a, 0x35, 0x34, 0x20, 0x87, 0xfd, 0x52, 0xb5, 0x5e, 0x33, + 0x35, 0x92, 0x28, 0xee, 0x21, 0x7c, 0x38, 0xea, 0x53, 0x7e, 0x72, 0x40, 0x7d, 0x3d, 0x88, 0x6d, + 0x21, 0x32, 0x8f, 0x9d, 0xdc, 0xc4, 0x0b, 0x91, 0xf8, 0xff, 0xe3, 0x58, 0xf1, 0x9d, 0x28, 0x0b, + 0x59, 0x82, 0xd9, 0x77, 0x9f, 0xf1, 0x9e, 0x2d, 0xe4, 0xdf, 0xbc, 0x33, 0xc8, 0xc9, 0x61, 0xf9, + 0x61, 0xbc, 0x00, 0xe3, 0xe9, 0x05, 0x1c, 0xc7, 0x8a, 0x0f, 0xc2, 0x7b, 0xc5, 0x06, 0x9d, 0x8a, + 0xef, 0x8a, 0xb2, 0x2d, 0x6c, 0x75, 0xc0, 0x0c, 0x5a, 0xac, 0x31, 0x29, 0xc0, 0x0b, 0xf2, 0x6f, + 0xac, 0x47, 0x06, 0x9c, 0xe2, 0xd8, 0x5b, 0xdf, 0x8e, 0x96, 0x03, 0xea, 0x07, 0xae, 0x70, 0x87, + 0x94, 0xdc, 0xb5, 0x1b, 0xfe, 0x28, 0xbc, 0xab, 0x7f, 0x14, 0xde, 0xdd, 0x77, 0xa9, 0xd7, 0xa9, + 0xcb, 0xb2, 0x0d, 0xf2, 0x2f, 0xbc, 0x3f, 0x21, 0x7f, 0x51, 0x99, 0x68, 0xec, 0x3d, 0xf0, 0xee, + 0xfb, 0xba, 0xae, 0x38, 0x1f, 0x9c, 0xee, 0x3a, 0xac, 0x77, 0xa3, 0xe7, 0x3a, 0x9c, 0x05, 0xec, + 0x4c, 0xdc, 0xe8, 0x31, 0xe7, 0x06, 0xef, 0x3b, 0x37, 0xc2, 0xdf, 0x9d, 0x4f, 0xd3, 0xd2, 0xe0, + 0x1b, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xc6, 0x8c, 0xbc, 0x93, 0x16, 0x00, 0x00, } From ce4af16eba76f939af384a116856a994d1979f51 Mon Sep 17 00:00:00 2001 From: Li Ting Wong Date: Wed, 21 Feb 2024 02:25:16 +0000 Subject: [PATCH 16/25] add realizedName to CloudSubResource --- rpc/common/moc_common_common.pb.go | 263 +++++++++++++++-------------- rpc/common/moc_common_common.proto | 1 + 2 files changed, 137 insertions(+), 127 deletions(-) diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index 2de8642..cde00a9 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -1282,6 +1282,7 @@ func (m *Status) GetValidationStatus() *ValidationStatus { type CloudSubResource struct { GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + RealizedName string `protobuf:"bytes,3,opt,name=realizedName,proto3" json:"realizedName,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1326,6 +1327,13 @@ func (m *CloudSubResource) GetName() string { return "" } +func (m *CloudSubResource) GetRealizedName() string { + if m != nil { + return m.RealizedName + } + return "" +} + // in the current implementation, nodeagent objects are generally identified by their name // this field is used to identify if a POST request should be treated as a create or an update type NodeSubResource struct { @@ -1534,7 +1542,7 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ - // 2575 bytes of a gzipped FileDescriptorProto + // 2592 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x7b, 0x88, 0x64, 0x47, 0xd5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x76, 0x93, 0x6c, 0x3a, 0xc9, 0x7e, 0x4b, 0xf3, 0x65, 0xf6, 0xfb, 0x56, 0x51, 0x54, 0x54, 0xee, 0x74, 0xdf, 0x99, 0x69, @@ -1570,130 +1578,131 @@ var fileDescriptor_681f78e46755eb93 = []byte{ 0x93, 0xf1, 0xc8, 0xdc, 0x44, 0x52, 0x59, 0x22, 0xd6, 0x44, 0x48, 0xae, 0xa1, 0xc5, 0x61, 0x78, 0x84, 0x7c, 0x52, 0xf2, 0x56, 0xc2, 0xa3, 0x87, 0x98, 0xa5, 0x85, 0xe4, 0x6d, 0x28, 0xdb, 0x99, 0x29, 0xec, 0x7c, 0x4a, 0xd2, 0xc3, 0x5b, 0x31, 0x5b, 0xf3, 0xd6, 0x1c, 0x95, 0x18, 0x08, 0x0f, - 0xe7, 0x62, 0x9f, 0x4f, 0x4b, 0xf5, 0xcd, 0x88, 0x40, 0x0f, 0x02, 0xeb, 0x02, 0xbd, 0x50, 0x46, - 0xb8, 0xe4, 0xb1, 0x41, 0xa7, 0x39, 0x38, 0xb5, 0x68, 0xc0, 0x06, 0xdc, 0xa1, 0xe4, 0x0a, 0x5a, - 0xee, 0x72, 0x36, 0xe8, 0xd7, 0xec, 0x9e, 0xee, 0x22, 0x13, 0x00, 0xfa, 0x88, 0x0f, 0x82, 0xb0, - 0x5e, 0xe4, 0x77, 0xe1, 0x01, 0x94, 0xab, 0xb1, 0x0e, 0x9d, 0x36, 0xa2, 0x69, 0xb1, 0x29, 0xda, - 0x2e, 0x4a, 0x9b, 0xbe, 0x70, 0xc5, 0x88, 0xdc, 0x8f, 0x56, 0x2b, 0x41, 0xc3, 0xb3, 0x1d, 0x7a, - 0xce, 0xbc, 0x8e, 0xca, 0xee, 0x92, 0x35, 0x0b, 0x16, 0x1e, 0x44, 0x89, 0x96, 0xdd, 0x25, 0x18, - 0x25, 0x6e, 0xd3, 0x91, 0xb2, 0x04, 0x9f, 0x64, 0x03, 0xa5, 0x86, 0xb6, 0x37, 0xd0, 0x4e, 0x84, - 0x8b, 0xc2, 0xfd, 0x28, 0xd9, 0xb2, 0xbb, 0x01, 0xb9, 0x82, 0x92, 0xc2, 0xee, 0x06, 0xaa, 0xe6, - 0x96, 0x64, 0x28, 0x5a, 0x76, 0xd7, 0x92, 0x68, 0xf1, 0x3d, 0x68, 0xb9, 0xde, 0xa7, 0x5c, 0x06, - 0x81, 0x2c, 0xa2, 0xc4, 0x81, 0xd9, 0xc2, 0x0b, 0x64, 0x09, 0x25, 0x1b, 0xf5, 0x66, 0x0b, 0xc7, - 0x08, 0x42, 0xe9, 0xb2, 0x59, 0x35, 0x5b, 0x26, 0x8e, 0xc3, 0xf7, 0x71, 0xa3, 0x6c, 0xb4, 0x4c, - 0x9c, 0x80, 0xef, 0xca, 0x51, 0xa3, 0x6e, 0xb5, 0x70, 0x12, 0xbe, 0xcd, 0x87, 0xe5, 0x77, 0x8a, - 0xac, 0xa0, 0xa5, 0x13, 0xa3, 0x5a, 0x91, 0xac, 0x74, 0xf1, 0xd7, 0x71, 0x94, 0x9d, 0xed, 0x65, - 0x24, 0x83, 0x16, 0x8f, 0x6b, 0xb7, 0x6a, 0xf5, 0x87, 0x6a, 0x78, 0x01, 0xd8, 0x25, 0xcb, 0x34, - 0x5a, 0x95, 0xda, 0x01, 0x8e, 0x81, 0x48, 0xae, 0xcc, 0x32, 0x8e, 0x93, 0x35, 0xb4, 0x1a, 0x2e, - 0xda, 0xfb, 0x46, 0xa5, 0x6a, 0x96, 0x71, 0x02, 0xd8, 0xd2, 0x17, 0x60, 0x27, 0x81, 0x10, 0x7a, - 0xa6, 0x09, 0x29, 0x30, 0x10, 0x42, 0x65, 0x9c, 0x06, 0xb6, 0xf4, 0x16, 0xd8, 0x8b, 0xc0, 0x0e, - 0x7d, 0xd7, 0xec, 0x25, 0xe9, 0x89, 0x84, 0xca, 0x78, 0x99, 0x60, 0xb4, 0xd2, 0xb0, 0xea, 0x27, - 0x95, 0x66, 0xa5, 0x5e, 0x03, 0x0d, 0x44, 0x72, 0x28, 0x33, 0x46, 0xcc, 0x32, 0xce, 0x90, 0x0d, - 0x84, 0xc7, 0x80, 0xb6, 0xb2, 0x42, 0x08, 0xca, 0x96, 0xcd, 0x19, 0xd5, 0xd5, 0xd0, 0xb5, 0x69, - 0xe5, 0x2c, 0xd9, 0x42, 0x64, 0x0a, 0xd2, 0xea, 0xb9, 0x50, 0x5d, 0x9e, 0xa2, 0x61, 0xd6, 0xca, - 0xa0, 0x8e, 0xc9, 0x2a, 0x5a, 0x0e, 0x63, 0x0b, 0xcb, 0x35, 0x38, 0x48, 0xb8, 0x34, 0xcb, 0x98, - 0x80, 0xed, 0x70, 0xa5, 0x6d, 0xac, 0x17, 0xf7, 0xd1, 0xe6, 0xa1, 0xdb, 0x3d, 0x37, 0x86, 0xb6, - 0xeb, 0xd9, 0xa7, 0xae, 0xe7, 0x8a, 0x51, 0x18, 0xeb, 0x0d, 0x84, 0x55, 0xac, 0xdb, 0x87, 0x46, - 0xbb, 0xd9, 0x82, 0xa4, 0x2c, 0x40, 0xba, 0x9a, 0x2d, 0x63, 0xaf, 0x6a, 0x86, 0x21, 0xd7, 0xfb, - 0xc6, 0x8b, 0x5d, 0x94, 0x99, 0x6a, 0xaf, 0xb0, 0x6f, 0xad, 0xde, 0xd2, 0xa9, 0x4a, 0xa3, 0x78, - 0xfd, 0x56, 0xa8, 0xf1, 0x90, 0x61, 0xc9, 0x83, 0xc6, 0xc3, 0xfc, 0x55, 0x5a, 0x95, 0x92, 0x51, - 0xc5, 0x09, 0x10, 0x1d, 0x55, 0x9a, 0xcd, 0x30, 0x3d, 0x32, 0x59, 0x07, 0x96, 0x51, 0x96, 0x99, - 0x09, 0x6d, 0xed, 0xd7, 0x8f, 0x6b, 0x65, 0x9c, 0x2e, 0x3e, 0x1e, 0x43, 0xeb, 0x11, 0x5d, 0x18, - 0xfc, 0xad, 0xd5, 0xcb, 0x66, 0xfb, 0xb8, 0x66, 0x99, 0x46, 0xe9, 0x50, 0xfa, 0xb8, 0x00, 0x21, - 0x32, 0x6b, 0xad, 0x4a, 0xeb, 0x5d, 0x6d, 0x6d, 0x3d, 0x46, 0x2e, 0xa3, 0xed, 0x52, 0xb5, 0x62, - 0xd6, 0x5a, 0xed, 0xb0, 0x7e, 0x54, 0x48, 0x8f, 0x2d, 0xa8, 0x53, 0x82, 0xb2, 0xfb, 0x75, 0xeb, - 0xc8, 0x68, 0xb5, 0x2b, 0x35, 0x59, 0x8c, 0x38, 0x01, 0xf9, 0xad, 0xd4, 0xf6, 0xeb, 0xed, 0x89, - 0x83, 0x10, 0x48, 0x85, 0x1c, 0x19, 0xad, 0xd2, 0x21, 0x4e, 0x15, 0x39, 0x42, 0x25, 0xcf, 0xa5, - 0xbe, 0x68, 0x8d, 0xfa, 0x14, 0x54, 0x4a, 0xf5, 0x5a, 0xcb, 0xaa, 0x57, 0x1b, 0x55, 0xa3, 0xa6, - 0x3d, 0x79, 0xb8, 0x65, 0x5a, 0x35, 0xa3, 0x1a, 0xee, 0x8e, 0x63, 0x70, 0x55, 0xc0, 0x67, 0x1c, - 0x27, 0xcb, 0x28, 0x65, 0x94, 0x8f, 0x2a, 0x35, 0x9c, 0x80, 0x0c, 0xee, 0x19, 0x96, 0x79, 0x64, - 0xb6, 0x8c, 0x2a, 0x4e, 0x82, 0xa5, 0x6a, 0xdd, 0x28, 0xef, 0x19, 0x55, 0xa3, 0x56, 0x32, 0x2d, - 0x9c, 0x02, 0xad, 0x43, 0xb8, 0x60, 0xe9, 0xe2, 0x4d, 0x44, 0x8c, 0x81, 0x38, 0xa7, 0xbe, 0x70, - 0x1d, 0x19, 0x0e, 0xb9, 0x77, 0x16, 0xa1, 0xa6, 0x59, 0xdd, 0x6f, 0x56, 0x0e, 0xa0, 0x7c, 0xc2, - 0x8b, 0x62, 0xa8, 0x55, 0xac, 0xf8, 0x54, 0x0a, 0xad, 0xc8, 0x6b, 0xd5, 0xa1, 0x5c, 0xd2, 0x73, - 0x28, 0x63, 0xf8, 0x23, 0x0d, 0x85, 0x9e, 0x9e, 0xb8, 0x5c, 0x0c, 0x6c, 0xef, 0xc8, 0x76, 0xce, - 0x5d, 0x9f, 0xe2, 0x18, 0xd9, 0x41, 0x5b, 0xb3, 0x58, 0xd3, 0xb1, 0x3d, 0xda, 0xa4, 0x02, 0xc7, - 0xa5, 0x87, 0xcc, 0xee, 0xec, 0xd9, 0x9e, 0xed, 0x3b, 0x94, 0xe3, 0xc4, 0x94, 0x85, 0x1a, 0x15, - 0x77, 0x18, 0xbf, 0x8d, 0x93, 0x64, 0x1d, 0xe5, 0x14, 0x76, 0x68, 0xf3, 0x4e, 0xd9, 0x0d, 0x6e, - 0xe3, 0x14, 0xa8, 0x1e, 0xd8, 0x9e, 0x47, 0xf9, 0xa8, 0xd2, 0xb3, 0xbb, 0x14, 0xa7, 0xc9, 0x36, - 0x5a, 0x9f, 0xdd, 0x28, 0x14, 0x2c, 0xca, 0xfc, 0x86, 0xc6, 0x2a, 0xbe, 0xa0, 0xfc, 0xcc, 0x76, - 0x28, 0x5e, 0x02, 0xe7, 0x4b, 0x94, 0x0b, 0xf7, 0x0c, 0x02, 0x40, 0xf1, 0x32, 0xb4, 0xa1, 0x5b, - 0x74, 0x84, 0x91, 0xac, 0x54, 0xea, 0x70, 0x2a, 0x70, 0x06, 0x22, 0x70, 0x8b, 0x8e, 0x4e, 0xec, - 0x81, 0x27, 0xf0, 0x8a, 0xbc, 0x13, 0x1d, 0x2a, 0xbb, 0x27, 0x5e, 0x85, 0x68, 0x5a, 0xcc, 0xa3, - 0x38, 0x0b, 0x5e, 0xc3, 0x97, 0x11, 0x04, 0x6e, 0xd7, 0xef, 0x51, 0x5f, 0xe0, 0x1c, 0xc4, 0xf2, - 0xd6, 0xe0, 0x94, 0x72, 0x9f, 0x0a, 0x1a, 0x60, 0x2c, 0xdb, 0x8c, 0x37, 0x08, 0x04, 0xe5, 0x78, - 0x4d, 0x26, 0x99, 0xf9, 0x82, 0x33, 0xaf, 0xe1, 0xd9, 0x3e, 0xc5, 0x04, 0xd2, 0x78, 0x00, 0xed, - 0x1d, 0xaf, 0xcb, 0xdc, 0xb2, 0x0e, 0xc5, 0x1b, 0xb0, 0x5f, 0x95, 0x85, 0xf9, 0xc1, 0x9b, 0x70, - 0x8e, 0xa6, 0x60, 0xdc, 0xee, 0x52, 0xd0, 0xb5, 0x5d, 0x9f, 0x72, 0xbc, 0x05, 0xe7, 0x50, 0xe8, - 0xbe, 0xeb, 0x51, 0xbc, 0x3d, 0x45, 0x2b, 0xbb, 0x9c, 0x3a, 0x82, 0xf1, 0x11, 0xce, 0xc3, 0x8e, - 0xcd, 0xc1, 0x69, 0x38, 0xb1, 0x82, 0xb9, 0x4b, 0xe0, 0xd0, 0x89, 0xdb, 0x6f, 0x30, 0xe6, 0xe1, - 0x1d, 0x79, 0x89, 0x6c, 0x47, 0x2e, 0x2e, 0x83, 0x49, 0x53, 0x38, 0x1d, 0xed, 0xee, 0x15, 0x38, - 0x0b, 0x00, 0x4d, 0xca, 0x87, 0x94, 0xe3, 0xbb, 0x60, 0x8b, 0x3d, 0x9b, 0xd3, 0x23, 0x2a, 0x26, - 0x99, 0xbe, 0x9b, 0x6c, 0xa2, 0xb5, 0x12, 0xa7, 0x32, 0x3e, 0xb6, 0x77, 0xc4, 0x7c, 0x57, 0x30, - 0x8e, 0xef, 0x01, 0xd3, 0x55, 0xd6, 0xed, 0xba, 0x7e, 0x17, 0x5f, 0x85, 0x13, 0x59, 0xd4, 0x61, - 0x43, 0xca, 0x47, 0xf8, 0x5e, 0x38, 0x74, 0x99, 0x9e, 0x0e, 0xba, 0xb8, 0x00, 0xf7, 0x62, 0x6c, - 0xf2, 0x90, 0x05, 0x02, 0xdf, 0x07, 0x51, 0x9d, 0xad, 0x51, 0x7c, 0x3f, 0xd0, 0xc2, 0x66, 0xa1, - 0xed, 0x3f, 0x00, 0xb4, 0x2a, 0xeb, 0xba, 0xce, 0xa4, 0x64, 0xae, 0x41, 0xc9, 0xcc, 0xf4, 0x25, - 0x2a, 0xf0, 0xff, 0x14, 0xbf, 0x45, 0xd0, 0xb6, 0x2e, 0x56, 0xc3, 0x71, 0x68, 0x10, 0x4c, 0xde, - 0xa0, 0x1c, 0xca, 0x1c, 0xfb, 0x41, 0x9f, 0x3a, 0xee, 0x99, 0x4b, 0x3b, 0x78, 0x81, 0xe4, 0xd1, - 0xc6, 0xec, 0xe6, 0x6d, 0xd8, 0xc4, 0xc7, 0x1d, 0xb2, 0x8d, 0xc8, 0x54, 0xe1, 0xb4, 0x4b, 0x9c, - 0x42, 0xfd, 0x7c, 0x3f, 0x36, 0x2f, 0x38, 0xee, 0x77, 0x40, 0xf0, 0x83, 0x18, 0xd9, 0x40, 0xb9, - 0x69, 0xc1, 0x01, 0x15, 0xf8, 0x87, 0x17, 0xe8, 0x65, 0xea, 0x51, 0x41, 0xf1, 0x8f, 0x62, 0x64, - 0x13, 0xe1, 0x69, 0x41, 0xd3, 0xed, 0xfa, 0xf8, 0xb9, 0x18, 0xd9, 0x42, 0x6b, 0xd3, 0xb0, 0x45, - 0x7d, 0x7a, 0x07, 0x3f, 0x2f, 0xad, 0xeb, 0xa2, 0xd4, 0xce, 0x7c, 0x31, 0x3e, 0x83, 0x2a, 0x4f, - 0x9e, 0x9c, 0x45, 0x2d, 0x3a, 0x64, 0xb7, 0x29, 0xfe, 0xd2, 0x1c, 0xca, 0xa0, 0x2f, 0xe2, 0x2f, - 0xc7, 0xc9, 0x3d, 0x68, 0x47, 0xa3, 0x11, 0xe7, 0xfd, 0x48, 0xe2, 0xf5, 0x08, 0x6a, 0xb7, 0x8f, - 0x26, 0xc8, 0xdd, 0xe8, 0x52, 0x14, 0x21, 0xf4, 0xfc, 0x63, 0x09, 0x92, 0x43, 0xe8, 0x16, 0x1d, - 0x3b, 0xfd, 0x97, 0x31, 0xa0, 0x2c, 0xfc, 0x15, 0xfa, 0x67, 0x06, 0x00, 0xd3, 0x77, 0xf8, 0xa8, - 0x2f, 0xf0, 0xdf, 0xc6, 0x48, 0x99, 0x86, 0xc8, 0xdf, 0xc7, 0xc8, 0x43, 0xdc, 0xee, 0xc3, 0xfd, - 0x7d, 0x15, 0x9a, 0xc8, 0xaa, 0x34, 0xe3, 0xdf, 0x51, 0xd8, 0x6b, 0xd0, 0x1b, 0xe1, 0x22, 0x87, - 0xc1, 0xfc, 0xc7, 0x78, 0xa7, 0x13, 0xca, 0xdd, 0xb3, 0x11, 0xfe, 0x67, 0x82, 0xec, 0xa0, 0xcd, - 0xd9, 0xee, 0xa1, 0xdd, 0xfa, 0x69, 0x32, 0x42, 0xa6, 0x3c, 0xfc, 0x59, 0x94, 0x4c, 0x25, 0xf2, - 0xe7, 0x49, 0x72, 0x05, 0x6d, 0xcf, 0xc9, 0xd4, 0xf3, 0x43, 0xf1, 0x2f, 0x92, 0xe4, 0x12, 0xda, - 0x98, 0x93, 0x36, 0x85, 0xcd, 0x05, 0x7e, 0x31, 0x49, 0xf2, 0xf3, 0xad, 0xac, 0xdd, 0x14, 0xac, - 0x8f, 0x5f, 0x8a, 0x52, 0xb2, 0x68, 0x40, 0x05, 0xfe, 0x65, 0x92, 0x5c, 0x43, 0xf7, 0x5e, 0x10, - 0xf5, 0x6d, 0x97, 0xb7, 0x0f, 0x06, 0x34, 0x10, 0x6d, 0xa3, 0x0b, 0x7d, 0xe9, 0x57, 0x51, 0x26, - 0x1a, 0xf6, 0x20, 0xa0, 0xf8, 0xe5, 0xc8, 0x7d, 0xed, 0x21, 0xc5, 0xaf, 0x40, 0x0f, 0xce, 0xaa, - 0x76, 0xa0, 0xe3, 0xf2, 0xed, 0xd4, 0x34, 0xa8, 0x02, 0xf2, 0x54, 0x0a, 0x6c, 0x68, 0x10, 0x7a, - 0xbb, 0x6e, 0x22, 0xdf, 0x49, 0x41, 0xa8, 0xc6, 0x74, 0x39, 0x41, 0x6b, 0xd9, 0x77, 0x53, 0xf2, - 0x32, 0x28, 0xd9, 0x01, 0x15, 0x5a, 0xf0, 0x74, 0x4a, 0x5e, 0x86, 0x89, 0x00, 0xfa, 0x62, 0x80, - 0x9f, 0x49, 0xc1, 0x65, 0x90, 0x9d, 0xa3, 0x2d, 0xff, 0x55, 0x8d, 0xe9, 0xd3, 0x69, 0xa0, 0x87, - 0x78, 0x53, 0xd8, 0xce, 0xed, 0x16, 0x87, 0x5e, 0xff, 0x99, 0x34, 0x9c, 0x19, 0xba, 0x4b, 0x4f, - 0x77, 0x17, 0x7d, 0x88, 0xf7, 0x2d, 0x5e, 0x14, 0xa9, 0xa3, 0x3c, 0xb6, 0x08, 0xf9, 0x1b, 0x8b, - 0xe6, 0xaa, 0xe2, 0x77, 0xd1, 0x52, 0xa5, 0xfb, 0xfb, 0x45, 0x19, 0x86, 0xa9, 0x0e, 0xaf, 0xf5, - 0x9e, 0x5b, 0xba, 0x20, 0x51, 0x3a, 0xcf, 0x2f, 0x41, 0x10, 0xa6, 0xfa, 0xae, 0x56, 0xf9, 0xca, - 0xf2, 0xbc, 0x40, 0x69, 0x7c, 0x75, 0x19, 0xc2, 0x30, 0x69, 0xcc, 0x5a, 0xe1, 0xe3, 0x68, 0x0e, - 0x57, 0xfc, 0xc7, 0x11, 0xec, 0x3d, 0xfd, 0x6a, 0x6a, 0x8d, 0x57, 0x2f, 0x4a, 0x94, 0xce, 0x6b, - 0x88, 0xac, 0xa1, 0x15, 0xf9, 0x32, 0x69, 0xf2, 0x8b, 0x99, 0x09, 0xa4, 0x58, 0x2f, 0xc1, 0x98, - 0x9a, 0xd3, 0x0f, 0xa5, 0x26, 0x3e, 0xbd, 0x32, 0x83, 0x2a, 0xee, 0x33, 0x2b, 0xe0, 0xdd, 0xe4, - 0x69, 0xd4, 0xec, 0xcf, 0xae, 0xce, 0xe1, 0x8a, 0xff, 0xb9, 0x55, 0xf0, 0x6d, 0x7a, 0x4c, 0xd0, - 0x1a, 0x1f, 0xc8, 0x5e, 0x90, 0x28, 0x9d, 0x0f, 0x66, 0x61, 0x67, 0xfd, 0x74, 0x6a, 0xfe, 0x1f, - 0x66, 0x51, 0xc5, 0xfd, 0x63, 0x16, 0xea, 0xf8, 0xc8, 0x76, 0xfa, 0x8c, 0x79, 0x9a, 0xfa, 0xe3, - 0xdc, 0x34, 0xa8, 0x98, 0x2f, 0xe4, 0x20, 0xe7, 0xf3, 0xa3, 0x84, 0x56, 0xf9, 0x1a, 0x8e, 0x94, - 0x2a, 0xdd, 0xaf, 0x63, 0xe8, 0x53, 0x50, 0xbe, 0x9a, 0xff, 0x89, 0xb5, 0x31, 0xa2, 0x38, 0x9f, - 0x5c, 0x03, 0xff, 0xf4, 0xf3, 0xa8, 0x79, 0xff, 0x9a, 0x45, 0x15, 0xf7, 0xdf, 0x52, 0x1b, 0x86, - 0x0e, 0xcd, 0x7b, 0x99, 0x8c, 0x11, 0xc5, 0x79, 0x85, 0xc0, 0x95, 0x9b, 0x1d, 0x4c, 0x34, 0xfb, - 0x7b, 0xeb, 0x11, 0x32, 0xa5, 0xf7, 0xec, 0x3a, 0x74, 0xd0, 0x70, 0x04, 0xd2, 0xfc, 0xcf, 0x6f, - 0x4c, 0x61, 0x8a, 0xf7, 0x85, 0x0d, 0x38, 0xf1, 0xfc, 0x48, 0xa2, 0x35, 0x3e, 0xb4, 0x19, 0x29, - 0x55, 0xba, 0x1f, 0xde, 0x84, 0xdc, 0x4d, 0x4f, 0x24, 0x5a, 0xef, 0x4f, 0x17, 0x25, 0x4a, 0xe7, - 0xcf, 0x52, 0x32, 0x99, 0xe0, 0x27, 0xdd, 0xf4, 0x27, 0x5b, 0x90, 0x2e, 0x35, 0xcd, 0x68, 0x43, - 0xdf, 0xd8, 0x9e, 0x06, 0x95, 0x8d, 0x6f, 0x6e, 0x93, 0xcb, 0xe3, 0x81, 0x54, 0x8f, 0x93, 0x5a, - 0xe3, 0x89, 0x7c, 0x94, 0x50, 0x69, 0x7e, 0x2a, 0x0f, 0x0f, 0x5e, 0xc4, 0x84, 0xa9, 0xb5, 0xdf, - 0x7b, 0xe9, 0xf5, 0x08, 0xca, 0xc2, 0xa3, 0x97, 0x48, 0x01, 0xdd, 0x15, 0x3d, 0x0c, 0x6b, 0x23, - 0xbf, 0xf9, 0x6f, 0x1c, 0x65, 0xe7, 0xb7, 0x97, 0xa6, 0x5e, 0x1d, 0x55, 0x70, 0xe3, 0x31, 0x64, - 0x27, 0x42, 0xa6, 0x27, 0x91, 0x1d, 0x38, 0xde, 0xdc, 0x5c, 0x34, 0x1e, 0x19, 0x2e, 0x47, 0x09, - 0xd5, 0x5b, 0xf6, 0xe4, 0xe5, 0xa2, 0x85, 0x32, 0xf2, 0x30, 0xcd, 0xf0, 0x97, 0x05, 0xf9, 0xb7, - 0x45, 0xc9, 0xa8, 0xb6, 0x9b, 0xf5, 0x63, 0xab, 0x04, 0x7f, 0xa5, 0xc0, 0xdf, 0x0e, 0xfb, 0x4d, - 0xbd, 0x8e, 0xc1, 0x44, 0x75, 0xd8, 0x6a, 0x35, 0x34, 0x20, 0x87, 0xfd, 0x52, 0xb5, 0x5e, 0x33, - 0x35, 0x92, 0x28, 0xee, 0x21, 0x7c, 0x38, 0xea, 0x53, 0x7e, 0x72, 0x40, 0x7d, 0x3d, 0x88, 0x6d, - 0x21, 0x32, 0x8f, 0x9d, 0xdc, 0xc4, 0x0b, 0x91, 0xf8, 0xff, 0xe3, 0x58, 0xf1, 0x9d, 0x28, 0x0b, - 0x59, 0x82, 0xd9, 0x77, 0x9f, 0xf1, 0x9e, 0x2d, 0xe4, 0xdf, 0xbc, 0x33, 0xc8, 0xc9, 0x61, 0xf9, - 0x61, 0xbc, 0x00, 0xe3, 0xe9, 0x05, 0x1c, 0xc7, 0x8a, 0x0f, 0xc2, 0x7b, 0xc5, 0x06, 0x9d, 0x8a, - 0xef, 0x8a, 0xb2, 0x2d, 0x6c, 0x75, 0xc0, 0x0c, 0x5a, 0xac, 0x31, 0x29, 0xc0, 0x0b, 0xf2, 0x6f, - 0xac, 0x47, 0x06, 0x9c, 0xe2, 0xd8, 0x5b, 0xdf, 0x8e, 0x96, 0x03, 0xea, 0x07, 0xae, 0x70, 0x87, - 0x94, 0xdc, 0xb5, 0x1b, 0xfe, 0x28, 0xbc, 0xab, 0x7f, 0x14, 0xde, 0xdd, 0x77, 0xa9, 0xd7, 0xa9, - 0xcb, 0xb2, 0x0d, 0xf2, 0x2f, 0xbc, 0x3f, 0x21, 0x7f, 0x51, 0x99, 0x68, 0xec, 0x3d, 0xf0, 0xee, - 0xfb, 0xba, 0xae, 0x38, 0x1f, 0x9c, 0xee, 0x3a, 0xac, 0x77, 0xa3, 0xe7, 0x3a, 0x9c, 0x05, 0xec, - 0x4c, 0xdc, 0xe8, 0x31, 0xe7, 0x06, 0xef, 0x3b, 0x37, 0xc2, 0xdf, 0x9d, 0x4f, 0xd3, 0xd2, 0xe0, - 0x1b, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xc6, 0x8c, 0xbc, 0x93, 0x16, 0x00, 0x00, + 0xe7, 0x62, 0x9f, 0x4f, 0x4b, 0xf5, 0xcd, 0x88, 0x40, 0x0f, 0x02, 0xeb, 0x02, 0xbd, 0x70, 0x8e, + 0x70, 0xc9, 0x63, 0x83, 0x4e, 0x73, 0x70, 0x6a, 0xd1, 0x80, 0x0d, 0xb8, 0x43, 0xc9, 0x15, 0xb4, + 0xdc, 0xe5, 0x6c, 0xd0, 0xaf, 0xd9, 0x3d, 0xdd, 0x45, 0x26, 0x00, 0xf4, 0x11, 0x1f, 0x04, 0x61, + 0xbd, 0xc8, 0x6f, 0x52, 0x40, 0x2b, 0x9c, 0xda, 0x9e, 0xfb, 0x08, 0xed, 0x48, 0xa5, 0xb0, 0x54, + 0x66, 0xb0, 0xc2, 0x03, 0x28, 0x57, 0x63, 0x1d, 0x3a, 0xbd, 0x91, 0x36, 0x15, 0x9b, 0x98, 0x2a, + 0xec, 0xa2, 0xb4, 0xe9, 0x0b, 0x57, 0x8c, 0xc8, 0xfd, 0x68, 0xb5, 0x12, 0x34, 0x3c, 0xdb, 0xa1, + 0xe7, 0xcc, 0xeb, 0xa8, 0x0a, 0x58, 0xb2, 0x66, 0xc1, 0xc2, 0x83, 0x28, 0xd1, 0xb2, 0xbb, 0x04, + 0xa3, 0xc4, 0x6d, 0x3a, 0x52, 0x96, 0xe0, 0x93, 0x6c, 0xa0, 0xd4, 0xd0, 0xf6, 0x06, 0xda, 0xd1, + 0x70, 0x51, 0xb8, 0x1f, 0x25, 0x5b, 0x76, 0x37, 0x20, 0x57, 0x50, 0x52, 0xd8, 0xdd, 0x40, 0xd5, + 0xe5, 0x92, 0x0c, 0x57, 0xcb, 0xee, 0x5a, 0x12, 0x2d, 0xbe, 0x07, 0x2d, 0xd7, 0xfb, 0x94, 0xcb, + 0x40, 0x91, 0x45, 0x94, 0x38, 0x30, 0x5b, 0x78, 0x81, 0x2c, 0xa1, 0x64, 0xa3, 0xde, 0x6c, 0xe1, + 0x18, 0x41, 0x28, 0x5d, 0x36, 0xab, 0x66, 0xcb, 0xc4, 0x71, 0xf8, 0x3e, 0x6e, 0x94, 0x8d, 0x96, + 0x89, 0x13, 0xf0, 0x5d, 0x39, 0x6a, 0xd4, 0xad, 0x16, 0x4e, 0xc2, 0xb7, 0xf9, 0xb0, 0xfc, 0x4e, + 0x91, 0x15, 0xb4, 0x74, 0x62, 0x54, 0x2b, 0x92, 0x95, 0x2e, 0xfe, 0x3a, 0x8e, 0xb2, 0xb3, 0xfd, + 0x8e, 0x64, 0xd0, 0xe2, 0x71, 0xed, 0x56, 0xad, 0xfe, 0x50, 0x0d, 0x2f, 0x00, 0xbb, 0x64, 0x99, + 0x46, 0xab, 0x52, 0x3b, 0xc0, 0x31, 0x10, 0xc9, 0x95, 0x59, 0xc6, 0x71, 0xb2, 0x86, 0x56, 0xc3, + 0x45, 0x7b, 0xdf, 0xa8, 0x54, 0xcd, 0x32, 0x4e, 0x00, 0x5b, 0xfa, 0x02, 0xec, 0x24, 0x10, 0x42, + 0xcf, 0x34, 0x21, 0x05, 0x06, 0x42, 0xa8, 0x8c, 0xd3, 0xc0, 0x96, 0xde, 0x02, 0x7b, 0x11, 0xd8, + 0xa1, 0xef, 0x9a, 0xbd, 0x24, 0x3d, 0x91, 0x50, 0x19, 0x2f, 0x13, 0x8c, 0x56, 0x1a, 0x56, 0xfd, + 0xa4, 0xd2, 0xac, 0xd4, 0x6b, 0xa0, 0x81, 0x48, 0x0e, 0x65, 0xc6, 0x88, 0x59, 0xc6, 0x19, 0xb2, + 0x81, 0xf0, 0x18, 0xd0, 0x56, 0x56, 0x08, 0x41, 0xd9, 0xb2, 0x39, 0xa3, 0xba, 0x1a, 0xba, 0x36, + 0xad, 0x9c, 0x25, 0x5b, 0x88, 0x4c, 0x41, 0x5a, 0x3d, 0x17, 0xaa, 0xcb, 0x53, 0x34, 0xcc, 0x5a, + 0x19, 0xd4, 0x31, 0x59, 0x45, 0xcb, 0x61, 0x6c, 0x61, 0xb9, 0x06, 0x07, 0x09, 0x97, 0x66, 0x19, + 0x13, 0xb0, 0x1d, 0xae, 0xb4, 0x8d, 0xf5, 0xe2, 0x3e, 0xda, 0x3c, 0x74, 0xbb, 0xe7, 0xc6, 0xd0, + 0x76, 0x3d, 0xfb, 0xd4, 0xf5, 0x5c, 0x31, 0x0a, 0x63, 0xbd, 0x81, 0xb0, 0x8a, 0x75, 0xfb, 0xd0, + 0x68, 0x37, 0x5b, 0x90, 0x94, 0x05, 0x48, 0x57, 0xb3, 0x65, 0xec, 0x55, 0xcd, 0x30, 0xe4, 0x7a, + 0xdf, 0x78, 0xb1, 0x8b, 0x32, 0x53, 0x2d, 0x18, 0xf6, 0xad, 0xd5, 0x5b, 0x3a, 0x55, 0x69, 0x14, + 0xaf, 0xdf, 0x0a, 0x35, 0x1e, 0x32, 0x2c, 0x79, 0xd0, 0x78, 0x98, 0xbf, 0x4a, 0xab, 0x52, 0x32, + 0xaa, 0x38, 0x01, 0xa2, 0xa3, 0x4a, 0xb3, 0x19, 0xa6, 0x47, 0x26, 0xeb, 0xc0, 0x32, 0xca, 0x32, + 0x33, 0xa1, 0xad, 0xfd, 0xfa, 0x71, 0xad, 0x8c, 0xd3, 0xc5, 0xc7, 0x63, 0x68, 0x3d, 0xa2, 0x53, + 0x83, 0xbf, 0xb5, 0x7a, 0xd9, 0x6c, 0x1f, 0xd7, 0x2c, 0xd3, 0x28, 0x1d, 0x4a, 0x1f, 0x17, 0x20, + 0x44, 0x66, 0xad, 0x55, 0x69, 0xbd, 0xab, 0xad, 0xad, 0xc7, 0xc8, 0x65, 0xb4, 0x5d, 0xaa, 0x56, + 0xcc, 0x5a, 0xab, 0x1d, 0xd6, 0x8f, 0x0a, 0xe9, 0xb1, 0x05, 0x75, 0x4a, 0x50, 0x76, 0xbf, 0x6e, + 0x1d, 0x19, 0xad, 0x76, 0xa5, 0x26, 0x8b, 0x11, 0x27, 0x20, 0xbf, 0x95, 0xda, 0x7e, 0xbd, 0x3d, + 0x71, 0x10, 0x02, 0xa9, 0x90, 0x23, 0xa3, 0x55, 0x3a, 0xc4, 0xa9, 0x22, 0x47, 0xa8, 0xe4, 0xb9, + 0xd4, 0x17, 0xad, 0x51, 0x9f, 0x82, 0x4a, 0xa9, 0x5e, 0x6b, 0x59, 0xf5, 0x6a, 0xa3, 0x6a, 0xd4, + 0xb4, 0x27, 0x0f, 0xb7, 0x4c, 0xab, 0x66, 0x54, 0xc3, 0xdd, 0x71, 0x0c, 0xae, 0x0a, 0xf8, 0x8c, + 0xe3, 0x64, 0x19, 0xa5, 0x8c, 0xf2, 0x51, 0xa5, 0x86, 0x13, 0x90, 0xc1, 0x3d, 0xc3, 0x32, 0x8f, + 0xcc, 0x96, 0x51, 0xc5, 0x49, 0xb0, 0x54, 0xad, 0x1b, 0xe5, 0x3d, 0xa3, 0x6a, 0xd4, 0x4a, 0xa6, + 0x85, 0x53, 0xa0, 0x75, 0x08, 0x17, 0x2c, 0x5d, 0xbc, 0x89, 0x88, 0x31, 0x10, 0xe7, 0xd4, 0x17, + 0xae, 0x23, 0xc3, 0x21, 0xf7, 0xce, 0x22, 0xd4, 0x34, 0xab, 0xfb, 0xcd, 0xca, 0x01, 0x94, 0x4f, + 0x78, 0x51, 0x0c, 0xb5, 0x8a, 0x15, 0x9f, 0x4a, 0xa1, 0x15, 0x79, 0xad, 0x3a, 0x94, 0x4b, 0x7a, + 0x0e, 0x65, 0x0c, 0x7f, 0xa4, 0xa1, 0xd0, 0xd3, 0x13, 0x97, 0x8b, 0x81, 0xed, 0x1d, 0xd9, 0xce, + 0xb9, 0xeb, 0x53, 0x1c, 0x23, 0x3b, 0x68, 0x6b, 0x16, 0x6b, 0x3a, 0xb6, 0x47, 0x9b, 0x54, 0xe0, + 0xb8, 0xf4, 0x90, 0xd9, 0x9d, 0x3d, 0xdb, 0xb3, 0x7d, 0x87, 0x72, 0x9c, 0x98, 0xb2, 0x50, 0xa3, + 0xe2, 0x0e, 0xe3, 0xb7, 0x71, 0x92, 0xac, 0xa3, 0x9c, 0xc2, 0x0e, 0x6d, 0xde, 0x29, 0xbb, 0xc1, + 0x6d, 0x9c, 0x02, 0xd5, 0x03, 0xdb, 0xf3, 0x28, 0x1f, 0x55, 0x7a, 0x76, 0x97, 0xe2, 0x34, 0xd9, + 0x46, 0xeb, 0xb3, 0x1b, 0x85, 0x82, 0x45, 0x99, 0xdf, 0xd0, 0x58, 0xc5, 0x17, 0x94, 0x9f, 0xd9, + 0x0e, 0xc5, 0x4b, 0xe0, 0x7c, 0x89, 0x72, 0xe1, 0x9e, 0x41, 0x00, 0x28, 0x5e, 0x86, 0x36, 0x74, + 0x8b, 0x8e, 0x30, 0x92, 0x95, 0x4a, 0x1d, 0x4e, 0x05, 0xce, 0x40, 0x04, 0x6e, 0xd1, 0xd1, 0x89, + 0x3d, 0xf0, 0x04, 0x5e, 0x91, 0x77, 0xa2, 0x43, 0x65, 0xf7, 0xc4, 0xab, 0x10, 0x4d, 0x8b, 0x79, + 0x14, 0x67, 0xc1, 0x6b, 0xf8, 0x32, 0x82, 0xc0, 0xed, 0xfa, 0x3d, 0xea, 0x0b, 0x9c, 0x83, 0x58, + 0xde, 0x1a, 0x9c, 0x52, 0xee, 0x53, 0x41, 0x03, 0x8c, 0x65, 0x9b, 0xf1, 0x06, 0x81, 0xa0, 0x1c, + 0xaf, 0xc9, 0x24, 0x33, 0x5f, 0x70, 0xe6, 0x35, 0x3c, 0xdb, 0xa7, 0x98, 0x40, 0x1a, 0x0f, 0xe0, + 0x09, 0xc0, 0xeb, 0x32, 0xb7, 0xac, 0x43, 0xf1, 0x06, 0xec, 0x57, 0x65, 0x61, 0x7e, 0xf0, 0x26, + 0x9c, 0xa3, 0x29, 0x18, 0xb7, 0xbb, 0x14, 0x74, 0x6d, 0xd7, 0xa7, 0x1c, 0x6f, 0xc1, 0x39, 0x14, + 0xba, 0xef, 0x7a, 0x14, 0x6f, 0x4f, 0xd1, 0xca, 0x2e, 0xa7, 0x8e, 0x60, 0x7c, 0x84, 0xf3, 0xb0, + 0x63, 0x73, 0x70, 0x1a, 0x4e, 0xb5, 0x60, 0xee, 0x12, 0x38, 0x74, 0xe2, 0xf6, 0x1b, 0x8c, 0x79, + 0x78, 0x47, 0x5e, 0x22, 0xdb, 0x91, 0x8b, 0xcb, 0x60, 0xd2, 0x14, 0x4e, 0x47, 0xbb, 0x7b, 0x05, + 0xce, 0x02, 0x40, 0x93, 0xf2, 0x21, 0xe5, 0xf8, 0x2e, 0xd8, 0x62, 0xcf, 0xe6, 0xf4, 0x88, 0x8a, + 0x49, 0xa6, 0xef, 0x26, 0x9b, 0x68, 0xad, 0xc4, 0xa9, 0x8c, 0x8f, 0xed, 0x1d, 0x31, 0xdf, 0x15, + 0x8c, 0xe3, 0x7b, 0xc0, 0x74, 0x95, 0x75, 0xbb, 0xae, 0xdf, 0xc5, 0x57, 0xe1, 0x44, 0x16, 0x75, + 0xd8, 0x90, 0xf2, 0x11, 0xbe, 0x17, 0x0e, 0x5d, 0xa6, 0xa7, 0x83, 0x2e, 0x2e, 0xc0, 0xbd, 0x18, + 0x9b, 0x3c, 0x64, 0x81, 0xc0, 0xf7, 0x41, 0x54, 0x67, 0x6b, 0x14, 0xdf, 0x0f, 0xb4, 0xb0, 0x59, + 0x68, 0xfb, 0x0f, 0x00, 0xad, 0xca, 0xba, 0xae, 0x33, 0x29, 0x99, 0x6b, 0x50, 0x32, 0x33, 0x7d, + 0x89, 0x0a, 0xfc, 0x3f, 0xc5, 0x6f, 0x11, 0xb4, 0xad, 0x8b, 0xd5, 0x70, 0x1c, 0x1a, 0x04, 0x93, + 0x37, 0x28, 0x87, 0x32, 0xc7, 0x7e, 0xd0, 0xa7, 0x8e, 0x7b, 0xe6, 0xd2, 0x0e, 0x5e, 0x20, 0x79, + 0xb4, 0x31, 0xbb, 0x79, 0x1b, 0x36, 0xf1, 0x71, 0x87, 0x6c, 0x23, 0x32, 0x55, 0x38, 0xed, 0x12, + 0xa7, 0x50, 0x3f, 0xdf, 0x8f, 0xcd, 0x0b, 0x8e, 0xfb, 0x1d, 0x10, 0xfc, 0x20, 0x46, 0x36, 0x50, + 0x6e, 0x5a, 0x70, 0x40, 0x05, 0xfe, 0xe1, 0x05, 0x7a, 0x99, 0x7a, 0x54, 0x50, 0xfc, 0xa3, 0x18, + 0xd9, 0x44, 0x78, 0x5a, 0xd0, 0x74, 0xbb, 0x3e, 0x7e, 0x2e, 0x46, 0xb6, 0xd0, 0xda, 0x34, 0x6c, + 0x51, 0x9f, 0xde, 0xc1, 0xcf, 0x4b, 0xeb, 0xba, 0x28, 0xb5, 0x33, 0x5f, 0x8c, 0xcf, 0xa0, 0xca, + 0x93, 0x27, 0x67, 0x51, 0x8b, 0x0e, 0xd9, 0x6d, 0x8a, 0xbf, 0x34, 0x87, 0x32, 0xe8, 0x8b, 0xf8, + 0xcb, 0x71, 0x72, 0x0f, 0xda, 0xd1, 0x68, 0xc4, 0x79, 0x3f, 0x92, 0x78, 0x3d, 0x82, 0xda, 0xed, + 0xa3, 0x09, 0x72, 0x37, 0xba, 0x14, 0x45, 0x08, 0x3d, 0xff, 0x58, 0x82, 0xe4, 0x10, 0xba, 0x45, + 0xc7, 0x4e, 0xff, 0x65, 0x0c, 0x28, 0x0b, 0x7f, 0x85, 0xfe, 0x99, 0x01, 0xc0, 0xf4, 0x1d, 0x3e, + 0xea, 0x0b, 0xfc, 0xb7, 0x31, 0x52, 0xa6, 0x21, 0xf2, 0xf7, 0x31, 0xf2, 0x10, 0xb7, 0xfb, 0x70, + 0x7f, 0x5f, 0x85, 0x26, 0xb2, 0x2a, 0xcd, 0xf8, 0x77, 0x14, 0xf6, 0x1a, 0xf4, 0x46, 0xb8, 0xc8, + 0x61, 0x30, 0xff, 0x31, 0xde, 0xe9, 0x84, 0x72, 0xf7, 0x6c, 0x84, 0xff, 0x99, 0x20, 0x3b, 0x68, + 0x73, 0xb6, 0x7b, 0x68, 0xb7, 0x7e, 0x9a, 0x8c, 0x90, 0x29, 0x0f, 0x7f, 0x16, 0x25, 0x53, 0x89, + 0xfc, 0x79, 0x92, 0x5c, 0x41, 0xdb, 0x73, 0x32, 0xf5, 0xfc, 0x50, 0xfc, 0x8b, 0x24, 0xb9, 0x84, + 0x36, 0xe6, 0xa4, 0x4d, 0x61, 0x73, 0x81, 0x5f, 0x4c, 0x92, 0xfc, 0x7c, 0x2b, 0x6b, 0x37, 0x05, + 0xeb, 0xe3, 0x97, 0xa2, 0x94, 0x2c, 0x1a, 0x50, 0x81, 0x7f, 0x99, 0x24, 0xd7, 0xd0, 0xbd, 0x17, + 0x44, 0x7d, 0xdb, 0xe5, 0xed, 0x83, 0x01, 0x0d, 0x44, 0xdb, 0xe8, 0x42, 0x5f, 0xfa, 0x55, 0x94, + 0x89, 0x86, 0x3d, 0x08, 0x28, 0x7e, 0x39, 0x72, 0x5f, 0x7b, 0x48, 0xf1, 0x2b, 0xd0, 0x83, 0xb3, + 0xaa, 0x1d, 0xe8, 0xb8, 0x7c, 0x3b, 0x35, 0x0d, 0xaa, 0x80, 0x3c, 0x95, 0x02, 0x1b, 0x1a, 0x84, + 0xde, 0xae, 0x9b, 0xc8, 0x77, 0x52, 0x10, 0xaa, 0x31, 0x5d, 0x4e, 0xd9, 0x5a, 0xf6, 0xdd, 0x94, + 0xbc, 0x0c, 0x4a, 0x76, 0x40, 0x85, 0x16, 0x3c, 0x9d, 0x92, 0x97, 0x61, 0x22, 0x80, 0xbe, 0x18, + 0xe0, 0x67, 0x52, 0x70, 0x19, 0x64, 0xe7, 0x68, 0xcb, 0x7f, 0x55, 0x63, 0xfa, 0x74, 0x1a, 0xe8, + 0x21, 0xde, 0x14, 0xb6, 0x73, 0xbb, 0xc5, 0xa1, 0xd7, 0x7f, 0x26, 0x0d, 0x67, 0x86, 0xee, 0xd2, + 0xd3, 0xdd, 0x45, 0x1f, 0xe2, 0x7d, 0x8b, 0x17, 0x45, 0xea, 0x28, 0x8f, 0x2d, 0x42, 0xfe, 0xc6, + 0xa2, 0xb9, 0xaa, 0xf8, 0x5d, 0xb4, 0x54, 0xe9, 0xfe, 0x7e, 0x51, 0x86, 0x61, 0xaa, 0xc3, 0x6b, + 0xbd, 0xe7, 0x96, 0x2e, 0x48, 0x94, 0xce, 0xf3, 0x4b, 0x10, 0x84, 0xa9, 0xbe, 0xab, 0x55, 0xbe, + 0xb2, 0x3c, 0x2f, 0x50, 0x1a, 0x5f, 0x5d, 0x86, 0x30, 0x4c, 0x1a, 0xb3, 0x56, 0xf8, 0x38, 0x9a, + 0xc3, 0x15, 0xff, 0x71, 0x04, 0x7b, 0x4f, 0xbf, 0x9a, 0x5a, 0xe3, 0xd5, 0x8b, 0x12, 0xa5, 0xf3, + 0x1a, 0x22, 0x6b, 0x68, 0x45, 0xbe, 0x4c, 0x9a, 0xfc, 0x62, 0x66, 0x02, 0x29, 0xd6, 0x4b, 0x30, + 0xa6, 0xe6, 0xf4, 0x43, 0xa9, 0x89, 0x4f, 0xaf, 0xcc, 0xa0, 0x8a, 0xfb, 0xcc, 0x0a, 0x78, 0x37, + 0x79, 0x1a, 0x35, 0xfb, 0xb3, 0xab, 0x73, 0xb8, 0xe2, 0x7f, 0x6e, 0x15, 0x7c, 0x9b, 0x1e, 0x13, + 0xb4, 0xc6, 0x07, 0xb2, 0x17, 0x24, 0x4a, 0xe7, 0x83, 0x59, 0xd8, 0x59, 0x3f, 0x9d, 0x9a, 0xff, + 0x87, 0x59, 0x54, 0x71, 0xff, 0x98, 0x85, 0x3a, 0x3e, 0xb2, 0x9d, 0x3e, 0x63, 0x9e, 0xa6, 0xfe, + 0x38, 0x37, 0x0d, 0x2a, 0xe6, 0x0b, 0x39, 0xc8, 0xf9, 0xfc, 0x28, 0xa1, 0x55, 0xbe, 0x86, 0x23, + 0xa5, 0x4a, 0xf7, 0xeb, 0x18, 0xfa, 0x14, 0x94, 0xaf, 0xe6, 0x7f, 0x62, 0x6d, 0x8c, 0x28, 0xce, + 0x27, 0xd7, 0xc0, 0x3f, 0xfd, 0x3c, 0x6a, 0xde, 0xbf, 0x66, 0x51, 0xc5, 0xfd, 0xb7, 0xd4, 0x86, + 0xa1, 0x43, 0xf3, 0x5e, 0x26, 0x63, 0x44, 0x71, 0x5e, 0x21, 0x70, 0xe5, 0x66, 0x07, 0x13, 0xcd, + 0xfe, 0xde, 0x7a, 0x84, 0x4c, 0xe9, 0x3d, 0xbb, 0x0e, 0x1d, 0x34, 0x1c, 0x81, 0x34, 0xff, 0xf3, + 0x1b, 0x53, 0x98, 0xe2, 0x7d, 0x61, 0x03, 0x4e, 0x3c, 0x3f, 0x92, 0x68, 0x8d, 0x0f, 0x6d, 0x46, + 0x4a, 0x95, 0xee, 0x87, 0x37, 0x21, 0x77, 0xd3, 0x13, 0x89, 0xd6, 0xfb, 0xd3, 0x45, 0x89, 0xd2, + 0xf9, 0xb3, 0x94, 0x4c, 0x26, 0xf8, 0x49, 0x37, 0xfd, 0xc9, 0x16, 0xa4, 0x4b, 0x4d, 0x33, 0xda, + 0xd0, 0x37, 0xb6, 0xa7, 0x41, 0x65, 0xe3, 0x9b, 0xdb, 0xe4, 0xf2, 0x78, 0x20, 0xd5, 0xe3, 0xa4, + 0xd6, 0x78, 0x22, 0x1f, 0x25, 0x54, 0x9a, 0x9f, 0xca, 0xc3, 0x83, 0x17, 0x31, 0x61, 0x6a, 0xed, + 0xf7, 0x5e, 0x7a, 0x3d, 0x82, 0xb2, 0xf0, 0xe8, 0x25, 0x52, 0x40, 0x77, 0x45, 0x0f, 0xc3, 0xda, + 0xc8, 0x6f, 0xfe, 0x1b, 0x47, 0xd9, 0xf9, 0xed, 0xa5, 0xa9, 0x57, 0x47, 0x15, 0xdc, 0x78, 0x0c, + 0xd9, 0x89, 0x90, 0xe9, 0x49, 0x64, 0x07, 0x8e, 0x37, 0x37, 0x17, 0x8d, 0x47, 0x86, 0xcb, 0x51, + 0x42, 0xf5, 0x96, 0x3d, 0x79, 0xb9, 0x68, 0xa1, 0x8c, 0x3c, 0x4c, 0x33, 0xfc, 0x65, 0x41, 0xfe, + 0x6d, 0x51, 0x32, 0xaa, 0xed, 0x66, 0xfd, 0xd8, 0x2a, 0xc1, 0x5f, 0x29, 0xf0, 0xb7, 0xc3, 0x7e, + 0x53, 0xaf, 0x63, 0x30, 0x51, 0x1d, 0xb6, 0x5a, 0x0d, 0x0d, 0xc8, 0x61, 0xbf, 0x54, 0xad, 0xd7, + 0x4c, 0x8d, 0x24, 0x8a, 0x7b, 0x08, 0x1f, 0x8e, 0xfa, 0x94, 0x9f, 0x1c, 0x50, 0x5f, 0x0f, 0x62, + 0x5b, 0x88, 0xcc, 0x63, 0x27, 0x37, 0xf1, 0x42, 0x24, 0xfe, 0xff, 0x38, 0x56, 0x7c, 0x27, 0xca, + 0x42, 0x96, 0x60, 0xf6, 0xdd, 0x67, 0xbc, 0x67, 0x0b, 0xf9, 0x37, 0xef, 0x0c, 0x72, 0x72, 0x58, + 0x7e, 0x18, 0x2f, 0xc0, 0x78, 0x7a, 0x01, 0xc7, 0xb1, 0xe2, 0x83, 0xf0, 0x5e, 0xb1, 0x41, 0xa7, + 0xe2, 0xbb, 0xa2, 0x6c, 0x0b, 0x5b, 0x1d, 0x30, 0x83, 0x16, 0x6b, 0x4c, 0x0a, 0xf0, 0x82, 0xfc, + 0x1b, 0xeb, 0x91, 0x01, 0xa7, 0x38, 0xf6, 0xd6, 0xb7, 0xa3, 0xe5, 0x80, 0xfa, 0x81, 0x2b, 0xdc, + 0x21, 0x25, 0x77, 0xed, 0x86, 0x3f, 0x1c, 0xef, 0xea, 0x1f, 0x8e, 0x77, 0xf7, 0x5d, 0xea, 0x75, + 0xea, 0xb2, 0x6c, 0x83, 0xfc, 0x0b, 0xef, 0x4f, 0xc8, 0x5f, 0x54, 0x26, 0x1a, 0x7b, 0x0f, 0xbc, + 0xfb, 0xbe, 0xae, 0x2b, 0xce, 0x07, 0xa7, 0xbb, 0x0e, 0xeb, 0xdd, 0xe8, 0xb9, 0x0e, 0x67, 0x01, + 0x3b, 0x13, 0x37, 0x7a, 0xcc, 0xb9, 0xc1, 0xfb, 0xce, 0x8d, 0xf0, 0xb7, 0xe9, 0xd3, 0xb4, 0x34, + 0xf8, 0x86, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xa2, 0x15, 0x7f, 0xb7, 0x16, 0x00, 0x00, } diff --git a/rpc/common/moc_common_common.proto b/rpc/common/moc_common_common.proto index 3dad32f..eb8676a 100644 --- a/rpc/common/moc_common_common.proto +++ b/rpc/common/moc_common_common.proto @@ -118,6 +118,7 @@ message Status { message CloudSubResource { string groupName = 1; string name = 2; + string realizedName = 3; } // in the current implementation, nodeagent objects are generally identified by their name From 57dbbc564a14543eabc7ce6b6302a444014fc81b Mon Sep 17 00:00:00 2001 From: John Carden Date: Mon, 26 Feb 2024 20:06:01 +0000 Subject: [PATCH 17/25] eliminated CloudSubResource and NodeSubResource in favor of ad-hoc identifiers --- .../moc_cloudagent_availabilityset.proto | 8 +- .../moc_cloudagent_availabilityset.pb.go | 127 ++++-- .../moc_cloudagent_virtualmachine.pb.go | 288 +++++++----- .../moc_cloudagent_virtualmachine.proto | 8 +- rpc/common/moc_common_common.pb.go | 429 +++++++----------- rpc/common/moc_common_common.proto | 15 - .../moc_nodeagent_availabilityset.proto | 6 +- .../moc_nodeagent_availabilityset.pb.go | 126 +++-- 8 files changed, 529 insertions(+), 478 deletions(-) diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index efb0a7f..83e89b2 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -19,6 +19,12 @@ message AvailabilitySetResponse { string Error = 3; } +message VirtualMachineReference { + string groupName = 1; + string name = 2; + string realizedName = 3; +} + // avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { @@ -29,7 +35,7 @@ message AvailabilitySet { Status status = 5; Tags tags = 6; int32 platformFaultDomainCount = 7; - repeated CloudSubResource virtualMachines = 8; + repeated VirtualMachineReference virtualMachines = 8; } service AvailabilitySetAgent { diff --git a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go index 3e4ca7f..129192e 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_availabilityset.pb.go @@ -128,6 +128,61 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } +type VirtualMachineReference struct { + GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + RealizedName string `protobuf:"bytes,3,opt,name=realizedName,proto3" json:"realizedName,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VirtualMachineReference) Reset() { *m = VirtualMachineReference{} } +func (m *VirtualMachineReference) String() string { return proto.CompactTextString(m) } +func (*VirtualMachineReference) ProtoMessage() {} +func (*VirtualMachineReference) Descriptor() ([]byte, []int) { + return fileDescriptor_f2024bad12ef389f, []int{2} +} + +func (m *VirtualMachineReference) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VirtualMachineReference.Unmarshal(m, b) +} +func (m *VirtualMachineReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VirtualMachineReference.Marshal(b, m, deterministic) +} +func (m *VirtualMachineReference) XXX_Merge(src proto.Message) { + xxx_messageInfo_VirtualMachineReference.Merge(m, src) +} +func (m *VirtualMachineReference) XXX_Size() int { + return xxx_messageInfo_VirtualMachineReference.Size(m) +} +func (m *VirtualMachineReference) XXX_DiscardUnknown() { + xxx_messageInfo_VirtualMachineReference.DiscardUnknown(m) +} + +var xxx_messageInfo_VirtualMachineReference proto.InternalMessageInfo + +func (m *VirtualMachineReference) GetGroupName() string { + if m != nil { + return m.GroupName + } + return "" +} + +func (m *VirtualMachineReference) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *VirtualMachineReference) GetRealizedName() string { + if m != nil { + return m.RealizedName + } + return "" +} + // avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet struct { @@ -138,7 +193,7 @@ type AvailabilitySet struct { Status *common.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"` Tags *common.Tags `protobuf:"bytes,6,opt,name=tags,proto3" json:"tags,omitempty"` PlatformFaultDomainCount int32 `protobuf:"varint,7,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*common.CloudSubResource `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + VirtualMachines []*VirtualMachineReference `protobuf:"bytes,8,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -148,7 +203,7 @@ func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } func (*AvailabilitySet) ProtoMessage() {} func (*AvailabilitySet) Descriptor() ([]byte, []int) { - return fileDescriptor_f2024bad12ef389f, []int{2} + return fileDescriptor_f2024bad12ef389f, []int{3} } func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { @@ -218,7 +273,7 @@ func (m *AvailabilitySet) GetPlatformFaultDomainCount() int32 { return 0 } -func (m *AvailabilitySet) GetVirtualMachines() []*common.CloudSubResource { +func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachineReference { if m != nil { return m.VirtualMachines } @@ -228,6 +283,7 @@ func (m *AvailabilitySet) GetVirtualMachines() []*common.CloudSubResource { func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.cloudagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.cloudagent.compute.AvailabilitySetResponse") + proto.RegisterType((*VirtualMachineReference)(nil), "moc.cloudagent.compute.VirtualMachineReference") proto.RegisterType((*AvailabilitySet)(nil), "moc.cloudagent.compute.AvailabilitySet") } @@ -236,38 +292,39 @@ func init() { } var fileDescriptor_f2024bad12ef389f = []byte{ - // 481 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0x71, 0x9a, 0x04, 0xb2, 0x81, 0x14, 0xad, 0x4a, 0x6b, 0x45, 0x80, 0xa2, 0x80, 0x44, - 0x4e, 0xb6, 0x30, 0x9c, 0xb8, 0xa0, 0xb6, 0x80, 0xc4, 0x01, 0x90, 0x36, 0x15, 0x07, 0x2e, 0xd5, - 0x7a, 0xb3, 0x71, 0x57, 0xdd, 0xf5, 0x2c, 0xfb, 0x27, 0xa8, 0x67, 0x1e, 0x85, 0x97, 0xe8, 0xe3, - 0xa1, 0x8c, 0x03, 0xa1, 0x2e, 0x48, 0xbd, 0x70, 0x4a, 0x3c, 0xdf, 0xcf, 0xdf, 0x8c, 0xbf, 0x19, - 0xf2, 0xd4, 0x80, 0x38, 0x15, 0x1a, 0xe2, 0x82, 0x57, 0xb2, 0x0e, 0xa7, 0x7c, 0xc5, 0x95, 0xe6, - 0xa5, 0xd2, 0x2a, 0x5c, 0x78, 0x19, 0x32, 0xeb, 0x20, 0x00, 0xdd, 0x37, 0x20, 0xb2, 0x2d, 0x95, - 0x09, 0x30, 0x36, 0x06, 0x39, 0x7e, 0x5c, 0x01, 0x54, 0x5a, 0xe6, 0x48, 0x95, 0x71, 0x99, 0x7f, - 0x73, 0xdc, 0x5a, 0xe9, 0x7c, 0xf3, 0xde, 0xf8, 0x00, 0xdd, 0xc1, 0x18, 0xa8, 0x37, 0x3f, 0x8d, - 0x30, 0xfd, 0x91, 0x90, 0xfd, 0xc3, 0x3f, 0x5a, 0xcd, 0x65, 0x60, 0xf2, 0x6b, 0x94, 0x3e, 0xd0, - 0x39, 0xb9, 0xdf, 0x52, 0x7c, 0x9a, 0x4c, 0x76, 0x66, 0xc3, 0xe2, 0x59, 0xf6, 0xf7, 0x31, 0xb2, - 0xb6, 0xd3, 0x35, 0x03, 0xfa, 0x92, 0xdc, 0xfb, 0x64, 0xa5, 0xe3, 0x41, 0x41, 0x7d, 0x72, 0x61, - 0x65, 0xda, 0x99, 0x24, 0xb3, 0x51, 0x31, 0x42, 0xc7, 0xdf, 0x0a, 0xbb, 0x0a, 0x4d, 0x2f, 0x13, - 0x72, 0x70, 0x6d, 0x4a, 0x6f, 0xa1, 0xf6, 0xf2, 0xff, 0x8c, 0x59, 0x90, 0x3e, 0x93, 0x3e, 0xea, - 0x80, 0xf3, 0x0d, 0x8b, 0x71, 0xd6, 0x04, 0x9c, 0xfd, 0x0a, 0x38, 0x3b, 0x02, 0xd0, 0x9f, 0xb9, - 0x8e, 0x92, 0x6d, 0x48, 0xba, 0x47, 0x7a, 0x6f, 0x9d, 0x03, 0x97, 0xee, 0x4c, 0x92, 0xd9, 0x80, - 0x35, 0x0f, 0xd3, 0xcb, 0x0e, 0xd9, 0x6d, 0xd9, 0x53, 0x4a, 0xba, 0x35, 0x37, 0x32, 0x4d, 0x10, - 0xc4, 0xff, 0x74, 0x44, 0x3a, 0x6a, 0x81, 0xdd, 0x06, 0xac, 0xa3, 0x16, 0x74, 0x4a, 0xee, 0x6a, - 0x10, 0x18, 0xc1, 0xc7, 0x35, 0xdb, 0x98, 0x5e, 0xa9, 0xd1, 0x87, 0x64, 0x50, 0x39, 0x88, 0x16, - 0x81, 0x2e, 0x02, 0xdb, 0x02, 0x7d, 0x42, 0xfa, 0x3e, 0xf0, 0x10, 0x7d, 0xda, 0xc3, 0x6f, 0x18, - 0x62, 0x1c, 0x73, 0x2c, 0xb1, 0x8d, 0x44, 0x1f, 0x91, 0x6e, 0xe0, 0x95, 0x4f, 0xfb, 0x88, 0x0c, - 0x10, 0x39, 0xe1, 0x95, 0x67, 0x58, 0xa6, 0xaf, 0x48, 0x6a, 0x35, 0x0f, 0x4b, 0x70, 0xe6, 0x1d, - 0x8f, 0x3a, 0xbc, 0x01, 0xc3, 0x55, 0x7d, 0x0c, 0xb1, 0x0e, 0xe9, 0xed, 0x49, 0x32, 0xeb, 0xb1, - 0x7f, 0xea, 0xf4, 0x35, 0xd9, 0x5d, 0x29, 0x17, 0x22, 0xd7, 0x1f, 0xb8, 0x38, 0x53, 0xb5, 0xf4, - 0xe9, 0x1d, 0xdc, 0xcb, 0x03, 0xec, 0x72, 0xbc, 0xde, 0xcb, 0x3c, 0x96, 0x4c, 0x7a, 0x88, 0x4e, - 0x48, 0xd6, 0xa6, 0x8b, 0xef, 0x09, 0xd9, 0x6b, 0x45, 0x77, 0xb8, 0xde, 0x23, 0x3d, 0x27, 0xfd, - 0xf7, 0xf5, 0x0a, 0xce, 0x25, 0xcd, 0x6e, 0xba, 0xe2, 0xe6, 0xa6, 0xc7, 0xf9, 0x8d, 0xf9, 0xe6, - 0xba, 0xa6, 0xb7, 0x8e, 0x9e, 0x7f, 0xc9, 0x2b, 0x15, 0xce, 0x62, 0xb9, 0x66, 0x73, 0xa3, 0x84, - 0x03, 0x0f, 0xcb, 0x90, 0x1b, 0x10, 0xb9, 0xb3, 0x22, 0xdf, 0x9a, 0xe5, 0x1b, 0xb3, 0xb2, 0x8f, - 0x57, 0xf2, 0xe2, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8c, 0xb9, 0xe9, 0xbe, 0xd4, 0x03, 0x00, - 0x00, + // 508 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xcf, 0x6e, 0xd3, 0x40, + 0x10, 0xc6, 0x71, 0x9a, 0x04, 0xb2, 0x81, 0x14, 0xad, 0xaa, 0xc6, 0x8a, 0x00, 0x45, 0x06, 0x89, + 0x9c, 0x6c, 0x11, 0x38, 0x71, 0x6b, 0xf9, 0x23, 0x71, 0x00, 0x24, 0xa7, 0xaa, 0x04, 0x97, 0x6a, + 0xe3, 0x4c, 0xdc, 0x55, 0x77, 0x77, 0x96, 0xfd, 0x13, 0x54, 0xae, 0x3c, 0x0a, 0x2f, 0xc1, 0x73, + 0xf0, 0x44, 0x28, 0xeb, 0xd0, 0x24, 0x2e, 0x91, 0x7a, 0xe9, 0xc9, 0xf6, 0x7c, 0xdf, 0xfc, 0x76, + 0xfc, 0x79, 0x4c, 0x9e, 0x49, 0x2c, 0xce, 0x0a, 0x81, 0x7e, 0xc6, 0x4a, 0x50, 0xee, 0x8c, 0x2d, + 0x18, 0x17, 0x6c, 0xca, 0x05, 0x77, 0x97, 0x16, 0x5c, 0xaa, 0x0d, 0x3a, 0xa4, 0x87, 0x12, 0x8b, + 0x74, 0xed, 0x4a, 0x0b, 0x94, 0xda, 0x3b, 0x18, 0x3c, 0x29, 0x11, 0x4b, 0x01, 0x59, 0x70, 0x4d, + 0xfd, 0x3c, 0xfb, 0x6e, 0x98, 0xd6, 0x60, 0x6c, 0xd5, 0x37, 0xe8, 0x07, 0x3a, 0x4a, 0x89, 0x6a, + 0x75, 0xa9, 0x84, 0xe4, 0x57, 0x44, 0x0e, 0x8f, 0x36, 0x8e, 0x9a, 0x80, 0xcb, 0xe1, 0x9b, 0x07, + 0xeb, 0xe8, 0x84, 0x3c, 0xac, 0x29, 0x36, 0x8e, 0x86, 0x7b, 0xa3, 0xee, 0xf8, 0x79, 0xfa, 0xff, + 0x31, 0xd2, 0x3a, 0xe9, 0x1a, 0x80, 0xbe, 0x22, 0x0f, 0x3e, 0x6b, 0x30, 0xcc, 0x71, 0x54, 0x27, + 0x97, 0x1a, 0xe2, 0xc6, 0x30, 0x1a, 0xf5, 0xc6, 0xbd, 0x40, 0xbc, 0x52, 0xf2, 0x6d, 0x53, 0xf2, + 0x3b, 0x22, 0xfd, 0x6b, 0x53, 0x5a, 0x8d, 0xca, 0xc2, 0xed, 0x8c, 0x39, 0x26, 0xed, 0x1c, 0xac, + 0x17, 0x2e, 0xcc, 0xd7, 0x1d, 0x0f, 0xd2, 0x2a, 0xe0, 0xf4, 0x5f, 0xc0, 0xe9, 0x31, 0xa2, 0x38, + 0x65, 0xc2, 0x43, 0xbe, 0x72, 0xd2, 0x03, 0xd2, 0x7a, 0x67, 0x0c, 0x9a, 0x78, 0x6f, 0x18, 0x8d, + 0x3a, 0x79, 0xf5, 0x90, 0x20, 0xe9, 0x9f, 0x72, 0xe3, 0x3c, 0x13, 0x1f, 0x59, 0x71, 0xce, 0x15, + 0xe4, 0x30, 0x07, 0x03, 0xaa, 0x00, 0xfa, 0x88, 0x74, 0x4a, 0x83, 0x5e, 0x7f, 0x62, 0x12, 0xe2, + 0x28, 0x34, 0xad, 0x0b, 0x94, 0x92, 0xa6, 0x5a, 0x0a, 0x8d, 0x20, 0x84, 0x7b, 0x9a, 0x90, 0xfb, + 0x06, 0x98, 0xe0, 0x3f, 0x60, 0x16, 0x9a, 0xaa, 0x93, 0xb6, 0x6a, 0xc9, 0x9f, 0x06, 0xd9, 0xaf, + 0xbd, 0xcf, 0x15, 0x2b, 0xda, 0x60, 0xf5, 0x48, 0x83, 0xcf, 0x56, 0xf4, 0x06, 0x9f, 0x2d, 0xd9, + 0x02, 0x8b, 0x90, 0xf9, 0x26, 0x7b, 0xb3, 0xb6, 0x3d, 0x71, 0xb3, 0x3e, 0xf1, 0x53, 0xd2, 0xb6, + 0x8e, 0x39, 0x6f, 0xe3, 0x56, 0x08, 0xad, 0x1b, 0xf2, 0x9f, 0x84, 0x52, 0xbe, 0x92, 0xe8, 0x63, + 0xd2, 0x74, 0xac, 0xb4, 0x71, 0x3b, 0x58, 0x3a, 0xc1, 0x72, 0xc2, 0x4a, 0x9b, 0x87, 0x32, 0x7d, + 0x4d, 0x62, 0x2d, 0x98, 0x9b, 0xa3, 0x91, 0xef, 0x99, 0x17, 0xee, 0x2d, 0x4a, 0xc6, 0xd5, 0x1b, + 0xf4, 0xca, 0xc5, 0x77, 0x87, 0xd1, 0xa8, 0x95, 0xef, 0xd4, 0xe9, 0x17, 0xb2, 0xbf, 0xd8, 0x8a, + 0xda, 0xc6, 0xf7, 0xc2, 0x22, 0x64, 0xbb, 0x16, 0x61, 0xc7, 0x97, 0xc9, 0xeb, 0x9c, 0xf1, 0xcf, + 0x88, 0x1c, 0xd4, 0x42, 0x3d, 0x5a, 0x92, 0xe8, 0x05, 0x69, 0x7f, 0x50, 0x0b, 0xbc, 0x00, 0x9a, + 0xde, 0x74, 0xdb, 0xaa, 0xdf, 0x6b, 0x90, 0xdd, 0xd8, 0x5f, 0x2d, 0x7a, 0x72, 0xe7, 0xf8, 0xc5, + 0xd7, 0xac, 0xe4, 0xee, 0xdc, 0x4f, 0x97, 0xde, 0x4c, 0xf2, 0xc2, 0xa0, 0xc5, 0xb9, 0xcb, 0x24, + 0x16, 0x99, 0xd1, 0x45, 0xb6, 0x86, 0x65, 0x2b, 0xd8, 0xb4, 0x1d, 0x16, 0xf6, 0xe5, 0xdf, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x47, 0xd9, 0x62, 0xa3, 0x5f, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go index 27b3f82..6b67f04 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go @@ -842,6 +842,61 @@ func (m *SecurityConfiguration) GetSecurityType() common.SecurityType { return common.SecurityType_NOTCONFIGURED } +type AvailabilitySetReference struct { + GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + RealizedName string `protobuf:"bytes,3,opt,name=realizedName,proto3" json:"realizedName,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AvailabilitySetReference) Reset() { *m = AvailabilitySetReference{} } +func (m *AvailabilitySetReference) String() string { return proto.CompactTextString(m) } +func (*AvailabilitySetReference) ProtoMessage() {} +func (*AvailabilitySetReference) Descriptor() ([]byte, []int) { + return fileDescriptor_a65ab853cd24c92b, []int{15} +} + +func (m *AvailabilitySetReference) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AvailabilitySetReference.Unmarshal(m, b) +} +func (m *AvailabilitySetReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AvailabilitySetReference.Marshal(b, m, deterministic) +} +func (m *AvailabilitySetReference) XXX_Merge(src proto.Message) { + xxx_messageInfo_AvailabilitySetReference.Merge(m, src) +} +func (m *AvailabilitySetReference) XXX_Size() int { + return xxx_messageInfo_AvailabilitySetReference.Size(m) +} +func (m *AvailabilitySetReference) XXX_DiscardUnknown() { + xxx_messageInfo_AvailabilitySetReference.DiscardUnknown(m) +} + +var xxx_messageInfo_AvailabilitySetReference proto.InternalMessageInfo + +func (m *AvailabilitySetReference) GetGroupName() string { + if m != nil { + return m.GroupName + } + return "" +} + +func (m *AvailabilitySetReference) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *AvailabilitySetReference) GetRealizedName() string { + if m != nil { + return m.RealizedName + } + 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"` @@ -861,7 +916,7 @@ type VirtualMachine struct { Tags *common.Tags `protobuf:"bytes,16,opt,name=tags,proto3" json:"tags,omitempty"` GuestAgent *common.GuestAgentConfiguration `protobuf:"bytes,17,opt,name=guestAgent,proto3" json:"guestAgent,omitempty"` GuestAgentInstanceView *common.VirtualMachineAgentInstanceView `protobuf:"bytes,18,opt,name=guestAgentInstanceView,proto3" json:"guestAgentInstanceView,omitempty"` - AvailabilitySet *common.CloudSubResource `protobuf:"bytes,19,opt,name=availabilitySet,proto3" json:"availabilitySet,omitempty"` + AvailabilitySet *AvailabilitySetReference `protobuf:"bytes,19,opt,name=availabilitySet,proto3" json:"availabilitySet,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -871,7 +926,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_a65ab853cd24c92b, []int{15} + return fileDescriptor_a65ab853cd24c92b, []int{16} } func (m *VirtualMachine) XXX_Unmarshal(b []byte) error { @@ -1018,7 +1073,7 @@ func (m *VirtualMachine) GetGuestAgentInstanceView() *common.VirtualMachineAgent return nil } -func (m *VirtualMachine) GetAvailabilitySet() *common.CloudSubResource { +func (m *VirtualMachine) GetAvailabilitySet() *AvailabilitySetReference { if m != nil { return m.AvailabilitySet } @@ -1038,7 +1093,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_a65ab853cd24c92b, []int{16} + return fileDescriptor_a65ab853cd24c92b, []int{17} } func (m *VirtualMachineOperationRequest) XXX_Unmarshal(b []byte) error { @@ -1094,7 +1149,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_a65ab853cd24c92b, []int{17} + return fileDescriptor_a65ab853cd24c92b, []int{18} } func (m *VirtualMachineOperationResponse) XXX_Unmarshal(b []byte) error { @@ -1151,7 +1206,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_a65ab853cd24c92b, []int{18} + return fileDescriptor_a65ab853cd24c92b, []int{19} } func (m *VirtualMachineRunCommandRequest) XXX_Unmarshal(b []byte) error { @@ -1219,7 +1274,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_a65ab853cd24c92b, []int{19} + return fileDescriptor_a65ab853cd24c92b, []int{20} } func (m *VirtualMachineRunCommandResponse) XXX_Unmarshal(b []byte) error { @@ -1271,6 +1326,7 @@ func init() { proto.RegisterType((*HardwareConfiguration)(nil), "moc.cloudagent.compute.HardwareConfiguration") proto.RegisterType((*UefiSettings)(nil), "moc.cloudagent.compute.UefiSettings") proto.RegisterType((*SecurityConfiguration)(nil), "moc.cloudagent.compute.SecurityConfiguration") + proto.RegisterType((*AvailabilitySetReference)(nil), "moc.cloudagent.compute.AvailabilitySetReference") proto.RegisterType((*VirtualMachine)(nil), "moc.cloudagent.compute.VirtualMachine") proto.RegisterType((*VirtualMachineOperationRequest)(nil), "moc.cloudagent.compute.VirtualMachineOperationRequest") proto.RegisterType((*VirtualMachineOperationResponse)(nil), "moc.cloudagent.compute.VirtualMachineOperationResponse") @@ -1283,115 +1339,117 @@ func init() { } var fileDescriptor_a65ab853cd24c92b = []byte{ - // 1726 bytes of a gzipped FileDescriptorProto + // 1752 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0x4f, 0x6f, 0xe3, 0xc6, - 0x15, 0x8f, 0x64, 0x5b, 0xb6, 0x9e, 0xff, 0xac, 0x3d, 0x6b, 0x7b, 0x59, 0x77, 0xd7, 0x31, 0xb8, - 0x41, 0xe0, 0x6c, 0x13, 0xa9, 0x75, 0xb6, 0xdb, 0xa0, 0x48, 0xb1, 0x90, 0x2d, 0x25, 0x36, 0x62, - 0xcb, 0xea, 0x48, 0xbb, 0x0b, 0x2c, 0x0a, 0x38, 0x63, 0x72, 0x2c, 0x0f, 0x2c, 0x72, 0xd8, 0x99, - 0xa1, 0x15, 0x15, 0xbd, 0x34, 0xa7, 0xf6, 0xd4, 0x8f, 0xd0, 0x2f, 0xd1, 0xf6, 0xd6, 0x43, 0xef, - 0xfd, 0x1c, 0x3d, 0x15, 0x68, 0x3f, 0x42, 0x31, 0x43, 0x52, 0x22, 0x25, 0xd2, 0xf0, 0x02, 0xdd, - 0x43, 0x4f, 0x12, 0xdf, 0xfb, 0xfd, 0x7e, 0x7c, 0x7c, 0xf3, 0xde, 0x9b, 0x19, 0x78, 0xea, 0x71, - 0xe7, 0xc2, 0x19, 0xf0, 0xd0, 0x25, 0x7d, 0xea, 0xab, 0x8b, 0x5b, 0x26, 0x54, 0x48, 0x06, 0x1e, - 0x71, 0xae, 0x99, 0x4f, 0x6b, 0x81, 0xe0, 0x8a, 0xa3, 0x6d, 0x8f, 0x3b, 0xb5, 0x09, 0xa8, 0xe6, - 0x70, 0x2f, 0x08, 0x15, 0xdd, 0xd9, 0xed, 0x73, 0xde, 0x1f, 0xd0, 0xba, 0x41, 0x5d, 0x86, 0x57, - 0xf5, 0xa1, 0x20, 0x41, 0x40, 0x85, 0x8c, 0x78, 0x3b, 0x8f, 0x8c, 0x38, 0xf7, 0x3c, 0xee, 0xc7, - 0x3f, 0xb1, 0x63, 0x37, 0xeb, 0xd0, 0x62, 0x69, 0xbf, 0xfd, 0xa7, 0x12, 0x6c, 0xbd, 0x8e, 0x22, - 0x39, 0x8b, 0x22, 0xc1, 0xf4, 0xd7, 0x21, 0x95, 0x0a, 0x75, 0xe0, 0x41, 0xd6, 0x21, 0xad, 0xd2, - 0xde, 0xdc, 0xfe, 0xf2, 0xc1, 0xc7, 0xb5, 0xfc, 0x20, 0x6b, 0x53, 0x3a, 0xd3, 0x74, 0xf4, 0x1c, - 0x56, 0xcf, 0x03, 0x2a, 0x88, 0x62, 0xdc, 0xef, 0x8d, 0x02, 0x6a, 0x95, 0xf7, 0x4a, 0xfb, 0x6b, - 0x07, 0x6b, 0x46, 0x6f, 0xec, 0xc1, 0x59, 0x90, 0xfd, 0xe7, 0x12, 0x6c, 0x4f, 0x47, 0x28, 0x03, - 0xee, 0x4b, 0xfa, 0x1e, 0x42, 0x3c, 0x80, 0x0a, 0xa6, 0x32, 0x1c, 0x28, 0x13, 0xdb, 0xf2, 0xc1, - 0x4e, 0x2d, 0x4a, 0x7c, 0x2d, 0x49, 0x7c, 0xed, 0x90, 0xf3, 0xc1, 0x6b, 0x32, 0x08, 0x29, 0x8e, - 0x91, 0x68, 0x13, 0x16, 0x5a, 0x42, 0x70, 0x61, 0xcd, 0xed, 0x95, 0xf6, 0xab, 0x38, 0x7a, 0xb0, - 0x6b, 0xb0, 0xd2, 0xed, 0x1e, 0x77, 0xc2, 0xcb, 0x01, 0x73, 0xbe, 0xa1, 0x23, 0xb4, 0x0b, 0x8b, - 0x37, 0x74, 0xe4, 0x12, 0x45, 0xac, 0x92, 0xc6, 0x1d, 0xce, 0xff, 0xfe, 0x2f, 0x56, 0x09, 0x27, - 0x46, 0xdb, 0x86, 0xf9, 0x26, 0x93, 0x37, 0x68, 0x07, 0x96, 0x5c, 0x26, 0x6f, 0x7c, 0xe2, 0xd1, - 0x08, 0x88, 0xc7, 0xcf, 0xf6, 0x3f, 0x4b, 0xb0, 0xd9, 0x55, 0x5c, 0x90, 0x3e, 0x3d, 0xe2, 0xfe, - 0x15, 0xeb, 0x87, 0x51, 0x9e, 0xd0, 0x73, 0xa8, 0x70, 0xa9, 0x61, 0x86, 0xb2, 0x7c, 0xf0, 0xb8, - 0xe8, 0xfb, 0xf5, 0x2b, 0x70, 0x8c, 0x45, 0x3f, 0x87, 0xaa, 0x7e, 0xb5, 0xfe, 0x2f, 0xad, 0xb2, - 0x49, 0xdc, 0xdd, 0xc4, 0x09, 0x1c, 0x7d, 0x0c, 0x6b, 0xcc, 0x23, 0x7d, 0x8a, 0xe9, 0x15, 0x15, - 0xd4, 0x77, 0x68, 0xfc, 0xf5, 0x53, 0x56, 0xf4, 0x1c, 0xb6, 0x6e, 0xbd, 0x28, 0xd8, 0x23, 0xee, - 0x2b, 0xc2, 0x7c, 0x2a, 0xda, 0xfa, 0xdb, 0xe6, 0x0d, 0x3c, 0xdf, 0x69, 0x7f, 0x05, 0xeb, 0x6d, - 0xaa, 0x86, 0x5c, 0xdc, 0x9c, 0xf8, 0x8a, 0x8a, 0x2b, 0xe2, 0x50, 0x74, 0x00, 0x9b, 0xfe, 0x94, - 0xad, 0x3d, 0x49, 0x52, 0xae, 0xcf, 0xfe, 0x16, 0x36, 0x63, 0x9d, 0x6c, 0xbe, 0x8e, 0x01, 0x58, - 0x02, 0x4c, 0x6a, 0x66, 0xbf, 0xe8, 0xd3, 0xa7, 0x23, 0xc1, 0x29, 0xae, 0xfd, 0x7d, 0x09, 0x36, - 0x5e, 0x49, 0x2a, 0xb2, 0xfa, 0x7b, 0xb0, 0x14, 0x4a, 0x2a, 0x26, 0x8b, 0x18, 0xaf, 0xf6, 0xd8, - 0xaa, 0x11, 0x01, 0x91, 0x72, 0xc8, 0x85, 0x6b, 0x4a, 0x6d, 0x8c, 0x48, 0xac, 0xe8, 0x93, 0x48, - 0x43, 0xe9, 0x46, 0x99, 0x33, 0x8d, 0xb2, 0x6a, 0x22, 0xd4, 0x6f, 0xd3, 0x8d, 0x81, 0xc7, 0x6e, - 0x9d, 0x2e, 0xdc, 0xec, 0x64, 0x43, 0xd8, 0x05, 0x70, 0x99, 0x24, 0x97, 0x03, 0x8a, 0x9b, 0x1d, - 0x13, 0xc4, 0x12, 0x4e, 0x59, 0x10, 0x82, 0xf9, 0x80, 0x8b, 0xa8, 0xce, 0x57, 0xb1, 0xf9, 0x6f, - 0xbf, 0x05, 0x74, 0xca, 0xfc, 0xf0, 0xbb, 0xac, 0x52, 0x13, 0x9e, 0xc4, 0xbc, 0x4e, 0x1c, 0x5b, - 0x23, 0x54, 0xd7, 0xd4, 0x57, 0xcc, 0x31, 0x80, 0x58, 0xfc, 0x6e, 0x90, 0xfd, 0x87, 0x32, 0x6c, - 0xbe, 0x61, 0xbe, 0xcb, 0x87, 0x32, 0x2b, 0xff, 0x02, 0xb6, 0xa9, 0xaf, 0x89, 0x8d, 0x50, 0x71, - 0x8f, 0x28, 0xe6, 0xbc, 0x0a, 0x5c, 0xa2, 0xcc, 0xba, 0x68, 0xdd, 0x02, 0xaf, 0x6e, 0x14, 0xc5, - 0x3c, 0xfa, 0x96, 0xfb, 0xd1, 0x20, 0xa9, 0xe2, 0xf1, 0x33, 0xea, 0xcd, 0x26, 0xc4, 0xe4, 0xf0, - 0x8e, 0x55, 0x9e, 0xc6, 0xe3, 0xd9, 0x94, 0x7e, 0x0d, 0xe8, 0x0d, 0xf3, 0xf1, 0x59, 0x56, 0x77, - 0xde, 0xe8, 0x3e, 0x32, 0xba, 0xb3, 0x6e, 0x9c, 0x43, 0xb1, 0xff, 0xb1, 0x00, 0x8f, 0xe3, 0x21, - 0xe7, 0xf7, 0xbb, 0x23, 0xa9, 0xa8, 0x97, 0x7d, 0x93, 0x0d, 0x2b, 0x71, 0x5c, 0x22, 0x55, 0xe3, - 0x19, 0x1b, 0x3a, 0x87, 0x55, 0xe2, 0x7a, 0xcc, 0x67, 0x52, 0x09, 0xa2, 0xb8, 0x88, 0x27, 0xd6, - 0x27, 0x45, 0x1f, 0x38, 0x53, 0xa5, 0x38, 0xcb, 0x47, 0x2f, 0x61, 0x41, 0x57, 0x94, 0xb4, 0xe6, - 0x4c, 0x3f, 0xbc, 0x83, 0x50, 0xc4, 0x43, 0x1f, 0x01, 0x38, 0xa1, 0x54, 0xdc, 0x6b, 0xea, 0x29, - 0x37, 0x9f, 0xaa, 0xea, 0x94, 0x1d, 0x35, 0x01, 0x02, 0x33, 0x15, 0x6f, 0xe8, 0x48, 0x5a, 0x0b, - 0xe6, 0x5d, 0x1f, 0x15, 0xbd, 0x2b, 0x3d, 0x42, 0x71, 0x8a, 0x87, 0x7e, 0xac, 0x27, 0x9e, 0xe9, - 0x8d, 0x8a, 0xe9, 0x0d, 0x2b, 0xbd, 0x89, 0x24, 0x49, 0x35, 0x6d, 0x12, 0xe3, 0xd0, 0x2f, 0x61, - 0x83, 0xcb, 0x43, 0xce, 0x95, 0xfe, 0xde, 0xa0, 0xe5, 0xf7, 0x99, 0x4f, 0xad, 0x45, 0x43, 0x7e, - 0x9a, 0x47, 0x9e, 0x82, 0xe2, 0x59, 0x36, 0x7a, 0x0b, 0x68, 0x30, 0xd3, 0x2f, 0xd6, 0x92, 0x59, - 0x87, 0x67, 0x45, 0x9f, 0x34, 0xdb, 0x61, 0x38, 0x47, 0x05, 0x7d, 0x0b, 0x9b, 0xc3, 0x9c, 0x76, - 0xb1, 0xaa, 0x46, 0xfd, 0xd3, 0x22, 0xf5, 0xbc, 0x16, 0xc3, 0xb9, 0x4a, 0xba, 0x9c, 0x03, 0xc1, - 0xbf, 0x1b, 0x65, 0xf5, 0x21, 0x55, 0xce, 0x9d, 0x19, 0x37, 0xce, 0xa1, 0xd8, 0xff, 0x2a, 0xc1, - 0xd6, 0x31, 0x11, 0xee, 0x90, 0x88, 0xa9, 0x7d, 0xe9, 0x73, 0xa8, 0xbc, 0x3e, 0xeb, 0xb2, 0xdf, - 0x44, 0x15, 0xbc, 0x76, 0xf0, 0x43, 0x23, 0x9b, 0xdd, 0x74, 0xb5, 0x3b, 0x5a, 0xa8, 0x08, 0x8a, - 0x7e, 0x91, 0x94, 0x91, 0x21, 0x46, 0x55, 0xfd, 0x24, 0x87, 0x78, 0x34, 0x06, 0xe1, 0x14, 0x01, - 0x5d, 0xc0, 0x8e, 0x3b, 0xf2, 0x89, 0xc7, 0x9c, 0x33, 0xea, 0x71, 0x31, 0xca, 0x9b, 0x02, 0x1f, - 0x1a, 0xb9, 0x66, 0x21, 0x0c, 0xdf, 0x21, 0x61, 0x7f, 0x09, 0x2b, 0xaf, 0xe8, 0x15, 0xeb, 0x52, - 0xa5, 0x8b, 0x45, 0xa2, 0x4f, 0x61, 0x43, 0x52, 0x27, 0x14, 0x54, 0x97, 0x47, 0xcb, 0x0c, 0x2b, - 0x37, 0x9e, 0x5d, 0xb3, 0x0e, 0xfb, 0xaf, 0x25, 0xd8, 0xea, 0x6a, 0x2b, 0x53, 0x59, 0x5d, 0xf4, - 0x18, 0xaa, 0xd1, 0xa8, 0xeb, 0x75, 0xce, 0x62, 0xfe, 0xc4, 0x80, 0x8e, 0x61, 0x25, 0x4c, 0xbd, - 0x35, 0xce, 0x4b, 0x61, 0xe3, 0xa4, 0x23, 0xc4, 0x19, 0x26, 0xfa, 0x29, 0xac, 0xc8, 0x38, 0x80, - 0xde, 0x64, 0x73, 0xd9, 0x30, 0x4a, 0xdd, 0x94, 0x03, 0x67, 0x60, 0xf6, 0x7f, 0x16, 0x61, 0x2d, - 0xbb, 0x00, 0x7a, 0x0f, 0x49, 0x9d, 0x53, 0xcc, 0x7f, 0xb4, 0x06, 0x65, 0x16, 0x6f, 0x69, 0xb8, - 0xcc, 0x5c, 0xf4, 0x15, 0x2c, 0xca, 0xe8, 0xc8, 0x12, 0xe7, 0xbe, 0xb0, 0x74, 0xf3, 0x4e, 0x36, - 0x38, 0x21, 0xa3, 0x26, 0x94, 0xb9, 0x8c, 0x87, 0xed, 0xf3, 0x22, 0x89, 0xbb, 0x86, 0x2a, 0x2e, - 0x73, 0xa9, 0xa3, 0x89, 0x0f, 0x0a, 0xd6, 0xc2, 0xdd, 0xd1, 0xe4, 0x9d, 0x1b, 0x70, 0x42, 0xd6, - 0x9b, 0x8f, 0xcf, 0xdd, 0xe8, 0x00, 0x52, 0x89, 0x36, 0x9f, 0xe4, 0x59, 0xaf, 0x63, 0x5f, 0xf0, - 0x30, 0x30, 0xce, 0x45, 0xe3, 0x9c, 0x18, 0xd0, 0x53, 0xa8, 0x48, 0x45, 0x54, 0x28, 0xe3, 0x39, - 0xb1, 0x1c, 0xe5, 0xdd, 0x98, 0x70, 0xec, 0xd2, 0xf3, 0x7f, 0xc0, 0xa3, 0x8d, 0xd3, 0xa8, 0x54, - 0xa3, 0xf9, 0x9f, 0xb6, 0xa1, 0x2f, 0xe0, 0x51, 0xbc, 0xe3, 0x1e, 0xb3, 0xfe, 0x75, 0xe3, 0x96, - 0xb0, 0x01, 0xb9, 0x64, 0x03, 0xa6, 0x46, 0xa6, 0x87, 0x97, 0x70, 0x91, 0x1b, 0xbd, 0x80, 0xca, - 0xad, 0x99, 0x8d, 0xd6, 0xb2, 0x59, 0xfa, 0xdd, 0xc2, 0xd3, 0xf2, 0x59, 0xd4, 0x98, 0x11, 0x1a, - 0x9d, 0xc0, 0xd2, 0x75, 0xdc, 0xe6, 0xd6, 0x8a, 0x09, 0xfe, 0xb3, 0x22, 0x66, 0xee, 0x38, 0xc0, - 0x63, 0xba, 0xee, 0x19, 0x32, 0x18, 0xf0, 0x21, 0x75, 0xcf, 0x87, 0xfa, 0xd0, 0xc7, 0x5d, 0x2a, - 0xad, 0xd5, 0xbd, 0xb9, 0xfd, 0x2a, 0x9e, 0x75, 0xa0, 0x3a, 0x40, 0xc0, 0x87, 0x54, 0xe8, 0x2c, - 0x51, 0x6b, 0xcd, 0x04, 0xfd, 0x20, 0x9a, 0x50, 0x63, 0x33, 0x4e, 0x41, 0x74, 0xa4, 0x49, 0xed, - 0x5a, 0x0f, 0xee, 0x8e, 0x34, 0xb7, 0x17, 0xf1, 0x98, 0x8e, 0x9e, 0xc0, 0xbc, 0x22, 0x7d, 0x69, - 0xad, 0x1b, 0x99, 0xaa, 0x91, 0xe9, 0x91, 0xbe, 0xc4, 0xc6, 0x8c, 0xbe, 0x04, 0xe8, 0xeb, 0xeb, - 0x52, 0x43, 0x8b, 0x5a, 0x1b, 0xa9, 0xd3, 0xf7, 0xd7, 0x63, 0x73, 0x56, 0x3a, 0x85, 0x47, 0xbf, - 0x82, 0xed, 0xc9, 0xd3, 0x89, 0x2f, 0x15, 0xf1, 0x1d, 0xfa, 0x9a, 0xd1, 0xa1, 0x85, 0x52, 0xed, - 0x9d, 0xed, 0xba, 0x19, 0x2c, 0x2e, 0xd0, 0x40, 0x2f, 0xe1, 0x01, 0x49, 0xad, 0x7b, 0x97, 0x2a, - 0xeb, 0xa1, 0x91, 0xdd, 0x32, 0xb2, 0x47, 0x3a, 0x19, 0xdd, 0xf0, 0x12, 0x53, 0xc9, 0x43, 0xe1, - 0x50, 0x3c, 0x8d, 0xb6, 0xff, 0x58, 0x86, 0xdd, 0xec, 0xcb, 0x27, 0xb7, 0xb4, 0xf7, 0x76, 0x4b, - 0x7c, 0x03, 0xdb, 0xe7, 0x87, 0xdd, 0xf3, 0xd3, 0x56, 0xaf, 0x75, 0x91, 0x77, 0x5d, 0x7c, 0x9c, - 0x93, 0x93, 0x31, 0xee, 0xb0, 0x6c, 0x95, 0xf0, 0x56, 0xc2, 0xcf, 0xd0, 0xd1, 0xe1, 0xf4, 0xf5, - 0x73, 0x2e, 0xa5, 0xd7, 0x11, 0xfc, 0x96, 0xb9, 0x54, 0x34, 0x1c, 0x87, 0x4a, 0x59, 0x78, 0x19, - 0xfd, 0x5b, 0x09, 0x3e, 0x2c, 0xcc, 0xc8, 0xff, 0xc1, 0xad, 0xf4, 0xdf, 0xe5, 0xe9, 0xf8, 0x71, - 0xe8, 0x1f, 0x71, 0xcf, 0x23, 0xbe, 0x9b, 0x2c, 0x69, 0x7b, 0x7a, 0xce, 0xc7, 0x97, 0xca, 0xfb, - 0x86, 0x3f, 0xbd, 0x4b, 0x34, 0xa0, 0xd2, 0x35, 0x05, 0x96, 0x39, 0xa1, 0x16, 0x45, 0xd1, 0x75, - 0x04, 0x0b, 0x54, 0x44, 0xc0, 0x31, 0x11, 0x31, 0xf8, 0xc1, 0x04, 0x71, 0xe2, 0x07, 0xa1, 0xea, - 0x10, 0x41, 0x3c, 0xaa, 0x26, 0xc7, 0xd5, 0x1f, 0xdd, 0xa9, 0x9a, 0xe5, 0xe0, 0x62, 0x35, 0x64, - 0x43, 0x15, 0x87, 0x7e, 0x43, 0xea, 0x53, 0x6e, 0xe6, 0x0c, 0x3b, 0x31, 0xa3, 0x67, 0xb0, 0x6a, - 0x1e, 0x92, 0xab, 0x8e, 0xd9, 0x4b, 0x12, 0x5c, 0xd6, 0x65, 0xff, 0xbd, 0x04, 0x7b, 0xc5, 0x19, - 0x8f, 0x4b, 0xe6, 0x7f, 0x9d, 0xf2, 0x33, 0x58, 0xc9, 0x4c, 0x93, 0xfb, 0x24, 0x3e, 0x33, 0x52, - 0x32, 0xf4, 0x67, 0x2f, 0xf5, 0x31, 0xce, 0xf4, 0x10, 0x40, 0xa5, 0xd7, 0x6a, 0x37, 0xda, 0xbd, - 0xf5, 0x0f, 0xd0, 0x3a, 0xac, 0x9c, 0x9e, 0x37, 0x9a, 0x87, 0x8d, 0xd3, 0x46, 0xfb, 0xa8, 0x85, - 0xd7, 0x4b, 0xe8, 0x11, 0x3c, 0xec, 0xf6, 0x1a, 0x47, 0xdf, 0xb4, 0x9a, 0x47, 0xe7, 0xed, 0x1e, - 0x3e, 0x3f, 0xed, 0x9c, 0x36, 0xda, 0xad, 0xf5, 0xf2, 0xc1, 0xf7, 0x73, 0xf0, 0x30, 0x67, 0x8a, - 0x21, 0x06, 0x95, 0x13, 0xff, 0x96, 0xdf, 0x50, 0xf4, 0xd9, 0x3d, 0xbf, 0x34, 0xaa, 0xd1, 0x9d, - 0xda, 0x7d, 0xe1, 0x51, 0x82, 0xed, 0x0f, 0xd0, 0x6f, 0x61, 0x31, 0x6a, 0x55, 0x8a, 0x5e, 0xdc, - 0x8f, 0x3c, 0x3d, 0xeb, 0x76, 0x7e, 0xf6, 0xce, 0xbc, 0xf1, 0xdb, 0x7f, 0x57, 0x02, 0x98, 0xa4, - 0x1a, 0xdd, 0x53, 0x69, 0xa6, 0x37, 0x77, 0xbe, 0x78, 0x77, 0x62, 0x12, 0xc3, 0xe1, 0x4f, 0xde, - 0xd6, 0xfb, 0x4c, 0x5d, 0x87, 0x97, 0x9a, 0x54, 0xf7, 0x98, 0x23, 0xb8, 0xe4, 0x57, 0xaa, 0xee, - 0x71, 0xa7, 0x2e, 0x02, 0xa7, 0x3e, 0x51, 0xad, 0xc7, 0xaa, 0x97, 0x15, 0x33, 0x60, 0x3e, 0xff, - 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0x53, 0x5f, 0xf8, 0xbc, 0x14, 0x00, 0x00, + 0x15, 0x0f, 0x65, 0x5b, 0xb6, 0x9e, 0xff, 0xac, 0x3d, 0xb1, 0xbd, 0xac, 0xeb, 0x75, 0x0c, 0x6e, + 0x10, 0x38, 0xdb, 0x44, 0x4a, 0x9d, 0xed, 0x36, 0x28, 0x52, 0x04, 0xb2, 0xa5, 0xc4, 0x46, 0x6c, + 0x59, 0x1d, 0x69, 0x77, 0x01, 0xa3, 0xc0, 0x66, 0x4c, 0x8e, 0xe5, 0x81, 0x45, 0x0e, 0x3b, 0x33, + 0xb4, 0xa2, 0xa0, 0x97, 0xe6, 0xd4, 0xa2, 0x87, 0x7e, 0x84, 0x7e, 0x89, 0xb6, 0xb7, 0x1e, 0x7a, + 0xef, 0xe7, 0xe8, 0xa9, 0x40, 0xbf, 0x42, 0x31, 0x43, 0x4a, 0x22, 0x25, 0xd2, 0xf0, 0x02, 0xcd, + 0xa1, 0x27, 0x89, 0xef, 0xbd, 0xdf, 0x8f, 0x8f, 0x6f, 0xde, 0xfb, 0xcd, 0x0c, 0x3c, 0xf5, 0xb9, + 0xfb, 0xc6, 0xed, 0xf3, 0xc8, 0x23, 0x3d, 0x1a, 0xa8, 0x37, 0x77, 0x4c, 0xa8, 0x88, 0xf4, 0x7d, + 0xe2, 0xde, 0xb0, 0x80, 0x56, 0x43, 0xc1, 0x15, 0x47, 0xdb, 0x3e, 0x77, 0xab, 0x93, 0xa0, 0xaa, + 0xcb, 0xfd, 0x30, 0x52, 0x74, 0x67, 0xaf, 0xc7, 0x79, 0xaf, 0x4f, 0x6b, 0x26, 0xea, 0x2a, 0xba, + 0xae, 0x0d, 0x04, 0x09, 0x43, 0x2a, 0x64, 0x8c, 0xdb, 0x79, 0x6c, 0xc8, 0xb9, 0xef, 0xf3, 0x20, + 0xf9, 0x49, 0x1c, 0x7b, 0x59, 0x87, 0x26, 0x4b, 0xfb, 0x9d, 0x3f, 0x5b, 0xb0, 0xf5, 0x2a, 0xce, + 0xe4, 0x3c, 0xce, 0x04, 0xd3, 0xdf, 0x44, 0x54, 0x2a, 0xd4, 0x86, 0x47, 0x59, 0x87, 0xb4, 0xad, + 0xfd, 0xb9, 0x83, 0xe5, 0xc3, 0x0f, 0xaa, 0xf9, 0x49, 0x56, 0xa7, 0x78, 0xa6, 0xe1, 0xe8, 0x39, + 0xac, 0x5e, 0x84, 0x54, 0x10, 0xc5, 0x78, 0xd0, 0x1d, 0x86, 0xd4, 0x2e, 0xed, 0x5b, 0x07, 0x6b, + 0x87, 0x6b, 0x86, 0x6f, 0xec, 0xc1, 0xd9, 0x20, 0xe7, 0x2f, 0x16, 0x6c, 0x4f, 0x67, 0x28, 0x43, + 0x1e, 0x48, 0xfa, 0x03, 0xa4, 0x78, 0x08, 0x65, 0x4c, 0x65, 0xd4, 0x57, 0x26, 0xb7, 0xe5, 0xc3, + 0x9d, 0x6a, 0x5c, 0xf8, 0xea, 0xa8, 0xf0, 0xd5, 0x23, 0xce, 0xfb, 0xaf, 0x48, 0x3f, 0xa2, 0x38, + 0x89, 0x44, 0x9b, 0xb0, 0xd0, 0x14, 0x82, 0x0b, 0x7b, 0x6e, 0xdf, 0x3a, 0xa8, 0xe0, 0xf8, 0xc1, + 0xa9, 0xc2, 0x4a, 0xa7, 0x73, 0xd2, 0x8e, 0xae, 0xfa, 0xcc, 0xfd, 0x9a, 0x0e, 0xd1, 0x1e, 0x2c, + 0xde, 0xd2, 0xa1, 0x47, 0x14, 0xb1, 0x2d, 0x1d, 0x77, 0x34, 0xff, 0xfb, 0xbf, 0xda, 0x16, 0x1e, + 0x19, 0x1d, 0x07, 0xe6, 0x1b, 0x4c, 0xde, 0xa2, 0x1d, 0x58, 0xf2, 0x98, 0xbc, 0x0d, 0x88, 0x4f, + 0xe3, 0x40, 0x3c, 0x7e, 0x76, 0xfe, 0x65, 0xc1, 0x66, 0x47, 0x71, 0x41, 0x7a, 0xf4, 0x98, 0x07, + 0xd7, 0xac, 0x17, 0xc5, 0x75, 0x42, 0xcf, 0xa1, 0xcc, 0xa5, 0x0e, 0x33, 0x90, 0xe5, 0xc3, 0xdd, + 0xa2, 0xef, 0xd7, 0xaf, 0xc0, 0x49, 0x2c, 0xfa, 0x05, 0x54, 0xf4, 0xab, 0xf5, 0x7f, 0x69, 0x97, + 0x4c, 0xe1, 0xee, 0x07, 0x4e, 0xc2, 0xd1, 0x07, 0xb0, 0xc6, 0x7c, 0xd2, 0xa3, 0x98, 0x5e, 0x53, + 0x41, 0x03, 0x97, 0x26, 0x5f, 0x3f, 0x65, 0x45, 0xcf, 0x61, 0xeb, 0xce, 0x8f, 0x93, 0x3d, 0xe6, + 0x81, 0x22, 0x2c, 0xa0, 0xa2, 0xa5, 0xbf, 0x6d, 0xde, 0x84, 0xe7, 0x3b, 0x9d, 0x2f, 0x61, 0xbd, + 0x45, 0xd5, 0x80, 0x8b, 0xdb, 0xd3, 0x40, 0x51, 0x71, 0x4d, 0x5c, 0x8a, 0x0e, 0x61, 0x33, 0x98, + 0xb2, 0xb5, 0x26, 0x45, 0xca, 0xf5, 0x39, 0xdf, 0xc0, 0x66, 0xc2, 0x93, 0xad, 0xd7, 0x09, 0x00, + 0x1b, 0x05, 0x8e, 0x7a, 0xe6, 0xa0, 0xe8, 0xd3, 0xa7, 0x33, 0xc1, 0x29, 0xac, 0xf3, 0xbd, 0x05, + 0x1b, 0x2f, 0x25, 0x15, 0x59, 0xfe, 0x7d, 0x58, 0x8a, 0x24, 0x15, 0x93, 0x45, 0x4c, 0x56, 0x7b, + 0x6c, 0xd5, 0x11, 0x21, 0x91, 0x72, 0xc0, 0x85, 0x67, 0x5a, 0x6d, 0x1c, 0x31, 0xb2, 0xa2, 0x0f, + 0x63, 0x0e, 0xa5, 0x07, 0x65, 0xce, 0x0c, 0xca, 0xaa, 0xc9, 0x50, 0xbf, 0x4d, 0x0f, 0x06, 0x1e, + 0xbb, 0x75, 0xb9, 0x70, 0xa3, 0x9d, 0x4d, 0x61, 0x0f, 0xc0, 0x63, 0x92, 0x5c, 0xf5, 0x29, 0x6e, + 0xb4, 0x4d, 0x12, 0x4b, 0x38, 0x65, 0x41, 0x08, 0xe6, 0x43, 0x2e, 0xe2, 0x3e, 0x5f, 0xc5, 0xe6, + 0xbf, 0x73, 0x09, 0xe8, 0x8c, 0x05, 0xd1, 0xb7, 0x59, 0xa6, 0x06, 0x3c, 0x49, 0x70, 0xed, 0x24, + 0xb7, 0x7a, 0xa4, 0x6e, 0x68, 0xa0, 0x98, 0x6b, 0x02, 0x12, 0xf2, 0xfb, 0x83, 0x9c, 0x3f, 0x94, + 0x60, 0xf3, 0x35, 0x0b, 0x3c, 0x3e, 0x90, 0x59, 0xfa, 0x17, 0xb0, 0x4d, 0x03, 0x0d, 0xac, 0x47, + 0x8a, 0xfb, 0x44, 0x31, 0xf7, 0x65, 0xe8, 0x11, 0x65, 0xd6, 0x45, 0xf3, 0x16, 0x78, 0xf5, 0xa0, + 0x28, 0xe6, 0xd3, 0x4b, 0x1e, 0xc4, 0x42, 0x52, 0xc1, 0xe3, 0x67, 0xd4, 0x9d, 0x2d, 0x88, 0xa9, + 0xe1, 0x3d, 0xab, 0x3c, 0x1d, 0x8f, 0x67, 0x4b, 0xfa, 0x15, 0xa0, 0xd7, 0x2c, 0xc0, 0xe7, 0x59, + 0xde, 0x79, 0xc3, 0xfb, 0xd8, 0xf0, 0xce, 0xba, 0x71, 0x0e, 0xc4, 0xf9, 0xe7, 0x02, 0xec, 0x26, + 0x22, 0x17, 0xf4, 0x3a, 0x43, 0xa9, 0xa8, 0x9f, 0x7d, 0x93, 0x03, 0x2b, 0x49, 0x5e, 0x22, 0xd5, + 0xe3, 0x19, 0x1b, 0xba, 0x80, 0x55, 0xe2, 0xf9, 0x2c, 0x60, 0x52, 0x09, 0xa2, 0xb8, 0x48, 0x14, + 0xeb, 0xc3, 0xa2, 0x0f, 0x9c, 0xe9, 0x52, 0x9c, 0xc5, 0xa3, 0x2f, 0x60, 0x41, 0x77, 0x94, 0xb4, + 0xe7, 0xcc, 0x3c, 0xbc, 0x05, 0x51, 0x8c, 0x43, 0xef, 0x03, 0xb8, 0x91, 0x54, 0xdc, 0x6f, 0x68, + 0x95, 0x9b, 0x4f, 0x75, 0x75, 0xca, 0x8e, 0x1a, 0x00, 0xa1, 0x51, 0xc5, 0x5b, 0x3a, 0x94, 0xf6, + 0x82, 0x79, 0xd7, 0xfb, 0x45, 0xef, 0x4a, 0x4b, 0x28, 0x4e, 0xe1, 0xd0, 0x27, 0x5a, 0xf1, 0xcc, + 0x6c, 0x94, 0xcd, 0x6c, 0xd8, 0xe9, 0x4d, 0x64, 0x54, 0x54, 0x33, 0x26, 0x49, 0x1c, 0xfa, 0x15, + 0x6c, 0x70, 0x79, 0xc4, 0xb9, 0xd2, 0xdf, 0x1b, 0x36, 0x83, 0x1e, 0x0b, 0xa8, 0xbd, 0x68, 0xc0, + 0x4f, 0xf3, 0xc0, 0x53, 0xa1, 0x78, 0x16, 0x8d, 0x2e, 0x01, 0xf5, 0x67, 0xe6, 0xc5, 0x5e, 0x32, + 0xeb, 0xf0, 0xac, 0xe8, 0x93, 0x66, 0x27, 0x0c, 0xe7, 0xb0, 0xa0, 0x6f, 0x60, 0x73, 0x90, 0x33, + 0x2e, 0x76, 0xc5, 0xb0, 0x7f, 0x54, 0xc4, 0x9e, 0x37, 0x62, 0x38, 0x97, 0x49, 0xb7, 0x73, 0x28, + 0xf8, 0xb7, 0xc3, 0x2c, 0x3f, 0xa4, 0xda, 0xb9, 0x3d, 0xe3, 0xc6, 0x39, 0x10, 0xe7, 0xdf, 0x16, + 0x6c, 0x9d, 0x10, 0xe1, 0x0d, 0x88, 0x98, 0xda, 0x97, 0x3e, 0x85, 0xf2, 0xab, 0xf3, 0x0e, 0xfb, + 0x2e, 0xee, 0xe0, 0xb5, 0xc3, 0x1f, 0x1b, 0xda, 0xec, 0xa6, 0xab, 0xdd, 0xf1, 0x42, 0xc5, 0xa1, + 0xe8, 0x97, 0xa3, 0x36, 0x32, 0xc0, 0xb8, 0xab, 0x9f, 0xe4, 0x00, 0x8f, 0xc7, 0x41, 0x38, 0x05, + 0x40, 0x6f, 0x60, 0xc7, 0x1b, 0x06, 0xc4, 0x67, 0xee, 0x39, 0xf5, 0xb9, 0x18, 0xe6, 0xa9, 0xc0, + 0x7b, 0x86, 0xae, 0x51, 0x18, 0x86, 0xef, 0xa1, 0x70, 0x3e, 0x87, 0x95, 0x97, 0xf4, 0x9a, 0x75, + 0xa8, 0xd2, 0xcd, 0x22, 0xd1, 0x47, 0xb0, 0x21, 0xa9, 0x1b, 0x09, 0xaa, 0xdb, 0xa3, 0x69, 0xc4, + 0xca, 0x4b, 0xb4, 0x6b, 0xd6, 0xe1, 0xfc, 0xcd, 0x82, 0xad, 0x8e, 0xb6, 0x32, 0x95, 0xe5, 0x45, + 0xbb, 0x50, 0x89, 0xa5, 0xae, 0xdb, 0x3e, 0x4f, 0xf0, 0x13, 0x03, 0x3a, 0x81, 0x95, 0x28, 0xf5, + 0xd6, 0xa4, 0x2e, 0x85, 0x83, 0x93, 0xce, 0x10, 0x67, 0x90, 0xe8, 0x67, 0xb0, 0x22, 0x93, 0x04, + 0xba, 0x93, 0xcd, 0x65, 0xc3, 0x30, 0x75, 0x52, 0x0e, 0x9c, 0x09, 0x73, 0x42, 0xb0, 0xeb, 0x77, + 0x84, 0xf5, 0xc9, 0x15, 0xeb, 0x33, 0x35, 0xec, 0x50, 0x35, 0xd9, 0xe5, 0x77, 0xa1, 0xd2, 0x13, + 0x3c, 0x0a, 0x53, 0x62, 0x35, 0x31, 0xe8, 0xad, 0xc6, 0xec, 0x84, 0xb1, 0x4a, 0x9b, 0xff, 0x5a, + 0xe1, 0x04, 0x25, 0x7d, 0xf6, 0x1d, 0xf5, 0x0c, 0x28, 0x3e, 0x3d, 0x64, 0x6c, 0xce, 0x1f, 0x97, + 0x60, 0x2d, 0xbb, 0xe4, 0x63, 0x2a, 0x2b, 0x45, 0xb5, 0x06, 0x25, 0x96, 0x6c, 0xa2, 0xb8, 0xc4, + 0x3c, 0xf4, 0x25, 0x2c, 0xca, 0xf8, 0x90, 0x94, 0xac, 0x76, 0xe1, 0xb0, 0xe4, 0x9d, 0xa5, 0xf0, + 0x08, 0x8c, 0x1a, 0x50, 0xe2, 0x32, 0x91, 0xf7, 0xe7, 0x45, 0x14, 0xf7, 0xc9, 0x38, 0x2e, 0x71, + 0xa9, 0xb3, 0x49, 0x8e, 0x26, 0xf6, 0xc2, 0xfd, 0xd9, 0xe4, 0x9d, 0x54, 0xf0, 0x08, 0xac, 0xb7, + 0xbb, 0x80, 0x7b, 0xf1, 0x91, 0xa7, 0x1c, 0x6f, 0x77, 0xa3, 0xe7, 0x6c, 0xf9, 0x17, 0xa7, 0xcb, + 0xff, 0x14, 0xca, 0x52, 0x11, 0x15, 0xc9, 0x44, 0x99, 0x96, 0xe3, 0x95, 0x36, 0x26, 0x9c, 0xb8, + 0xf4, 0x7a, 0xf4, 0x79, 0xbc, 0x55, 0x1b, 0x96, 0x4a, 0xbc, 0x1e, 0x69, 0x1b, 0xfa, 0x0c, 0x1e, + 0x27, 0x7b, 0xfc, 0x09, 0xeb, 0xdd, 0xa4, 0x9b, 0xc1, 0xa8, 0xc6, 0x12, 0x2e, 0x72, 0xa3, 0x17, + 0x50, 0xbe, 0x33, 0x6a, 0x6c, 0x2f, 0x9b, 0x66, 0xdb, 0x2b, 0x3c, 0x9f, 0x9f, 0xc7, 0x52, 0x10, + 0x47, 0xa3, 0x53, 0x58, 0xba, 0x49, 0x84, 0xc5, 0x5e, 0x31, 0xc9, 0x7f, 0x5c, 0x84, 0xcc, 0x15, + 0x20, 0x3c, 0x86, 0xeb, 0x29, 0x25, 0xfd, 0x3e, 0x1f, 0x50, 0xef, 0x62, 0xa0, 0x8f, 0x99, 0xdc, + 0xa3, 0xd2, 0x5e, 0xdd, 0x9f, 0x3b, 0xa8, 0xe0, 0x59, 0x07, 0xaa, 0x01, 0x84, 0x7c, 0x40, 0x85, + 0xae, 0x12, 0xb5, 0xd7, 0x4c, 0xd2, 0x8f, 0x62, 0x4d, 0x1c, 0x9b, 0x71, 0x2a, 0x44, 0x67, 0x3a, + 0x9a, 0x16, 0xfb, 0xd1, 0xfd, 0x99, 0xe6, 0x4e, 0x3f, 0x1e, 0xc3, 0xd1, 0x13, 0x98, 0x57, 0xa4, + 0x27, 0xed, 0x75, 0x43, 0x53, 0x31, 0x34, 0x5d, 0xd2, 0x93, 0xd8, 0x98, 0xd1, 0xe7, 0x00, 0x3d, + 0x7d, 0x41, 0xab, 0x6b, 0x52, 0x7b, 0x23, 0x75, 0xde, 0xff, 0x6a, 0x6c, 0xce, 0x52, 0xa7, 0xe2, + 0xd1, 0xaf, 0x61, 0x7b, 0xf2, 0x74, 0x1a, 0x48, 0x45, 0x02, 0x97, 0xbe, 0x62, 0x74, 0x60, 0xa3, + 0x94, 0xa0, 0x64, 0xa7, 0x6e, 0x26, 0x16, 0x17, 0x70, 0xa0, 0x4b, 0x78, 0x44, 0xb2, 0x1a, 0x61, + 0xbf, 0x6b, 0x68, 0x3f, 0x29, 0x2a, 0x46, 0x91, 0xa4, 0xe0, 0x69, 0x22, 0xe7, 0x4f, 0x25, 0xd8, + 0xcb, 0xe6, 0x35, 0xb9, 0x32, 0xfe, 0x60, 0x57, 0xd6, 0xd7, 0xb0, 0x7d, 0x71, 0xd4, 0xb9, 0x38, + 0x6b, 0x76, 0x9b, 0x6f, 0xf2, 0xee, 0xae, 0xbb, 0x39, 0xe5, 0x1a, 0xc7, 0x1d, 0x95, 0x6c, 0x0b, + 0x6f, 0x8d, 0xf0, 0x19, 0x38, 0x3a, 0x9a, 0xbe, 0x0b, 0xcf, 0xa5, 0xf8, 0xda, 0x82, 0xdf, 0x31, + 0x8f, 0x8a, 0xba, 0xeb, 0x52, 0x29, 0x0b, 0x6f, 0xc6, 0x7f, 0xb7, 0xe0, 0xbd, 0xc2, 0x8a, 0xfc, + 0x1f, 0x5c, 0x91, 0xff, 0x53, 0x9a, 0xce, 0x1f, 0x47, 0xc1, 0x31, 0xf7, 0x7d, 0x12, 0x78, 0xa3, + 0x25, 0x6d, 0x4d, 0x6f, 0x01, 0xc9, 0x0d, 0xf7, 0xa1, 0xe9, 0x4f, 0x6f, 0x20, 0x75, 0x28, 0x77, + 0x78, 0x24, 0x5c, 0x9a, 0x39, 0x2e, 0x17, 0x65, 0xd1, 0x71, 0x05, 0x0b, 0x55, 0x0c, 0xc0, 0x09, + 0x10, 0x31, 0xf8, 0xd1, 0x24, 0xe2, 0x34, 0x08, 0x23, 0xd5, 0x26, 0x82, 0xf8, 0x54, 0x4d, 0xce, + 0xce, 0x3f, 0xb9, 0x97, 0x35, 0x8b, 0xc1, 0xc5, 0x6c, 0xc8, 0x81, 0x0a, 0x8e, 0x82, 0xba, 0xd4, + 0x47, 0xee, 0xcc, 0x81, 0x7a, 0x62, 0x46, 0xcf, 0x60, 0xd5, 0x3c, 0x8c, 0xee, 0x5d, 0x66, 0x9b, + 0x19, 0xc5, 0x65, 0x5d, 0xce, 0x3f, 0x2c, 0xd8, 0x2f, 0xae, 0x78, 0xd2, 0x32, 0xff, 0xeb, 0x92, + 0x9f, 0xc3, 0x4a, 0x46, 0x68, 0x1e, 0x52, 0xf8, 0x8c, 0xda, 0x64, 0xe0, 0xcf, 0xbe, 0xd0, 0x67, + 0x4a, 0x33, 0x43, 0x00, 0xe5, 0x6e, 0xb3, 0x55, 0x6f, 0x75, 0xd7, 0xdf, 0x41, 0xeb, 0xb0, 0x72, + 0x76, 0x51, 0x6f, 0x1c, 0xd5, 0xcf, 0xea, 0xad, 0xe3, 0x26, 0x5e, 0xb7, 0xd0, 0x63, 0x78, 0xb7, + 0xd3, 0xad, 0x1f, 0x7f, 0xdd, 0x6c, 0x1c, 0x5f, 0xb4, 0xba, 0xf8, 0xe2, 0xac, 0x7d, 0x56, 0x6f, + 0x35, 0xd7, 0x4b, 0x87, 0xdf, 0xcf, 0xc1, 0xbb, 0x39, 0x02, 0x87, 0x18, 0x94, 0x4f, 0x83, 0x3b, + 0x7e, 0x4b, 0xd1, 0xc7, 0x0f, 0xfc, 0xd2, 0xb8, 0x47, 0x77, 0xaa, 0x0f, 0x0d, 0x8f, 0x0b, 0xec, + 0xbc, 0x83, 0x7e, 0x0b, 0x8b, 0xf1, 0xa8, 0x52, 0xf4, 0xe2, 0x61, 0xe0, 0x69, 0xad, 0xdb, 0xf9, + 0xf9, 0x5b, 0xe3, 0xc6, 0x6f, 0xff, 0x9d, 0x05, 0x30, 0x29, 0x35, 0x7a, 0x20, 0xd3, 0xcc, 0x6c, + 0xee, 0x7c, 0xf6, 0xf6, 0xc0, 0x51, 0x0e, 0x47, 0x3f, 0xbd, 0xac, 0xf5, 0x98, 0xba, 0x89, 0xae, + 0x34, 0xa8, 0xe6, 0x33, 0x57, 0x70, 0xc9, 0xaf, 0x55, 0xcd, 0xe7, 0x6e, 0x4d, 0x84, 0x6e, 0x6d, + 0xc2, 0x5a, 0x4b, 0x58, 0xaf, 0xca, 0x46, 0x60, 0x3e, 0xfd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x73, 0x53, 0xeb, 0x26, 0x49, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto index 23f15e7..92c644b 100644 --- a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto +++ b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto @@ -103,6 +103,12 @@ message SecurityConfiguration { SecurityType securityType = 3; } +message AvailabilitySetReference { + string groupName = 1; + string name = 2; + string realizedName = 3; +} + message VirtualMachine { string name = 1; string id = 2; @@ -122,7 +128,7 @@ message VirtualMachine { Tags tags = 16; GuestAgentConfiguration guestAgent = 17; VirtualMachineAgentInstanceView guestAgentInstanceView = 18; - CloudSubResource availabilitySet = 19; + AvailabilitySetReference availabilitySet = 19; } message VirtualMachineOperationRequest { diff --git a/rpc/common/moc_common_common.pb.go b/rpc/common/moc_common_common.pb.go index cde00a9..58b146d 100644 --- a/rpc/common/moc_common_common.pb.go +++ b/rpc/common/moc_common_common.pb.go @@ -1276,105 +1276,6 @@ func (m *Status) GetValidationStatus() *ValidationStatus { return nil } -// in the current implementation, cloudagent objects are generally identified by their group name -// and name. These fields are used to identify if a POST request should be treated as a create or -// an update -type CloudSubResource struct { - GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` - Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - RealizedName string `protobuf:"bytes,3,opt,name=realizedName,proto3" json:"realizedName,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` -} - -func (m *CloudSubResource) Reset() { *m = CloudSubResource{} } -func (m *CloudSubResource) String() string { return proto.CompactTextString(m) } -func (*CloudSubResource) ProtoMessage() {} -func (*CloudSubResource) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{8} -} - -func (m *CloudSubResource) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_CloudSubResource.Unmarshal(m, b) -} -func (m *CloudSubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_CloudSubResource.Marshal(b, m, deterministic) -} -func (m *CloudSubResource) XXX_Merge(src proto.Message) { - xxx_messageInfo_CloudSubResource.Merge(m, src) -} -func (m *CloudSubResource) XXX_Size() int { - return xxx_messageInfo_CloudSubResource.Size(m) -} -func (m *CloudSubResource) XXX_DiscardUnknown() { - xxx_messageInfo_CloudSubResource.DiscardUnknown(m) -} - -var xxx_messageInfo_CloudSubResource proto.InternalMessageInfo - -func (m *CloudSubResource) GetGroupName() string { - if m != nil { - return m.GroupName - } - return "" -} - -func (m *CloudSubResource) GetName() string { - if m != nil { - return m.Name - } - return "" -} - -func (m *CloudSubResource) GetRealizedName() string { - if m != nil { - return m.RealizedName - } - return "" -} - -// in the current implementation, nodeagent objects are generally identified by their name -// this field is used to identify if a POST request should be treated as a create or an update -type NodeSubResource 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 (m *NodeSubResource) Reset() { *m = NodeSubResource{} } -func (m *NodeSubResource) String() string { return proto.CompactTextString(m) } -func (*NodeSubResource) ProtoMessage() {} -func (*NodeSubResource) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{9} -} - -func (m *NodeSubResource) XXX_Unmarshal(b []byte) error { - return xxx_messageInfo_NodeSubResource.Unmarshal(m, b) -} -func (m *NodeSubResource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - return xxx_messageInfo_NodeSubResource.Marshal(b, m, deterministic) -} -func (m *NodeSubResource) XXX_Merge(src proto.Message) { - xxx_messageInfo_NodeSubResource.Merge(m, src) -} -func (m *NodeSubResource) XXX_Size() int { - return xxx_messageInfo_NodeSubResource.Size(m) -} -func (m *NodeSubResource) XXX_DiscardUnknown() { - xxx_messageInfo_NodeSubResource.DiscardUnknown(m) -} - -var xxx_messageInfo_NodeSubResource proto.InternalMessageInfo - -func (m *NodeSubResource) GetName() string { - if m != nil { - return m.Name - } - return "" -} - type Entity struct { IsPlaceholder bool `protobuf:"varint,1,opt,name=IsPlaceholder,proto3" json:"IsPlaceholder,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1386,7 +1287,7 @@ func (m *Entity) Reset() { *m = Entity{} } func (m *Entity) String() string { return proto.CompactTextString(m) } func (*Entity) ProtoMessage() {} func (*Entity) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{10} + return fileDescriptor_681f78e46755eb93, []int{8} } func (m *Entity) XXX_Unmarshal(b []byte) error { @@ -1426,7 +1327,7 @@ func (m *Tag) Reset() { *m = Tag{} } func (m *Tag) String() string { return proto.CompactTextString(m) } func (*Tag) ProtoMessage() {} func (*Tag) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{11} + return fileDescriptor_681f78e46755eb93, []int{9} } func (m *Tag) XXX_Unmarshal(b []byte) error { @@ -1472,7 +1373,7 @@ func (m *Tags) Reset() { *m = Tags{} } func (m *Tags) String() string { return proto.CompactTextString(m) } func (*Tags) ProtoMessage() {} func (*Tags) Descriptor() ([]byte, []int) { - return fileDescriptor_681f78e46755eb93, []int{12} + return fileDescriptor_681f78e46755eb93, []int{10} } func (m *Tags) XXX_Unmarshal(b []byte) error { @@ -1531,8 +1432,6 @@ func init() { proto.RegisterType((*ValidationStatus)(nil), "moc.ValidationStatus") proto.RegisterType((*Version)(nil), "moc.Version") proto.RegisterType((*Status)(nil), "moc.Status") - proto.RegisterType((*CloudSubResource)(nil), "moc.CloudSubResource") - proto.RegisterType((*NodeSubResource)(nil), "moc.NodeSubResource") proto.RegisterType((*Entity)(nil), "moc.Entity") proto.RegisterType((*Tag)(nil), "moc.Tag") proto.RegisterType((*Tags)(nil), "moc.Tags") @@ -1542,167 +1441,163 @@ func init() { func init() { proto.RegisterFile("moc_common_common.proto", fileDescriptor_681f78e46755eb93) } var fileDescriptor_681f78e46755eb93 = []byte{ - // 2592 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x7b, 0x88, 0x64, 0x47, - 0xd5, 0x9f, 0x7e, 0xce, 0x4c, 0xf5, 0x4c, 0x77, 0x4d, 0xcd, 0xab, 0x77, 0x76, 0x93, 0x6c, 0x3a, - 0xc9, 0x7e, 0x4b, 0xf3, 0x65, 0xf6, 0xfb, 0x56, 0x51, 0x54, 0x54, 0xee, 0x74, 0xdf, 0x99, 0x69, - 0xb6, 0xa7, 0xbb, 0xb9, 0xdd, 0x33, 0x89, 0x22, 0x34, 0x77, 0x6e, 0xd7, 0xf4, 0x5c, 0xf6, 0xf6, - 0xad, 0xa6, 0x6e, 0x75, 0x2f, 0x9d, 0xbf, 0x0c, 0x18, 0x51, 0x50, 0x50, 0x31, 0xa0, 0x10, 0x41, - 0x41, 0x41, 0xc1, 0xf8, 0x00, 0x05, 0x15, 0xa3, 0x09, 0x18, 0xf0, 0x91, 0x80, 0x01, 0xff, 0xf0, - 0x91, 0x68, 0x82, 0x0a, 0x0a, 0x0a, 0x0a, 0x3e, 0x12, 0x1f, 0x20, 0xa7, 0x6e, 0x55, 0xbf, 0xe6, - 0xc6, 0x7f, 0x76, 0x6f, 0xfd, 0xce, 0xef, 0x9c, 0x3a, 0x75, 0xce, 0xa9, 0x53, 0x67, 0x1a, 0x6d, - 0xf7, 0x98, 0xd3, 0x76, 0x58, 0xaf, 0xc7, 0x7c, 0xf5, 0xdf, 0x6e, 0x9f, 0x33, 0xc1, 0x48, 0xa2, - 0xc7, 0x9c, 0x9d, 0xab, 0x5d, 0xc6, 0xba, 0x1e, 0xbd, 0x21, 0xa1, 0xd3, 0xc1, 0xd9, 0x8d, 0x0e, - 0x0d, 0x1c, 0xee, 0xf6, 0x05, 0xe3, 0x21, 0xad, 0x70, 0x8c, 0x52, 0x26, 0xe7, 0x8c, 0x93, 0x3c, - 0x5a, 0x3c, 0xa2, 0x41, 0x60, 0x77, 0x69, 0x3e, 0x76, 0x35, 0x76, 0x7d, 0xd9, 0xd2, 0x4b, 0x42, - 0x50, 0xb2, 0xc4, 0x3a, 0x34, 0x1f, 0xbf, 0x1a, 0xbb, 0x9e, 0xb2, 0xe4, 0x37, 0xb9, 0x1b, 0xa1, - 0x86, 0xcd, 0xed, 0x1e, 0x15, 0x94, 0x07, 0xf9, 0x84, 0x54, 0x98, 0x42, 0x0a, 0x8f, 0xc5, 0x50, - 0xae, 0xc1, 0xd9, 0xd0, 0x0d, 0x5c, 0xe6, 0x37, 0x85, 0x2d, 0x06, 0x01, 0x79, 0x33, 0x5a, 0x71, - 0x06, 0x9c, 0x53, 0x5f, 0x00, 0x10, 0x6e, 0x93, 0xbd, 0xb9, 0xbe, 0xdb, 0x63, 0xce, 0xee, 0x0c, - 0x97, 0x5a, 0x33, 0x44, 0xf2, 0x16, 0xb4, 0xda, 0xe7, 0x74, 0xe8, 0xb2, 0x41, 0x10, 0x6a, 0xc6, - 0x5f, 0x5f, 0x73, 0x96, 0x59, 0x78, 0x22, 0x86, 0xb2, 0x65, 0x76, 0xc7, 0xf7, 0x98, 0xdd, 0x51, - 0x6e, 0xec, 0x22, 0xd2, 0xe7, 0xac, 0xcb, 0x69, 0x10, 0x34, 0x28, 0x77, 0xa8, 0x2f, 0xf4, 0x99, - 0x13, 0x56, 0x84, 0x84, 0xfc, 0x1f, 0x5a, 0xef, 0x68, 0x0b, 0xee, 0x23, 0xb4, 0xe2, 0xef, 0x8d, - 0x04, 0x0d, 0xa4, 0x0f, 0x09, 0x2b, 0x4a, 0x44, 0xae, 0xa3, 0xdc, 0x99, 0xeb, 0xd1, 0x69, 0x76, - 0x42, 0xb2, 0xe7, 0xe1, 0xc2, 0x10, 0xa5, 0x0f, 0xa9, 0xed, 0x89, 0x73, 0xf2, 0xc6, 0xc8, 0xe0, - 0x60, 0x79, 0xc4, 0x90, 0x12, 0x15, 0x99, 0x37, 0x45, 0x47, 0xe6, 0xa2, 0xda, 0x5c, 0x58, 0x1e, - 0x8d, 0xa1, 0xdc, 0x89, 0xed, 0xb9, 0x1d, 0x5b, 0xe8, 0xc8, 0x91, 0xff, 0x45, 0x49, 0x07, 0xd2, - 0x1c, 0xee, 0x9c, 0x97, 0x26, 0xe6, 0x38, 0x90, 0x7a, 0x4b, 0xb2, 0xa0, 0x5c, 0x7a, 0xaa, 0x5c, - 0xe2, 0x61, 0xb9, 0xa8, 0x25, 0xb9, 0x86, 0xb2, 0x9c, 0x42, 0x29, 0x52, 0x3f, 0x54, 0x55, 0xe5, - 0x31, 0x87, 0x16, 0x2c, 0x84, 0x67, 0xcd, 0x0f, 0x02, 0xf2, 0x0e, 0x94, 0x1b, 0xce, 0x6e, 0x99, - 0x8f, 0x5d, 0x4d, 0x5c, 0xcf, 0xdc, 0xdc, 0x88, 0x72, 0xc7, 0x9a, 0x27, 0x17, 0xee, 0x45, 0x8b, - 0x27, 0x94, 0x43, 0x35, 0x90, 0x2d, 0x94, 0xf6, 0x07, 0xbd, 0x53, 0xca, 0x55, 0x39, 0xab, 0x55, - 0xe1, 0xd9, 0x38, 0x4a, 0xab, 0xdd, 0xee, 0x43, 0xe9, 0x73, 0x19, 0x23, 0x49, 0xc9, 0xdc, 0xcc, - 0x4c, 0x85, 0xcd, 0x52, 0x22, 0x52, 0x96, 0xe5, 0x12, 0x96, 0x98, 0xeb, 0x77, 0x43, 0x55, 0x79, - 0x66, 0xed, 0xd5, 0x5c, 0x9d, 0x5b, 0x11, 0x7c, 0x72, 0x1d, 0x2d, 0x7b, 0x76, 0x20, 0xe4, 0x55, - 0x93, 0xf1, 0xc8, 0xdc, 0x44, 0x52, 0x59, 0x22, 0xd6, 0x44, 0x48, 0xae, 0xa1, 0xc5, 0x61, 0x78, - 0x84, 0x7c, 0x52, 0xf2, 0x56, 0xc2, 0xa3, 0x87, 0x98, 0xa5, 0x85, 0xe4, 0x6d, 0x28, 0xdb, 0x99, - 0x29, 0xec, 0x7c, 0x4a, 0xd2, 0xc3, 0x5b, 0x31, 0x5b, 0xf3, 0xd6, 0x1c, 0x95, 0x18, 0x08, 0x0f, - 0xe7, 0x62, 0x9f, 0x4f, 0x4b, 0xf5, 0xcd, 0x88, 0x40, 0x0f, 0x02, 0xeb, 0x02, 0xbd, 0x70, 0x8e, - 0x70, 0xc9, 0x63, 0x83, 0x4e, 0x73, 0x70, 0x6a, 0xd1, 0x80, 0x0d, 0xb8, 0x43, 0xc9, 0x15, 0xb4, - 0xdc, 0xe5, 0x6c, 0xd0, 0xaf, 0xd9, 0x3d, 0xdd, 0x45, 0x26, 0x00, 0xf4, 0x11, 0x1f, 0x04, 0x61, - 0xbd, 0xc8, 0x6f, 0x52, 0x40, 0x2b, 0x9c, 0xda, 0x9e, 0xfb, 0x08, 0xed, 0x48, 0xa5, 0xb0, 0x54, - 0x66, 0xb0, 0xc2, 0x03, 0x28, 0x57, 0x63, 0x1d, 0x3a, 0xbd, 0x91, 0x36, 0x15, 0x9b, 0x98, 0x2a, - 0xec, 0xa2, 0xb4, 0xe9, 0x0b, 0x57, 0x8c, 0xc8, 0xfd, 0x68, 0xb5, 0x12, 0x34, 0x3c, 0xdb, 0xa1, - 0xe7, 0xcc, 0xeb, 0xa8, 0x0a, 0x58, 0xb2, 0x66, 0xc1, 0xc2, 0x83, 0x28, 0xd1, 0xb2, 0xbb, 0x04, - 0xa3, 0xc4, 0x6d, 0x3a, 0x52, 0x96, 0xe0, 0x93, 0x6c, 0xa0, 0xd4, 0xd0, 0xf6, 0x06, 0xda, 0xd1, - 0x70, 0x51, 0xb8, 0x1f, 0x25, 0x5b, 0x76, 0x37, 0x20, 0x57, 0x50, 0x52, 0xd8, 0xdd, 0x40, 0xd5, - 0xe5, 0x92, 0x0c, 0x57, 0xcb, 0xee, 0x5a, 0x12, 0x2d, 0xbe, 0x07, 0x2d, 0xd7, 0xfb, 0x94, 0xcb, - 0x40, 0x91, 0x45, 0x94, 0x38, 0x30, 0x5b, 0x78, 0x81, 0x2c, 0xa1, 0x64, 0xa3, 0xde, 0x6c, 0xe1, - 0x18, 0x41, 0x28, 0x5d, 0x36, 0xab, 0x66, 0xcb, 0xc4, 0x71, 0xf8, 0x3e, 0x6e, 0x94, 0x8d, 0x96, - 0x89, 0x13, 0xf0, 0x5d, 0x39, 0x6a, 0xd4, 0xad, 0x16, 0x4e, 0xc2, 0xb7, 0xf9, 0xb0, 0xfc, 0x4e, - 0x91, 0x15, 0xb4, 0x74, 0x62, 0x54, 0x2b, 0x92, 0x95, 0x2e, 0xfe, 0x3a, 0x8e, 0xb2, 0xb3, 0xfd, - 0x8e, 0x64, 0xd0, 0xe2, 0x71, 0xed, 0x56, 0xad, 0xfe, 0x50, 0x0d, 0x2f, 0x00, 0xbb, 0x64, 0x99, - 0x46, 0xab, 0x52, 0x3b, 0xc0, 0x31, 0x10, 0xc9, 0x95, 0x59, 0xc6, 0x71, 0xb2, 0x86, 0x56, 0xc3, - 0x45, 0x7b, 0xdf, 0xa8, 0x54, 0xcd, 0x32, 0x4e, 0x00, 0x5b, 0xfa, 0x02, 0xec, 0x24, 0x10, 0x42, - 0xcf, 0x34, 0x21, 0x05, 0x06, 0x42, 0xa8, 0x8c, 0xd3, 0xc0, 0x96, 0xde, 0x02, 0x7b, 0x11, 0xd8, - 0xa1, 0xef, 0x9a, 0xbd, 0x24, 0x3d, 0x91, 0x50, 0x19, 0x2f, 0x13, 0x8c, 0x56, 0x1a, 0x56, 0xfd, - 0xa4, 0xd2, 0xac, 0xd4, 0x6b, 0xa0, 0x81, 0x48, 0x0e, 0x65, 0xc6, 0x88, 0x59, 0xc6, 0x19, 0xb2, - 0x81, 0xf0, 0x18, 0xd0, 0x56, 0x56, 0x08, 0x41, 0xd9, 0xb2, 0x39, 0xa3, 0xba, 0x1a, 0xba, 0x36, - 0xad, 0x9c, 0x25, 0x5b, 0x88, 0x4c, 0x41, 0x5a, 0x3d, 0x17, 0xaa, 0xcb, 0x53, 0x34, 0xcc, 0x5a, - 0x19, 0xd4, 0x31, 0x59, 0x45, 0xcb, 0x61, 0x6c, 0x61, 0xb9, 0x06, 0x07, 0x09, 0x97, 0x66, 0x19, - 0x13, 0xb0, 0x1d, 0xae, 0xb4, 0x8d, 0xf5, 0xe2, 0x3e, 0xda, 0x3c, 0x74, 0xbb, 0xe7, 0xc6, 0xd0, - 0x76, 0x3d, 0xfb, 0xd4, 0xf5, 0x5c, 0x31, 0x0a, 0x63, 0xbd, 0x81, 0xb0, 0x8a, 0x75, 0xfb, 0xd0, - 0x68, 0x37, 0x5b, 0x90, 0x94, 0x05, 0x48, 0x57, 0xb3, 0x65, 0xec, 0x55, 0xcd, 0x30, 0xe4, 0x7a, - 0xdf, 0x78, 0xb1, 0x8b, 0x32, 0x53, 0x2d, 0x18, 0xf6, 0xad, 0xd5, 0x5b, 0x3a, 0x55, 0x69, 0x14, - 0xaf, 0xdf, 0x0a, 0x35, 0x1e, 0x32, 0x2c, 0x79, 0xd0, 0x78, 0x98, 0xbf, 0x4a, 0xab, 0x52, 0x32, - 0xaa, 0x38, 0x01, 0xa2, 0xa3, 0x4a, 0xb3, 0x19, 0xa6, 0x47, 0x26, 0xeb, 0xc0, 0x32, 0xca, 0x32, - 0x33, 0xa1, 0xad, 0xfd, 0xfa, 0x71, 0xad, 0x8c, 0xd3, 0xc5, 0xc7, 0x63, 0x68, 0x3d, 0xa2, 0x53, - 0x83, 0xbf, 0xb5, 0x7a, 0xd9, 0x6c, 0x1f, 0xd7, 0x2c, 0xd3, 0x28, 0x1d, 0x4a, 0x1f, 0x17, 0x20, - 0x44, 0x66, 0xad, 0x55, 0x69, 0xbd, 0xab, 0xad, 0xad, 0xc7, 0xc8, 0x65, 0xb4, 0x5d, 0xaa, 0x56, - 0xcc, 0x5a, 0xab, 0x1d, 0xd6, 0x8f, 0x0a, 0xe9, 0xb1, 0x05, 0x75, 0x4a, 0x50, 0x76, 0xbf, 0x6e, - 0x1d, 0x19, 0xad, 0x76, 0xa5, 0x26, 0x8b, 0x11, 0x27, 0x20, 0xbf, 0x95, 0xda, 0x7e, 0xbd, 0x3d, - 0x71, 0x10, 0x02, 0xa9, 0x90, 0x23, 0xa3, 0x55, 0x3a, 0xc4, 0xa9, 0x22, 0x47, 0xa8, 0xe4, 0xb9, - 0xd4, 0x17, 0xad, 0x51, 0x9f, 0x82, 0x4a, 0xa9, 0x5e, 0x6b, 0x59, 0xf5, 0x6a, 0xa3, 0x6a, 0xd4, - 0xb4, 0x27, 0x0f, 0xb7, 0x4c, 0xab, 0x66, 0x54, 0xc3, 0xdd, 0x71, 0x0c, 0xae, 0x0a, 0xf8, 0x8c, - 0xe3, 0x64, 0x19, 0xa5, 0x8c, 0xf2, 0x51, 0xa5, 0x86, 0x13, 0x90, 0xc1, 0x3d, 0xc3, 0x32, 0x8f, - 0xcc, 0x96, 0x51, 0xc5, 0x49, 0xb0, 0x54, 0xad, 0x1b, 0xe5, 0x3d, 0xa3, 0x6a, 0xd4, 0x4a, 0xa6, - 0x85, 0x53, 0xa0, 0x75, 0x08, 0x17, 0x2c, 0x5d, 0xbc, 0x89, 0x88, 0x31, 0x10, 0xe7, 0xd4, 0x17, - 0xae, 0x23, 0xc3, 0x21, 0xf7, 0xce, 0x22, 0xd4, 0x34, 0xab, 0xfb, 0xcd, 0xca, 0x01, 0x94, 0x4f, - 0x78, 0x51, 0x0c, 0xb5, 0x8a, 0x15, 0x9f, 0x4a, 0xa1, 0x15, 0x79, 0xad, 0x3a, 0x94, 0x4b, 0x7a, - 0x0e, 0x65, 0x0c, 0x7f, 0xa4, 0xa1, 0xd0, 0xd3, 0x13, 0x97, 0x8b, 0x81, 0xed, 0x1d, 0xd9, 0xce, - 0xb9, 0xeb, 0x53, 0x1c, 0x23, 0x3b, 0x68, 0x6b, 0x16, 0x6b, 0x3a, 0xb6, 0x47, 0x9b, 0x54, 0xe0, - 0xb8, 0xf4, 0x90, 0xd9, 0x9d, 0x3d, 0xdb, 0xb3, 0x7d, 0x87, 0x72, 0x9c, 0x98, 0xb2, 0x50, 0xa3, - 0xe2, 0x0e, 0xe3, 0xb7, 0x71, 0x92, 0xac, 0xa3, 0x9c, 0xc2, 0x0e, 0x6d, 0xde, 0x29, 0xbb, 0xc1, - 0x6d, 0x9c, 0x02, 0xd5, 0x03, 0xdb, 0xf3, 0x28, 0x1f, 0x55, 0x7a, 0x76, 0x97, 0xe2, 0x34, 0xd9, - 0x46, 0xeb, 0xb3, 0x1b, 0x85, 0x82, 0x45, 0x99, 0xdf, 0xd0, 0x58, 0xc5, 0x17, 0x94, 0x9f, 0xd9, - 0x0e, 0xc5, 0x4b, 0xe0, 0x7c, 0x89, 0x72, 0xe1, 0x9e, 0x41, 0x00, 0x28, 0x5e, 0x86, 0x36, 0x74, - 0x8b, 0x8e, 0x30, 0x92, 0x95, 0x4a, 0x1d, 0x4e, 0x05, 0xce, 0x40, 0x04, 0x6e, 0xd1, 0xd1, 0x89, - 0x3d, 0xf0, 0x04, 0x5e, 0x91, 0x77, 0xa2, 0x43, 0x65, 0xf7, 0xc4, 0xab, 0x10, 0x4d, 0x8b, 0x79, - 0x14, 0x67, 0xc1, 0x6b, 0xf8, 0x32, 0x82, 0xc0, 0xed, 0xfa, 0x3d, 0xea, 0x0b, 0x9c, 0x83, 0x58, - 0xde, 0x1a, 0x9c, 0x52, 0xee, 0x53, 0x41, 0x03, 0x8c, 0x65, 0x9b, 0xf1, 0x06, 0x81, 0xa0, 0x1c, - 0xaf, 0xc9, 0x24, 0x33, 0x5f, 0x70, 0xe6, 0x35, 0x3c, 0xdb, 0xa7, 0x98, 0x40, 0x1a, 0x0f, 0xe0, - 0x09, 0xc0, 0xeb, 0x32, 0xb7, 0xac, 0x43, 0xf1, 0x06, 0xec, 0x57, 0x65, 0x61, 0x7e, 0xf0, 0x26, - 0x9c, 0xa3, 0x29, 0x18, 0xb7, 0xbb, 0x14, 0x74, 0x6d, 0xd7, 0xa7, 0x1c, 0x6f, 0xc1, 0x39, 0x14, - 0xba, 0xef, 0x7a, 0x14, 0x6f, 0x4f, 0xd1, 0xca, 0x2e, 0xa7, 0x8e, 0x60, 0x7c, 0x84, 0xf3, 0xb0, - 0x63, 0x73, 0x70, 0x1a, 0x4e, 0xb5, 0x60, 0xee, 0x12, 0x38, 0x74, 0xe2, 0xf6, 0x1b, 0x8c, 0x79, - 0x78, 0x47, 0x5e, 0x22, 0xdb, 0x91, 0x8b, 0xcb, 0x60, 0xd2, 0x14, 0x4e, 0x47, 0xbb, 0x7b, 0x05, - 0xce, 0x02, 0x40, 0x93, 0xf2, 0x21, 0xe5, 0xf8, 0x2e, 0xd8, 0x62, 0xcf, 0xe6, 0xf4, 0x88, 0x8a, - 0x49, 0xa6, 0xef, 0x26, 0x9b, 0x68, 0xad, 0xc4, 0xa9, 0x8c, 0x8f, 0xed, 0x1d, 0x31, 0xdf, 0x15, - 0x8c, 0xe3, 0x7b, 0xc0, 0x74, 0x95, 0x75, 0xbb, 0xae, 0xdf, 0xc5, 0x57, 0xe1, 0x44, 0x16, 0x75, - 0xd8, 0x90, 0xf2, 0x11, 0xbe, 0x17, 0x0e, 0x5d, 0xa6, 0xa7, 0x83, 0x2e, 0x2e, 0xc0, 0xbd, 0x18, - 0x9b, 0x3c, 0x64, 0x81, 0xc0, 0xf7, 0x41, 0x54, 0x67, 0x6b, 0x14, 0xdf, 0x0f, 0xb4, 0xb0, 0x59, - 0x68, 0xfb, 0x0f, 0x00, 0xad, 0xca, 0xba, 0xae, 0x33, 0x29, 0x99, 0x6b, 0x50, 0x32, 0x33, 0x7d, - 0x89, 0x0a, 0xfc, 0x3f, 0xc5, 0x6f, 0x11, 0xb4, 0xad, 0x8b, 0xd5, 0x70, 0x1c, 0x1a, 0x04, 0x93, - 0x37, 0x28, 0x87, 0x32, 0xc7, 0x7e, 0xd0, 0xa7, 0x8e, 0x7b, 0xe6, 0xd2, 0x0e, 0x5e, 0x20, 0x79, - 0xb4, 0x31, 0xbb, 0x79, 0x1b, 0x36, 0xf1, 0x71, 0x87, 0x6c, 0x23, 0x32, 0x55, 0x38, 0xed, 0x12, - 0xa7, 0x50, 0x3f, 0xdf, 0x8f, 0xcd, 0x0b, 0x8e, 0xfb, 0x1d, 0x10, 0xfc, 0x20, 0x46, 0x36, 0x50, - 0x6e, 0x5a, 0x70, 0x40, 0x05, 0xfe, 0xe1, 0x05, 0x7a, 0x99, 0x7a, 0x54, 0x50, 0xfc, 0xa3, 0x18, - 0xd9, 0x44, 0x78, 0x5a, 0xd0, 0x74, 0xbb, 0x3e, 0x7e, 0x2e, 0x46, 0xb6, 0xd0, 0xda, 0x34, 0x6c, - 0x51, 0x9f, 0xde, 0xc1, 0xcf, 0x4b, 0xeb, 0xba, 0x28, 0xb5, 0x33, 0x5f, 0x8c, 0xcf, 0xa0, 0xca, - 0x93, 0x27, 0x67, 0x51, 0x8b, 0x0e, 0xd9, 0x6d, 0x8a, 0xbf, 0x34, 0x87, 0x32, 0xe8, 0x8b, 0xf8, - 0xcb, 0x71, 0x72, 0x0f, 0xda, 0xd1, 0x68, 0xc4, 0x79, 0x3f, 0x92, 0x78, 0x3d, 0x82, 0xda, 0xed, - 0xa3, 0x09, 0x72, 0x37, 0xba, 0x14, 0x45, 0x08, 0x3d, 0xff, 0x58, 0x82, 0xe4, 0x10, 0xba, 0x45, - 0xc7, 0x4e, 0xff, 0x65, 0x0c, 0x28, 0x0b, 0x7f, 0x85, 0xfe, 0x99, 0x01, 0xc0, 0xf4, 0x1d, 0x3e, - 0xea, 0x0b, 0xfc, 0xb7, 0x31, 0x52, 0xa6, 0x21, 0xf2, 0xf7, 0x31, 0xf2, 0x10, 0xb7, 0xfb, 0x70, - 0x7f, 0x5f, 0x85, 0x26, 0xb2, 0x2a, 0xcd, 0xf8, 0x77, 0x14, 0xf6, 0x1a, 0xf4, 0x46, 0xb8, 0xc8, - 0x61, 0x30, 0xff, 0x31, 0xde, 0xe9, 0x84, 0x72, 0xf7, 0x6c, 0x84, 0xff, 0x99, 0x20, 0x3b, 0x68, - 0x73, 0xb6, 0x7b, 0x68, 0xb7, 0x7e, 0x9a, 0x8c, 0x90, 0x29, 0x0f, 0x7f, 0x16, 0x25, 0x53, 0x89, - 0xfc, 0x79, 0x92, 0x5c, 0x41, 0xdb, 0x73, 0x32, 0xf5, 0xfc, 0x50, 0xfc, 0x8b, 0x24, 0xb9, 0x84, - 0x36, 0xe6, 0xa4, 0x4d, 0x61, 0x73, 0x81, 0x5f, 0x4c, 0x92, 0xfc, 0x7c, 0x2b, 0x6b, 0x37, 0x05, - 0xeb, 0xe3, 0x97, 0xa2, 0x94, 0x2c, 0x1a, 0x50, 0x81, 0x7f, 0x99, 0x24, 0xd7, 0xd0, 0xbd, 0x17, - 0x44, 0x7d, 0xdb, 0xe5, 0xed, 0x83, 0x01, 0x0d, 0x44, 0xdb, 0xe8, 0x42, 0x5f, 0xfa, 0x55, 0x94, - 0x89, 0x86, 0x3d, 0x08, 0x28, 0x7e, 0x39, 0x72, 0x5f, 0x7b, 0x48, 0xf1, 0x2b, 0xd0, 0x83, 0xb3, - 0xaa, 0x1d, 0xe8, 0xb8, 0x7c, 0x3b, 0x35, 0x0d, 0xaa, 0x80, 0x3c, 0x95, 0x02, 0x1b, 0x1a, 0x84, - 0xde, 0xae, 0x9b, 0xc8, 0x77, 0x52, 0x10, 0xaa, 0x31, 0x5d, 0x4e, 0xd9, 0x5a, 0xf6, 0xdd, 0x94, - 0xbc, 0x0c, 0x4a, 0x76, 0x40, 0x85, 0x16, 0x3c, 0x9d, 0x92, 0x97, 0x61, 0x22, 0x80, 0xbe, 0x18, - 0xe0, 0x67, 0x52, 0x70, 0x19, 0x64, 0xe7, 0x68, 0xcb, 0x7f, 0x55, 0x63, 0xfa, 0x74, 0x1a, 0xe8, - 0x21, 0xde, 0x14, 0xb6, 0x73, 0xbb, 0xc5, 0xa1, 0xd7, 0x7f, 0x26, 0x0d, 0x67, 0x86, 0xee, 0xd2, - 0xd3, 0xdd, 0x45, 0x1f, 0xe2, 0x7d, 0x8b, 0x17, 0x45, 0xea, 0x28, 0x8f, 0x2d, 0x42, 0xfe, 0xc6, - 0xa2, 0xb9, 0xaa, 0xf8, 0x5d, 0xb4, 0x54, 0xe9, 0xfe, 0x7e, 0x51, 0x86, 0x61, 0xaa, 0xc3, 0x6b, - 0xbd, 0xe7, 0x96, 0x2e, 0x48, 0x94, 0xce, 0xf3, 0x4b, 0x10, 0x84, 0xa9, 0xbe, 0xab, 0x55, 0xbe, - 0xb2, 0x3c, 0x2f, 0x50, 0x1a, 0x5f, 0x5d, 0x86, 0x30, 0x4c, 0x1a, 0xb3, 0x56, 0xf8, 0x38, 0x9a, - 0xc3, 0x15, 0xff, 0x71, 0x04, 0x7b, 0x4f, 0xbf, 0x9a, 0x5a, 0xe3, 0xd5, 0x8b, 0x12, 0xa5, 0xf3, - 0x1a, 0x22, 0x6b, 0x68, 0x45, 0xbe, 0x4c, 0x9a, 0xfc, 0x62, 0x66, 0x02, 0x29, 0xd6, 0x4b, 0x30, - 0xa6, 0xe6, 0xf4, 0x43, 0xa9, 0x89, 0x4f, 0xaf, 0xcc, 0xa0, 0x8a, 0xfb, 0xcc, 0x0a, 0x78, 0x37, - 0x79, 0x1a, 0x35, 0xfb, 0xb3, 0xab, 0x73, 0xb8, 0xe2, 0x7f, 0x6e, 0x15, 0x7c, 0x9b, 0x1e, 0x13, - 0xb4, 0xc6, 0x07, 0xb2, 0x17, 0x24, 0x4a, 0xe7, 0x83, 0x59, 0xd8, 0x59, 0x3f, 0x9d, 0x9a, 0xff, - 0x87, 0x59, 0x54, 0x71, 0xff, 0x98, 0x85, 0x3a, 0x3e, 0xb2, 0x9d, 0x3e, 0x63, 0x9e, 0xa6, 0xfe, - 0x38, 0x37, 0x0d, 0x2a, 0xe6, 0x0b, 0x39, 0xc8, 0xf9, 0xfc, 0x28, 0xa1, 0x55, 0xbe, 0x86, 0x23, - 0xa5, 0x4a, 0xf7, 0xeb, 0x18, 0xfa, 0x14, 0x94, 0xaf, 0xe6, 0x7f, 0x62, 0x6d, 0x8c, 0x28, 0xce, - 0x27, 0xd7, 0xc0, 0x3f, 0xfd, 0x3c, 0x6a, 0xde, 0xbf, 0x66, 0x51, 0xc5, 0xfd, 0xb7, 0xd4, 0x86, - 0xa1, 0x43, 0xf3, 0x5e, 0x26, 0x63, 0x44, 0x71, 0x5e, 0x21, 0x70, 0xe5, 0x66, 0x07, 0x13, 0xcd, - 0xfe, 0xde, 0x7a, 0x84, 0x4c, 0xe9, 0x3d, 0xbb, 0x0e, 0x1d, 0x34, 0x1c, 0x81, 0x34, 0xff, 0xf3, - 0x1b, 0x53, 0x98, 0xe2, 0x7d, 0x61, 0x03, 0x4e, 0x3c, 0x3f, 0x92, 0x68, 0x8d, 0x0f, 0x6d, 0x46, - 0x4a, 0x95, 0xee, 0x87, 0x37, 0x21, 0x77, 0xd3, 0x13, 0x89, 0xd6, 0xfb, 0xd3, 0x45, 0x89, 0xd2, - 0xf9, 0xb3, 0x94, 0x4c, 0x26, 0xf8, 0x49, 0x37, 0xfd, 0xc9, 0x16, 0xa4, 0x4b, 0x4d, 0x33, 0xda, - 0xd0, 0x37, 0xb6, 0xa7, 0x41, 0x65, 0xe3, 0x9b, 0xdb, 0xe4, 0xf2, 0x78, 0x20, 0xd5, 0xe3, 0xa4, - 0xd6, 0x78, 0x22, 0x1f, 0x25, 0x54, 0x9a, 0x9f, 0xca, 0xc3, 0x83, 0x17, 0x31, 0x61, 0x6a, 0xed, - 0xf7, 0x5e, 0x7a, 0x3d, 0x82, 0xb2, 0xf0, 0xe8, 0x25, 0x52, 0x40, 0x77, 0x45, 0x0f, 0xc3, 0xda, - 0xc8, 0x6f, 0xfe, 0x1b, 0x47, 0xd9, 0xf9, 0xed, 0xa5, 0xa9, 0x57, 0x47, 0x15, 0xdc, 0x78, 0x0c, - 0xd9, 0x89, 0x90, 0xe9, 0x49, 0x64, 0x07, 0x8e, 0x37, 0x37, 0x17, 0x8d, 0x47, 0x86, 0xcb, 0x51, - 0x42, 0xf5, 0x96, 0x3d, 0x79, 0xb9, 0x68, 0xa1, 0x8c, 0x3c, 0x4c, 0x33, 0xfc, 0x65, 0x41, 0xfe, - 0x6d, 0x51, 0x32, 0xaa, 0xed, 0x66, 0xfd, 0xd8, 0x2a, 0xc1, 0x5f, 0x29, 0xf0, 0xb7, 0xc3, 0x7e, - 0x53, 0xaf, 0x63, 0x30, 0x51, 0x1d, 0xb6, 0x5a, 0x0d, 0x0d, 0xc8, 0x61, 0xbf, 0x54, 0xad, 0xd7, - 0x4c, 0x8d, 0x24, 0x8a, 0x7b, 0x08, 0x1f, 0x8e, 0xfa, 0x94, 0x9f, 0x1c, 0x50, 0x5f, 0x0f, 0x62, - 0x5b, 0x88, 0xcc, 0x63, 0x27, 0x37, 0xf1, 0x42, 0x24, 0xfe, 0xff, 0x38, 0x56, 0x7c, 0x27, 0xca, - 0x42, 0x96, 0x60, 0xf6, 0xdd, 0x67, 0xbc, 0x67, 0x0b, 0xf9, 0x37, 0xef, 0x0c, 0x72, 0x72, 0x58, - 0x7e, 0x18, 0x2f, 0xc0, 0x78, 0x7a, 0x01, 0xc7, 0xb1, 0xe2, 0x83, 0xf0, 0x5e, 0xb1, 0x41, 0xa7, - 0xe2, 0xbb, 0xa2, 0x6c, 0x0b, 0x5b, 0x1d, 0x30, 0x83, 0x16, 0x6b, 0x4c, 0x0a, 0xf0, 0x82, 0xfc, - 0x1b, 0xeb, 0x91, 0x01, 0xa7, 0x38, 0xf6, 0xd6, 0xb7, 0xa3, 0xe5, 0x80, 0xfa, 0x81, 0x2b, 0xdc, - 0x21, 0x25, 0x77, 0xed, 0x86, 0x3f, 0x1c, 0xef, 0xea, 0x1f, 0x8e, 0x77, 0xf7, 0x5d, 0xea, 0x75, - 0xea, 0xb2, 0x6c, 0x83, 0xfc, 0x0b, 0xef, 0x4f, 0xc8, 0x5f, 0x54, 0x26, 0x1a, 0x7b, 0x0f, 0xbc, - 0xfb, 0xbe, 0xae, 0x2b, 0xce, 0x07, 0xa7, 0xbb, 0x0e, 0xeb, 0xdd, 0xe8, 0xb9, 0x0e, 0x67, 0x01, - 0x3b, 0x13, 0x37, 0x7a, 0xcc, 0xb9, 0xc1, 0xfb, 0xce, 0x8d, 0xf0, 0xb7, 0xe9, 0xd3, 0xb4, 0x34, - 0xf8, 0x86, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb6, 0xa2, 0x15, 0x7f, 0xb7, 0x16, 0x00, 0x00, + // 2525 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x58, 0x7d, 0x88, 0x6b, 0x47, + 0x15, 0xdf, 0x7c, 0xee, 0xee, 0x64, 0x37, 0x99, 0x9d, 0xfd, 0xca, 0xdb, 0xd7, 0x8f, 0xd7, 0x6d, + 0xfb, 0x7c, 0x04, 0xbb, 0x4f, 0x9f, 0xa2, 0xa8, 0xa8, 0xdc, 0x4d, 0xee, 0xee, 0x86, 0x97, 0x4d, + 0xc2, 0xcd, 0xdd, 0x6d, 0x15, 0x21, 0xdc, 0xbd, 0x99, 0xcd, 0x5e, 0xde, 0xcd, 0x9d, 0x30, 0x77, + 0x92, 0x47, 0xfa, 0x97, 0x05, 0x2b, 0x0a, 0x0a, 0x2a, 0x16, 0x14, 0x2a, 0x28, 0x28, 0x28, 0x58, + 0x3f, 0x40, 0x41, 0xc5, 0x6a, 0x0b, 0x16, 0xfc, 0x68, 0xc1, 0x82, 0x7f, 0xf8, 0xd1, 0x6a, 0x8b, + 0x0a, 0x0a, 0x0a, 0x0a, 0x7e, 0xb4, 0x7e, 0x80, 0x9c, 0xb9, 0x33, 0xd9, 0x24, 0x7b, 0xeb, 0x3f, + 0xef, 0xdd, 0xf9, 0x9d, 0xdf, 0x39, 0x73, 0xe6, 0x9c, 0x33, 0x67, 0x4e, 0x16, 0x6d, 0xf6, 0x98, + 0xdb, 0x76, 0x59, 0xaf, 0xc7, 0x02, 0xf5, 0xdf, 0x4e, 0x9f, 0x33, 0xc1, 0x48, 0xaa, 0xc7, 0xdc, + 0xad, 0x2b, 0x5d, 0xc6, 0xba, 0x3e, 0xbd, 0x2e, 0xa1, 0x93, 0xc1, 0xe9, 0xf5, 0x0e, 0x0d, 0x5d, + 0xee, 0xf5, 0x05, 0xe3, 0x11, 0x6d, 0xfb, 0x08, 0x65, 0x4c, 0xce, 0x19, 0x27, 0x45, 0x34, 0x7f, + 0x48, 0xc3, 0xd0, 0xe9, 0xd2, 0x62, 0xe2, 0x4a, 0xe2, 0xda, 0xa2, 0xa5, 0x97, 0x84, 0xa0, 0x74, + 0x99, 0x75, 0x68, 0x31, 0x79, 0x25, 0x71, 0x2d, 0x63, 0xc9, 0x6f, 0x72, 0x17, 0x42, 0x4d, 0x87, + 0x3b, 0x3d, 0x2a, 0x28, 0x0f, 0x8b, 0x29, 0xa9, 0x30, 0x81, 0x6c, 0x3f, 0x9a, 0x40, 0x85, 0x26, + 0x67, 0x43, 0x2f, 0xf4, 0x58, 0xd0, 0x12, 0x8e, 0x18, 0x84, 0xe4, 0xad, 0x68, 0xc9, 0x1d, 0x70, + 0x4e, 0x03, 0x01, 0x40, 0xb4, 0x4d, 0xfe, 0xc6, 0xea, 0x4e, 0x8f, 0xb9, 0x3b, 0x53, 0x5c, 0x6a, + 0x4d, 0x11, 0xc9, 0xdb, 0xd0, 0x72, 0x9f, 0xd3, 0xa1, 0xc7, 0x06, 0x61, 0xa4, 0x99, 0x7c, 0x6d, + 0xcd, 0x69, 0xe6, 0xf6, 0xe3, 0x09, 0x94, 0xaf, 0xb0, 0xdb, 0x81, 0xcf, 0x9c, 0x8e, 0x72, 0x63, + 0x07, 0x91, 0x3e, 0x67, 0x5d, 0x4e, 0xc3, 0xb0, 0x49, 0xb9, 0x4b, 0x03, 0xa1, 0xcf, 0x9c, 0xb2, + 0x62, 0x24, 0xe4, 0x0d, 0x68, 0xb5, 0xa3, 0x2d, 0x78, 0x0f, 0xd3, 0x6a, 0xb0, 0x3b, 0x12, 0x34, + 0x94, 0x3e, 0xa4, 0xac, 0x38, 0x11, 0xb9, 0x86, 0x0a, 0xa7, 0x9e, 0x4f, 0x27, 0xd9, 0x29, 0xc9, + 0x9e, 0x85, 0xb7, 0x87, 0x28, 0x7b, 0x40, 0x1d, 0x5f, 0x9c, 0x91, 0x37, 0xc7, 0x06, 0x07, 0xcb, + 0x23, 0x46, 0x94, 0xb8, 0xc8, 0xbc, 0x25, 0x3e, 0x32, 0x17, 0xd5, 0x66, 0xc2, 0xf2, 0x48, 0x02, + 0x15, 0x8e, 0x1d, 0xdf, 0xeb, 0x38, 0x42, 0x47, 0x8e, 0xbc, 0x1e, 0xa5, 0x5d, 0x48, 0x73, 0xb4, + 0x73, 0x51, 0x9a, 0x98, 0xe1, 0x40, 0xea, 0x2d, 0xc9, 0x82, 0x72, 0xe9, 0xa9, 0x72, 0x49, 0x46, + 0xe5, 0xa2, 0x96, 0xe4, 0x2a, 0xca, 0x73, 0x0a, 0xa5, 0x48, 0x83, 0x48, 0x55, 0x95, 0xc7, 0x0c, + 0xba, 0x6d, 0x21, 0x3c, 0x6d, 0x7e, 0x10, 0x92, 0x77, 0xa1, 0xc2, 0x70, 0x7a, 0xcb, 0x62, 0xe2, + 0x4a, 0xea, 0x5a, 0xee, 0xc6, 0x5a, 0x9c, 0x3b, 0xd6, 0x2c, 0x79, 0xfb, 0x1e, 0x34, 0x7f, 0x4c, + 0x39, 0x54, 0x03, 0xd9, 0x40, 0xd9, 0x60, 0xd0, 0x3b, 0xa1, 0x5c, 0x95, 0xb3, 0x5a, 0x6d, 0x3f, + 0x93, 0x44, 0x59, 0xb5, 0xdb, 0xbd, 0x28, 0x7b, 0x26, 0x63, 0x24, 0x29, 0xb9, 0x1b, 0xb9, 0x89, + 0xb0, 0x59, 0x4a, 0x44, 0x2a, 0xb2, 0x5c, 0xa2, 0x12, 0xf3, 0x82, 0x6e, 0xa4, 0x2a, 0xcf, 0xac, + 0xbd, 0x9a, 0xa9, 0x73, 0x2b, 0x86, 0x4f, 0xae, 0xa1, 0x45, 0xdf, 0x09, 0x85, 0xbc, 0x6a, 0x32, + 0x1e, 0xb9, 0x1b, 0x48, 0x2a, 0x4b, 0xc4, 0x3a, 0x17, 0x92, 0xab, 0x68, 0x7e, 0x18, 0x1d, 0xa1, + 0x98, 0x96, 0xbc, 0xa5, 0xe8, 0xe8, 0x11, 0x66, 0x69, 0x21, 0x79, 0x07, 0xca, 0x77, 0xa6, 0x0a, + 0xbb, 0x98, 0x91, 0xf4, 0xe8, 0x56, 0x4c, 0xd7, 0xbc, 0x35, 0x43, 0x25, 0x06, 0xc2, 0xc3, 0x99, + 0xd8, 0x17, 0xb3, 0x52, 0x7d, 0x3d, 0x26, 0xd0, 0x83, 0xd0, 0xba, 0x40, 0xdf, 0xde, 0x41, 0x59, + 0x33, 0x10, 0x9e, 0x18, 0x91, 0xfb, 0xd0, 0x72, 0x35, 0x6c, 0xfa, 0x8e, 0x4b, 0xcf, 0x98, 0xdf, + 0x51, 0x01, 0x5f, 0xb0, 0xa6, 0xc1, 0xed, 0x07, 0x50, 0xca, 0x76, 0xba, 0x04, 0xa3, 0xd4, 0x2d, + 0x3a, 0x52, 0x39, 0x81, 0x4f, 0xb2, 0x86, 0x32, 0x43, 0xc7, 0x1f, 0xe8, 0x3a, 0x8a, 0x16, 0xdb, + 0xf7, 0xa1, 0xb4, 0xed, 0x74, 0x43, 0x72, 0x07, 0x4a, 0x0b, 0xa7, 0x1b, 0xaa, 0x32, 0x58, 0x90, + 0xde, 0xd9, 0x4e, 0xd7, 0x92, 0x68, 0xe9, 0x7d, 0x68, 0xb1, 0xd1, 0xa7, 0x5c, 0xfa, 0x45, 0xe6, + 0x51, 0x6a, 0xdf, 0xb4, 0xf1, 0x1c, 0x59, 0x40, 0xe9, 0x66, 0xa3, 0x65, 0xe3, 0x04, 0x41, 0x28, + 0x5b, 0x31, 0x6b, 0xa6, 0x6d, 0xe2, 0x24, 0x7c, 0x1f, 0x35, 0x2b, 0x86, 0x6d, 0xe2, 0x14, 0x7c, + 0x57, 0x0f, 0x9b, 0x0d, 0xcb, 0xc6, 0x69, 0xf8, 0x36, 0x1f, 0x92, 0xdf, 0x19, 0xb2, 0x84, 0x16, + 0x8e, 0x8d, 0x5a, 0x55, 0xb2, 0xb2, 0xa5, 0xdf, 0x26, 0x51, 0x7e, 0xba, 0xbd, 0x90, 0x1c, 0x9a, + 0x3f, 0xaa, 0xdf, 0xac, 0x37, 0x1e, 0xac, 0xe3, 0x39, 0x60, 0x97, 0x2d, 0xd3, 0xb0, 0xab, 0xf5, + 0x7d, 0x9c, 0x00, 0x91, 0x5c, 0x99, 0x15, 0x9c, 0x24, 0x2b, 0x68, 0x39, 0x5a, 0xb4, 0xf7, 0x8c, + 0x6a, 0xcd, 0xac, 0xe0, 0x14, 0xb0, 0xa5, 0x2f, 0xc0, 0x4e, 0x03, 0x21, 0xf2, 0x4c, 0x13, 0x32, + 0x60, 0x20, 0x82, 0x2a, 0x38, 0x0b, 0x6c, 0xe9, 0x2d, 0xb0, 0xe7, 0x81, 0x1d, 0xf9, 0xae, 0xd9, + 0x0b, 0xd2, 0x13, 0x09, 0x55, 0xf0, 0x22, 0xc1, 0x68, 0xa9, 0x69, 0x35, 0x8e, 0xab, 0xad, 0x6a, + 0xa3, 0x0e, 0x1a, 0x88, 0x14, 0x50, 0x6e, 0x8c, 0x98, 0x15, 0x9c, 0x23, 0x6b, 0x08, 0x8f, 0x01, + 0x6d, 0x65, 0x89, 0x10, 0x94, 0xaf, 0x98, 0x53, 0xaa, 0xcb, 0x91, 0x6b, 0x93, 0xca, 0x79, 0xb2, + 0x81, 0xc8, 0x04, 0xa4, 0xd5, 0x0b, 0x91, 0xba, 0x3c, 0x45, 0xd3, 0xac, 0x57, 0x40, 0x1d, 0x93, + 0x65, 0xb4, 0x18, 0xc5, 0x16, 0x96, 0x2b, 0x70, 0x90, 0x68, 0x69, 0x56, 0x30, 0x01, 0xdb, 0xd1, + 0x4a, 0xdb, 0x58, 0x2d, 0xed, 0xa1, 0xf5, 0x03, 0xaf, 0x7b, 0x66, 0x0c, 0x1d, 0xcf, 0x77, 0x4e, + 0x3c, 0xdf, 0x13, 0xa3, 0x28, 0xd6, 0x6b, 0x08, 0xab, 0x58, 0xb7, 0x0f, 0x8c, 0x76, 0xcb, 0x86, + 0xa4, 0xcc, 0x41, 0xba, 0x5a, 0xb6, 0xb1, 0x5b, 0x33, 0xa3, 0x90, 0xeb, 0x7d, 0x93, 0xa5, 0x2e, + 0xca, 0x4d, 0x74, 0x3c, 0xd8, 0xb7, 0xde, 0xb0, 0x75, 0xaa, 0xb2, 0x28, 0xd9, 0xb8, 0x19, 0x69, + 0x3c, 0x68, 0x58, 0xf2, 0xa0, 0xc9, 0x28, 0x7f, 0x55, 0xbb, 0x5a, 0x36, 0x6a, 0x38, 0x05, 0xa2, + 0xc3, 0x6a, 0xab, 0x15, 0xa5, 0x47, 0x26, 0x6b, 0xdf, 0x32, 0x2a, 0x32, 0x33, 0x91, 0xad, 0xbd, + 0xc6, 0x51, 0xbd, 0x82, 0xb3, 0xa5, 0xc7, 0x12, 0x68, 0x35, 0xa6, 0x31, 0x82, 0xbf, 0xf5, 0x46, + 0xc5, 0x6c, 0x1f, 0xd5, 0x2d, 0xd3, 0x28, 0x1f, 0x48, 0x1f, 0xe7, 0x20, 0x44, 0x66, 0xdd, 0xae, + 0xda, 0xef, 0x69, 0x6b, 0xeb, 0x09, 0x72, 0x19, 0x6d, 0x96, 0x6b, 0x55, 0xb3, 0x6e, 0xb7, 0xa3, + 0xfa, 0x51, 0x21, 0x3d, 0xb2, 0xa0, 0x4e, 0x09, 0xca, 0xef, 0x35, 0xac, 0x43, 0xc3, 0x6e, 0x57, + 0xeb, 0xb2, 0x18, 0x71, 0x0a, 0xf2, 0x5b, 0xad, 0xef, 0x35, 0xda, 0xe7, 0x0e, 0x42, 0x20, 0x15, + 0x72, 0x68, 0xd8, 0xe5, 0x03, 0x9c, 0x29, 0x71, 0x84, 0xca, 0xbe, 0x47, 0x03, 0x61, 0x8f, 0xfa, + 0x14, 0x54, 0xca, 0x8d, 0xba, 0x6d, 0x35, 0x6a, 0xcd, 0x9a, 0x51, 0xd7, 0x9e, 0x3c, 0x64, 0x9b, + 0x56, 0xdd, 0xa8, 0x45, 0xbb, 0xe3, 0x04, 0x5c, 0x15, 0xf0, 0x19, 0x27, 0xc9, 0x22, 0xca, 0x18, + 0x95, 0xc3, 0x6a, 0x1d, 0xa7, 0x20, 0x83, 0xbb, 0x86, 0x65, 0x1e, 0x9a, 0xb6, 0x51, 0xc3, 0x69, + 0xb0, 0x54, 0x6b, 0x18, 0x95, 0x5d, 0xa3, 0x66, 0xd4, 0xcb, 0xa6, 0x85, 0x33, 0xa0, 0x75, 0x00, + 0x17, 0x2c, 0x5b, 0xba, 0x81, 0x88, 0x31, 0x10, 0x67, 0x34, 0x10, 0x9e, 0x2b, 0xc3, 0x21, 0xf7, + 0xce, 0x23, 0xd4, 0x32, 0x6b, 0x7b, 0xad, 0xea, 0x3e, 0x94, 0x4f, 0x74, 0x51, 0x0c, 0xb5, 0x4a, + 0x94, 0x9e, 0xcc, 0xa0, 0x25, 0x79, 0xad, 0x3a, 0x94, 0x4b, 0x7a, 0x01, 0xe5, 0x8c, 0x60, 0xa4, + 0xa1, 0xc8, 0xd3, 0x63, 0x8f, 0x8b, 0x81, 0xe3, 0x1f, 0x3a, 0xee, 0x99, 0x17, 0x50, 0x9c, 0x20, + 0x5b, 0x68, 0x63, 0x1a, 0x6b, 0xb9, 0x8e, 0x4f, 0x5b, 0x54, 0xe0, 0xa4, 0xf4, 0x90, 0x39, 0x9d, + 0x5d, 0xc7, 0x77, 0x02, 0x97, 0x72, 0x9c, 0x9a, 0xb0, 0x50, 0xa7, 0xe2, 0x36, 0xe3, 0xb7, 0x70, + 0x9a, 0xac, 0xa2, 0x82, 0xc2, 0x0e, 0x1c, 0xde, 0xa9, 0x78, 0xe1, 0x2d, 0x9c, 0x01, 0xd5, 0x7d, + 0xc7, 0xf7, 0x29, 0x1f, 0x55, 0x7b, 0x4e, 0x97, 0xe2, 0x2c, 0xd9, 0x44, 0xab, 0xd3, 0x1b, 0x45, + 0x82, 0x79, 0x99, 0xdf, 0xc8, 0x58, 0x35, 0x10, 0x94, 0x9f, 0x3a, 0x2e, 0xc5, 0x0b, 0xe0, 0x7c, + 0x99, 0x72, 0xe1, 0x9d, 0x42, 0x00, 0x28, 0x5e, 0x84, 0x36, 0x74, 0x93, 0x8e, 0x30, 0x92, 0x95, + 0x4a, 0x5d, 0x4e, 0x05, 0xce, 0x41, 0x04, 0x6e, 0xd2, 0xd1, 0xb1, 0x33, 0xf0, 0x05, 0x5e, 0x92, + 0x77, 0xa2, 0x43, 0x65, 0xf7, 0xc4, 0xcb, 0x10, 0x4d, 0x8b, 0xf9, 0x14, 0xe7, 0xc1, 0x6b, 0xf8, + 0x32, 0xc2, 0xd0, 0xeb, 0x06, 0x3d, 0x1a, 0x08, 0x5c, 0x80, 0x58, 0xde, 0x1c, 0x9c, 0x50, 0x1e, + 0x50, 0x41, 0x43, 0x8c, 0x65, 0x9b, 0xf1, 0x07, 0xa1, 0xa0, 0x1c, 0xaf, 0xc8, 0x24, 0xb3, 0x40, + 0x70, 0xe6, 0x37, 0x7d, 0x27, 0xa0, 0x98, 0x40, 0x1a, 0xf7, 0x39, 0x1b, 0xf4, 0xf1, 0xaa, 0xcc, + 0x2d, 0xeb, 0x50, 0xbc, 0x06, 0xfb, 0xd5, 0x58, 0x94, 0x1f, 0xbc, 0x0e, 0xe7, 0x68, 0x09, 0xc6, + 0x9d, 0x2e, 0x05, 0x5d, 0xc7, 0x0b, 0x28, 0xc7, 0x1b, 0x70, 0x0e, 0x85, 0xee, 0x79, 0x3e, 0xc5, + 0x9b, 0x13, 0xb4, 0x8a, 0xc7, 0xa9, 0x2b, 0x18, 0x1f, 0xe1, 0x22, 0xec, 0xd8, 0x1a, 0x9c, 0x44, + 0x43, 0x24, 0x98, 0xbb, 0x04, 0x0e, 0x1d, 0x7b, 0xfd, 0x26, 0x63, 0x3e, 0xde, 0x92, 0x97, 0xc8, + 0x71, 0xe5, 0xe2, 0x32, 0x98, 0x34, 0x85, 0xdb, 0xd1, 0xee, 0xde, 0x01, 0x67, 0x01, 0xa0, 0x45, + 0xf9, 0x90, 0x72, 0x7c, 0x27, 0x6c, 0xb1, 0xeb, 0x70, 0x7a, 0x48, 0xc5, 0x79, 0xa6, 0xef, 0x22, + 0xeb, 0x68, 0xa5, 0xcc, 0xa9, 0x8c, 0x8f, 0xe3, 0x1f, 0xb2, 0xc0, 0x13, 0x8c, 0xe3, 0xbb, 0xc1, + 0x74, 0x8d, 0x75, 0xbb, 0x5e, 0xd0, 0xc5, 0x57, 0xe0, 0x44, 0x16, 0x75, 0xd9, 0x90, 0xf2, 0x11, + 0xbe, 0x07, 0x0e, 0x5d, 0xa1, 0x27, 0x83, 0x2e, 0xde, 0x86, 0x7b, 0x31, 0x36, 0x79, 0xc0, 0x42, + 0x81, 0xef, 0x85, 0xa8, 0x4e, 0xd7, 0x28, 0xbe, 0x0f, 0x68, 0x51, 0xb3, 0xd0, 0xf6, 0xef, 0x07, + 0x5a, 0x8d, 0x75, 0x3d, 0xf7, 0xbc, 0x64, 0xae, 0x42, 0xc9, 0x4c, 0xf5, 0x25, 0x2a, 0xf0, 0xeb, + 0x4a, 0xdf, 0x21, 0x68, 0x53, 0x17, 0xab, 0xe1, 0xba, 0x34, 0x0c, 0xcf, 0xdf, 0xa0, 0x02, 0xca, + 0x1d, 0x05, 0x61, 0x9f, 0xba, 0xde, 0xa9, 0x47, 0x3b, 0x78, 0x8e, 0x14, 0xd1, 0xda, 0xf4, 0xe6, + 0x6d, 0xd8, 0x24, 0xc0, 0x1d, 0xb2, 0x89, 0xc8, 0x44, 0xe1, 0xb4, 0xcb, 0x9c, 0x42, 0xfd, 0xfc, + 0x30, 0x31, 0x2b, 0x38, 0xea, 0x77, 0x40, 0xf0, 0xa3, 0x04, 0x59, 0x43, 0x85, 0x49, 0xc1, 0x3e, + 0x15, 0xf8, 0xc7, 0x17, 0xe8, 0x15, 0xea, 0x53, 0x41, 0xf1, 0x4f, 0x12, 0x64, 0x1d, 0xe1, 0x49, + 0x41, 0xcb, 0xeb, 0x06, 0xf8, 0xd9, 0x04, 0xd9, 0x40, 0x2b, 0x93, 0xb0, 0x45, 0x03, 0x7a, 0x1b, + 0x3f, 0x27, 0xad, 0xeb, 0xa2, 0xd4, 0xce, 0x7c, 0x39, 0x39, 0x85, 0x2a, 0x4f, 0x9e, 0x98, 0x46, + 0x2d, 0x3a, 0x64, 0xb7, 0x28, 0xfe, 0xca, 0x0c, 0xca, 0xa0, 0x2f, 0xe2, 0xaf, 0x26, 0xc9, 0xdd, + 0x68, 0x4b, 0xa3, 0x31, 0xe7, 0xfd, 0x58, 0xea, 0xb5, 0x08, 0x6a, 0xb7, 0x8f, 0xa7, 0xc8, 0x5d, + 0xe8, 0x52, 0x1c, 0x21, 0xf2, 0xfc, 0x13, 0x29, 0x52, 0x40, 0xe8, 0x26, 0x1d, 0x3b, 0xfd, 0xb7, + 0x31, 0xa0, 0x2c, 0xfc, 0x1d, 0xfa, 0x67, 0x0e, 0x00, 0x33, 0x70, 0xf9, 0xa8, 0x2f, 0xf0, 0x3f, + 0xc6, 0x48, 0x85, 0x46, 0xc8, 0x3f, 0xc7, 0xc8, 0x83, 0xdc, 0xe9, 0xc3, 0xfd, 0x7d, 0x05, 0x9a, + 0xc8, 0xb2, 0x34, 0x13, 0xdc, 0x56, 0xd8, 0xab, 0xd0, 0x1b, 0xe1, 0x22, 0x47, 0xc1, 0xfc, 0xd7, + 0x78, 0xa7, 0x63, 0xca, 0xbd, 0xd3, 0x11, 0xfe, 0x77, 0x8a, 0x6c, 0xa1, 0xf5, 0xe9, 0xee, 0xa1, + 0xdd, 0xfa, 0x79, 0x3a, 0x46, 0xa6, 0x3c, 0xfc, 0x45, 0x9c, 0x4c, 0x25, 0xf2, 0x97, 0x69, 0x72, + 0x07, 0xda, 0x9c, 0x91, 0xa9, 0xe7, 0x87, 0xe2, 0x5f, 0xa5, 0xc9, 0x25, 0xb4, 0x36, 0x23, 0x6d, + 0x09, 0x87, 0x0b, 0xfc, 0x42, 0x9a, 0x14, 0x67, 0x5b, 0x59, 0xbb, 0x25, 0x58, 0x1f, 0xbf, 0x18, + 0xa7, 0x64, 0xd1, 0x90, 0x0a, 0xfc, 0xeb, 0x34, 0xb9, 0x8a, 0xee, 0xb9, 0x20, 0xea, 0x3b, 0x1e, + 0x6f, 0xef, 0x0f, 0x68, 0x28, 0xda, 0x46, 0x17, 0xfa, 0xd2, 0x6f, 0xe2, 0x4c, 0x34, 0x9d, 0x41, + 0x48, 0xf1, 0x4b, 0xb1, 0xfb, 0x3a, 0x43, 0x8a, 0x5f, 0x86, 0x1e, 0x9c, 0x57, 0xed, 0x40, 0xc7, + 0xe5, 0xbb, 0x99, 0x49, 0x50, 0x05, 0xe4, 0xc9, 0x0c, 0xd8, 0xd0, 0x20, 0xf4, 0x76, 0xdd, 0x44, + 0xbe, 0x97, 0x81, 0x50, 0x8d, 0xe9, 0x72, 0xa8, 0xd5, 0xb2, 0xef, 0x67, 0xe4, 0x65, 0x50, 0xb2, + 0x7d, 0x2a, 0xb4, 0xe0, 0xa9, 0x8c, 0xbc, 0x0c, 0xe7, 0x02, 0xe8, 0x8b, 0x21, 0x7e, 0x3a, 0x03, + 0x97, 0x41, 0x76, 0x8e, 0xb6, 0xfc, 0x57, 0x35, 0xa6, 0xcf, 0x66, 0x81, 0x1e, 0xe1, 0x2d, 0xe1, + 0xb8, 0xb7, 0x6c, 0x0e, 0xbd, 0xfe, 0x73, 0x59, 0x38, 0x33, 0x74, 0x97, 0x9e, 0xee, 0x2e, 0xfa, + 0x10, 0x1f, 0x98, 0xbf, 0x28, 0x52, 0x47, 0x79, 0x74, 0x1e, 0xf2, 0x37, 0x16, 0xcd, 0x54, 0xc5, + 0x1f, 0xe2, 0xa5, 0x4a, 0xf7, 0x8f, 0xf3, 0x32, 0x0c, 0x13, 0x1d, 0x5e, 0xeb, 0x3d, 0xbb, 0x70, + 0x41, 0xa2, 0x74, 0x9e, 0x5b, 0x80, 0x20, 0x4c, 0xf4, 0x5d, 0xad, 0xf2, 0xb5, 0xc5, 0x59, 0x81, + 0xd2, 0xf8, 0xfa, 0x22, 0x84, 0xe1, 0xbc, 0x31, 0x6b, 0x85, 0x4f, 0xa2, 0x19, 0x5c, 0xf1, 0x1f, + 0x43, 0xb0, 0xf7, 0xe4, 0xab, 0xa9, 0x35, 0x5e, 0xb9, 0x28, 0x51, 0x3a, 0xaf, 0x22, 0xb2, 0x82, + 0x96, 0xe4, 0xcb, 0xa4, 0xc9, 0x2f, 0xe4, 0xce, 0x21, 0xc5, 0x7a, 0x11, 0xc6, 0xd4, 0x82, 0x7e, + 0x28, 0x35, 0xf1, 0xa9, 0xa5, 0x29, 0x54, 0x71, 0x9f, 0x5e, 0x02, 0xef, 0xce, 0x9f, 0x46, 0xcd, + 0xfe, 0xfc, 0xf2, 0x0c, 0xae, 0xf8, 0x5f, 0x58, 0x06, 0xdf, 0x26, 0xc7, 0x04, 0xad, 0xf1, 0xa1, + 0xfc, 0x05, 0x89, 0xd2, 0xf9, 0x70, 0x1e, 0x76, 0xd6, 0x4f, 0xa7, 0xe6, 0xff, 0x69, 0x1a, 0x55, + 0xdc, 0x3f, 0xe7, 0xa1, 0x8e, 0x0f, 0x1d, 0xb7, 0xcf, 0x98, 0xaf, 0xa9, 0x3f, 0x2d, 0x4c, 0x82, + 0x8a, 0xf9, 0x7c, 0x01, 0x72, 0x3e, 0x3b, 0x4a, 0x68, 0x95, 0x6f, 0xe0, 0x58, 0xa9, 0xd2, 0xfd, + 0x26, 0x86, 0x3e, 0x05, 0xe5, 0xab, 0xf9, 0x9f, 0x5a, 0x19, 0x23, 0x8a, 0xf3, 0xe9, 0x15, 0xf0, + 0x4f, 0x3f, 0x8f, 0x9a, 0xf7, 0x9f, 0x69, 0x54, 0x71, 0xff, 0x2b, 0xb5, 0x61, 0xe8, 0xd0, 0xbc, + 0x97, 0xc8, 0x18, 0x51, 0x9c, 0x97, 0x09, 0x5c, 0xb9, 0xe9, 0xc1, 0x44, 0xb3, 0x7f, 0xb0, 0x1a, + 0x23, 0x53, 0x7a, 0xcf, 0xac, 0x42, 0x07, 0x8d, 0x46, 0x20, 0xcd, 0xff, 0xe2, 0xda, 0x04, 0xa6, + 0x78, 0x5f, 0x5a, 0x83, 0x13, 0xcf, 0x8e, 0x24, 0x5a, 0xe3, 0x23, 0xeb, 0xb1, 0x52, 0xa5, 0xfb, + 0xd1, 0x75, 0xc8, 0xdd, 0xe4, 0x44, 0xa2, 0xf5, 0xfe, 0x72, 0x51, 0xa2, 0x74, 0xfe, 0x2a, 0x25, + 0xe7, 0x13, 0xfc, 0x79, 0x37, 0xfd, 0xd9, 0x06, 0xa4, 0x4b, 0x4d, 0x33, 0xda, 0xd0, 0xb7, 0x36, + 0x27, 0x41, 0x65, 0xe3, 0xdb, 0x9b, 0xe4, 0xf2, 0x78, 0x20, 0xd5, 0xe3, 0xa4, 0xd6, 0x78, 0xbc, + 0x18, 0x27, 0x54, 0x9a, 0x9f, 0x29, 0xc2, 0x83, 0x17, 0x33, 0x61, 0x6a, 0xed, 0xf7, 0x5f, 0x7a, + 0x2d, 0x82, 0xb2, 0xf0, 0xc8, 0x25, 0xb2, 0x8d, 0xee, 0x8c, 0x1f, 0x86, 0xb5, 0x91, 0xdf, 0xfd, + 0x3f, 0x8e, 0xb2, 0xf3, 0xfb, 0x4b, 0x13, 0xaf, 0x8e, 0x2a, 0xb8, 0xf1, 0x18, 0xb2, 0x15, 0x23, + 0xd3, 0x93, 0xc8, 0x16, 0x1c, 0x6f, 0x66, 0x2e, 0x1a, 0x8f, 0x0c, 0x97, 0xe3, 0x84, 0xea, 0x2d, + 0x7b, 0xe2, 0x72, 0xc9, 0x42, 0x39, 0x79, 0x98, 0x16, 0x1b, 0x70, 0x97, 0x46, 0xbf, 0x2d, 0xca, + 0x46, 0xad, 0xdd, 0x6a, 0x1c, 0x59, 0x65, 0xf8, 0x95, 0x02, 0xbf, 0x1d, 0xf6, 0x5a, 0x7a, 0x9d, + 0x80, 0x89, 0xea, 0xc0, 0xb6, 0x9b, 0x1a, 0x90, 0xc3, 0x7e, 0xb9, 0xd6, 0xa8, 0x9b, 0x1a, 0x49, + 0x95, 0x76, 0x11, 0x3e, 0x18, 0xf5, 0x29, 0x3f, 0xde, 0xa7, 0x81, 0x1e, 0xc4, 0x36, 0x10, 0x99, + 0xc5, 0x8e, 0x6f, 0xe0, 0xb9, 0x58, 0xfc, 0x8d, 0x38, 0x51, 0x7a, 0x37, 0xca, 0x43, 0x96, 0x60, + 0xf6, 0xdd, 0x63, 0xbc, 0xe7, 0x08, 0xf9, 0x9b, 0x77, 0x0a, 0x39, 0x3e, 0xa8, 0x3c, 0x84, 0xe7, + 0x60, 0x3c, 0xbd, 0x80, 0xe3, 0x44, 0xe9, 0x01, 0x78, 0xaf, 0xd8, 0xa0, 0x53, 0x0d, 0x3c, 0x51, + 0x71, 0x84, 0xa3, 0x0e, 0x98, 0x43, 0xf3, 0x75, 0x26, 0x05, 0x78, 0x4e, 0xfe, 0xc6, 0x7a, 0x78, + 0xc0, 0x29, 0x4e, 0xbc, 0xfd, 0x9d, 0x68, 0x31, 0xa4, 0x41, 0xe8, 0x09, 0x6f, 0x48, 0xc9, 0x9d, + 0x3b, 0xd1, 0xdf, 0x69, 0x77, 0xf4, 0xdf, 0x69, 0x77, 0xf6, 0x3c, 0xea, 0x77, 0x1a, 0xb2, 0x6c, + 0xc3, 0xe2, 0xf3, 0x1f, 0x4c, 0xc9, 0xbf, 0xa8, 0x9c, 0x6b, 0xec, 0xde, 0xff, 0xde, 0x7b, 0xbb, + 0x9e, 0x38, 0x1b, 0x9c, 0xec, 0xb8, 0xac, 0x77, 0xbd, 0xe7, 0xb9, 0x9c, 0x85, 0xec, 0x54, 0x5c, + 0xef, 0x31, 0xf7, 0x3a, 0xef, 0xbb, 0xd7, 0xa3, 0x3f, 0x05, 0x9f, 0x64, 0xa5, 0xc1, 0x37, 0xfd, + 0x2f, 0x00, 0x00, 0xff, 0xff, 0xc8, 0xa8, 0x0f, 0xf9, 0x26, 0x16, 0x00, 0x00, } diff --git a/rpc/common/moc_common_common.proto b/rpc/common/moc_common_common.proto index eb8676a..f71b10c 100644 --- a/rpc/common/moc_common_common.proto +++ b/rpc/common/moc_common_common.proto @@ -112,21 +112,6 @@ message Status { ValidationStatus validationStatus = 6; } -// in the current implementation, cloudagent objects are generally identified by their group name -// and name. These fields are used to identify if a POST request should be treated as a create or -// an update -message CloudSubResource { - string groupName = 1; - string name = 2; - string realizedName = 3; -} - -// in the current implementation, nodeagent objects are generally identified by their name -// this field is used to identify if a POST request should be treated as a create or an update -message NodeSubResource { - string name = 1; -} - message Entity { bool IsPlaceholder = 1; // On a multi-node system, the entity (such as a VM) is created on a node where // IsPlacehoder is false. On all the other nodes, IsPlaceholder is set to true. diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index 604436e..ec476ac 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -19,6 +19,10 @@ message AvailabilitySetResponse { string Error = 3; } +message VirtualMachineReference { + string name = 1; +} + // avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go message AvailabilitySet { @@ -28,7 +32,7 @@ message AvailabilitySet { Tags tags = 4; Entity entity = 5; int32 platformFaultDomainCount = 6; - repeated NodeSubResource virtualMachines = 7; + repeated VirtualMachineReference virtualMachines = 7; } service AvailabilitySetAgent { diff --git a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go index 1bffe37..19f3925 100644 --- a/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go +++ b/rpc/nodeagent/compute/moc_nodeagent_availabilityset.pb.go @@ -128,26 +128,65 @@ func (m *AvailabilitySetResponse) GetError() string { return "" } +type VirtualMachineReference 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 (m *VirtualMachineReference) Reset() { *m = VirtualMachineReference{} } +func (m *VirtualMachineReference) String() string { return proto.CompactTextString(m) } +func (*VirtualMachineReference) ProtoMessage() {} +func (*VirtualMachineReference) Descriptor() ([]byte, []int) { + return fileDescriptor_d615df2311cce965, []int{2} +} + +func (m *VirtualMachineReference) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VirtualMachineReference.Unmarshal(m, b) +} +func (m *VirtualMachineReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VirtualMachineReference.Marshal(b, m, deterministic) +} +func (m *VirtualMachineReference) XXX_Merge(src proto.Message) { + xxx_messageInfo_VirtualMachineReference.Merge(m, src) +} +func (m *VirtualMachineReference) XXX_Size() int { + return xxx_messageInfo_VirtualMachineReference.Size(m) +} +func (m *VirtualMachineReference) XXX_DiscardUnknown() { + xxx_messageInfo_VirtualMachineReference.DiscardUnknown(m) +} + +var xxx_messageInfo_VirtualMachineReference proto.InternalMessageInfo + +func (m *VirtualMachineReference) GetName() string { + if m != nil { + return m.Name + } + return "" +} + // avset structure is a flattened version of the model in the Azure sdk for go at // https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/compute/armcompute/models.go type AvailabilitySet 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"` - Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` - Tags *common.Tags `protobuf:"bytes,4,opt,name=tags,proto3" json:"tags,omitempty"` - Entity *common.Entity `protobuf:"bytes,5,opt,name=entity,proto3" json:"entity,omitempty"` - PlatformFaultDomainCount int32 `protobuf:"varint,6,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` - VirtualMachines []*common.NodeSubResource `protobuf:"bytes,7,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` + Status *common.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"` + Tags *common.Tags `protobuf:"bytes,4,opt,name=tags,proto3" json:"tags,omitempty"` + Entity *common.Entity `protobuf:"bytes,5,opt,name=entity,proto3" json:"entity,omitempty"` + PlatformFaultDomainCount int32 `protobuf:"varint,6,opt,name=platformFaultDomainCount,proto3" json:"platformFaultDomainCount,omitempty"` + VirtualMachines []*VirtualMachineReference `protobuf:"bytes,7,rep,name=virtualMachines,proto3" json:"virtualMachines,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *AvailabilitySet) Reset() { *m = AvailabilitySet{} } func (m *AvailabilitySet) String() string { return proto.CompactTextString(m) } func (*AvailabilitySet) ProtoMessage() {} func (*AvailabilitySet) Descriptor() ([]byte, []int) { - return fileDescriptor_d615df2311cce965, []int{2} + return fileDescriptor_d615df2311cce965, []int{3} } func (m *AvailabilitySet) XXX_Unmarshal(b []byte) error { @@ -210,7 +249,7 @@ func (m *AvailabilitySet) GetPlatformFaultDomainCount() int32 { return 0 } -func (m *AvailabilitySet) GetVirtualMachines() []*common.NodeSubResource { +func (m *AvailabilitySet) GetVirtualMachines() []*VirtualMachineReference { if m != nil { return m.VirtualMachines } @@ -220,6 +259,7 @@ func (m *AvailabilitySet) GetVirtualMachines() []*common.NodeSubResource { func init() { proto.RegisterType((*AvailabilitySetRequest)(nil), "moc.nodeagent.compute.AvailabilitySetRequest") proto.RegisterType((*AvailabilitySetResponse)(nil), "moc.nodeagent.compute.AvailabilitySetResponse") + proto.RegisterType((*VirtualMachineReference)(nil), "moc.nodeagent.compute.VirtualMachineReference") proto.RegisterType((*AvailabilitySet)(nil), "moc.nodeagent.compute.AvailabilitySet") } @@ -228,37 +268,37 @@ func init() { } var fileDescriptor_d615df2311cce965 = []byte{ - // 470 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6e, 0x13, 0x31, - 0x10, 0x86, 0xd9, 0x34, 0x09, 0x8a, 0x23, 0x52, 0x64, 0x05, 0xba, 0x8a, 0x04, 0x8a, 0x52, 0x09, - 0xe5, 0x82, 0x17, 0x2d, 0x9c, 0x38, 0x20, 0xb5, 0x50, 0x24, 0x0e, 0x80, 0xe4, 0x54, 0x1c, 0xb8, - 0x54, 0xce, 0x66, 0xb2, 0xb5, 0x58, 0x7b, 0x16, 0x7b, 0x1c, 0x94, 0x23, 0xaf, 0xc1, 0x91, 0x97, - 0xe0, 0xf5, 0x50, 0xbc, 0x21, 0x2a, 0x29, 0x48, 0xbd, 0xf4, 0xb4, 0xbb, 0xf3, 0x7f, 0xfe, 0x67, - 0xf6, 0xf7, 0xb0, 0x63, 0x83, 0xc5, 0x85, 0xc5, 0x05, 0xa8, 0x12, 0x2c, 0x5d, 0xa8, 0x95, 0xd2, - 0x95, 0x9a, 0xeb, 0x4a, 0xd3, 0xda, 0x03, 0x89, 0xda, 0x21, 0x21, 0x7f, 0x60, 0xb0, 0x10, 0x3b, - 0x48, 0x14, 0x68, 0xea, 0x40, 0x30, 0x7a, 0x5c, 0x22, 0x96, 0x15, 0x64, 0x11, 0x9a, 0x87, 0x65, - 0xf6, 0xcd, 0xa9, 0xba, 0x06, 0xe7, 0x9b, 0x63, 0xa3, 0xa3, 0x8d, 0x77, 0x81, 0xc6, 0xa0, 0xdd, - 0x3e, 0x1a, 0x61, 0xf2, 0x33, 0x61, 0x0f, 0x4f, 0xae, 0x74, 0x9a, 0x01, 0x49, 0xf8, 0x1a, 0xc0, - 0x13, 0x97, 0xec, 0xfe, 0x9e, 0xe2, 0xd3, 0x64, 0x7c, 0x30, 0xed, 0xe7, 0x4f, 0xc4, 0x3f, 0xa7, - 0x10, 0xfb, 0x46, 0xd7, 0xce, 0xf3, 0x17, 0xec, 0xde, 0xc7, 0x1a, 0x9c, 0x22, 0x8d, 0xf6, 0x7c, - 0x5d, 0x43, 0xda, 0x1a, 0x27, 0xd3, 0x41, 0x3e, 0x88, 0x86, 0x3b, 0x45, 0xfe, 0x0d, 0x4d, 0x7e, - 0x25, 0xec, 0xe8, 0xda, 0x90, 0xbe, 0x46, 0xeb, 0xe1, 0x56, 0xa6, 0xcc, 0x59, 0x57, 0x82, 0x0f, - 0x15, 0xc5, 0xf1, 0xfa, 0xf9, 0x48, 0x34, 0xf1, 0x8a, 0x3f, 0xf1, 0x8a, 0x53, 0xc4, 0xea, 0x93, - 0xaa, 0x02, 0xc8, 0x2d, 0xc9, 0x87, 0xac, 0x73, 0xe6, 0x1c, 0xba, 0xf4, 0x60, 0x9c, 0x4c, 0x7b, - 0xb2, 0xf9, 0x98, 0xfc, 0x68, 0xb1, 0xc3, 0x3d, 0x7b, 0xce, 0x59, 0xdb, 0x2a, 0x03, 0x69, 0x12, - 0xc1, 0xf8, 0xce, 0x07, 0xac, 0xa5, 0x17, 0xb1, 0x5b, 0x4f, 0xb6, 0xf4, 0x82, 0x1f, 0xb3, 0xae, - 0x27, 0x45, 0xc1, 0x47, 0xbb, 0x7e, 0xde, 0x8f, 0xff, 0x32, 0x8b, 0x25, 0xb9, 0x95, 0xf8, 0x23, - 0xd6, 0x26, 0x55, 0xfa, 0xb4, 0x1d, 0x91, 0x5e, 0x44, 0xce, 0x55, 0xe9, 0x65, 0x2c, 0x6f, 0x3c, - 0xc0, 0x92, 0xa6, 0x75, 0xda, 0xb9, 0xe2, 0x71, 0x16, 0x4b, 0x72, 0x2b, 0xf1, 0x97, 0x2c, 0xad, - 0x2b, 0x45, 0x4b, 0x74, 0xe6, 0xad, 0x0a, 0x15, 0xbd, 0x41, 0xa3, 0xb4, 0x7d, 0x8d, 0xc1, 0x52, - 0xda, 0x1d, 0x27, 0xd3, 0x8e, 0xfc, 0xaf, 0xce, 0x5f, 0xb1, 0xc3, 0x95, 0x76, 0x14, 0x54, 0xf5, - 0x5e, 0x15, 0x97, 0xda, 0x82, 0x4f, 0xef, 0xc6, 0xe4, 0x87, 0xb1, 0xd3, 0x07, 0x5c, 0xc0, 0x2c, - 0xcc, 0x25, 0x78, 0x0c, 0xae, 0x00, 0xb9, 0x0f, 0xe7, 0xdf, 0x13, 0x36, 0xdc, 0x0b, 0xe7, 0x64, - 0x73, 0x53, 0x5c, 0xb3, 0xee, 0x3b, 0xbb, 0xc2, 0x2f, 0xc0, 0x9f, 0xde, 0xf0, 0x0e, 0x9b, 0x95, - 0x1d, 0x89, 0x9b, 0xe2, 0xcd, 0xf2, 0x4c, 0xee, 0x9c, 0x3e, 0xfb, 0x2c, 0x4a, 0x4d, 0x97, 0x61, - 0xbe, 0x61, 0x33, 0xa3, 0x0b, 0x87, 0x1e, 0x97, 0x94, 0x19, 0x2c, 0x32, 0x57, 0x17, 0xd9, 0xce, - 0x2b, 0xdb, 0x7a, 0xcd, 0xbb, 0x71, 0x09, 0x9e, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x6a, - 0x42, 0xd2, 0xaf, 0x03, 0x00, 0x00, + // 477 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xc1, 0x6b, 0x13, 0x41, + 0x14, 0xc6, 0xdd, 0x34, 0x89, 0x64, 0x82, 0xa9, 0x0c, 0xd5, 0x2c, 0x01, 0x25, 0xa4, 0x20, 0xb9, + 0x74, 0x56, 0x56, 0x4f, 0xde, 0x5a, 0xad, 0xe0, 0x41, 0x84, 0x69, 0x29, 0xe2, 0xa5, 0x4c, 0x36, + 0x2f, 0xdb, 0xc1, 0xdd, 0x79, 0xeb, 0xcc, 0x9b, 0x48, 0x8e, 0xfe, 0x2b, 0xfe, 0x0d, 0x82, 0xff, + 0x9e, 0x64, 0x36, 0x86, 0x76, 0xdb, 0x40, 0x2f, 0x3d, 0xed, 0xee, 0x7c, 0xbf, 0xf9, 0xe6, 0xdb, + 0x6f, 0x1e, 0x3b, 0x2c, 0x31, 0xbb, 0x34, 0x38, 0x07, 0x95, 0x83, 0xa1, 0x4b, 0xb5, 0x54, 0xba, + 0x50, 0x33, 0x5d, 0x68, 0x5a, 0x39, 0x20, 0x51, 0x59, 0x24, 0xe4, 0xcf, 0x4a, 0xcc, 0xc4, 0x16, + 0x12, 0x19, 0x96, 0x95, 0x27, 0x18, 0xbd, 0xcc, 0x11, 0xf3, 0x02, 0x92, 0x00, 0xcd, 0xfc, 0x22, + 0xf9, 0x69, 0x55, 0x55, 0x81, 0x75, 0xf5, 0xb6, 0xd1, 0x70, 0xed, 0x9d, 0x61, 0x59, 0xa2, 0xd9, + 0x3c, 0x6a, 0x61, 0xf2, 0x3b, 0x62, 0xcf, 0x8f, 0xaf, 0x9d, 0x74, 0x06, 0x24, 0xe1, 0x87, 0x07, + 0x47, 0x5c, 0xb2, 0xa7, 0x0d, 0xc5, 0xc5, 0xd1, 0x78, 0x6f, 0xda, 0x4f, 0x5f, 0x89, 0x3b, 0x53, + 0x88, 0xa6, 0xd1, 0xad, 0xfd, 0xfc, 0x2d, 0x7b, 0xf2, 0xa5, 0x02, 0xab, 0x48, 0xa3, 0x39, 0x5f, + 0x55, 0x10, 0xb7, 0xc6, 0xd1, 0x74, 0x90, 0x0e, 0x82, 0xe1, 0x56, 0x91, 0x37, 0xa1, 0xc9, 0xdf, + 0x88, 0x0d, 0x6f, 0x85, 0x74, 0x15, 0x1a, 0x07, 0x0f, 0x92, 0x32, 0x65, 0x5d, 0x09, 0xce, 0x17, + 0x14, 0xe2, 0xf5, 0xd3, 0x91, 0xa8, 0xeb, 0x15, 0xff, 0xeb, 0x15, 0x27, 0x88, 0xc5, 0x85, 0x2a, + 0x3c, 0xc8, 0x0d, 0xc9, 0x0f, 0x58, 0xe7, 0xd4, 0x5a, 0xb4, 0xf1, 0xde, 0x38, 0x9a, 0xf6, 0x64, + 0xfd, 0x31, 0x39, 0x62, 0xc3, 0x0b, 0x6d, 0xc9, 0xab, 0xe2, 0xb3, 0xca, 0xae, 0xb4, 0x01, 0x09, + 0x0b, 0xb0, 0x60, 0x32, 0xe0, 0x9c, 0xb5, 0x8d, 0x2a, 0x21, 0x8e, 0x02, 0x1f, 0xde, 0x27, 0x7f, + 0x5a, 0x6c, 0xbf, 0x91, 0xe6, 0x2e, 0x8e, 0x0f, 0x58, 0x4b, 0xcf, 0x43, 0xb8, 0x9e, 0x6c, 0xe9, + 0x39, 0x3f, 0x64, 0x5d, 0x47, 0x8a, 0xbc, 0x0b, 0xa7, 0xf7, 0xd3, 0x7e, 0xf8, 0xf5, 0xb3, 0xb0, + 0x24, 0x37, 0x12, 0x7f, 0xc1, 0xda, 0xa4, 0x72, 0x17, 0xb7, 0x03, 0xd2, 0x0b, 0xc8, 0xb9, 0xca, + 0x9d, 0x0c, 0xcb, 0x6b, 0x0f, 0x30, 0xa4, 0x69, 0x15, 0x77, 0xae, 0x79, 0x9c, 0x86, 0x25, 0xb9, + 0x91, 0xf8, 0x3b, 0x16, 0x57, 0x85, 0xa2, 0x05, 0xda, 0xf2, 0xa3, 0xf2, 0x05, 0x7d, 0xc0, 0x52, + 0x69, 0xf3, 0x1e, 0xbd, 0xa1, 0xb8, 0x3b, 0x8e, 0xa6, 0x1d, 0xb9, 0x53, 0xe7, 0x5f, 0xd9, 0xfe, + 0xf2, 0x46, 0x17, 0x2e, 0x7e, 0x1c, 0x2e, 0x4a, 0xec, 0xb8, 0xa8, 0x1d, 0xcd, 0xc9, 0xa6, 0x4d, + 0xfa, 0x2b, 0x62, 0x07, 0x8d, 0xda, 0x8e, 0xd7, 0x4e, 0x5c, 0xb3, 0xee, 0x27, 0xb3, 0xc4, 0xef, + 0xc0, 0x8f, 0xee, 0x39, 0x0c, 0xf5, 0xec, 0x8f, 0xc4, 0x7d, 0xf1, 0x7a, 0x0a, 0x27, 0x8f, 0x4e, + 0x5e, 0x7f, 0x13, 0xb9, 0xa6, 0x2b, 0x3f, 0x5b, 0xb3, 0x49, 0xa9, 0x33, 0x8b, 0x0e, 0x17, 0x94, + 0x94, 0x98, 0x25, 0xb6, 0xca, 0x92, 0xad, 0x57, 0xb2, 0xf1, 0x9a, 0x75, 0xc3, 0x34, 0xbd, 0xf9, + 0x17, 0x00, 0x00, 0xff, 0xff, 0x20, 0xf9, 0xb7, 0xe0, 0xf8, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. From 320b2672b9e532453179dc0d808f3b52dec67e10 Mon Sep 17 00:00:00 2001 From: John Carden Date: Mon, 26 Feb 2024 20:07:14 +0000 Subject: [PATCH 18/25] updated go.mod and go.sum --- go.mod | 5 ++++- go.sum | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 0f5f14a..9261d5c 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,10 @@ require ( gopkg.in/yaml.v3 v3.0.1 ) -require google.golang.org/protobuf v1.32.0 // indirect +require ( + golang.org/x/net v0.21.0 // indirect + google.golang.org/protobuf v1.32.0 // indirect +) replace ( github.com/golang/mock => github.com/golang/mock v1.6.0 diff --git a/go.sum b/go.sum index ca3435b..1ae924e 100644 --- a/go.sum +++ b/go.sum @@ -1111,8 +1111,9 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= -golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14= golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1172,6 +1173,7 @@ golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= From aa0ad6d3e3aadc77ffa9ff4e74746d73aabb0f5c Mon Sep 17 00:00:00 2001 From: Li Ting Wong Date: Wed, 28 Feb 2024 22:16:50 +0000 Subject: [PATCH 19/25] add avset roles --- common/roles.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/roles.go b/common/roles.go index 90dd699..77d2256 100644 --- a/common/roles.go +++ b/common/roles.go @@ -67,6 +67,8 @@ const ( KeyContributorRoleName = "KeyContributor" // Secret Contributor role - has permissions to run any operation on Secrets SecretContributorRoleName = "SecretContributor" + // AvailabilitySet Contributor Role - has permissions to run any operations on AvailabilitySets + AvailabilitySetContributorRoleName = "AvailabilitySetContributor" // Location Reader role - has permissions to run read operations on locations LocationReaderRoleName = "LocationReader" // Group Reader Role - has permissions to run read operations on the group resource @@ -123,6 +125,8 @@ const ( SecretReaderRoleName = "SecretReader" // Health Reader role - has permissions to read agent health information HealthReaderRoleName = "HealthReader" + // AvailabilitySet Reader Role - has permissions to run read operations on AvailabilitySets + AvailabilitySetReaderRoleName = "AvailabilitySetReader" // Certificate Signer Role - has permissions to run sign and renew operations on Certificates CertSignerRoleName = "CertificateSigner" ) From be9dc5d07b0339e022a483f64fc021df950b1f55 Mon Sep 17 00:00:00 2001 From: Dhaval Popat Date: Wed, 28 Feb 2024 15:29:08 -0800 Subject: [PATCH 20/25] Update redact method for sensitive json fields --- go.mod | 5 +- go.sum | 7 +- pkg/redact/redact.go | 33 +++- rpc/common/moc_common_computecommon.pb.go | 229 ++++++++++++---------- rpc/common/moc_common_computecommon.proto | 3 +- 5 files changed, 163 insertions(+), 114 deletions(-) diff --git a/go.mod b/go.mod index 0f5f14a..cd1c6d6 100644 --- a/go.mod +++ b/go.mod @@ -14,7 +14,10 @@ require ( gopkg.in/yaml.v3 v3.0.1 ) -require google.golang.org/protobuf v1.32.0 // indirect +require ( + golang.org/x/net v0.21.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 // indirect +) replace ( github.com/golang/mock => github.com/golang/mock v1.6.0 diff --git a/go.sum b/go.sum index ca3435b..e05ab1a 100644 --- a/go.sum +++ b/go.sum @@ -1111,8 +1111,9 @@ golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= -golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14= golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1172,6 +1173,7 @@ golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= @@ -1501,8 +1503,9 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641 h1:DKU1r6Tj5s1vlU/moGhuGz7E3xRfwjdAfDzbsaQJtEY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228224816-df926f6c8641/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= diff --git a/pkg/redact/redact.go b/pkg/redact/redact.go index ed6c8ab..a5f6656 100644 --- a/pkg/redact/redact.go +++ b/pkg/redact/redact.go @@ -4,7 +4,9 @@ package redact import ( + "encoding/json" "reflect" + "strings" "github.com/golang/protobuf/descriptor" "github.com/golang/protobuf/proto" @@ -72,7 +74,18 @@ func redactMessage(msg interface{}, val reflect.Value) { } } if field.Options != nil { - ex, err := proto.GetExtension(field.Options, common.E_Sensitive) + ex, err := proto.GetExtension(field.Options, common.E_Sensitivejson) + if err != proto.ErrMissingExtension && (err != nil || *ex.(*bool)) { + if fieldVal.Kind() == reflect.String { + redactJsonSensitiveField(fieldVal) + } else { + t := fieldVal.Type() + fieldVal.Set(reflect.Zero(t)) + } + continue + } + + ex, err = proto.GetExtension(field.Options, common.E_Sensitive) if err == proto.ErrMissingExtension { continue } @@ -92,3 +105,21 @@ func redactMessage(msg interface{}, val reflect.Value) { } } } + +func redactJsonSensitiveField(val reflect.Value) { + var jsonData map[string]interface{} + validJsonString := strings.ReplaceAll(val.String(), `\`, `"`) + if err := json.Unmarshal([]byte(validJsonString), &jsonData); err != nil { + return + } + for key := range jsonData { + // This can be extended to an array of sensitive keys if needed + if key == "private-key" { + jsonData[key] = RedactedString + } + } + redactedJson, err := json.Marshal(jsonData) + if err == nil { + val.SetString(string(redactedJson)) + } +} diff --git a/rpc/common/moc_common_computecommon.pb.go b/rpc/common/moc_common_computecommon.pb.go index a397f4a..1fa27e5 100644 --- a/rpc/common/moc_common_computecommon.pb.go +++ b/rpc/common/moc_common_computecommon.pb.go @@ -1177,6 +1177,15 @@ var E_Sensitivecompute = &proto.ExtensionDesc{ Filename: "moc_common_computecommon.proto", } +var E_Sensitivejson = &proto.ExtensionDesc{ + ExtendedType: (*descriptor.FieldOptions)(nil), + ExtensionType: (*bool)(nil), + Field: 50003, + Name: "moc.sensitivejson", + Tag: "varint,50003,opt,name=sensitivejson", + Filename: "moc_common_computecommon.proto", +} + func init() { proto.RegisterEnum("moc.UserType", UserType_name, UserType_value) proto.RegisterEnum("moc.ProcessorType", ProcessorType_name, ProcessorType_value) @@ -1203,118 +1212,120 @@ func init() { proto.RegisterType((*GuestAgentConfiguration)(nil), "moc.GuestAgentConfiguration") proto.RegisterType((*ProxyConfiguration)(nil), "moc.ProxyConfiguration") proto.RegisterExtension(E_Sensitivecompute) + proto.RegisterExtension(E_Sensitivejson) } func init() { proto.RegisterFile("moc_common_computecommon.proto", fileDescriptor_7d1a061f6c82445b) } var fileDescriptor_7d1a061f6c82445b = []byte{ - // 1714 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x97, 0xcd, 0x72, 0xe3, 0xc6, - 0x11, 0x80, 0xc5, 0x3f, 0x89, 0x6c, 0xfd, 0xec, 0x68, 0x76, 0x2d, 0xd1, 0xca, 0x7a, 0xad, 0xd0, - 0xeb, 0xb5, 0x42, 0xdb, 0x14, 0xff, 0xcc, 0x62, 0xa5, 0x2a, 0x55, 0xa1, 0x48, 0x48, 0x4b, 0x4b, - 0x04, 0x59, 0x00, 0x49, 0x39, 0xb9, 0x30, 0x10, 0x38, 0xa4, 0x50, 0x21, 0x30, 0x28, 0x60, 0xa0, - 0x95, 0x7c, 0x48, 0xe5, 0x94, 0x73, 0x1e, 0x20, 0x87, 0x1c, 0xf3, 0x02, 0xa9, 0x3c, 0x41, 0x5e, - 0x20, 0xef, 0x93, 0xaa, 0xd4, 0xcc, 0x00, 0x92, 0x00, 0x49, 0x39, 0x11, 0xfd, 0x75, 0x4f, 0x77, - 0xa3, 0xbb, 0x39, 0x33, 0x80, 0x77, 0x36, 0x35, 0x67, 0x26, 0xb5, 0x6d, 0xea, 0xf0, 0x1f, 0x37, - 0x60, 0x44, 0x4a, 0x15, 0xd7, 0xa3, 0x8c, 0xe2, 0x8c, 0x4d, 0xcd, 0x83, 0xc3, 0x25, 0xa5, 0xcb, - 0x15, 0x39, 0x16, 0xe8, 0x2a, 0x58, 0x1c, 0xcf, 0x89, 0x6f, 0x7a, 0x96, 0xcb, 0xa8, 0x27, 0xcd, - 0x4a, 0x5d, 0xd8, 0xbe, 0xb4, 0x1c, 0x6d, 0x70, 0x61, 0xf9, 0x8c, 0x38, 0xc4, 0xc3, 0x75, 0xc8, - 0x8f, 0xb8, 0xc6, 0xa4, 0xab, 0x62, 0xea, 0x30, 0x75, 0xb4, 0x53, 0xdf, 0xab, 0xd8, 0xd4, 0xac, - 0x08, 0xab, 0x48, 0x33, 0xbe, 0x73, 0x89, 0x76, 0x6f, 0x57, 0x3a, 0x05, 0x2c, 0xd4, 0x5d, 0xea, - 0x2c, 0xac, 0x65, 0xe0, 0x19, 0xcc, 0xa2, 0x0e, 0xae, 0x42, 0x21, 0xf2, 0xea, 0x17, 0x53, 0x87, - 0x99, 0xa3, 0xcd, 0x3a, 0x7e, 0x70, 0x15, 0xa9, 0xb4, 0x07, 0xa3, 0x92, 0x03, 0xc5, 0xa9, 0xe5, - 0xb1, 0xc0, 0x58, 0x0d, 0x0c, 0xf3, 0xda, 0x72, 0x48, 0x37, 0xf0, 0x19, 0xb5, 0x75, 0xeb, 0x67, - 0x82, 0x0f, 0x20, 0x6f, 0xba, 0x41, 0x97, 0x06, 0x0e, 0x13, 0x79, 0xe5, 0xb4, 0x7b, 0x99, 0xeb, - 0x6c, 0x62, 0x53, 0xef, 0x6e, 0x70, 0x52, 0x4c, 0x4b, 0x5d, 0x24, 0x73, 0xdd, 0x32, 0x5a, 0x97, - 0x91, 0xba, 0x48, 0x2e, 0xfd, 0x3d, 0x05, 0x07, 0xbd, 0x3b, 0xc7, 0xb0, 0x2d, 0x73, 0x20, 0xec, - 0xe3, 0x2f, 0x70, 0x04, 0xaf, 0x6c, 0xe3, 0xd6, 0xb2, 0x03, 0x7b, 0x10, 0x79, 0xe7, 0x91, 0xb3, - 0x5a, 0x12, 0x0b, 0x4b, 0xcb, 0x89, 0x59, 0xa6, 0x43, 0xcb, 0x38, 0xc6, 0x15, 0xc0, 0xcc, 0xf0, - 0x96, 0x84, 0x49, 0x72, 0x12, 0x2c, 0x16, 0xc4, 0x13, 0x89, 0x6d, 0x6b, 0xcf, 0x68, 0x4a, 0x3f, - 0xc1, 0x87, 0x78, 0x49, 0xb4, 0xc0, 0xe9, 0x52, 0xdb, 0x36, 0x9c, 0x79, 0xdf, 0x71, 0x03, 0x36, - 0x32, 0x3c, 0xc3, 0x26, 0x8c, 0x78, 0x18, 0x43, 0x56, 0x35, 0x6c, 0x22, 0x52, 0x2c, 0x68, 0xe2, - 0x19, 0x1f, 0x40, 0x6e, 0x6a, 0xac, 0x02, 0x22, 0xb2, 0x29, 0x9c, 0x64, 0xff, 0xfa, 0xcf, 0x62, - 0x4a, 0x93, 0xa8, 0xf4, 0xe7, 0x14, 0xbc, 0x7f, 0xc9, 0xb5, 0x2e, 0x86, 0x44, 0xa7, 0x81, 0x67, - 0x12, 0xfc, 0x16, 0xd6, 0xa5, 0x2c, 0x5d, 0x87, 0x5e, 0x42, 0x86, 0xdf, 0x42, 0x41, 0x3e, 0x4d, - 0xb4, 0xbe, 0x0c, 0xa3, 0x3d, 0x00, 0xae, 0x8d, 0xb2, 0xed, 0x89, 0xb7, 0x2c, 0x68, 0x0f, 0xa0, - 0xf4, 0xef, 0xff, 0x93, 0x42, 0xdf, 0xf1, 0x99, 0xe1, 0x98, 0x64, 0x6a, 0x91, 0x4f, 0x58, 0x87, - 0x1d, 0xe5, 0x96, 0x98, 0x01, 0x6f, 0x8b, 0xce, 0x0c, 0x46, 0xc2, 0xd1, 0xfc, 0x56, 0xcc, 0xd3, - 0x4b, 0x2e, 0xe2, 0x4b, 0xb4, 0x84, 0x0b, 0x3e, 0x19, 0xca, 0xad, 0xc5, 0xba, 0x74, 0x4e, 0xa2, - 0xa9, 0x89, 0x64, 0xbc, 0x07, 0xeb, 0xc3, 0x80, 0xb9, 0x01, 0x0b, 0x93, 0x0e, 0x25, 0xfc, 0x06, - 0x72, 0x8a, 0xe7, 0x51, 0xaf, 0x98, 0x15, 0x58, 0x0a, 0xa5, 0x1f, 0xe1, 0x20, 0x31, 0xb7, 0x86, - 0x6b, 0x5c, 0x59, 0x2b, 0x8b, 0x59, 0xc4, 0xc7, 0xdf, 0xc1, 0x6e, 0xdf, 0xa7, 0x2b, 0x83, 0x91, - 0xf9, 0xd4, 0x16, 0x9a, 0x95, 0xcc, 0x3f, 0xaf, 0x3d, 0x55, 0x94, 0xfe, 0x9b, 0x02, 0xfc, 0xf8, - 0xdd, 0x79, 0xae, 0x81, 0xcf, 0xbb, 0x6b, 0xf2, 0x44, 0xc3, 0xee, 0xf2, 0x67, 0xfc, 0x1b, 0xc8, - 0xad, 0xc8, 0x0d, 0x59, 0x89, 0xec, 0x77, 0xea, 0xdf, 0x88, 0x62, 0x3c, 0x5d, 0x5b, 0x91, 0x3f, - 0x17, 0xdc, 0x54, 0xfc, 0x71, 0xe5, 0x2a, 0xfc, 0x1e, 0xb6, 0xe7, 0x96, 0xef, 0xae, 0x8c, 0x3b, - 0x69, 0x10, 0xbe, 0x6a, 0x1c, 0xe2, 0x22, 0x6c, 0xd8, 0xc4, 0xf7, 0x8d, 0x25, 0x09, 0xdf, 0x39, - 0x12, 0x79, 0x4a, 0xcc, 0xb2, 0x49, 0x31, 0x27, 0x53, 0xe2, 0xcf, 0xa5, 0xdf, 0xc2, 0xab, 0x44, - 0x34, 0xbc, 0x09, 0x1b, 0x13, 0xe7, 0x8f, 0x0e, 0xfd, 0xe4, 0xa0, 0x35, 0x9c, 0x87, 0x6c, 0xdf, - 0x59, 0x50, 0x94, 0xe2, 0xf8, 0xd2, 0xf0, 0x1c, 0xcb, 0x59, 0xa2, 0x34, 0x2e, 0x84, 0x65, 0x45, - 0x99, 0xd2, 0x9f, 0xe0, 0xcb, 0x78, 0x2d, 0x3b, 0x4b, 0xe2, 0xb0, 0xd8, 0x34, 0x7c, 0x80, 0x9d, - 0x1b, 0x5b, 0xe0, 0x29, 0xf1, 0x7c, 0x8b, 0x3a, 0x61, 0x55, 0x12, 0x14, 0x37, 0x20, 0xef, 0x8b, - 0x64, 0x88, 0x5f, 0x4c, 0x8b, 0xfd, 0x67, 0xff, 0x85, 0x12, 0x69, 0xf7, 0x86, 0xa5, 0x06, 0xec, - 0x9f, 0x05, 0xc4, 0x67, 0xc2, 0x53, 0x7c, 0x3f, 0x28, 0xc2, 0x06, 0x71, 0x78, 0x93, 0xe6, 0x61, - 0xfb, 0x22, 0xb1, 0xf4, 0xb7, 0x14, 0xe0, 0x91, 0x47, 0x6f, 0x13, 0x1b, 0x48, 0x09, 0x0a, 0xd7, - 0x8c, 0xb9, 0x42, 0x13, 0xfb, 0xf3, 0x3c, 0x60, 0xfc, 0x1e, 0x80, 0x0b, 0xbe, 0x34, 0x7a, 0xfc, - 0x3f, 0x7d, 0xc4, 0x79, 0x68, 0x87, 0x4a, 0x93, 0xcc, 0x61, 0x86, 0x77, 0x21, 0x14, 0x79, 0x0c, - 0xe6, 0x05, 0x3e, 0x23, 0xf3, 0xae, 0x21, 0x3b, 0x14, 0xc5, 0xb8, 0xc7, 0xe5, 0x77, 0x90, 0x9f, - 0xf8, 0xc4, 0x13, 0xed, 0xc8, 0x43, 0x56, 0x1b, 0x0e, 0xc7, 0xb2, 0x17, 0x13, 0x5d, 0xd1, 0x50, - 0xaa, 0xfc, 0x3b, 0xd8, 0x1e, 0x79, 0xd4, 0x24, 0xbe, 0x4f, 0xef, 0x8d, 0x54, 0xea, 0x10, 0xb4, - 0xc6, 0x3b, 0xd3, 0x77, 0x18, 0x59, 0xc9, 0x8e, 0x89, 0xc7, 0x56, 0x13, 0xa5, 0xf1, 0x06, 0x64, - 0x3a, 0x83, 0x1e, 0xca, 0x70, 0x83, 0xce, 0xa0, 0xd7, 0x6a, 0xa2, 0xac, 0x60, 0xda, 0x00, 0xe5, - 0x04, 0xd3, 0x06, 0xad, 0x26, 0x5a, 0x2f, 0xff, 0x08, 0xef, 0x86, 0x2e, 0xe1, 0xf5, 0x70, 0x96, - 0xfa, 0x9d, 0xcf, 0x88, 0x7d, 0x42, 0x29, 0xf3, 0x99, 0x67, 0xb8, 0x8a, 0xb3, 0xb4, 0x1c, 0x82, - 0x77, 0x00, 0xba, 0x17, 0xc3, 0x49, 0x6f, 0xd6, 0x57, 0xfb, 0x3c, 0xad, 0x22, 0xbc, 0xb9, 0xec, - 0xab, 0xbd, 0xe1, 0xa5, 0x3e, 0xeb, 0xa8, 0xfa, 0xa5, 0xa2, 0xcd, 0x4e, 0xfb, 0x17, 0x8a, 0x8e, - 0x52, 0xe5, 0xef, 0xe1, 0x75, 0xc2, 0x57, 0x34, 0x60, 0xe1, 0x02, 0x99, 0xef, 0x45, 0x5f, 0x9d, - 0xfc, 0x84, 0x52, 0xe5, 0x7f, 0x14, 0x60, 0x2f, 0x3e, 0x4a, 0xfc, 0x20, 0x89, 0x96, 0xf4, 0xc8, - 0xc2, 0x08, 0x56, 0x0c, 0xad, 0x61, 0x0c, 0x3b, 0x3a, 0x33, 0x9c, 0xb9, 0xe1, 0xcd, 0x67, 0x9d, - 0xfa, 0xec, 0xa6, 0x8e, 0xd2, 0x71, 0xd6, 0xe4, 0x2c, 0x83, 0x5f, 0x8b, 0xd9, 0x96, 0xac, 0x57, - 0xf7, 0x67, 0x37, 0x0d, 0x94, 0x8d, 0xc3, 0xa6, 0x80, 0xb9, 0x38, 0x6c, 0x0b, 0xb8, 0x8e, 0xdf, - 0x00, 0x7a, 0x80, 0xb5, 0x96, 0xa0, 0x1b, 0x71, 0xda, 0x90, 0x5e, 0xf3, 0x71, 0x07, 0xba, 0xc8, - 0xa9, 0x90, 0x80, 0x0d, 0x0e, 0x21, 0x01, 0x45, 0xa6, 0x9b, 0x09, 0xf8, 0x03, 0x87, 0x5b, 0xf1, - 0x48, 0x7a, 0x4d, 0xac, 0xdf, 0x8e, 0x99, 0x9e, 0xb7, 0xf5, 0xd9, 0x4d, 0x0d, 0xed, 0xc4, 0x4c, - 0xcf, 0xdb, 0x3c, 0x7e, 0x0d, 0xbd, 0x4a, 0xd2, 0x06, 0xa7, 0x28, 0x49, 0x9b, 0x9c, 0xee, 0x62, - 0x04, 0x5b, 0xf7, 0x54, 0x3d, 0x6f, 0x21, 0x8c, 0x77, 0x61, 0xfb, 0x11, 0xa9, 0xd5, 0xd1, 0xeb, - 0xb8, 0xd1, 0xb4, 0x85, 0xde, 0xc4, 0x8d, 0xa6, 0xb5, 0x3a, 0xfa, 0x2c, 0xe9, 0xff, 0x07, 0xee, - 0x7f, 0x0f, 0xef, 0xc3, 0xeb, 0x44, 0x81, 0x66, 0x1f, 0x47, 0x2a, 0xda, 0x4f, 0x28, 0x1a, 0x91, - 0xa2, 0x98, 0x50, 0x34, 0x23, 0xc5, 0xe7, 0xb1, 0x00, 0xa7, 0x75, 0x5f, 0xd0, 0x83, 0x38, 0x6d, - 0x4a, 0xfa, 0x8b, 0x38, 0x6d, 0x4b, 0xfa, 0x16, 0x7f, 0x06, 0xbb, 0x0f, 0x94, 0x77, 0x96, 0xe3, - 0x2f, 0x62, 0xa5, 0x55, 0xbb, 0xcd, 0x59, 0xa7, 0x8e, 0xde, 0x25, 0x60, 0x9b, 0xc3, 0x2f, 0x63, - 0x6e, 0xd5, 0x6e, 0xad, 0xc5, 0xe9, 0x61, 0x82, 0x36, 0xea, 0x9c, 0xfe, 0x32, 0x41, 0x9b, 0xb3, - 0x4e, 0xa3, 0x8a, 0x4a, 0x09, 0xda, 0x16, 0xf4, 0xab, 0x58, 0x62, 0xd2, 0x6f, 0xa3, 0x8a, 0xde, - 0x27, 0x30, 0x77, 0xdc, 0xa8, 0xa2, 0xaf, 0xf9, 0x1f, 0x2f, 0xee, 0xb9, 0x56, 0xad, 0xce, 0x9a, - 0x55, 0xf4, 0x21, 0xa1, 0x69, 0xdf, 0x6b, 0xbe, 0xc1, 0x9f, 0xc3, 0x67, 0x89, 0x08, 0xa1, 0xea, - 0x28, 0xa1, 0xe2, 0x51, 0x42, 0xd5, 0xaf, 0x9e, 0x8f, 0xd4, 0xae, 0xa2, 0xf2, 0xf3, 0x91, 0xda, - 0x55, 0xf4, 0xed, 0x0b, 0x91, 0xda, 0x55, 0xf4, 0xdd, 0x0b, 0x91, 0xda, 0x55, 0xf4, 0xfd, 0xd3, - 0x6a, 0xd5, 0x5a, 0xa8, 0xf2, 0xb4, 0x5a, 0xb5, 0x16, 0x3a, 0x7e, 0xa6, 0x5a, 0xb5, 0x16, 0xaa, - 0x3e, 0x53, 0xad, 0x5a, 0x0b, 0xd5, 0xf0, 0x36, 0x14, 0xe4, 0xed, 0x94, 0xb7, 0x65, 0xf6, 0x48, - 0x54, 0xcf, 0xd1, 0x1f, 0xf8, 0x68, 0x87, 0xe2, 0x99, 0x1b, 0xb8, 0x37, 0xc8, 0xc0, 0x00, 0xeb, - 0x92, 0xa0, 0x2b, 0xfc, 0x0a, 0x36, 0x27, 0x8e, 0x1f, 0xb8, 0x2e, 0xf5, 0x18, 0x99, 0x23, 0xb3, - 0x7c, 0x04, 0xbb, 0x4f, 0xee, 0xd7, 0x7c, 0x13, 0xfe, 0x38, 0x1e, 0x8f, 0xe4, 0xa6, 0xc6, 0x9f, - 0xf8, 0x1e, 0x38, 0x06, 0x18, 0xd1, 0x4f, 0xc4, 0x93, 0x57, 0x98, 0xd8, 0xd9, 0xba, 0x09, 0x1b, - 0x5a, 0xe0, 0x88, 0x13, 0x35, 0xc5, 0xf7, 0xe2, 0xe1, 0x62, 0x81, 0xd2, 0x3c, 0xee, 0xc8, 0x08, - 0x7c, 0x32, 0x47, 0x19, 0xbc, 0x05, 0xf9, 0xae, 0x67, 0x31, 0xcb, 0x34, 0x56, 0x28, 0xcb, 0xbd, - 0xea, 0xc6, 0x0d, 0x99, 0xa3, 0x5c, 0x79, 0x01, 0xfb, 0xf1, 0x9d, 0x32, 0xdc, 0x67, 0xa9, 0x23, - 0xac, 0xc6, 0x1d, 0x2d, 0x3c, 0x30, 0xf4, 0xf1, 0x70, 0x84, 0x52, 0x1c, 0x6a, 0x8a, 0xae, 0x8c, - 0x51, 0x1a, 0xef, 0x01, 0xd6, 0x94, 0x51, 0xa7, 0xaf, 0xcd, 0xce, 0x26, 0x8a, 0x3e, 0x9e, 0x75, - 0xce, 0x14, 0x75, 0x2c, 0xcf, 0x85, 0x51, 0x67, 0xa2, 0x2b, 0x28, 0x2b, 0xd6, 0x75, 0xa6, 0x0a, - 0xca, 0x95, 0xff, 0x95, 0x7a, 0xf9, 0x3a, 0xfb, 0xe4, 0x76, 0xb6, 0x17, 0x27, 0xb3, 0x89, 0x7a, - 0xae, 0x0e, 0x2f, 0x55, 0xb4, 0xc6, 0x1b, 0x9e, 0xd0, 0x9d, 0x76, 0xfa, 0x17, 0x4a, 0x0f, 0xa5, - 0xf0, 0x5b, 0x28, 0x26, 0x54, 0xfa, 0xa4, 0xdb, 0x55, 0x94, 0x9e, 0xd2, 0x43, 0xe9, 0x67, 0x9c, - 0x8e, 0x14, 0xb5, 0xd7, 0x57, 0xcf, 0x50, 0xe6, 0x99, 0x95, 0x9a, 0x72, 0x32, 0x1c, 0x8e, 0xb9, - 0x36, 0x5b, 0xfe, 0x19, 0xb6, 0x3a, 0x9e, 0x79, 0x6d, 0x31, 0x62, 0xb2, 0xc0, 0x23, 0xbc, 0xbe, - 0xb7, 0xed, 0x96, 0x2c, 0xca, 0xa0, 0xcf, 0x5b, 0x23, 0x4e, 0xbd, 0x95, 0x7b, 0x6d, 0xa0, 0x34, - 0x6f, 0x85, 0xe8, 0xd2, 0xa8, 0x8b, 0x32, 0x7c, 0xda, 0x3a, 0xda, 0x60, 0xf6, 0x78, 0x39, 0xca, - 0xf1, 0x75, 0x96, 0xc1, 0x8f, 0x48, 0xe1, 0xaa, 0xd5, 0x44, 0x05, 0x5e, 0x4a, 0x71, 0x6c, 0xc6, - 0x4d, 0xb7, 0xca, 0x1f, 0x61, 0x4b, 0x27, 0x66, 0xe0, 0x59, 0xec, 0x4e, 0x0c, 0xc6, 0x2e, 0x6c, - 0xab, 0xc3, 0x71, 0x77, 0xa8, 0x9e, 0xf6, 0xcf, 0x26, 0x9a, 0xd2, 0x43, 0x6b, 0x1c, 0x8d, 0xb5, - 0x89, 0x3e, 0x56, 0x7a, 0x17, 0x9d, 0x89, 0xda, 0xfd, 0x88, 0x52, 0xfc, 0x08, 0x13, 0x26, 0x3d, - 0x45, 0x1d, 0xf7, 0x3b, 0x17, 0xd3, 0x01, 0x4a, 0xff, 0xfa, 0x1c, 0x90, 0x4f, 0x1c, 0xdf, 0x62, - 0xd6, 0x0d, 0x09, 0x3f, 0x1a, 0xf1, 0x17, 0x15, 0xf9, 0x91, 0x58, 0x89, 0x3e, 0x12, 0x2b, 0xa7, - 0x16, 0x59, 0xcd, 0x87, 0x2e, 0x2f, 0x84, 0x5f, 0xfc, 0xcf, 0x5f, 0x32, 0xe2, 0xae, 0xf3, 0x64, - 0xe1, 0xc9, 0xd7, 0xbf, 0xff, 0x6a, 0x69, 0xb1, 0xeb, 0xe0, 0xaa, 0x62, 0x52, 0xfb, 0xd8, 0xb6, - 0x4c, 0x8f, 0xfa, 0x74, 0xc1, 0x8e, 0x6d, 0x6a, 0x1e, 0x7b, 0xae, 0x79, 0x2c, 0x3f, 0x47, 0xaf, - 0xd6, 0x85, 0xdf, 0xc6, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x1e, 0xd7, 0x15, 0xb1, 0x0e, - 0x00, 0x00, + // 1735 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x97, 0xcd, 0x72, 0xe3, 0xc6, + 0x11, 0x80, 0xc5, 0x3f, 0x49, 0x6c, 0xfd, 0xec, 0x68, 0x76, 0x57, 0xa2, 0x95, 0xf5, 0x5a, 0xa1, + 0xd7, 0x6b, 0x85, 0xb6, 0x29, 0xfe, 0x99, 0xc5, 0x72, 0x55, 0xaa, 0x42, 0x91, 0x90, 0x96, 0x96, + 0x08, 0xb2, 0x00, 0x92, 0x72, 0x72, 0x61, 0x20, 0x70, 0x48, 0x21, 0x21, 0x66, 0x50, 0xc0, 0x40, + 0x2b, 0xf9, 0x90, 0xca, 0x29, 0xe7, 0x1c, 0x73, 0xc8, 0x21, 0xc7, 0xbc, 0x40, 0x2a, 0x4f, 0x90, + 0x17, 0x48, 0x9e, 0x27, 0x55, 0xa9, 0x19, 0x00, 0x92, 0x00, 0x49, 0xf1, 0x89, 0xe8, 0xaf, 0x7b, + 0xba, 0x1b, 0xdd, 0xcd, 0x99, 0x01, 0xbc, 0xb5, 0x99, 0x39, 0x35, 0x99, 0x6d, 0x33, 0x2a, 0x7e, + 0x1c, 0x9f, 0x93, 0x40, 0x2a, 0x3b, 0x2e, 0xe3, 0x0c, 0x67, 0x6c, 0x66, 0xee, 0x1f, 0x2c, 0x18, + 0x5b, 0x2c, 0xc9, 0x91, 0x44, 0x97, 0xfe, 0xfc, 0x68, 0x46, 0x3c, 0xd3, 0xb5, 0x1c, 0xce, 0xdc, + 0xc0, 0xac, 0xd8, 0x81, 0xad, 0x0b, 0x8b, 0x6a, 0xfd, 0x73, 0xcb, 0xe3, 0x84, 0x12, 0x17, 0xd7, + 0x60, 0x7d, 0x28, 0x34, 0x26, 0x5b, 0x16, 0x52, 0x07, 0xa9, 0xc3, 0xed, 0xda, 0x6e, 0xd9, 0x66, + 0x66, 0x59, 0x5a, 0x45, 0x9a, 0xd1, 0xad, 0x43, 0xb4, 0x3b, 0xbb, 0xe2, 0x09, 0x60, 0xa9, 0xee, + 0x30, 0x3a, 0xb7, 0x16, 0xbe, 0x6b, 0x70, 0x8b, 0x51, 0x5c, 0x81, 0x7c, 0xe4, 0xd5, 0x2b, 0xa4, + 0x0e, 0x32, 0x87, 0x1b, 0x35, 0x7c, 0xef, 0x2a, 0x52, 0x69, 0xf7, 0x46, 0x45, 0x0a, 0x85, 0x89, + 0xe5, 0x72, 0xdf, 0x58, 0xf6, 0x0d, 0xf3, 0xca, 0xa2, 0xa4, 0xe3, 0x7b, 0x9c, 0xd9, 0xba, 0xf5, + 0x23, 0xc1, 0xfb, 0xb0, 0x6e, 0x3a, 0x7e, 0x87, 0xf9, 0x94, 0xcb, 0xbc, 0x72, 0xda, 0x9d, 0x2c, + 0x74, 0x36, 0xb1, 0x99, 0x7b, 0xdb, 0x3f, 0x2e, 0xa4, 0x03, 0x5d, 0x24, 0x0b, 0xdd, 0x22, 0x5a, + 0x97, 0x09, 0x74, 0x91, 0x5c, 0xfc, 0x5b, 0x0a, 0xf6, 0xbb, 0xb7, 0xd4, 0xb0, 0x2d, 0xb3, 0x2f, + 0xed, 0xe3, 0x2f, 0x70, 0x08, 0x2f, 0x6c, 0xe3, 0xc6, 0xb2, 0x7d, 0xbb, 0x1f, 0x79, 0x17, 0x91, + 0xb3, 0x5a, 0x12, 0x4b, 0x4b, 0x8b, 0xc6, 0x2c, 0xd3, 0xa1, 0x65, 0x1c, 0xe3, 0x32, 0x60, 0x6e, + 0xb8, 0x0b, 0xc2, 0x03, 0x72, 0xec, 0xcf, 0xe7, 0xc4, 0x95, 0x89, 0x6d, 0x69, 0x4f, 0x68, 0x8a, + 0x3f, 0xc0, 0xfb, 0x78, 0x49, 0x34, 0x9f, 0x76, 0x98, 0x6d, 0x1b, 0x74, 0xd6, 0xa3, 0x8e, 0xcf, + 0x87, 0x86, 0x6b, 0xd8, 0x84, 0x13, 0x17, 0x63, 0xc8, 0xaa, 0x86, 0x4d, 0x64, 0x8a, 0x79, 0x4d, + 0x3e, 0xe3, 0x7d, 0xc8, 0x4d, 0x8c, 0xa5, 0x4f, 0x64, 0x36, 0xf9, 0xe3, 0xec, 0x5f, 0xfe, 0x51, + 0x48, 0x69, 0x01, 0x2a, 0xfe, 0x31, 0x05, 0xef, 0x9e, 0x73, 0xad, 0xcb, 0x21, 0xd1, 0x99, 0xef, + 0x9a, 0x04, 0xbf, 0x81, 0xd5, 0x40, 0x0e, 0x5c, 0x1f, 0x67, 0xff, 0x2c, 0xbc, 0x84, 0x0c, 0xbf, + 0x81, 0x7c, 0xf0, 0x34, 0xd6, 0x7a, 0x41, 0x18, 0xed, 0x1e, 0x08, 0x6d, 0x94, 0x6d, 0x57, 0xbe, + 0x65, 0x5e, 0xbb, 0x07, 0xc5, 0x7f, 0xfd, 0x9f, 0x14, 0x7a, 0xd4, 0xe3, 0x06, 0x35, 0xc9, 0xc4, + 0x22, 0x1f, 0xb1, 0x0e, 0xdb, 0xca, 0x0d, 0x31, 0x7d, 0xd1, 0x16, 0x9d, 0x1b, 0x9c, 0x84, 0xa3, + 0xf9, 0x95, 0x9c, 0xa7, 0xe7, 0x5c, 0xc4, 0x97, 0x68, 0x09, 0x17, 0x62, 0x32, 0x94, 0x1b, 0x8b, + 0x77, 0xd8, 0x8c, 0x44, 0x53, 0x13, 0xc9, 0x78, 0x17, 0x56, 0x07, 0x3e, 0x77, 0x7c, 0x1e, 0x26, + 0x1d, 0x4a, 0xf8, 0x15, 0xe4, 0x14, 0xd7, 0x65, 0x6e, 0x21, 0x2b, 0x71, 0x20, 0x14, 0xbf, 0x87, + 0xfd, 0xc4, 0xdc, 0x1a, 0x8e, 0x71, 0x69, 0x2d, 0x2d, 0x6e, 0x11, 0x0f, 0x7f, 0x0d, 0x3b, 0x3d, + 0x8f, 0x2d, 0x0d, 0x4e, 0x66, 0x13, 0x5b, 0x6a, 0x96, 0x41, 0xfe, 0xeb, 0xda, 0x63, 0x45, 0xf1, + 0xbf, 0x29, 0xc0, 0x0f, 0xdf, 0x5d, 0xe4, 0xea, 0x7b, 0xa2, 0xbb, 0xa6, 0x48, 0x34, 0xec, 0xae, + 0x78, 0xc6, 0xbf, 0x84, 0xdc, 0x92, 0x5c, 0x93, 0xa5, 0xcc, 0x7e, 0xbb, 0xf6, 0xa5, 0x2c, 0xc6, + 0xe3, 0xb5, 0xe5, 0xe0, 0xe7, 0x5c, 0x98, 0xca, 0x3f, 0x6e, 0xb0, 0x0a, 0xbf, 0x83, 0xad, 0x99, + 0xe5, 0x39, 0x4b, 0xe3, 0x36, 0x30, 0x08, 0x5f, 0x35, 0x0e, 0x71, 0x01, 0xd6, 0x6c, 0xe2, 0x79, + 0xc6, 0x82, 0x84, 0xef, 0x1c, 0x89, 0x22, 0x25, 0x6e, 0xd9, 0xa4, 0x90, 0x0b, 0x52, 0x12, 0xcf, + 0xc5, 0x5f, 0xc1, 0x8b, 0x44, 0x34, 0xbc, 0x01, 0x6b, 0x63, 0xfa, 0x7b, 0xca, 0x3e, 0x52, 0xb4, + 0x82, 0xd7, 0x21, 0xdb, 0xa3, 0x73, 0x86, 0x52, 0x02, 0x5f, 0x18, 0x2e, 0xb5, 0xe8, 0x02, 0xa5, + 0x71, 0x3e, 0x2c, 0x2b, 0xca, 0x14, 0xff, 0x00, 0x9f, 0xc5, 0x6b, 0xd9, 0x5e, 0x10, 0xca, 0x63, + 0xd3, 0xf0, 0x1e, 0xb6, 0xaf, 0x6d, 0x89, 0x27, 0xc4, 0xf5, 0x2c, 0x46, 0xc3, 0xaa, 0x24, 0x28, + 0xae, 0xc3, 0xba, 0x27, 0x93, 0x21, 0x5e, 0x21, 0x2d, 0xf7, 0x9f, 0xbd, 0x67, 0x4a, 0xa4, 0xdd, + 0x19, 0x16, 0xeb, 0xb0, 0x77, 0xea, 0x13, 0x8f, 0x4b, 0x4f, 0xf1, 0xfd, 0xa0, 0x00, 0x6b, 0x84, + 0x8a, 0x26, 0xcd, 0xc2, 0xf6, 0x45, 0x62, 0xf1, 0xaf, 0x29, 0xc0, 0x43, 0x97, 0xdd, 0x24, 0x36, + 0x90, 0x22, 0xe4, 0xaf, 0x38, 0x77, 0xa4, 0x26, 0xf6, 0xe7, 0xb9, 0xc7, 0xf8, 0x1d, 0x80, 0x10, + 0xbc, 0xc0, 0x28, 0xfd, 0xc0, 0xe8, 0x01, 0x17, 0xa1, 0x29, 0x0b, 0x4c, 0x32, 0x07, 0x19, 0xd1, + 0x85, 0x50, 0x14, 0x31, 0xb8, 0xeb, 0x7b, 0x9c, 0xcc, 0x3a, 0x46, 0xd0, 0xa1, 0x28, 0xc6, 0x1d, + 0x2e, 0xbd, 0x85, 0xf5, 0xb1, 0x47, 0x5c, 0xd9, 0x8e, 0x75, 0xc8, 0x6a, 0x83, 0xc1, 0x28, 0xe8, + 0xc5, 0x58, 0x57, 0x34, 0x94, 0x2a, 0xfd, 0x1a, 0xb6, 0x86, 0x2e, 0x33, 0x89, 0xe7, 0xb1, 0x3b, + 0x23, 0x95, 0x51, 0x82, 0x56, 0x44, 0x67, 0x7a, 0x94, 0x93, 0x65, 0xd0, 0x31, 0xf9, 0xd8, 0x6c, + 0xa0, 0x34, 0x5e, 0x83, 0x4c, 0xbb, 0xdf, 0x45, 0x19, 0x61, 0xd0, 0xee, 0x77, 0x9b, 0x0d, 0x94, + 0x95, 0x4c, 0xeb, 0xa3, 0x9c, 0x64, 0x5a, 0xbf, 0xd9, 0x40, 0xab, 0xa5, 0xef, 0xe1, 0xed, 0xc0, + 0x21, 0xa2, 0x1e, 0x74, 0xa1, 0xdf, 0x7a, 0x9c, 0xd8, 0xc7, 0x8c, 0x71, 0x8f, 0xbb, 0x86, 0xa3, + 0xd0, 0x85, 0x45, 0x09, 0xde, 0x06, 0xe8, 0x9c, 0x0f, 0xc6, 0xdd, 0x69, 0x4f, 0xed, 0x89, 0xb4, + 0x0a, 0xf0, 0xea, 0xa2, 0xa7, 0x76, 0x07, 0x17, 0xfa, 0xb4, 0xad, 0xea, 0x17, 0x8a, 0x36, 0x3d, + 0xe9, 0x9d, 0x2b, 0x3a, 0x4a, 0x95, 0xbe, 0x81, 0x97, 0x09, 0x5f, 0xd1, 0x80, 0x85, 0x0b, 0x82, + 0x7c, 0xcf, 0x7b, 0xea, 0xf8, 0x07, 0x94, 0x2a, 0xfd, 0x3d, 0x0f, 0xbb, 0xf1, 0x51, 0x12, 0x07, + 0x49, 0xb4, 0xa4, 0x4b, 0xe6, 0x86, 0xbf, 0xe4, 0x68, 0x05, 0x63, 0xd8, 0xd6, 0xb9, 0x41, 0x67, + 0x86, 0x3b, 0x9b, 0xb6, 0x6b, 0xd3, 0xeb, 0x1a, 0x4a, 0xc7, 0x59, 0x43, 0xb0, 0x0c, 0x7e, 0x29, + 0x67, 0x3b, 0x60, 0xdd, 0x9a, 0x37, 0xbd, 0xae, 0xa3, 0x6c, 0x1c, 0x36, 0x24, 0xcc, 0xc5, 0x61, + 0x4b, 0xc2, 0x55, 0xfc, 0x0a, 0xd0, 0x3d, 0xac, 0x36, 0x25, 0x5d, 0x8b, 0xd3, 0x7a, 0xe0, 0x75, + 0x3d, 0xee, 0x40, 0x97, 0x39, 0xe5, 0x13, 0xb0, 0x2e, 0x20, 0x24, 0xa0, 0xcc, 0x74, 0x23, 0x01, + 0xbf, 0x15, 0x70, 0x33, 0x1e, 0x49, 0xaf, 0xca, 0xf5, 0x5b, 0x31, 0xd3, 0xb3, 0x96, 0x3e, 0xbd, + 0xae, 0xa2, 0xed, 0x98, 0xe9, 0x59, 0x4b, 0xc4, 0xaf, 0xa2, 0x17, 0x49, 0x5a, 0x17, 0x14, 0x25, + 0x69, 0x43, 0xd0, 0x1d, 0x8c, 0x60, 0xf3, 0x8e, 0xaa, 0x67, 0x4d, 0x84, 0xf1, 0x0e, 0x6c, 0x3d, + 0x20, 0xd5, 0x1a, 0x7a, 0x19, 0x37, 0x9a, 0x34, 0xd1, 0xab, 0xb8, 0xd1, 0xa4, 0x5a, 0x43, 0xaf, + 0x93, 0xfe, 0xbf, 0x15, 0xfe, 0x77, 0xf1, 0x1e, 0xbc, 0x4c, 0x14, 0x68, 0xfa, 0x61, 0xa8, 0xa2, + 0xbd, 0x84, 0xa2, 0x1e, 0x29, 0x0a, 0x09, 0x45, 0x23, 0x52, 0x7c, 0x12, 0x0b, 0x70, 0x52, 0xf3, + 0x24, 0xdd, 0x8f, 0xd3, 0x46, 0x40, 0x7f, 0x16, 0xa7, 0xad, 0x80, 0xbe, 0xc1, 0xaf, 0x61, 0xe7, + 0x9e, 0x8a, 0xce, 0x0a, 0xfc, 0x69, 0xac, 0xb4, 0x6a, 0xa7, 0x31, 0x6d, 0xd7, 0xd0, 0xdb, 0x04, + 0x6c, 0x09, 0xf8, 0x59, 0xcc, 0xad, 0xda, 0xa9, 0x36, 0x05, 0x3d, 0x48, 0xd0, 0x7a, 0x4d, 0xd0, + 0x9f, 0x27, 0x68, 0x63, 0xda, 0xae, 0x57, 0x50, 0x31, 0x41, 0x5b, 0x92, 0x7e, 0x1e, 0x4b, 0x2c, + 0xf0, 0x5b, 0xaf, 0xa0, 0x77, 0x09, 0x2c, 0x1c, 0xd7, 0x2b, 0xe8, 0x0b, 0xf1, 0xc7, 0x8b, 0x7b, + 0xae, 0x56, 0x2a, 0xd3, 0x46, 0x05, 0xbd, 0x4f, 0x68, 0x5a, 0x77, 0x9a, 0x2f, 0xf1, 0x27, 0xf0, + 0x3a, 0x11, 0x21, 0x54, 0x1d, 0x26, 0x54, 0x22, 0x4a, 0xa8, 0xfa, 0xc5, 0xd3, 0x91, 0x5a, 0x15, + 0x54, 0x7a, 0x3a, 0x52, 0xab, 0x82, 0xbe, 0x7a, 0x26, 0x52, 0xab, 0x82, 0xbe, 0x7e, 0x26, 0x52, + 0xab, 0x82, 0xbe, 0x79, 0x5c, 0xad, 0x6a, 0x13, 0x95, 0x1f, 0x57, 0xab, 0xda, 0x44, 0x47, 0x4f, + 0x54, 0xab, 0xda, 0x44, 0x95, 0x27, 0xaa, 0x55, 0x6d, 0xa2, 0x2a, 0xde, 0x82, 0x7c, 0x70, 0x3b, + 0x15, 0x6d, 0x99, 0x3e, 0x10, 0xd5, 0x33, 0xf4, 0x5b, 0x31, 0xda, 0xa1, 0x78, 0xea, 0xf8, 0xce, + 0x35, 0x32, 0x30, 0xc0, 0x6a, 0x40, 0xd0, 0x25, 0x7e, 0x01, 0x1b, 0x63, 0xea, 0xf9, 0x8e, 0xc3, + 0x5c, 0x4e, 0x66, 0xc8, 0x2c, 0x1d, 0xc2, 0xce, 0xa3, 0xfb, 0xb5, 0xd8, 0x84, 0x3f, 0x8c, 0x46, + 0xc3, 0x60, 0x53, 0x13, 0x4f, 0x62, 0x0f, 0x1c, 0x01, 0x0c, 0xd9, 0x47, 0xe2, 0x06, 0x57, 0x98, + 0xd8, 0xd9, 0xba, 0x01, 0x6b, 0x9a, 0x4f, 0xe5, 0x89, 0x9a, 0x12, 0x7b, 0xf1, 0x60, 0x3e, 0x47, + 0x69, 0x11, 0x77, 0x68, 0xf8, 0x1e, 0x99, 0xa1, 0x0c, 0xde, 0x84, 0xf5, 0x8e, 0x6b, 0x71, 0xcb, + 0x34, 0x96, 0x28, 0x2b, 0xbc, 0xea, 0xc6, 0x35, 0x99, 0xa1, 0x5c, 0x69, 0x0e, 0x7b, 0xf1, 0x9d, + 0x32, 0xdc, 0x67, 0x19, 0x95, 0x56, 0xa3, 0xb6, 0x16, 0x1e, 0x18, 0xfa, 0x68, 0x30, 0x44, 0x29, + 0x01, 0x35, 0x45, 0x57, 0x46, 0x28, 0x8d, 0x77, 0x01, 0x6b, 0xca, 0xb0, 0xdd, 0xd3, 0xa6, 0xa7, + 0x63, 0x45, 0x1f, 0x4d, 0xdb, 0xa7, 0x8a, 0x3a, 0x0a, 0xce, 0x85, 0x61, 0x7b, 0xac, 0x2b, 0x28, + 0x2b, 0xd7, 0xb5, 0x27, 0x0a, 0xca, 0x95, 0xfe, 0x99, 0x7a, 0xfe, 0x3a, 0xfb, 0xe8, 0x76, 0xb6, + 0x1b, 0x27, 0xd3, 0xb1, 0x7a, 0xa6, 0x0e, 0x2e, 0x54, 0xb4, 0x22, 0x1a, 0x9e, 0xd0, 0x9d, 0xb4, + 0x7b, 0xe7, 0x4a, 0x17, 0xa5, 0xf0, 0x1b, 0x28, 0x24, 0x54, 0xfa, 0xb8, 0xd3, 0x51, 0x94, 0xae, + 0xd2, 0x45, 0xe9, 0x27, 0x9c, 0x0e, 0x15, 0xb5, 0xdb, 0x53, 0x4f, 0x51, 0xe6, 0x89, 0x95, 0x9a, + 0x72, 0x3c, 0x18, 0x8c, 0x84, 0x36, 0x5b, 0xfa, 0x11, 0x36, 0xdb, 0xae, 0x79, 0x65, 0x71, 0x62, + 0x72, 0xdf, 0x25, 0xa2, 0xbe, 0x37, 0xad, 0x66, 0x50, 0x94, 0x7e, 0x4f, 0xb4, 0x46, 0x9e, 0x7a, + 0x4b, 0xe7, 0xca, 0x40, 0x69, 0xd1, 0x0a, 0xd9, 0xa5, 0x61, 0x07, 0x65, 0xc4, 0xb4, 0xb5, 0xb5, + 0xfe, 0xf4, 0xe1, 0x72, 0x94, 0x13, 0xeb, 0x2c, 0x43, 0x1c, 0x91, 0xd2, 0x55, 0xb3, 0x81, 0xf2, + 0xa2, 0x94, 0xf2, 0xd8, 0x8c, 0x9b, 0x6e, 0x96, 0x3e, 0xc0, 0xa6, 0x4e, 0x4c, 0xdf, 0xb5, 0xf8, + 0xad, 0x1c, 0x8c, 0x1d, 0xd8, 0x52, 0x07, 0xa3, 0xce, 0x40, 0x3d, 0xe9, 0x9d, 0x8e, 0x35, 0xa5, + 0x8b, 0x56, 0x04, 0x1a, 0x69, 0x63, 0x7d, 0xa4, 0x74, 0xcf, 0xdb, 0x63, 0xb5, 0xf3, 0x01, 0xa5, + 0xc4, 0x11, 0x26, 0x4d, 0xba, 0x8a, 0x3a, 0xea, 0xb5, 0xcf, 0x27, 0x7d, 0x94, 0xfe, 0xee, 0x0c, + 0x90, 0x47, 0xa8, 0x67, 0x71, 0xeb, 0x9a, 0x84, 0x1f, 0x8d, 0xf8, 0xd3, 0x72, 0xf0, 0x91, 0x58, + 0x8e, 0x3e, 0x12, 0xcb, 0x27, 0x16, 0x59, 0xce, 0x06, 0x8e, 0x28, 0x84, 0x57, 0xf8, 0xf7, 0x9f, + 0x32, 0xf2, 0xae, 0xf3, 0x68, 0xe1, 0x77, 0x0a, 0x6c, 0xdd, 0xb1, 0xdf, 0x79, 0x8c, 0xfe, 0x94, + 0xa7, 0xff, 0x84, 0x9e, 0xe2, 0xab, 0x8e, 0xbf, 0xf8, 0xcd, 0xe7, 0x0b, 0x8b, 0x5f, 0xf9, 0x97, + 0x65, 0x93, 0xd9, 0x47, 0xb6, 0x65, 0xba, 0xcc, 0x63, 0x73, 0x7e, 0x64, 0x33, 0xf3, 0xc8, 0x75, + 0xcc, 0xa3, 0xe0, 0xab, 0xf6, 0x72, 0x55, 0x3a, 0xad, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xfb, + 0xf4, 0x5c, 0x58, 0xf8, 0x0e, 0x00, 0x00, } diff --git a/rpc/common/moc_common_computecommon.proto b/rpc/common/moc_common_computecommon.proto index 8e79af8..27d959e 100644 --- a/rpc/common/moc_common_computecommon.proto +++ b/rpc/common/moc_common_computecommon.proto @@ -142,7 +142,7 @@ enum VirtualMachineRunCommandExecutionState { message VirtualMachineRunCommandInputParameter { string Name = 1; - string Value = 2 [(sensitivecompute) = true]; + string Value = 2 [(sensitivejson) = true]; } message VirtualMachineRunCommandScriptSource { @@ -205,6 +205,7 @@ enum Architecture { extend google.protobuf.FieldOptions { bool sensitivecompute = 50002; + bool sensitivejson = 50003; } enum SecurityType { From da5bec3261d9cc87de84e8597752b3bebbb6c01f Mon Sep 17 00:00:00 2001 From: Li Ting Wong Date: Wed, 28 Feb 2024 23:33:51 +0000 Subject: [PATCH 21/25] add go mod sum --- go.mod | 2 +- go.sum | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 9261d5c..f7bcb75 100644 --- a/go.mod +++ b/go.mod @@ -16,7 +16,7 @@ require ( require ( golang.org/x/net v0.21.0 // indirect - google.golang.org/protobuf v1.32.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976 // indirect ) replace ( diff --git a/go.sum b/go.sum index 1ae924e..353347d 100644 --- a/go.sum +++ b/go.sum @@ -1503,8 +1503,9 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d h1:uvYuEyMHKNt+lT4K3bN6fGswmK8qSvcreM3BwjDh+y4= google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976 h1:AO6GmHxCTkL6h136D3ZDF3HggglH8R0nusrsvz8ZcgA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= From fee692e9ffa2549ab4c997e0fdfae59bddd523be Mon Sep 17 00:00:00 2001 From: Dhaval Popat Date: Thu, 29 Feb 2024 14:16:06 -0800 Subject: [PATCH 22/25] Updated redaction condition --- pkg/redact/redact.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/redact/redact.go b/pkg/redact/redact.go index a5f6656..aa99af4 100644 --- a/pkg/redact/redact.go +++ b/pkg/redact/redact.go @@ -75,7 +75,7 @@ func redactMessage(msg interface{}, val reflect.Value) { } if field.Options != nil { ex, err := proto.GetExtension(field.Options, common.E_Sensitivejson) - if err != proto.ErrMissingExtension && (err != nil || *ex.(*bool)) { + if err != proto.ErrMissingExtension && err == nil && *ex.(*bool) { if fieldVal.Kind() == reflect.String { redactJsonSensitiveField(fieldVal) } else { @@ -90,7 +90,7 @@ func redactMessage(msg interface{}, val reflect.Value) { continue } - if err != nil || *ex.(*bool) { + if err == nil && *ex.(*bool) { if fieldVal.Kind() == reflect.String { fieldVal.SetString(RedactedString) } else { From 6ba80f5e86c66b8b1457d5ee03b3cc9988e038eb Mon Sep 17 00:00:00 2001 From: Zhengyue Cheng Date: Thu, 29 Feb 2024 15:21:50 -0800 Subject: [PATCH 23/25] fix go version in build.yaml --- .pipelines/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pipelines/build.yaml b/.pipelines/build.yaml index cbc8528..2bb0f12 100644 --- a/.pipelines/build.yaml +++ b/.pipelines/build.yaml @@ -18,7 +18,7 @@ jobs: steps: - task: GoTool@0 inputs: - version: '1.19.x' + version: '1.19' - task: InstallSSHKey@0 inputs: knownHostsEntry: '$(KNOWN_HOST)' From d932904793048890a87aa1785bdfbc8c967f17f2 Mon Sep 17 00:00:00 2001 From: John Carden Date: Mon, 4 Mar 2024 17:48:04 +0000 Subject: [PATCH 24/25] fixed formatting --- go.mod | 2 +- go.sum | 4 ++-- .../availabilityset/moc_cloudagent_availabilityset.proto | 4 ++-- .../availabilityset/moc_nodeagent_availabilityset.proto | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/go.mod b/go.mod index f7bcb75..bcf5bb1 100644 --- a/go.mod +++ b/go.mod @@ -16,7 +16,7 @@ require ( require ( golang.org/x/net v0.21.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 // indirect ) replace ( diff --git a/go.sum b/go.sum index 353347d..fee3b5b 100644 --- a/go.sum +++ b/go.sum @@ -1504,8 +1504,8 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go. google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976 h1:AO6GmHxCTkL6h136D3ZDF3HggglH8R0nusrsvz8ZcgA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20240228220056-05fd2b7b6976/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78 h1:Xs9lu+tLXxLIfuci70nG4cpwaRC+mRQPUL7LoIeDJC4= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240304161311-37d4d3c04a78/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs= google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= diff --git a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto index 83e89b2..234f62b 100644 --- a/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto +++ b/rpc/cloudagent/compute/availabilityset/moc_cloudagent_availabilityset.proto @@ -34,8 +34,8 @@ message AvailabilitySet { string groupName = 4; Status status = 5; Tags tags = 6; - int32 platformFaultDomainCount = 7; - repeated VirtualMachineReference virtualMachines = 8; + int32 platformFaultDomainCount = 7; + repeated VirtualMachineReference virtualMachines = 8; } service AvailabilitySetAgent { diff --git a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto index ec476ac..13e1223 100644 --- a/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto +++ b/rpc/nodeagent/compute/availabilityset/moc_nodeagent_availabilityset.proto @@ -28,11 +28,11 @@ message VirtualMachineReference { message AvailabilitySet { string name = 1; string id = 2; - Status status = 3; + Status status = 3; Tags tags = 4; - Entity entity = 5; - int32 platformFaultDomainCount = 6; - repeated VirtualMachineReference virtualMachines = 7; + Entity entity = 5; + int32 platformFaultDomainCount = 6; + repeated VirtualMachineReference virtualMachines = 7; } service AvailabilitySetAgent { From fac134fa613f132bfc09718ac56990cb139f63e3 Mon Sep 17 00:00:00 2001 From: John Carden Date: Mon, 4 Mar 2024 18:20:00 +0000 Subject: [PATCH 25/25] removed realized name from availability set reference --- .../moc_cloudagent_virtualmachine.pb.go | 229 +++++++++--------- .../moc_cloudagent_virtualmachine.proto | 1 - 2 files changed, 110 insertions(+), 120 deletions(-) diff --git a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go index 6b67f04..2fcc600 100644 --- a/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go +++ b/rpc/cloudagent/compute/moc_cloudagent_virtualmachine.pb.go @@ -845,7 +845,6 @@ func (m *SecurityConfiguration) GetSecurityType() common.SecurityType { type AvailabilitySetReference struct { GroupName string `protobuf:"bytes,1,opt,name=groupName,proto3" json:"groupName,omitempty"` Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` - RealizedName string `protobuf:"bytes,3,opt,name=realizedName,proto3" json:"realizedName,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -890,13 +889,6 @@ func (m *AvailabilitySetReference) GetName() string { return "" } -func (m *AvailabilitySetReference) GetRealizedName() string { - if m != nil { - return m.RealizedName - } - 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"` @@ -1339,117 +1331,116 @@ func init() { } var fileDescriptor_a65ab853cd24c92b = []byte{ - // 1752 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0x4f, 0x6f, 0xe3, 0xc6, - 0x15, 0x0f, 0x65, 0x5b, 0xb6, 0x9e, 0xff, 0xac, 0x3d, 0xb1, 0xbd, 0xac, 0xeb, 0x75, 0x0c, 0x6e, - 0x10, 0x38, 0xdb, 0x44, 0x4a, 0x9d, 0xed, 0x36, 0x28, 0x52, 0x04, 0xb2, 0xa5, 0xc4, 0x46, 0x6c, - 0x59, 0x1d, 0x69, 0x77, 0x01, 0xa3, 0xc0, 0x66, 0x4c, 0x8e, 0xe5, 0x81, 0x45, 0x0e, 0x3b, 0x33, - 0xb4, 0xa2, 0xa0, 0x97, 0xe6, 0xd4, 0xa2, 0x87, 0x7e, 0x84, 0x7e, 0x89, 0xb6, 0xb7, 0x1e, 0x7a, - 0xef, 0xe7, 0xe8, 0xa9, 0x40, 0xbf, 0x42, 0x31, 0x43, 0x4a, 0x22, 0x25, 0xd2, 0xf0, 0x02, 0xcd, - 0xa1, 0x27, 0x89, 0xef, 0xbd, 0xdf, 0x8f, 0x8f, 0x6f, 0xde, 0xfb, 0xcd, 0x0c, 0x3c, 0xf5, 0xb9, - 0xfb, 0xc6, 0xed, 0xf3, 0xc8, 0x23, 0x3d, 0x1a, 0xa8, 0x37, 0x77, 0x4c, 0xa8, 0x88, 0xf4, 0x7d, - 0xe2, 0xde, 0xb0, 0x80, 0x56, 0x43, 0xc1, 0x15, 0x47, 0xdb, 0x3e, 0x77, 0xab, 0x93, 0xa0, 0xaa, - 0xcb, 0xfd, 0x30, 0x52, 0x74, 0x67, 0xaf, 0xc7, 0x79, 0xaf, 0x4f, 0x6b, 0x26, 0xea, 0x2a, 0xba, - 0xae, 0x0d, 0x04, 0x09, 0x43, 0x2a, 0x64, 0x8c, 0xdb, 0x79, 0x6c, 0xc8, 0xb9, 0xef, 0xf3, 0x20, - 0xf9, 0x49, 0x1c, 0x7b, 0x59, 0x87, 0x26, 0x4b, 0xfb, 0x9d, 0x3f, 0x5b, 0xb0, 0xf5, 0x2a, 0xce, - 0xe4, 0x3c, 0xce, 0x04, 0xd3, 0xdf, 0x44, 0x54, 0x2a, 0xd4, 0x86, 0x47, 0x59, 0x87, 0xb4, 0xad, - 0xfd, 0xb9, 0x83, 0xe5, 0xc3, 0x0f, 0xaa, 0xf9, 0x49, 0x56, 0xa7, 0x78, 0xa6, 0xe1, 0xe8, 0x39, - 0xac, 0x5e, 0x84, 0x54, 0x10, 0xc5, 0x78, 0xd0, 0x1d, 0x86, 0xd4, 0x2e, 0xed, 0x5b, 0x07, 0x6b, - 0x87, 0x6b, 0x86, 0x6f, 0xec, 0xc1, 0xd9, 0x20, 0xe7, 0x2f, 0x16, 0x6c, 0x4f, 0x67, 0x28, 0x43, - 0x1e, 0x48, 0xfa, 0x03, 0xa4, 0x78, 0x08, 0x65, 0x4c, 0x65, 0xd4, 0x57, 0x26, 0xb7, 0xe5, 0xc3, - 0x9d, 0x6a, 0x5c, 0xf8, 0xea, 0xa8, 0xf0, 0xd5, 0x23, 0xce, 0xfb, 0xaf, 0x48, 0x3f, 0xa2, 0x38, - 0x89, 0x44, 0x9b, 0xb0, 0xd0, 0x14, 0x82, 0x0b, 0x7b, 0x6e, 0xdf, 0x3a, 0xa8, 0xe0, 0xf8, 0xc1, - 0xa9, 0xc2, 0x4a, 0xa7, 0x73, 0xd2, 0x8e, 0xae, 0xfa, 0xcc, 0xfd, 0x9a, 0x0e, 0xd1, 0x1e, 0x2c, - 0xde, 0xd2, 0xa1, 0x47, 0x14, 0xb1, 0x2d, 0x1d, 0x77, 0x34, 0xff, 0xfb, 0xbf, 0xda, 0x16, 0x1e, - 0x19, 0x1d, 0x07, 0xe6, 0x1b, 0x4c, 0xde, 0xa2, 0x1d, 0x58, 0xf2, 0x98, 0xbc, 0x0d, 0x88, 0x4f, - 0xe3, 0x40, 0x3c, 0x7e, 0x76, 0xfe, 0x65, 0xc1, 0x66, 0x47, 0x71, 0x41, 0x7a, 0xf4, 0x98, 0x07, - 0xd7, 0xac, 0x17, 0xc5, 0x75, 0x42, 0xcf, 0xa1, 0xcc, 0xa5, 0x0e, 0x33, 0x90, 0xe5, 0xc3, 0xdd, - 0xa2, 0xef, 0xd7, 0xaf, 0xc0, 0x49, 0x2c, 0xfa, 0x05, 0x54, 0xf4, 0xab, 0xf5, 0x7f, 0x69, 0x97, - 0x4c, 0xe1, 0xee, 0x07, 0x4e, 0xc2, 0xd1, 0x07, 0xb0, 0xc6, 0x7c, 0xd2, 0xa3, 0x98, 0x5e, 0x53, - 0x41, 0x03, 0x97, 0x26, 0x5f, 0x3f, 0x65, 0x45, 0xcf, 0x61, 0xeb, 0xce, 0x8f, 0x93, 0x3d, 0xe6, - 0x81, 0x22, 0x2c, 0xa0, 0xa2, 0xa5, 0xbf, 0x6d, 0xde, 0x84, 0xe7, 0x3b, 0x9d, 0x2f, 0x61, 0xbd, - 0x45, 0xd5, 0x80, 0x8b, 0xdb, 0xd3, 0x40, 0x51, 0x71, 0x4d, 0x5c, 0x8a, 0x0e, 0x61, 0x33, 0x98, - 0xb2, 0xb5, 0x26, 0x45, 0xca, 0xf5, 0x39, 0xdf, 0xc0, 0x66, 0xc2, 0x93, 0xad, 0xd7, 0x09, 0x00, - 0x1b, 0x05, 0x8e, 0x7a, 0xe6, 0xa0, 0xe8, 0xd3, 0xa7, 0x33, 0xc1, 0x29, 0xac, 0xf3, 0xbd, 0x05, - 0x1b, 0x2f, 0x25, 0x15, 0x59, 0xfe, 0x7d, 0x58, 0x8a, 0x24, 0x15, 0x93, 0x45, 0x4c, 0x56, 0x7b, - 0x6c, 0xd5, 0x11, 0x21, 0x91, 0x72, 0xc0, 0x85, 0x67, 0x5a, 0x6d, 0x1c, 0x31, 0xb2, 0xa2, 0x0f, - 0x63, 0x0e, 0xa5, 0x07, 0x65, 0xce, 0x0c, 0xca, 0xaa, 0xc9, 0x50, 0xbf, 0x4d, 0x0f, 0x06, 0x1e, - 0xbb, 0x75, 0xb9, 0x70, 0xa3, 0x9d, 0x4d, 0x61, 0x0f, 0xc0, 0x63, 0x92, 0x5c, 0xf5, 0x29, 0x6e, - 0xb4, 0x4d, 0x12, 0x4b, 0x38, 0x65, 0x41, 0x08, 0xe6, 0x43, 0x2e, 0xe2, 0x3e, 0x5f, 0xc5, 0xe6, - 0xbf, 0x73, 0x09, 0xe8, 0x8c, 0x05, 0xd1, 0xb7, 0x59, 0xa6, 0x06, 0x3c, 0x49, 0x70, 0xed, 0x24, - 0xb7, 0x7a, 0xa4, 0x6e, 0x68, 0xa0, 0x98, 0x6b, 0x02, 0x12, 0xf2, 0xfb, 0x83, 0x9c, 0x3f, 0x94, - 0x60, 0xf3, 0x35, 0x0b, 0x3c, 0x3e, 0x90, 0x59, 0xfa, 0x17, 0xb0, 0x4d, 0x03, 0x0d, 0xac, 0x47, - 0x8a, 0xfb, 0x44, 0x31, 0xf7, 0x65, 0xe8, 0x11, 0x65, 0xd6, 0x45, 0xf3, 0x16, 0x78, 0xf5, 0xa0, - 0x28, 0xe6, 0xd3, 0x4b, 0x1e, 0xc4, 0x42, 0x52, 0xc1, 0xe3, 0x67, 0xd4, 0x9d, 0x2d, 0x88, 0xa9, - 0xe1, 0x3d, 0xab, 0x3c, 0x1d, 0x8f, 0x67, 0x4b, 0xfa, 0x15, 0xa0, 0xd7, 0x2c, 0xc0, 0xe7, 0x59, - 0xde, 0x79, 0xc3, 0xfb, 0xd8, 0xf0, 0xce, 0xba, 0x71, 0x0e, 0xc4, 0xf9, 0xe7, 0x02, 0xec, 0x26, - 0x22, 0x17, 0xf4, 0x3a, 0x43, 0xa9, 0xa8, 0x9f, 0x7d, 0x93, 0x03, 0x2b, 0x49, 0x5e, 0x22, 0xd5, - 0xe3, 0x19, 0x1b, 0xba, 0x80, 0x55, 0xe2, 0xf9, 0x2c, 0x60, 0x52, 0x09, 0xa2, 0xb8, 0x48, 0x14, - 0xeb, 0xc3, 0xa2, 0x0f, 0x9c, 0xe9, 0x52, 0x9c, 0xc5, 0xa3, 0x2f, 0x60, 0x41, 0x77, 0x94, 0xb4, - 0xe7, 0xcc, 0x3c, 0xbc, 0x05, 0x51, 0x8c, 0x43, 0xef, 0x03, 0xb8, 0x91, 0x54, 0xdc, 0x6f, 0x68, - 0x95, 0x9b, 0x4f, 0x75, 0x75, 0xca, 0x8e, 0x1a, 0x00, 0xa1, 0x51, 0xc5, 0x5b, 0x3a, 0x94, 0xf6, - 0x82, 0x79, 0xd7, 0xfb, 0x45, 0xef, 0x4a, 0x4b, 0x28, 0x4e, 0xe1, 0xd0, 0x27, 0x5a, 0xf1, 0xcc, - 0x6c, 0x94, 0xcd, 0x6c, 0xd8, 0xe9, 0x4d, 0x64, 0x54, 0x54, 0x33, 0x26, 0x49, 0x1c, 0xfa, 0x15, - 0x6c, 0x70, 0x79, 0xc4, 0xb9, 0xd2, 0xdf, 0x1b, 0x36, 0x83, 0x1e, 0x0b, 0xa8, 0xbd, 0x68, 0xc0, - 0x4f, 0xf3, 0xc0, 0x53, 0xa1, 0x78, 0x16, 0x8d, 0x2e, 0x01, 0xf5, 0x67, 0xe6, 0xc5, 0x5e, 0x32, - 0xeb, 0xf0, 0xac, 0xe8, 0x93, 0x66, 0x27, 0x0c, 0xe7, 0xb0, 0xa0, 0x6f, 0x60, 0x73, 0x90, 0x33, - 0x2e, 0x76, 0xc5, 0xb0, 0x7f, 0x54, 0xc4, 0x9e, 0x37, 0x62, 0x38, 0x97, 0x49, 0xb7, 0x73, 0x28, - 0xf8, 0xb7, 0xc3, 0x2c, 0x3f, 0xa4, 0xda, 0xb9, 0x3d, 0xe3, 0xc6, 0x39, 0x10, 0xe7, 0xdf, 0x16, - 0x6c, 0x9d, 0x10, 0xe1, 0x0d, 0x88, 0x98, 0xda, 0x97, 0x3e, 0x85, 0xf2, 0xab, 0xf3, 0x0e, 0xfb, - 0x2e, 0xee, 0xe0, 0xb5, 0xc3, 0x1f, 0x1b, 0xda, 0xec, 0xa6, 0xab, 0xdd, 0xf1, 0x42, 0xc5, 0xa1, - 0xe8, 0x97, 0xa3, 0x36, 0x32, 0xc0, 0xb8, 0xab, 0x9f, 0xe4, 0x00, 0x8f, 0xc7, 0x41, 0x38, 0x05, - 0x40, 0x6f, 0x60, 0xc7, 0x1b, 0x06, 0xc4, 0x67, 0xee, 0x39, 0xf5, 0xb9, 0x18, 0xe6, 0xa9, 0xc0, - 0x7b, 0x86, 0xae, 0x51, 0x18, 0x86, 0xef, 0xa1, 0x70, 0x3e, 0x87, 0x95, 0x97, 0xf4, 0x9a, 0x75, - 0xa8, 0xd2, 0xcd, 0x22, 0xd1, 0x47, 0xb0, 0x21, 0xa9, 0x1b, 0x09, 0xaa, 0xdb, 0xa3, 0x69, 0xc4, - 0xca, 0x4b, 0xb4, 0x6b, 0xd6, 0xe1, 0xfc, 0xcd, 0x82, 0xad, 0x8e, 0xb6, 0x32, 0x95, 0xe5, 0x45, - 0xbb, 0x50, 0x89, 0xa5, 0xae, 0xdb, 0x3e, 0x4f, 0xf0, 0x13, 0x03, 0x3a, 0x81, 0x95, 0x28, 0xf5, - 0xd6, 0xa4, 0x2e, 0x85, 0x83, 0x93, 0xce, 0x10, 0x67, 0x90, 0xe8, 0x67, 0xb0, 0x22, 0x93, 0x04, - 0xba, 0x93, 0xcd, 0x65, 0xc3, 0x30, 0x75, 0x52, 0x0e, 0x9c, 0x09, 0x73, 0x42, 0xb0, 0xeb, 0x77, - 0x84, 0xf5, 0xc9, 0x15, 0xeb, 0x33, 0x35, 0xec, 0x50, 0x35, 0xd9, 0xe5, 0x77, 0xa1, 0xd2, 0x13, - 0x3c, 0x0a, 0x53, 0x62, 0x35, 0x31, 0xe8, 0xad, 0xc6, 0xec, 0x84, 0xb1, 0x4a, 0x9b, 0xff, 0x5a, - 0xe1, 0x04, 0x25, 0x7d, 0xf6, 0x1d, 0xf5, 0x0c, 0x28, 0x3e, 0x3d, 0x64, 0x6c, 0xce, 0x1f, 0x97, - 0x60, 0x2d, 0xbb, 0xe4, 0x63, 0x2a, 0x2b, 0x45, 0xb5, 0x06, 0x25, 0x96, 0x6c, 0xa2, 0xb8, 0xc4, - 0x3c, 0xf4, 0x25, 0x2c, 0xca, 0xf8, 0x90, 0x94, 0xac, 0x76, 0xe1, 0xb0, 0xe4, 0x9d, 0xa5, 0xf0, - 0x08, 0x8c, 0x1a, 0x50, 0xe2, 0x32, 0x91, 0xf7, 0xe7, 0x45, 0x14, 0xf7, 0xc9, 0x38, 0x2e, 0x71, - 0xa9, 0xb3, 0x49, 0x8e, 0x26, 0xf6, 0xc2, 0xfd, 0xd9, 0xe4, 0x9d, 0x54, 0xf0, 0x08, 0xac, 0xb7, - 0xbb, 0x80, 0x7b, 0xf1, 0x91, 0xa7, 0x1c, 0x6f, 0x77, 0xa3, 0xe7, 0x6c, 0xf9, 0x17, 0xa7, 0xcb, - 0xff, 0x14, 0xca, 0x52, 0x11, 0x15, 0xc9, 0x44, 0x99, 0x96, 0xe3, 0x95, 0x36, 0x26, 0x9c, 0xb8, - 0xf4, 0x7a, 0xf4, 0x79, 0xbc, 0x55, 0x1b, 0x96, 0x4a, 0xbc, 0x1e, 0x69, 0x1b, 0xfa, 0x0c, 0x1e, - 0x27, 0x7b, 0xfc, 0x09, 0xeb, 0xdd, 0xa4, 0x9b, 0xc1, 0xa8, 0xc6, 0x12, 0x2e, 0x72, 0xa3, 0x17, - 0x50, 0xbe, 0x33, 0x6a, 0x6c, 0x2f, 0x9b, 0x66, 0xdb, 0x2b, 0x3c, 0x9f, 0x9f, 0xc7, 0x52, 0x10, - 0x47, 0xa3, 0x53, 0x58, 0xba, 0x49, 0x84, 0xc5, 0x5e, 0x31, 0xc9, 0x7f, 0x5c, 0x84, 0xcc, 0x15, - 0x20, 0x3c, 0x86, 0xeb, 0x29, 0x25, 0xfd, 0x3e, 0x1f, 0x50, 0xef, 0x62, 0xa0, 0x8f, 0x99, 0xdc, - 0xa3, 0xd2, 0x5e, 0xdd, 0x9f, 0x3b, 0xa8, 0xe0, 0x59, 0x07, 0xaa, 0x01, 0x84, 0x7c, 0x40, 0x85, - 0xae, 0x12, 0xb5, 0xd7, 0x4c, 0xd2, 0x8f, 0x62, 0x4d, 0x1c, 0x9b, 0x71, 0x2a, 0x44, 0x67, 0x3a, - 0x9a, 0x16, 0xfb, 0xd1, 0xfd, 0x99, 0xe6, 0x4e, 0x3f, 0x1e, 0xc3, 0xd1, 0x13, 0x98, 0x57, 0xa4, - 0x27, 0xed, 0x75, 0x43, 0x53, 0x31, 0x34, 0x5d, 0xd2, 0x93, 0xd8, 0x98, 0xd1, 0xe7, 0x00, 0x3d, - 0x7d, 0x41, 0xab, 0x6b, 0x52, 0x7b, 0x23, 0x75, 0xde, 0xff, 0x6a, 0x6c, 0xce, 0x52, 0xa7, 0xe2, - 0xd1, 0xaf, 0x61, 0x7b, 0xf2, 0x74, 0x1a, 0x48, 0x45, 0x02, 0x97, 0xbe, 0x62, 0x74, 0x60, 0xa3, - 0x94, 0xa0, 0x64, 0xa7, 0x6e, 0x26, 0x16, 0x17, 0x70, 0xa0, 0x4b, 0x78, 0x44, 0xb2, 0x1a, 0x61, - 0xbf, 0x6b, 0x68, 0x3f, 0x29, 0x2a, 0x46, 0x91, 0xa4, 0xe0, 0x69, 0x22, 0xe7, 0x4f, 0x25, 0xd8, - 0xcb, 0xe6, 0x35, 0xb9, 0x32, 0xfe, 0x60, 0x57, 0xd6, 0xd7, 0xb0, 0x7d, 0x71, 0xd4, 0xb9, 0x38, - 0x6b, 0x76, 0x9b, 0x6f, 0xf2, 0xee, 0xae, 0xbb, 0x39, 0xe5, 0x1a, 0xc7, 0x1d, 0x95, 0x6c, 0x0b, - 0x6f, 0x8d, 0xf0, 0x19, 0x38, 0x3a, 0x9a, 0xbe, 0x0b, 0xcf, 0xa5, 0xf8, 0xda, 0x82, 0xdf, 0x31, - 0x8f, 0x8a, 0xba, 0xeb, 0x52, 0x29, 0x0b, 0x6f, 0xc6, 0x7f, 0xb7, 0xe0, 0xbd, 0xc2, 0x8a, 0xfc, - 0x1f, 0x5c, 0x91, 0xff, 0x53, 0x9a, 0xce, 0x1f, 0x47, 0xc1, 0x31, 0xf7, 0x7d, 0x12, 0x78, 0xa3, - 0x25, 0x6d, 0x4d, 0x6f, 0x01, 0xc9, 0x0d, 0xf7, 0xa1, 0xe9, 0x4f, 0x6f, 0x20, 0x75, 0x28, 0x77, - 0x78, 0x24, 0x5c, 0x9a, 0x39, 0x2e, 0x17, 0x65, 0xd1, 0x71, 0x05, 0x0b, 0x55, 0x0c, 0xc0, 0x09, - 0x10, 0x31, 0xf8, 0xd1, 0x24, 0xe2, 0x34, 0x08, 0x23, 0xd5, 0x26, 0x82, 0xf8, 0x54, 0x4d, 0xce, - 0xce, 0x3f, 0xb9, 0x97, 0x35, 0x8b, 0xc1, 0xc5, 0x6c, 0xc8, 0x81, 0x0a, 0x8e, 0x82, 0xba, 0xd4, - 0x47, 0xee, 0xcc, 0x81, 0x7a, 0x62, 0x46, 0xcf, 0x60, 0xd5, 0x3c, 0x8c, 0xee, 0x5d, 0x66, 0x9b, - 0x19, 0xc5, 0x65, 0x5d, 0xce, 0x3f, 0x2c, 0xd8, 0x2f, 0xae, 0x78, 0xd2, 0x32, 0xff, 0xeb, 0x92, - 0x9f, 0xc3, 0x4a, 0x46, 0x68, 0x1e, 0x52, 0xf8, 0x8c, 0xda, 0x64, 0xe0, 0xcf, 0xbe, 0xd0, 0x67, - 0x4a, 0x33, 0x43, 0x00, 0xe5, 0x6e, 0xb3, 0x55, 0x6f, 0x75, 0xd7, 0xdf, 0x41, 0xeb, 0xb0, 0x72, - 0x76, 0x51, 0x6f, 0x1c, 0xd5, 0xcf, 0xea, 0xad, 0xe3, 0x26, 0x5e, 0xb7, 0xd0, 0x63, 0x78, 0xb7, - 0xd3, 0xad, 0x1f, 0x7f, 0xdd, 0x6c, 0x1c, 0x5f, 0xb4, 0xba, 0xf8, 0xe2, 0xac, 0x7d, 0x56, 0x6f, - 0x35, 0xd7, 0x4b, 0x87, 0xdf, 0xcf, 0xc1, 0xbb, 0x39, 0x02, 0x87, 0x18, 0x94, 0x4f, 0x83, 0x3b, - 0x7e, 0x4b, 0xd1, 0xc7, 0x0f, 0xfc, 0xd2, 0xb8, 0x47, 0x77, 0xaa, 0x0f, 0x0d, 0x8f, 0x0b, 0xec, - 0xbc, 0x83, 0x7e, 0x0b, 0x8b, 0xf1, 0xa8, 0x52, 0xf4, 0xe2, 0x61, 0xe0, 0x69, 0xad, 0xdb, 0xf9, - 0xf9, 0x5b, 0xe3, 0xc6, 0x6f, 0xff, 0x9d, 0x05, 0x30, 0x29, 0x35, 0x7a, 0x20, 0xd3, 0xcc, 0x6c, - 0xee, 0x7c, 0xf6, 0xf6, 0xc0, 0x51, 0x0e, 0x47, 0x3f, 0xbd, 0xac, 0xf5, 0x98, 0xba, 0x89, 0xae, - 0x34, 0xa8, 0xe6, 0x33, 0x57, 0x70, 0xc9, 0xaf, 0x55, 0xcd, 0xe7, 0x6e, 0x4d, 0x84, 0x6e, 0x6d, - 0xc2, 0x5a, 0x4b, 0x58, 0xaf, 0xca, 0x46, 0x60, 0x3e, 0xfd, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x73, 0x53, 0xeb, 0x26, 0x49, 0x15, 0x00, 0x00, + // 1739 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0xdd, 0x6e, 0xe3, 0xc6, + 0xf5, 0x0f, 0x65, 0x5b, 0xb6, 0x8e, 0x3f, 0xd6, 0x9e, 0xb5, 0xbd, 0xfc, 0xfb, 0xef, 0x75, 0x0c, + 0x6e, 0x10, 0x38, 0xdb, 0x44, 0x4a, 0x9d, 0xed, 0x36, 0x28, 0x52, 0x04, 0xb2, 0xa5, 0xc4, 0x46, + 0x6c, 0x59, 0x1d, 0x69, 0x77, 0x01, 0xa3, 0xc0, 0x66, 0x4c, 0x8e, 0xe5, 0x81, 0x45, 0x0e, 0x3b, + 0x33, 0xb4, 0xa2, 0xa2, 0x37, 0xcd, 0x55, 0x8b, 0x5e, 0xf4, 0x11, 0xfa, 0x12, 0x6d, 0xef, 0x7a, + 0xd1, 0xfb, 0x3e, 0x47, 0xaf, 0x0a, 0xf4, 0x15, 0x8a, 0x19, 0x52, 0x12, 0x29, 0x91, 0x86, 0x17, + 0x68, 0x2e, 0x7a, 0x25, 0xf1, 0x9c, 0xf3, 0xfb, 0xcd, 0x99, 0x33, 0xe7, 0x63, 0x06, 0x9e, 0xf9, + 0xdc, 0x7d, 0xeb, 0xf6, 0x79, 0xe4, 0x91, 0x1e, 0x0d, 0xd4, 0xdb, 0x3b, 0x26, 0x54, 0x44, 0xfa, + 0x3e, 0x71, 0x6f, 0x58, 0x40, 0xab, 0xa1, 0xe0, 0x8a, 0xa3, 0x6d, 0x9f, 0xbb, 0xd5, 0x89, 0x51, + 0xd5, 0xe5, 0x7e, 0x18, 0x29, 0xba, 0xb3, 0xd7, 0xe3, 0xbc, 0xd7, 0xa7, 0x35, 0x63, 0x75, 0x15, + 0x5d, 0xd7, 0x06, 0x82, 0x84, 0x21, 0x15, 0x32, 0xc6, 0xed, 0x3c, 0x31, 0xe4, 0xdc, 0xf7, 0x79, + 0x90, 0xfc, 0x24, 0x8a, 0xbd, 0xac, 0x42, 0x93, 0xa5, 0xf5, 0xce, 0x9f, 0x2c, 0xd8, 0x7a, 0x1d, + 0x7b, 0x72, 0x1e, 0x7b, 0x82, 0xe9, 0xaf, 0x22, 0x2a, 0x15, 0x6a, 0xc3, 0xa3, 0xac, 0x42, 0xda, + 0xd6, 0xfe, 0xdc, 0xc1, 0xf2, 0xe1, 0x87, 0xd5, 0x7c, 0x27, 0xab, 0x53, 0x3c, 0xd3, 0x70, 0xf4, + 0x02, 0x56, 0x2f, 0x42, 0x2a, 0x88, 0x62, 0x3c, 0xe8, 0x0e, 0x43, 0x6a, 0x97, 0xf6, 0xad, 0x83, + 0xb5, 0xc3, 0x35, 0xc3, 0x37, 0xd6, 0xe0, 0xac, 0x91, 0xf3, 0x67, 0x0b, 0xb6, 0xa7, 0x3d, 0x94, + 0x21, 0x0f, 0x24, 0xfd, 0x01, 0x5c, 0x3c, 0x84, 0x32, 0xa6, 0x32, 0xea, 0x2b, 0xe3, 0xdb, 0xf2, + 0xe1, 0x4e, 0x35, 0x0e, 0x7c, 0x75, 0x14, 0xf8, 0xea, 0x11, 0xe7, 0xfd, 0xd7, 0xa4, 0x1f, 0x51, + 0x9c, 0x58, 0xa2, 0x4d, 0x58, 0x68, 0x0a, 0xc1, 0x85, 0x3d, 0xb7, 0x6f, 0x1d, 0x54, 0x70, 0xfc, + 0xe1, 0x54, 0x61, 0xa5, 0xd3, 0x39, 0x69, 0x47, 0x57, 0x7d, 0xe6, 0x7e, 0x43, 0x87, 0x68, 0x0f, + 0x16, 0x6f, 0xe9, 0xd0, 0x23, 0x8a, 0xd8, 0x96, 0xb6, 0x3b, 0x9a, 0xff, 0xdd, 0x5f, 0x6c, 0x0b, + 0x8f, 0x84, 0x8e, 0x03, 0xf3, 0x0d, 0x26, 0x6f, 0xd1, 0x0e, 0x2c, 0x79, 0x4c, 0xde, 0x06, 0xc4, + 0xa7, 0xb1, 0x21, 0x1e, 0x7f, 0x3b, 0xff, 0xb4, 0x60, 0xb3, 0xa3, 0xb8, 0x20, 0x3d, 0x7a, 0xcc, + 0x83, 0x6b, 0xd6, 0x8b, 0xe2, 0x38, 0xa1, 0x17, 0x50, 0xe6, 0x52, 0x9b, 0x19, 0xc8, 0xf2, 0xe1, + 0x6e, 0xd1, 0xfe, 0xf5, 0x12, 0x38, 0xb1, 0x45, 0x3f, 0x83, 0x8a, 0x5e, 0x5a, 0xff, 0x97, 0x76, + 0xc9, 0x04, 0xee, 0x7e, 0xe0, 0xc4, 0x1c, 0x7d, 0x08, 0x6b, 0xcc, 0x27, 0x3d, 0x8a, 0xe9, 0x35, + 0x15, 0x34, 0x70, 0x69, 0xb2, 0xfb, 0x29, 0x29, 0x7a, 0x01, 0x5b, 0x77, 0x7e, 0xec, 0xec, 0x31, + 0x0f, 0x14, 0x61, 0x01, 0x15, 0x2d, 0xbd, 0xb7, 0x79, 0x63, 0x9e, 0xaf, 0x74, 0xbe, 0x82, 0xf5, + 0x16, 0x55, 0x03, 0x2e, 0x6e, 0x4f, 0x03, 0x45, 0xc5, 0x35, 0x71, 0x29, 0x3a, 0x84, 0xcd, 0x60, + 0x4a, 0xd6, 0x9a, 0x04, 0x29, 0x57, 0xe7, 0x7c, 0x0b, 0x9b, 0x09, 0x4f, 0x36, 0x5e, 0x27, 0x00, + 0x6c, 0x64, 0x38, 0xca, 0x99, 0x83, 0xa2, 0xad, 0x4f, 0x7b, 0x82, 0x53, 0x58, 0xe7, 0x7b, 0x0b, + 0x36, 0x5e, 0x49, 0x2a, 0xb2, 0xfc, 0xfb, 0xb0, 0x14, 0x49, 0x2a, 0x26, 0x87, 0x98, 0x9c, 0xf6, + 0x58, 0xaa, 0x2d, 0x42, 0x22, 0xe5, 0x80, 0x0b, 0xcf, 0xa4, 0xda, 0xd8, 0x62, 0x24, 0x45, 0x1f, + 0xc5, 0x1c, 0x4a, 0x17, 0xca, 0x9c, 0x29, 0x94, 0x55, 0xe3, 0xa1, 0x5e, 0x4d, 0x17, 0x06, 0x1e, + 0xab, 0x75, 0xb8, 0x70, 0xa3, 0x9d, 0x75, 0x61, 0x0f, 0xc0, 0x63, 0x92, 0x5c, 0xf5, 0x29, 0x6e, + 0xb4, 0x8d, 0x13, 0x4b, 0x38, 0x25, 0x41, 0x08, 0xe6, 0x43, 0x2e, 0xe2, 0x3c, 0x5f, 0xc5, 0xe6, + 0xbf, 0x73, 0x09, 0xe8, 0x8c, 0x05, 0xd1, 0x77, 0x59, 0xa6, 0x06, 0x3c, 0x4d, 0x70, 0xed, 0xc4, + 0xb7, 0x7a, 0xa4, 0x6e, 0x68, 0xa0, 0x98, 0x6b, 0x0c, 0x12, 0xf2, 0xfb, 0x8d, 0x9c, 0xdf, 0x97, + 0x60, 0xf3, 0x0d, 0x0b, 0x3c, 0x3e, 0x90, 0x59, 0xfa, 0x97, 0xb0, 0x4d, 0x03, 0x0d, 0xac, 0x47, + 0x8a, 0xfb, 0x44, 0x31, 0xf7, 0x55, 0xe8, 0x11, 0x65, 0xce, 0x45, 0xf3, 0x16, 0x68, 0x75, 0xa1, + 0x28, 0xe6, 0xd3, 0x4b, 0x1e, 0xc4, 0x8d, 0xa4, 0x82, 0xc7, 0xdf, 0xa8, 0x3b, 0x1b, 0x10, 0x13, + 0xc3, 0x7b, 0x4e, 0x79, 0xda, 0x1e, 0xcf, 0x86, 0xf4, 0x6b, 0x40, 0x6f, 0x58, 0x80, 0xcf, 0xb3, + 0xbc, 0xf3, 0x86, 0xf7, 0x89, 0xe1, 0x9d, 0x55, 0xe3, 0x1c, 0x88, 0xf3, 0x8f, 0x05, 0xd8, 0x4d, + 0x9a, 0x5c, 0xd0, 0xeb, 0x0c, 0xa5, 0xa2, 0x7e, 0x76, 0x25, 0x07, 0x56, 0x12, 0xbf, 0x44, 0x2a, + 0xc7, 0x33, 0x32, 0x74, 0x01, 0xab, 0xc4, 0xf3, 0x59, 0xc0, 0xa4, 0x12, 0x44, 0x71, 0x91, 0x74, + 0xac, 0x8f, 0x8a, 0x36, 0x38, 0x93, 0xa5, 0x38, 0x8b, 0x47, 0x5f, 0xc2, 0x82, 0xce, 0x28, 0x69, + 0xcf, 0x99, 0x7a, 0x78, 0x07, 0xa2, 0x18, 0x87, 0x3e, 0x00, 0x70, 0x23, 0xa9, 0xb8, 0xdf, 0xd0, + 0x5d, 0x6e, 0x3e, 0x95, 0xd5, 0x29, 0x39, 0x6a, 0x00, 0x84, 0xa6, 0x2b, 0xde, 0xd2, 0xa1, 0xb4, + 0x17, 0xcc, 0x5a, 0x1f, 0x14, 0xad, 0x95, 0x6e, 0xa1, 0x38, 0x85, 0x43, 0x9f, 0xea, 0x8e, 0x67, + 0x6a, 0xa3, 0x6c, 0x6a, 0xc3, 0x4e, 0x0f, 0x91, 0x51, 0x50, 0x4d, 0x99, 0x24, 0x76, 0xe8, 0x17, + 0xb0, 0xc1, 0xe5, 0x11, 0xe7, 0x4a, 0xef, 0x37, 0x6c, 0x06, 0x3d, 0x16, 0x50, 0x7b, 0xd1, 0x80, + 0x9f, 0xe5, 0x81, 0xa7, 0x4c, 0xf1, 0x2c, 0x1a, 0x5d, 0x02, 0xea, 0xcf, 0xd4, 0x8b, 0xbd, 0x64, + 0xce, 0xe1, 0x79, 0xd1, 0x96, 0x66, 0x2b, 0x0c, 0xe7, 0xb0, 0xa0, 0x6f, 0x61, 0x73, 0x90, 0x53, + 0x2e, 0x76, 0xc5, 0xb0, 0x7f, 0x5c, 0xc4, 0x9e, 0x57, 0x62, 0x38, 0x97, 0x49, 0xa7, 0x73, 0x28, + 0xf8, 0x77, 0xc3, 0x2c, 0x3f, 0xa4, 0xd2, 0xb9, 0x3d, 0xa3, 0xc6, 0x39, 0x10, 0xe7, 0x5f, 0x16, + 0x6c, 0x9d, 0x10, 0xe1, 0x0d, 0x88, 0x98, 0x9a, 0x4b, 0x9f, 0x41, 0xf9, 0xf5, 0x79, 0x87, 0xfd, + 0x3a, 0xce, 0xe0, 0xb5, 0xc3, 0xff, 0x37, 0xb4, 0xd9, 0xa1, 0xab, 0xd5, 0xf1, 0x41, 0xc5, 0xa6, + 0xe8, 0xe7, 0xa3, 0x34, 0x32, 0xc0, 0x38, 0xab, 0x9f, 0xe6, 0x00, 0x8f, 0xc7, 0x46, 0x38, 0x05, + 0x40, 0x6f, 0x61, 0xc7, 0x1b, 0x06, 0xc4, 0x67, 0xee, 0x39, 0xf5, 0xb9, 0x18, 0xe6, 0x75, 0x81, + 0xf7, 0x0d, 0x5d, 0xa3, 0xd0, 0x0c, 0xdf, 0x43, 0xe1, 0x7c, 0x01, 0x2b, 0xaf, 0xe8, 0x35, 0xeb, + 0x50, 0xa5, 0x93, 0x45, 0xa2, 0x8f, 0x61, 0x43, 0x52, 0x37, 0x12, 0x54, 0xa7, 0x47, 0xd3, 0x34, + 0x2b, 0x2f, 0xe9, 0x5d, 0xb3, 0x0a, 0xe7, 0xaf, 0x16, 0x6c, 0x75, 0xb4, 0x94, 0xa9, 0x2c, 0x2f, + 0xda, 0x85, 0x4a, 0xdc, 0xea, 0xba, 0xed, 0xf3, 0x04, 0x3f, 0x11, 0xa0, 0x13, 0x58, 0x89, 0x52, + 0xab, 0x26, 0x71, 0x29, 0x2c, 0x9c, 0xb4, 0x87, 0x38, 0x83, 0x44, 0x3f, 0x81, 0x15, 0x99, 0x38, + 0xd0, 0x9d, 0x0c, 0x97, 0x0d, 0xc3, 0xd4, 0x49, 0x29, 0x70, 0xc6, 0xcc, 0x39, 0x03, 0xbb, 0x7e, + 0x47, 0x58, 0x9f, 0x5c, 0xb1, 0x3e, 0x53, 0xc3, 0x0e, 0x55, 0x93, 0x29, 0xbf, 0x0b, 0x95, 0x9e, + 0xe0, 0x51, 0x98, 0x6a, 0x56, 0x13, 0x81, 0x1e, 0x35, 0x66, 0x12, 0xc6, 0x5d, 0xda, 0xfc, 0x77, + 0xfe, 0xb0, 0x04, 0x6b, 0xd9, 0xe3, 0x1c, 0x9b, 0x59, 0x13, 0x33, 0xb4, 0x06, 0x25, 0x96, 0x0c, + 0x48, 0x5c, 0x62, 0x1e, 0xfa, 0x0a, 0x16, 0x65, 0x7c, 0x01, 0x4a, 0x4e, 0xb2, 0xb0, 0x10, 0xf2, + 0xee, 0x49, 0x78, 0x04, 0x46, 0x0d, 0x28, 0x71, 0x99, 0xb4, 0xee, 0x17, 0x45, 0x14, 0xf7, 0xb5, + 0x68, 0x5c, 0xe2, 0x52, 0x7b, 0x93, 0x5c, 0x3b, 0xec, 0x85, 0xfb, 0xbd, 0xc9, 0xbb, 0x85, 0xe0, + 0x11, 0x58, 0x8f, 0xb2, 0x80, 0x7b, 0xf1, 0x75, 0xa6, 0x1c, 0x8f, 0xb2, 0xd1, 0x77, 0x36, 0xb4, + 0x8b, 0xd3, 0xa1, 0x7d, 0x06, 0x65, 0xa9, 0x88, 0x8a, 0x64, 0xd2, 0x75, 0x96, 0xe3, 0x53, 0x34, + 0x22, 0x9c, 0xa8, 0xf4, 0x34, 0xe9, 0xf3, 0x78, 0x0c, 0x1b, 0x96, 0x4a, 0x3c, 0x4d, 0xd2, 0x32, + 0xf4, 0x39, 0x3c, 0x49, 0xe6, 0xf7, 0x09, 0xeb, 0xdd, 0xa4, 0x0f, 0xda, 0x74, 0x84, 0x25, 0x5c, + 0xa4, 0x46, 0x2f, 0xa1, 0x7c, 0x67, 0x3a, 0xad, 0xbd, 0x6c, 0x12, 0x69, 0xaf, 0xf0, 0xee, 0x7d, + 0x1e, 0x97, 0x79, 0x6c, 0x8d, 0x4e, 0x61, 0xe9, 0x26, 0x69, 0x1a, 0xf6, 0x8a, 0x71, 0xfe, 0x93, + 0x22, 0x64, 0x6e, 0x73, 0xc1, 0x63, 0xb8, 0xae, 0x40, 0xd2, 0xef, 0xf3, 0x01, 0xf5, 0x2e, 0x06, + 0xfa, 0x0a, 0xc9, 0x3d, 0x2a, 0xed, 0xd5, 0xfd, 0xb9, 0x83, 0x0a, 0x9e, 0x55, 0xa0, 0x1a, 0x40, + 0xc8, 0x07, 0x54, 0xe8, 0x28, 0x51, 0x7b, 0xcd, 0x38, 0xfd, 0x28, 0xee, 0x77, 0x63, 0x31, 0x4e, + 0x99, 0x68, 0x4f, 0x47, 0x95, 0x60, 0x3f, 0xba, 0xdf, 0xd3, 0xdc, 0xca, 0xc6, 0x63, 0x38, 0x7a, + 0x0a, 0xf3, 0x8a, 0xf4, 0xa4, 0xbd, 0x6e, 0x68, 0x2a, 0x86, 0xa6, 0x4b, 0x7a, 0x12, 0x1b, 0x31, + 0xfa, 0x02, 0xa0, 0xa7, 0x1f, 0x5f, 0x75, 0x4d, 0x6a, 0x6f, 0xa4, 0xee, 0xf2, 0x5f, 0x8f, 0xc5, + 0x59, 0xea, 0x94, 0x3d, 0xfa, 0x25, 0x6c, 0x4f, 0xbe, 0x4e, 0x03, 0xa9, 0x48, 0xe0, 0xd2, 0xd7, + 0x8c, 0x0e, 0x6c, 0x94, 0x6a, 0x16, 0xd9, 0xaa, 0x9b, 0xb1, 0xc5, 0x05, 0x1c, 0xe8, 0x12, 0x1e, + 0x91, 0x6c, 0xfd, 0xdb, 0x8f, 0x0d, 0xed, 0xa7, 0x45, 0xc1, 0x28, 0x6a, 0x17, 0x78, 0x9a, 0xc8, + 0xf9, 0x63, 0x09, 0xf6, 0xb2, 0x7e, 0x4d, 0x9e, 0x83, 0x3f, 0xd8, 0x73, 0xf4, 0x0d, 0x6c, 0x5f, + 0x1c, 0x75, 0x2e, 0xce, 0x9a, 0xdd, 0xe6, 0xdb, 0xbc, 0x77, 0xe9, 0x6e, 0x4e, 0xb8, 0xc6, 0x76, + 0x47, 0x25, 0xdb, 0xc2, 0x5b, 0x23, 0x7c, 0x06, 0x8e, 0x8e, 0xa6, 0xdf, 0xb9, 0x73, 0x29, 0xbe, + 0xb6, 0xe0, 0x77, 0xcc, 0xa3, 0xa2, 0xee, 0xba, 0x54, 0xca, 0xc2, 0x57, 0xef, 0xdf, 0x2c, 0x78, + 0xbf, 0x30, 0x22, 0xff, 0x03, 0xcf, 0xdf, 0x7f, 0x97, 0xa6, 0xfd, 0xc7, 0x51, 0x70, 0xcc, 0x7d, + 0x9f, 0x04, 0xde, 0xe8, 0x48, 0x5b, 0xd3, 0x23, 0x20, 0x79, 0xbd, 0x3e, 0xd4, 0xfd, 0xe9, 0x01, + 0x52, 0x87, 0x72, 0x87, 0x47, 0xc2, 0xa5, 0x99, 0xab, 0x70, 0x91, 0x17, 0x1d, 0x57, 0xb0, 0x50, + 0xc5, 0x00, 0x9c, 0x00, 0x11, 0x83, 0xff, 0x9b, 0x58, 0x9c, 0x06, 0x61, 0xa4, 0xda, 0x44, 0x10, + 0x9f, 0xaa, 0xc9, 0xbd, 0xf8, 0x47, 0xf7, 0xb2, 0x66, 0x31, 0xb8, 0x98, 0x0d, 0x39, 0x50, 0xc1, + 0x51, 0x50, 0x97, 0xfa, 0x3a, 0x9d, 0xb9, 0x2c, 0x4f, 0xc4, 0xe8, 0x39, 0xac, 0x9a, 0x8f, 0xd1, + 0x9b, 0xca, 0x8c, 0x99, 0x91, 0x5d, 0x56, 0xe5, 0xfc, 0xdd, 0x82, 0xfd, 0xe2, 0x88, 0x27, 0x29, + 0xf3, 0xdf, 0x0e, 0xf9, 0x39, 0xac, 0x64, 0x1a, 0xcd, 0x43, 0x02, 0x9f, 0xe9, 0x36, 0x19, 0xf8, + 0xf3, 0x2f, 0xf5, 0x7d, 0xd1, 0xd4, 0x10, 0x40, 0xb9, 0xdb, 0x6c, 0xd5, 0x5b, 0xdd, 0xf5, 0xf7, + 0xd0, 0x3a, 0xac, 0x9c, 0x5d, 0xd4, 0x1b, 0x47, 0xf5, 0xb3, 0x7a, 0xeb, 0xb8, 0x89, 0xd7, 0x2d, + 0xf4, 0x04, 0x1e, 0x77, 0xba, 0xf5, 0xe3, 0x6f, 0x9a, 0x8d, 0xe3, 0x8b, 0x56, 0x17, 0x5f, 0x9c, + 0xb5, 0xcf, 0xea, 0xad, 0xe6, 0x7a, 0xe9, 0xf0, 0xfb, 0x39, 0x78, 0x9c, 0xd3, 0xe0, 0x10, 0x83, + 0xf2, 0x69, 0x70, 0xc7, 0x6f, 0x29, 0xfa, 0xe4, 0x81, 0x3b, 0x8d, 0x73, 0x74, 0xa7, 0xfa, 0x50, + 0xf3, 0x38, 0xc0, 0xce, 0x7b, 0xe8, 0x37, 0xb0, 0x18, 0x97, 0x2a, 0x45, 0x2f, 0x1f, 0x06, 0x9e, + 0xee, 0x75, 0x3b, 0x3f, 0x7d, 0x67, 0xdc, 0x78, 0xf5, 0xdf, 0x5a, 0x00, 0x93, 0x50, 0xa3, 0x07, + 0x32, 0xcd, 0xd4, 0xe6, 0xce, 0xe7, 0xef, 0x0e, 0x1c, 0xf9, 0x70, 0xf4, 0xe3, 0xcb, 0x5a, 0x8f, + 0xa9, 0x9b, 0xe8, 0x4a, 0x83, 0x6a, 0x3e, 0x73, 0x05, 0x97, 0xfc, 0x5a, 0xd5, 0x7c, 0xee, 0xd6, + 0x44, 0xe8, 0xd6, 0x26, 0xac, 0xb5, 0x84, 0xf5, 0xaa, 0x6c, 0x1a, 0xcc, 0x67, 0xff, 0x09, 0x00, + 0x00, 0xff, 0xff, 0xf6, 0x57, 0x1c, 0x1d, 0x25, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto index 92c644b..4134ba4 100644 --- a/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto +++ b/rpc/cloudagent/compute/virtualmachine/moc_cloudagent_virtualmachine.proto @@ -106,7 +106,6 @@ message SecurityConfiguration { message AvailabilitySetReference { string groupName = 1; string name = 2; - string realizedName = 3; } message VirtualMachine {