eliminated CloudSubResource and NodeSubResource in favor of ad-hoc identifiers

This commit is contained in:
John Carden 2024-02-26 20:06:01 +00:00
Родитель ce4af16eba
Коммит 57dbbc564a
8 изменённых файлов: 529 добавлений и 478 удалений

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

@ -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 {

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

@ -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.

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

@ -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.

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

@ -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 {

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

@ -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,
}

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

@ -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.

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

@ -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 {

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

@ -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.