зеркало из https://github.com/microsoft/moc.git
Merge branch 'main' of ssh://github.com/dhavalpopat/moc into usr/wenjlu/aksgpu
This commit is contained in:
Коммит
4c01ed871d
|
@ -32,7 +32,7 @@ type VmSize struct {
|
|||
GpuName string
|
||||
MemoryMB int
|
||||
GpuAssignMode GpuAssignType
|
||||
GpuList []*pb.Gpu
|
||||
GpuList []*pb.Gpu
|
||||
}
|
||||
|
||||
// innerMap is captured in the closure returned below
|
||||
|
@ -113,6 +113,10 @@ var VirtualMachineSize_value = map[pb.VirtualMachineSizeType]VmSize{
|
|||
CpuCount: 2,
|
||||
MemoryMB: 1024,
|
||||
},
|
||||
pb.VirtualMachineSizeType_Standard_F16s_HPN: {
|
||||
CpuCount: 16,
|
||||
MemoryMB: 32768,
|
||||
},
|
||||
// Sizes with GPUs
|
||||
pb.VirtualMachineSizeType_Standard_NK6: {
|
||||
CpuCount: 6,
|
||||
|
|
|
@ -42,6 +42,7 @@ message LogicalSubnet {
|
|||
Dns dns = 8 [(sensitive) = true];
|
||||
bool isPublic = 9; // Indicates IPPools from this subnet can be used to allocate public IP address by SDN.
|
||||
Tags tags = 10;
|
||||
NetworkSecurityGroupReference networkSecurityGroupRef = 11;
|
||||
}
|
||||
|
||||
service LogicalNetworkAgent {
|
||||
|
|
|
@ -224,19 +224,20 @@ func (m *LogicalNetwork) GetTags() *common.Tags {
|
|||
}
|
||||
|
||||
type LogicalSubnet 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"`
|
||||
AddressPrefix string `protobuf:"bytes,3,opt,name=addressPrefix,proto3" json:"addressPrefix,omitempty"`
|
||||
Routes []*common.Route `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,5,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Vlan uint32 `protobuf:"varint,6,opt,name=vlan,proto3" json:"vlan,omitempty"`
|
||||
IpPools []*common.IPPool `protobuf:"bytes,7,rep,name=ipPools,proto3" json:"ipPools,omitempty"`
|
||||
Dns *common.Dns `protobuf:"bytes,8,opt,name=dns,proto3" json:"dns,omitempty"`
|
||||
IsPublic bool `protobuf:"varint,9,opt,name=isPublic,proto3" json:"isPublic,omitempty"`
|
||||
Tags *common.Tags `protobuf:"bytes,10,opt,name=tags,proto3" json:"tags,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"`
|
||||
AddressPrefix string `protobuf:"bytes,3,opt,name=addressPrefix,proto3" json:"addressPrefix,omitempty"`
|
||||
Routes []*common.Route `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,5,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Vlan uint32 `protobuf:"varint,6,opt,name=vlan,proto3" json:"vlan,omitempty"`
|
||||
IpPools []*common.IPPool `protobuf:"bytes,7,rep,name=ipPools,proto3" json:"ipPools,omitempty"`
|
||||
Dns *common.Dns `protobuf:"bytes,8,opt,name=dns,proto3" json:"dns,omitempty"`
|
||||
IsPublic bool `protobuf:"varint,9,opt,name=isPublic,proto3" json:"isPublic,omitempty"`
|
||||
Tags *common.Tags `protobuf:"bytes,10,opt,name=tags,proto3" json:"tags,omitempty"`
|
||||
NetworkSecurityGroupRef *common.NetworkSecurityGroupReference `protobuf:"bytes,11,opt,name=networkSecurityGroupRef,proto3" json:"networkSecurityGroupRef,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LogicalSubnet) Reset() { *m = LogicalSubnet{} }
|
||||
|
@ -334,6 +335,13 @@ func (m *LogicalSubnet) GetTags() *common.Tags {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *LogicalSubnet) GetNetworkSecurityGroupRef() *common.NetworkSecurityGroupReference {
|
||||
if m != nil {
|
||||
return m.NetworkSecurityGroupRef
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*LogicalNetworkRequest)(nil), "moc.cloudagent.network.LogicalNetworkRequest")
|
||||
proto.RegisterType((*LogicalNetworkResponse)(nil), "moc.cloudagent.network.LogicalNetworkResponse")
|
||||
|
@ -346,46 +354,48 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_37e4212e5c247b0a = []byte{
|
||||
// 619 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x6e, 0xd3, 0x4a,
|
||||
0x14, 0xbe, 0x4e, 0xd2, 0xfc, 0x9c, 0xdc, 0xe4, 0x4a, 0x73, 0xef, 0x6d, 0xad, 0x08, 0xaa, 0xc8,
|
||||
0xa5, 0x55, 0x36, 0xd8, 0x22, 0x20, 0xb1, 0x44, 0x8d, 0xe8, 0xa2, 0x12, 0x94, 0x68, 0x5a, 0x75,
|
||||
0xc1, 0xa6, 0x9a, 0xd8, 0x53, 0x77, 0xd4, 0xb1, 0xc7, 0xcc, 0x8c, 0x5b, 0x60, 0xc5, 0x92, 0xb7,
|
||||
0xe0, 0x25, 0xe0, 0x21, 0xd8, 0xf0, 0x4c, 0xc8, 0xc7, 0x4e, 0x1a, 0x57, 0x15, 0x74, 0xc3, 0xca,
|
||||
0x33, 0xe7, 0xfb, 0xce, 0x77, 0xce, 0xf9, 0x66, 0xc6, 0xb0, 0x93, 0xa8, 0xf0, 0x2c, 0x94, 0x2a,
|
||||
0x8f, 0x58, 0xcc, 0x53, 0x7b, 0x26, 0x55, 0x2c, 0x42, 0x26, 0x53, 0x6e, 0xaf, 0x95, 0xbe, 0xf4,
|
||||
0x33, 0xad, 0xac, 0x22, 0x9b, 0x89, 0x0a, 0xfd, 0x1b, 0x92, 0x5f, 0xa1, 0xa3, 0xed, 0x58, 0xa9,
|
||||
0x58, 0xf2, 0x00, 0x59, 0x8b, 0xfc, 0x3c, 0xb8, 0xd6, 0x2c, 0xcb, 0xb8, 0x36, 0x65, 0xde, 0x68,
|
||||
0x0b, 0xc5, 0x55, 0x92, 0xa8, 0xb4, 0xfa, 0x54, 0xc0, 0xf6, 0x1a, 0x50, 0x89, 0xad, 0xe3, 0xde,
|
||||
0x17, 0x07, 0xfe, 0x7f, 0x55, 0x76, 0x72, 0x54, 0xc2, 0x94, 0xbf, 0xcb, 0xb9, 0xb1, 0x64, 0x0e,
|
||||
0xff, 0xd4, 0x01, 0xe3, 0x3a, 0xe3, 0xe6, 0xa4, 0x3f, 0xdd, 0xf3, 0xef, 0x6e, 0xd2, 0xbf, 0xa5,
|
||||
0x73, 0x3b, 0x9d, 0x3c, 0x83, 0xc1, 0x9b, 0x8c, 0x6b, 0x66, 0x85, 0x4a, 0x4f, 0x3e, 0x64, 0xdc,
|
||||
0x6d, 0x8c, 0x9d, 0xc9, 0x70, 0x3a, 0x44, 0xbd, 0x15, 0x42, 0xeb, 0x24, 0xef, 0xab, 0x03, 0x9b,
|
||||
0xb7, 0x3b, 0x34, 0x99, 0x4a, 0x0d, 0xff, 0x03, 0x2d, 0x4e, 0xa1, 0x4d, 0xb9, 0xc9, 0xa5, 0xc5,
|
||||
0xde, 0xfa, 0xd3, 0x91, 0x5f, 0x1a, 0xef, 0x2f, 0x8d, 0xf7, 0x67, 0x4a, 0xc9, 0x53, 0x26, 0x73,
|
||||
0x4e, 0x2b, 0x26, 0xf9, 0x0f, 0x36, 0x0e, 0xb4, 0x56, 0xda, 0x6d, 0x8e, 0x9d, 0x49, 0x8f, 0x96,
|
||||
0x1b, 0xef, 0x7b, 0x03, 0x86, 0x75, 0x75, 0x42, 0xa0, 0x95, 0xb2, 0x84, 0xbb, 0x0e, 0xf2, 0x70,
|
||||
0x4d, 0x86, 0xd0, 0x10, 0x11, 0x16, 0xeb, 0xd1, 0x86, 0x88, 0xc8, 0x0b, 0xe8, 0x98, 0x7c, 0x91,
|
||||
0x72, 0x6b, 0xdc, 0x26, 0x8e, 0xb2, 0xfb, 0x9b, 0x51, 0x8e, 0x91, 0x4d, 0x97, 0x59, 0x64, 0x06,
|
||||
0x0f, 0x2a, 0xc6, 0xa9, 0xd0, 0x36, 0x67, 0x52, 0x7c, 0x44, 0x2f, 0x0f, 0x52, 0xb6, 0x90, 0x3c,
|
||||
0x72, 0x5b, 0x63, 0x67, 0xd2, 0xa5, 0xbf, 0xe4, 0x90, 0x1d, 0x68, 0x1b, 0xcb, 0x6c, 0x6e, 0xdc,
|
||||
0x0d, 0x74, 0xa1, 0x8f, 0x3d, 0x1c, 0x63, 0x88, 0x56, 0x10, 0xf1, 0xe0, 0x6f, 0xa9, 0x42, 0xcc,
|
||||
0x3b, 0x2a, 0xa6, 0x6a, 0xe3, 0x0c, 0xb5, 0x18, 0xd9, 0x83, 0x7e, 0xc2, 0xc2, 0xb9, 0x52, 0x12,
|
||||
0x29, 0x9d, 0x82, 0x32, 0x6b, 0x7d, 0xfe, 0xe6, 0x3a, 0x74, 0x1d, 0x20, 0x0f, 0xa1, 0x65, 0x59,
|
||||
0x6c, 0xdc, 0x2e, 0x96, 0xeb, 0x61, 0xb9, 0x13, 0x16, 0x1b, 0x8a, 0x61, 0xef, 0x47, 0x03, 0x06,
|
||||
0xb5, 0x71, 0xef, 0x65, 0xe5, 0x23, 0x18, 0xb0, 0x28, 0xd2, 0xdc, 0x98, 0xb9, 0xe6, 0xe7, 0xe2,
|
||||
0x7d, 0x75, 0x3e, 0xf5, 0x20, 0xf1, 0xa0, 0xad, 0x55, 0x6e, 0xb9, 0x71, 0x5b, 0xe8, 0x37, 0x60,
|
||||
0x71, 0x5a, 0x84, 0x68, 0x85, 0x90, 0xe7, 0x00, 0x4c, 0x2e, 0x07, 0x43, 0x4f, 0x86, 0xd3, 0x2d,
|
||||
0xe4, 0x1d, 0xce, 0xf7, 0x57, 0xc0, 0x6b, 0x6e, 0x2f, 0x54, 0x44, 0xd7, 0xa8, 0x45, 0x9b, 0x57,
|
||||
0x92, 0xa5, 0xe8, 0xcd, 0x80, 0xe2, 0x9a, 0xec, 0x42, 0x47, 0x64, 0xc5, 0xe4, 0xc6, 0xed, 0x60,
|
||||
0xc5, 0x7e, 0xa5, 0x54, 0xc4, 0xe8, 0x12, 0x23, 0x63, 0x68, 0x46, 0xe9, 0xd2, 0x91, 0x2e, 0x52,
|
||||
0x5e, 0xa6, 0xa6, 0x32, 0xaf, 0x80, 0xc8, 0x08, 0xba, 0xc2, 0xcc, 0xf3, 0x85, 0x14, 0xa1, 0xdb,
|
||||
0xc3, 0x53, 0x5d, 0xed, 0x57, 0x86, 0xc2, 0x9d, 0x86, 0x4e, 0x3f, 0x39, 0xf0, 0x6f, 0xfd, 0x72,
|
||||
0xee, 0x17, 0x77, 0x8b, 0x08, 0x68, 0x1f, 0xa6, 0x57, 0xea, 0x92, 0x93, 0xc7, 0xf7, 0x7c, 0x41,
|
||||
0xe5, 0xcf, 0x62, 0xe4, 0xdf, 0x97, 0x5e, 0xbe, 0x5c, 0xef, 0xaf, 0xd9, 0x93, 0xb7, 0x41, 0x2c,
|
||||
0xec, 0x45, 0xbe, 0xf0, 0x43, 0x95, 0x04, 0x89, 0x08, 0xb5, 0x32, 0xea, 0xdc, 0x06, 0x89, 0x0a,
|
||||
0x03, 0x9d, 0x85, 0xc1, 0x8d, 0x56, 0x50, 0x69, 0x2d, 0xda, 0xf8, 0x08, 0x9f, 0xfe, 0x0c, 0x00,
|
||||
0x00, 0xff, 0xff, 0x96, 0xc0, 0x9d, 0x00, 0x4a, 0x05, 0x00, 0x00,
|
||||
// 652 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcd, 0x6e, 0xd3, 0x4c,
|
||||
0x14, 0xfd, 0x9c, 0xa4, 0xf9, 0xb9, 0xf9, 0x12, 0xa4, 0x01, 0x5a, 0x2b, 0x82, 0x2a, 0x72, 0x69,
|
||||
0x95, 0x0d, 0xb6, 0x08, 0x48, 0x2c, 0x51, 0x23, 0x2a, 0x54, 0x09, 0x4a, 0x34, 0xad, 0xba, 0x40,
|
||||
0x48, 0xd5, 0xc4, 0x9e, 0xa4, 0xa3, 0x8e, 0x3d, 0x66, 0x66, 0xdc, 0x52, 0x56, 0x2c, 0x79, 0x0b,
|
||||
0x5e, 0x80, 0x25, 0x3c, 0x04, 0x6f, 0x85, 0x7c, 0xe3, 0xa4, 0x71, 0x55, 0xa0, 0x1b, 0x56, 0xf6,
|
||||
0xdc, 0x73, 0xee, 0xb9, 0xf7, 0x9e, 0xf9, 0x81, 0xad, 0x58, 0x85, 0x27, 0xa1, 0x54, 0x59, 0xc4,
|
||||
0x66, 0x3c, 0xb1, 0x27, 0x52, 0xcd, 0x44, 0xc8, 0x64, 0xc2, 0xed, 0x85, 0xd2, 0x67, 0x7e, 0xaa,
|
||||
0x95, 0x55, 0x64, 0x3d, 0x56, 0xa1, 0x7f, 0x45, 0xf2, 0x0b, 0xb4, 0xb7, 0x39, 0x53, 0x6a, 0x26,
|
||||
0x79, 0x80, 0xac, 0x49, 0x36, 0x0d, 0x2e, 0x34, 0x4b, 0x53, 0xae, 0xcd, 0x3c, 0xaf, 0xb7, 0x81,
|
||||
0xe2, 0x2a, 0x8e, 0x55, 0x52, 0x7c, 0x0a, 0x60, 0x73, 0x05, 0x28, 0xc4, 0x56, 0x71, 0xef, 0xab,
|
||||
0x03, 0xf7, 0x5f, 0xcf, 0x3b, 0x39, 0x98, 0xc3, 0x94, 0x7f, 0xc8, 0xb8, 0xb1, 0x64, 0x0c, 0x77,
|
||||
0xca, 0x80, 0x71, 0x9d, 0x7e, 0x75, 0xd0, 0x1e, 0xee, 0xf8, 0x37, 0x37, 0xe9, 0x5f, 0xd3, 0xb9,
|
||||
0x9e, 0x4e, 0x9e, 0x41, 0xe7, 0x6d, 0xca, 0x35, 0xb3, 0x42, 0x25, 0x47, 0x97, 0x29, 0x77, 0x2b,
|
||||
0x7d, 0x67, 0xd0, 0x1d, 0x76, 0x51, 0x6f, 0x89, 0xd0, 0x32, 0xc9, 0xfb, 0xee, 0xc0, 0xfa, 0xf5,
|
||||
0x0e, 0x4d, 0xaa, 0x12, 0xc3, 0xff, 0x41, 0x8b, 0x43, 0xa8, 0x53, 0x6e, 0x32, 0x69, 0xb1, 0xb7,
|
||||
0xf6, 0xb0, 0xe7, 0xcf, 0x8d, 0xf7, 0x17, 0xc6, 0xfb, 0x23, 0xa5, 0xe4, 0x31, 0x93, 0x19, 0xa7,
|
||||
0x05, 0x93, 0xdc, 0x83, 0xb5, 0x3d, 0xad, 0x95, 0x76, 0xab, 0x7d, 0x67, 0xd0, 0xa2, 0xf3, 0x85,
|
||||
0xf7, 0xb3, 0x02, 0xdd, 0xb2, 0x3a, 0x21, 0x50, 0x4b, 0x58, 0xcc, 0x5d, 0x07, 0x79, 0xf8, 0x4f,
|
||||
0xba, 0x50, 0x11, 0x11, 0x16, 0x6b, 0xd1, 0x8a, 0x88, 0xc8, 0x0b, 0x68, 0x98, 0x6c, 0x92, 0x70,
|
||||
0x6b, 0xdc, 0x2a, 0x8e, 0xb2, 0xfd, 0x97, 0x51, 0x0e, 0x91, 0x4d, 0x17, 0x59, 0x64, 0x04, 0x0f,
|
||||
0x0a, 0xc6, 0xb1, 0xd0, 0x36, 0x63, 0x52, 0x7c, 0x42, 0x2f, 0xf7, 0x12, 0x36, 0x91, 0x3c, 0x72,
|
||||
0x6b, 0x7d, 0x67, 0xd0, 0xa4, 0x7f, 0xe4, 0x90, 0x2d, 0xa8, 0x1b, 0xcb, 0x6c, 0x66, 0xdc, 0x35,
|
||||
0x74, 0xa1, 0x8d, 0x3d, 0x1c, 0x62, 0x88, 0x16, 0x10, 0xf1, 0xe0, 0x7f, 0xa9, 0x42, 0xcc, 0x3b,
|
||||
0xc8, 0xa7, 0xaa, 0xe3, 0x0c, 0xa5, 0x18, 0xd9, 0x81, 0x76, 0xcc, 0xc2, 0xb1, 0x52, 0x12, 0x29,
|
||||
0x8d, 0x9c, 0x32, 0xaa, 0x7d, 0xf9, 0xe1, 0x3a, 0x74, 0x15, 0x20, 0x0f, 0xa1, 0x66, 0xd9, 0xcc,
|
||||
0xb8, 0x4d, 0x2c, 0xd7, 0xc2, 0x72, 0x47, 0x6c, 0x66, 0x28, 0x86, 0xbd, 0x6f, 0x55, 0xe8, 0x94,
|
||||
0xc6, 0xbd, 0x95, 0x95, 0x8f, 0xa0, 0xc3, 0xa2, 0x48, 0x73, 0x63, 0xc6, 0x9a, 0x4f, 0xc5, 0xc7,
|
||||
0x62, 0x7f, 0xca, 0x41, 0xe2, 0x41, 0x5d, 0xab, 0xcc, 0x72, 0xe3, 0xd6, 0xd0, 0x6f, 0xc0, 0xe2,
|
||||
0x34, 0x0f, 0xd1, 0x02, 0x21, 0xcf, 0x01, 0x98, 0x5c, 0x0c, 0x86, 0x9e, 0x74, 0x87, 0x1b, 0xc8,
|
||||
0xdb, 0x1f, 0xef, 0x2e, 0x81, 0x37, 0xdc, 0x9e, 0xaa, 0x88, 0xae, 0x50, 0xf3, 0x36, 0xcf, 0x25,
|
||||
0x4b, 0xd0, 0x9b, 0x0e, 0xc5, 0x7f, 0xb2, 0x0d, 0x0d, 0x91, 0xe6, 0x93, 0x1b, 0xb7, 0x81, 0x15,
|
||||
0xdb, 0x85, 0x52, 0x1e, 0xa3, 0x0b, 0x8c, 0xf4, 0xa1, 0x1a, 0x25, 0x0b, 0x47, 0x9a, 0x48, 0x79,
|
||||
0x99, 0x98, 0xc2, 0xbc, 0x1c, 0x22, 0x3d, 0x68, 0x0a, 0x33, 0xce, 0x26, 0x52, 0x84, 0x6e, 0x0b,
|
||||
0x77, 0x75, 0xb9, 0x5e, 0x1a, 0x0a, 0x37, 0x1a, 0x4a, 0xde, 0xc3, 0x46, 0x71, 0x00, 0x0e, 0x79,
|
||||
0x98, 0x69, 0x61, 0x2f, 0x5f, 0x69, 0x95, 0xa5, 0x94, 0x4f, 0xdd, 0x36, 0x66, 0x78, 0x98, 0x71,
|
||||
0x70, 0x33, 0x87, 0x6b, 0x9e, 0x84, 0x9c, 0xfe, 0x4e, 0x62, 0xf8, 0xd9, 0x81, 0xbb, 0xe5, 0xa3,
|
||||
0xbf, 0x9b, 0x9f, 0x5c, 0x22, 0xa0, 0xbe, 0x9f, 0x9c, 0xab, 0x33, 0x4e, 0x1e, 0xdf, 0xf2, 0x7e,
|
||||
0xce, 0x9f, 0xa2, 0x9e, 0x7f, 0x5b, 0xfa, 0xfc, 0x5d, 0xf0, 0xfe, 0x1b, 0x3d, 0x79, 0x17, 0xcc,
|
||||
0x84, 0x3d, 0xcd, 0x26, 0x7e, 0xa8, 0xe2, 0x20, 0x16, 0xa1, 0x56, 0x46, 0x4d, 0x6d, 0x10, 0xab,
|
||||
0x30, 0xd0, 0x69, 0x18, 0x5c, 0x69, 0x05, 0x85, 0xd6, 0xa4, 0x8e, 0x57, 0xfc, 0xe9, 0xaf, 0x00,
|
||||
0x00, 0x00, 0xff, 0xff, 0xec, 0x33, 0xc8, 0x21, 0xa8, 0x05, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -218,20 +218,20 @@ func (m *InboundNatRule) GetName() string {
|
|||
}
|
||||
|
||||
type IpConfiguration struct {
|
||||
Ipaddress string `protobuf:"bytes,1,opt,name=ipaddress,proto3" json:"ipaddress,omitempty"`
|
||||
Prefixlength string `protobuf:"bytes,2,opt,name=prefixlength,proto3" json:"prefixlength,omitempty"`
|
||||
Subnetid string `protobuf:"bytes,3,opt,name=subnetid,proto3" json:"subnetid,omitempty"`
|
||||
Primary bool `protobuf:"varint,4,opt,name=primary,proto3" json:"primary,omitempty"`
|
||||
Loadbalanceraddresspool []string `protobuf:"bytes,5,rep,name=loadbalanceraddresspool,proto3" json:"loadbalanceraddresspool,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,6,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Gateway string `protobuf:"bytes,7,opt,name=gateway,proto3" json:"gateway,omitempty"`
|
||||
InboundNatRules []*InboundNatRule `protobuf:"bytes,8,rep,name=inboundNatRules,proto3" json:"inboundNatRules,omitempty"`
|
||||
Tags *common.Tags `protobuf:"bytes,9,opt,name=tags,proto3" json:"tags,omitempty"`
|
||||
NetworkType NetworkType `protobuf:"varint,10,opt,name=networkType,proto3,enum=moc.cloudagent.network.NetworkType" json:"networkType,omitempty"`
|
||||
Networksecuritygroup string `protobuf:"bytes,11,opt,name=networksecuritygroup,proto3" json:"networksecuritygroup,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
Ipaddress string `protobuf:"bytes,1,opt,name=ipaddress,proto3" json:"ipaddress,omitempty"`
|
||||
Prefixlength string `protobuf:"bytes,2,opt,name=prefixlength,proto3" json:"prefixlength,omitempty"`
|
||||
Subnetid string `protobuf:"bytes,3,opt,name=subnetid,proto3" json:"subnetid,omitempty"`
|
||||
Primary bool `protobuf:"varint,4,opt,name=primary,proto3" json:"primary,omitempty"`
|
||||
Loadbalanceraddresspool []string `protobuf:"bytes,5,rep,name=loadbalanceraddresspool,proto3" json:"loadbalanceraddresspool,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,6,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Gateway string `protobuf:"bytes,7,opt,name=gateway,proto3" json:"gateway,omitempty"`
|
||||
InboundNatRules []*InboundNatRule `protobuf:"bytes,8,rep,name=inboundNatRules,proto3" json:"inboundNatRules,omitempty"`
|
||||
Tags *common.Tags `protobuf:"bytes,9,opt,name=tags,proto3" json:"tags,omitempty"`
|
||||
NetworkType NetworkType `protobuf:"varint,10,opt,name=networkType,proto3,enum=moc.cloudagent.network.NetworkType" json:"networkType,omitempty"`
|
||||
NetworkSecurityGroupRef *common.NetworkSecurityGroupReference `protobuf:"bytes,12,opt,name=networkSecurityGroupRef,proto3" json:"networkSecurityGroupRef,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IpConfiguration) Reset() { *m = IpConfiguration{} }
|
||||
|
@ -329,11 +329,11 @@ func (m *IpConfiguration) GetNetworkType() NetworkType {
|
|||
return NetworkType_VIRTUAL_NETWORK
|
||||
}
|
||||
|
||||
func (m *IpConfiguration) GetNetworksecuritygroup() string {
|
||||
func (m *IpConfiguration) GetNetworkSecurityGroupRef() *common.NetworkSecurityGroupReference {
|
||||
if m != nil {
|
||||
return m.Networksecuritygroup
|
||||
return m.NetworkSecurityGroupRef
|
||||
}
|
||||
return ""
|
||||
return nil
|
||||
}
|
||||
|
||||
type NetworkInterface struct {
|
||||
|
@ -486,59 +486,61 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_641284ba8360303c = []byte{
|
||||
// 829 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x41, 0x6f, 0xe3, 0x44,
|
||||
0x18, 0xad, 0x9b, 0x34, 0x8d, 0xbf, 0x6c, 0xdb, 0x30, 0x14, 0x3a, 0x8a, 0xa0, 0x8a, 0xbc, 0x0b,
|
||||
0x44, 0x48, 0xd8, 0x60, 0x90, 0x96, 0x0b, 0x87, 0x76, 0xa9, 0x50, 0x44, 0xb7, 0x5d, 0x66, 0x4b,
|
||||
0x57, 0xe2, 0x52, 0x4d, 0xec, 0x89, 0x33, 0x5a, 0x7b, 0xc6, 0xcc, 0x8c, 0x5b, 0xfa, 0x07, 0x10,
|
||||
0x27, 0xfe, 0x06, 0xbf, 0x80, 0x1b, 0x57, 0xfe, 0x17, 0xf2, 0xd8, 0x69, 0x9c, 0x26, 0x15, 0xbd,
|
||||
0xec, 0xa9, 0x9d, 0xf7, 0xbe, 0xf9, 0xfc, 0xe6, 0x7b, 0x6f, 0x26, 0xf0, 0x49, 0x26, 0xa3, 0xab,
|
||||
0x28, 0x95, 0x45, 0x4c, 0x13, 0x26, 0xcc, 0x95, 0x60, 0xe6, 0x46, 0xaa, 0xb7, 0x5c, 0x18, 0xa6,
|
||||
0xa6, 0x34, 0x62, 0x7e, 0xae, 0xa4, 0x91, 0xe8, 0xc3, 0x4c, 0x46, 0xfe, 0xa2, 0xcc, 0xaf, 0xcb,
|
||||
0x06, 0x87, 0x89, 0x94, 0x49, 0xca, 0x02, 0x5b, 0x35, 0x29, 0xa6, 0xc1, 0x8d, 0xa2, 0x79, 0xce,
|
||||
0x94, 0xae, 0xf6, 0x0d, 0x0e, 0x6c, 0x7b, 0x99, 0x65, 0x52, 0xd4, 0x7f, 0x6a, 0xe2, 0xb0, 0x41,
|
||||
0xd4, 0xcd, 0x9a, 0xbc, 0xf7, 0x97, 0x03, 0x07, 0x67, 0x15, 0x3e, 0x9e, 0x6b, 0x21, 0xec, 0xd7,
|
||||
0x82, 0x69, 0x83, 0x2e, 0xe1, 0xbd, 0xfb, 0x94, 0xc6, 0xce, 0xb0, 0x35, 0xea, 0x85, 0x23, 0x7f,
|
||||
0xbd, 0x50, 0x7f, 0xa5, 0xd7, 0x6a, 0x0b, 0xf4, 0x0d, 0xec, 0x9c, 0xe7, 0x4c, 0x51, 0xc3, 0xa5,
|
||||
0xb8, 0xb8, 0xcd, 0x19, 0xde, 0x1c, 0x3a, 0xa3, 0xdd, 0x70, 0xd7, 0xf6, 0xbc, 0x63, 0xc8, 0x72,
|
||||
0x91, 0xf7, 0x8f, 0x03, 0x78, 0x55, 0xa9, 0xce, 0xa5, 0xd0, 0xec, 0x9d, 0x49, 0x0d, 0xa1, 0x43,
|
||||
0x98, 0x2e, 0x52, 0x63, 0x35, 0xf6, 0xc2, 0x81, 0x5f, 0x19, 0xe1, 0xcf, 0x8d, 0xf0, 0x8f, 0xa5,
|
||||
0x4c, 0x2f, 0x69, 0x5a, 0x30, 0x52, 0x57, 0xa2, 0x7d, 0xd8, 0x3a, 0x51, 0x4a, 0x2a, 0xdc, 0x1a,
|
||||
0x3a, 0x23, 0x97, 0x54, 0x0b, 0xef, 0x19, 0xec, 0x8e, 0xc5, 0x44, 0x16, 0x22, 0x3e, 0xa3, 0x86,
|
||||
0x14, 0x29, 0x43, 0x08, 0xda, 0x82, 0x66, 0x0c, 0x3b, 0xb6, 0xcc, 0xfe, 0xef, 0xfd, 0xd9, 0x86,
|
||||
0xbd, 0x71, 0xfe, 0x42, 0x8a, 0x29, 0x4f, 0x8a, 0xea, 0xf0, 0xc8, 0x03, 0x97, 0xe7, 0x34, 0x8e,
|
||||
0x15, 0xd3, 0xba, 0x2a, 0x3e, 0x6e, 0xff, 0xf1, 0x37, 0x76, 0xc8, 0x02, 0x46, 0x1e, 0x3c, 0xc9,
|
||||
0x15, 0x9b, 0xf2, 0xdf, 0x52, 0x26, 0x12, 0x33, 0xb3, 0x6a, 0x5d, 0xb2, 0x84, 0xa1, 0x01, 0x74,
|
||||
0x75, 0x31, 0x11, 0xcc, 0xf0, 0xb8, 0x96, 0x76, 0xb7, 0x46, 0x18, 0xb6, 0x73, 0xc5, 0x33, 0xaa,
|
||||
0x6e, 0x71, 0x7b, 0xe8, 0x8c, 0xba, 0x64, 0xbe, 0x44, 0xdf, 0xc2, 0x41, 0x2a, 0x69, 0x3c, 0xa1,
|
||||
0x29, 0x15, 0x11, 0x53, 0xf5, 0x07, 0x73, 0x29, 0x53, 0xbc, 0x35, 0x6c, 0x8d, 0x5c, 0xf2, 0x10,
|
||||
0x8d, 0x9e, 0x03, 0xd0, 0x34, 0x95, 0x91, 0x3d, 0x05, 0xee, 0x58, 0x8f, 0x0f, 0xac, 0x19, 0xe3,
|
||||
0x57, 0x47, 0x77, 0xc4, 0x4b, 0x66, 0x66, 0x32, 0x26, 0x8d, 0x52, 0x74, 0x08, 0xdb, 0x09, 0x35,
|
||||
0xec, 0x86, 0xde, 0xe2, 0xed, 0xc6, 0x71, 0xe7, 0x20, 0x7a, 0x05, 0x7b, 0x7c, 0x69, 0x94, 0x1a,
|
||||
0x77, 0xad, 0xd5, 0x9f, 0x3e, 0x64, 0xf5, 0xf2, 0xe4, 0xc9, 0xfd, 0xed, 0xe8, 0x63, 0x68, 0x1b,
|
||||
0x9a, 0x68, 0xec, 0x5a, 0x93, 0x5d, 0xdb, 0xe6, 0x82, 0x26, 0x9a, 0x58, 0x18, 0x9d, 0x40, 0xaf,
|
||||
0xee, 0x64, 0xe3, 0x0a, 0xf6, 0x28, 0x4f, 0xff, 0x27, 0x57, 0x65, 0x29, 0x69, 0xee, 0x43, 0x21,
|
||||
0xec, 0xd7, 0x4b, 0xcd, 0xa2, 0x42, 0x71, 0x73, 0x9b, 0x28, 0x59, 0xe4, 0xb8, 0x67, 0xcd, 0x58,
|
||||
0xcb, 0x79, 0xff, 0xb6, 0xa1, 0x7f, 0x3f, 0x96, 0xeb, 0x92, 0x83, 0x76, 0x61, 0x93, 0xc7, 0xb5,
|
||||
0xef, 0x9b, 0x3c, 0x46, 0x3f, 0x41, 0xdb, 0x94, 0x62, 0x5b, 0x56, 0xec, 0x77, 0x8f, 0xbd, 0x04,
|
||||
0x2b, 0x80, 0x3d, 0x86, 0x6d, 0x85, 0x5e, 0x43, 0x9f, 0x2f, 0x67, 0x53, 0xe3, 0xb6, 0x1d, 0xfc,
|
||||
0x67, 0x0f, 0x0e, 0x7e, 0xb9, 0x9e, 0xac, 0x34, 0x40, 0xcf, 0x00, 0x32, 0x1a, 0xcd, 0xe3, 0xbd,
|
||||
0xd5, 0xf0, 0xbb, 0x81, 0xa3, 0x21, 0xb4, 0x62, 0xa1, 0x6d, 0x88, 0x7a, 0x61, 0xd7, 0x7e, 0xed,
|
||||
0x7b, 0xa1, 0xeb, 0xc2, 0x92, 0x2a, 0xd3, 0x2d, 0x64, 0xcc, 0xce, 0xca, 0xb9, 0x6c, 0x57, 0xe9,
|
||||
0x9e, 0xaf, 0xd1, 0x47, 0xe0, 0xda, 0x69, 0x5a, 0xb2, 0x6b, 0xc9, 0x05, 0x50, 0xde, 0x9d, 0x79,
|
||||
0xf4, 0x6c, 0x81, 0x5b, 0xdd, 0x9d, 0x26, 0x86, 0x9e, 0x42, 0x47, 0x1b, 0x6a, 0x0a, 0x6d, 0xcd,
|
||||
0xef, 0x85, 0x3d, 0x2b, 0xe1, 0xb5, 0x85, 0x48, 0x4d, 0x21, 0x1f, 0xd0, 0x35, 0x57, 0xa6, 0xa0,
|
||||
0xe9, 0x4b, 0x1a, 0xcd, 0xb8, 0xa8, 0xc4, 0x54, 0xee, 0xae, 0x61, 0x4a, 0x59, 0x5c, 0x5e, 0xbf,
|
||||
0x61, 0x3c, 0x99, 0x19, 0xfc, 0x64, 0xe8, 0x8c, 0x76, 0xc8, 0x02, 0xb8, 0xcb, 0xe4, 0xce, 0xda,
|
||||
0x4c, 0x7a, 0x5f, 0xc0, 0xfe, 0x3a, 0xab, 0x90, 0x0b, 0x5b, 0xa7, 0x32, 0xa2, 0x69, 0x7f, 0x03,
|
||||
0x41, 0xf9, 0x78, 0x65, 0xd2, 0xb0, 0xbe, 0xf3, 0xf9, 0x73, 0xe8, 0x35, 0x72, 0x89, 0xde, 0x87,
|
||||
0xbd, 0xcb, 0x31, 0xb9, 0xf8, 0xf9, 0xe8, 0xf4, 0xea, 0xec, 0xe4, 0xe2, 0xcd, 0x39, 0xf9, 0xb1,
|
||||
0xbf, 0x51, 0x82, 0xa7, 0xe7, 0x3f, 0x8c, 0x5f, 0x34, 0x40, 0x27, 0xfc, 0xdd, 0x81, 0x0f, 0xee,
|
||||
0x7f, 0xe8, 0xa8, 0xf4, 0x18, 0x65, 0xd0, 0x19, 0x8b, 0x6b, 0xf9, 0x96, 0xa1, 0xe0, 0xd1, 0x4f,
|
||||
0x6c, 0xf5, 0xcb, 0x32, 0xf8, 0xf2, 0xf1, 0x1b, 0xaa, 0x07, 0xde, 0xdb, 0x38, 0xfe, 0xea, 0x97,
|
||||
0x20, 0xe1, 0x66, 0x56, 0x4c, 0xfc, 0x48, 0x66, 0x41, 0xc6, 0x23, 0x25, 0xb5, 0x9c, 0x9a, 0x20,
|
||||
0x93, 0x51, 0xa0, 0xf2, 0x28, 0x58, 0x74, 0x0b, 0xea, 0x6e, 0x93, 0x8e, 0x7d, 0xa5, 0xbf, 0xfe,
|
||||
0x2f, 0x00, 0x00, 0xff, 0xff, 0x28, 0x53, 0xb0, 0x3a, 0x7d, 0x07, 0x00, 0x00,
|
||||
// 849 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xdd, 0x6e, 0xe3, 0x44,
|
||||
0x14, 0xae, 0x5b, 0x37, 0x8d, 0x8f, 0xfb, 0x13, 0x86, 0x85, 0x58, 0x11, 0x54, 0x91, 0x77, 0x81,
|
||||
0x08, 0x09, 0x1b, 0x02, 0xd2, 0x72, 0xc3, 0x45, 0xbb, 0x54, 0xab, 0x40, 0x37, 0x5d, 0xa6, 0xa5,
|
||||
0x2b, 0x21, 0xa4, 0x6a, 0x62, 0x4f, 0x9c, 0xd1, 0xda, 0x33, 0x66, 0x66, 0xdc, 0xd2, 0x17, 0x40,
|
||||
0xbc, 0x09, 0x4f, 0xc0, 0x1d, 0xe2, 0x8e, 0xf7, 0x42, 0x1e, 0x3b, 0x8d, 0xd3, 0xa4, 0xa2, 0x37,
|
||||
0x5c, 0x25, 0xf3, 0x9d, 0x6f, 0xbe, 0x39, 0x67, 0xce, 0x77, 0xc6, 0xf0, 0x51, 0x26, 0xa2, 0xab,
|
||||
0x28, 0x15, 0x45, 0x4c, 0x12, 0xca, 0xf5, 0x15, 0xa7, 0xfa, 0x46, 0xc8, 0xb7, 0x8c, 0x6b, 0x2a,
|
||||
0xa7, 0x24, 0xa2, 0x41, 0x2e, 0x85, 0x16, 0xe8, 0xfd, 0x4c, 0x44, 0xc1, 0x82, 0x16, 0xd4, 0xb4,
|
||||
0xde, 0x61, 0x22, 0x44, 0x92, 0xd2, 0xd0, 0xb0, 0x26, 0xc5, 0x34, 0xbc, 0x91, 0x24, 0xcf, 0xa9,
|
||||
0x54, 0xd5, 0xbe, 0x5e, 0xd7, 0xc8, 0x8b, 0x2c, 0x13, 0xbc, 0xfe, 0xa9, 0x03, 0x87, 0x8d, 0x40,
|
||||
0x2d, 0xd6, 0x8c, 0xfb, 0x7f, 0x58, 0xd0, 0x1d, 0x57, 0xf8, 0x68, 0x9e, 0x0b, 0xa6, 0xbf, 0x14,
|
||||
0x54, 0x69, 0x74, 0x09, 0xef, 0xdc, 0x0f, 0x29, 0xcf, 0xea, 0x6f, 0x0d, 0xdc, 0xe1, 0x20, 0x58,
|
||||
0x9f, 0x68, 0xb0, 0xa2, 0xb5, 0x2a, 0x81, 0xbe, 0x82, 0xbd, 0xb3, 0x9c, 0x4a, 0xa2, 0x99, 0xe0,
|
||||
0x17, 0xb7, 0x39, 0xf5, 0x36, 0xfb, 0xd6, 0x60, 0x7f, 0xb8, 0x6f, 0x34, 0xef, 0x22, 0x78, 0x99,
|
||||
0xe4, 0xff, 0x65, 0x81, 0xb7, 0x9a, 0xa9, 0xca, 0x05, 0x57, 0xf4, 0x7f, 0x4b, 0x75, 0x08, 0x2d,
|
||||
0x4c, 0x55, 0x91, 0x6a, 0x93, 0xa3, 0x3b, 0xec, 0x05, 0x55, 0x23, 0x82, 0x79, 0x23, 0x82, 0x63,
|
||||
0x21, 0xd2, 0x4b, 0x92, 0x16, 0x14, 0xd7, 0x4c, 0xf4, 0x04, 0xb6, 0x4f, 0xa4, 0x14, 0xd2, 0xdb,
|
||||
0xea, 0x5b, 0x03, 0x07, 0x57, 0x0b, 0xff, 0x19, 0xec, 0x8f, 0xf8, 0x44, 0x14, 0x3c, 0x1e, 0x13,
|
||||
0x8d, 0x8b, 0x94, 0x22, 0x04, 0x36, 0x27, 0x19, 0xf5, 0x2c, 0x43, 0x33, 0xff, 0xfd, 0xbf, 0x6d,
|
||||
0x38, 0x18, 0xe5, 0x2f, 0x04, 0x9f, 0xb2, 0xa4, 0xa8, 0x8a, 0x47, 0x3e, 0x38, 0x2c, 0x27, 0x71,
|
||||
0x2c, 0xa9, 0x52, 0x15, 0xf9, 0xd8, 0xfe, 0xfd, 0x4f, 0xcf, 0xc2, 0x0b, 0x18, 0xf9, 0xb0, 0x9b,
|
||||
0x4b, 0x3a, 0x65, 0xbf, 0xa6, 0x94, 0x27, 0x7a, 0x66, 0xb2, 0x75, 0xf0, 0x12, 0x86, 0x7a, 0xd0,
|
||||
0x56, 0xc5, 0x84, 0x53, 0xcd, 0xe2, 0x3a, 0xb5, 0xbb, 0x35, 0xf2, 0x60, 0x27, 0x97, 0x2c, 0x23,
|
||||
0xf2, 0xd6, 0xb3, 0xfb, 0xd6, 0xa0, 0x8d, 0xe7, 0x4b, 0xf4, 0x35, 0x74, 0x53, 0x41, 0xe2, 0x09,
|
||||
0x49, 0x09, 0x8f, 0xa8, 0xac, 0x0f, 0xcc, 0x85, 0x48, 0xbd, 0xed, 0xfe, 0xd6, 0xc0, 0xc1, 0x0f,
|
||||
0x85, 0xd1, 0x73, 0x00, 0x92, 0xa6, 0x22, 0x32, 0x55, 0x78, 0x2d, 0xd3, 0xe3, 0xae, 0x69, 0xc6,
|
||||
0xe8, 0xf5, 0xd1, 0x5d, 0xe0, 0x15, 0xd5, 0x33, 0x11, 0xe3, 0x06, 0x15, 0x1d, 0xc2, 0x4e, 0x42,
|
||||
0x34, 0xbd, 0x21, 0xb7, 0xde, 0x4e, 0xa3, 0xdc, 0x39, 0x88, 0x5e, 0xc3, 0x01, 0x5b, 0xba, 0x4a,
|
||||
0xe5, 0xb5, 0x4d, 0xab, 0x3f, 0x7e, 0xa8, 0xd5, 0xcb, 0x37, 0x8f, 0xef, 0x6f, 0x47, 0x1f, 0x82,
|
||||
0xad, 0x49, 0xa2, 0x3c, 0xc7, 0x34, 0xd9, 0x31, 0x32, 0x17, 0x24, 0x51, 0xd8, 0xc0, 0xe8, 0x04,
|
||||
0xdc, 0x5a, 0xc9, 0xd8, 0x15, 0x4c, 0x29, 0x4f, 0xff, 0xc3, 0x57, 0x25, 0x15, 0x37, 0xf7, 0xa1,
|
||||
0x9f, 0xa1, 0x5b, 0x2f, 0xcf, 0x69, 0x54, 0x48, 0xa6, 0x6f, 0x5f, 0x4a, 0x51, 0xe4, 0x98, 0x4e,
|
||||
0xbd, 0x5d, 0x73, 0xb0, 0x6f, 0x24, 0xc7, 0xeb, 0x39, 0x54, 0x52, 0x1e, 0x51, 0xfc, 0x90, 0xc4,
|
||||
0x77, 0x76, 0xdb, 0xed, 0xec, 0xfa, 0xff, 0xd8, 0xd0, 0xb9, 0x6f, 0xe3, 0x75, 0x4e, 0x43, 0xfb,
|
||||
0xb0, 0xc9, 0xe2, 0xda, 0x27, 0x9b, 0x2c, 0x46, 0x3f, 0x80, 0xad, 0xcb, 0xe2, 0xb6, 0x4c, 0x71,
|
||||
0xdf, 0x3c, 0x76, 0x68, 0x56, 0x00, 0x53, 0xb6, 0x91, 0x42, 0xe7, 0xd0, 0x61, 0xcb, 0x5e, 0x56,
|
||||
0x9e, 0x6d, 0x1a, 0xf5, 0xc9, 0x83, 0x8d, 0x5a, 0xe6, 0xe3, 0x15, 0x01, 0xf4, 0x0c, 0x20, 0x23,
|
||||
0xd1, 0x7c, 0x1c, 0xb6, 0x1b, 0xfe, 0x68, 0xe0, 0xa8, 0x0f, 0x5b, 0x31, 0x57, 0xc6, 0x74, 0xee,
|
||||
0xb0, 0x6d, 0x4e, 0xfb, 0x96, 0xab, 0x9a, 0x58, 0x86, 0xca, 0x69, 0xe0, 0x22, 0xa6, 0xe3, 0xf2,
|
||||
0x5e, 0x76, 0xaa, 0x69, 0x98, 0xaf, 0xd1, 0x07, 0xe0, 0x24, 0xe5, 0xb5, 0x9a, 0x60, 0xdb, 0x04,
|
||||
0x17, 0x40, 0x39, 0x6b, 0x73, 0xab, 0x1a, 0x82, 0x53, 0xcd, 0x5a, 0x13, 0x43, 0x4f, 0xa1, 0xa5,
|
||||
0x34, 0xd1, 0x85, 0x32, 0x66, 0x71, 0x87, 0xae, 0x49, 0xe1, 0xdc, 0x40, 0xb8, 0x0e, 0xa1, 0x00,
|
||||
0xd0, 0x35, 0x93, 0xba, 0x20, 0xe9, 0x2b, 0x12, 0xcd, 0x18, 0xaf, 0x92, 0x71, 0x8d, 0xdc, 0x9a,
|
||||
0x48, 0x99, 0x16, 0x13, 0xd7, 0x6f, 0x28, 0x4b, 0x66, 0xda, 0x38, 0x66, 0x0f, 0x2f, 0x80, 0x3b,
|
||||
0x0f, 0xef, 0xad, 0xf5, 0xb0, 0xff, 0x19, 0x3c, 0x59, 0xd7, 0x2a, 0xe4, 0xc0, 0xf6, 0xa9, 0x88,
|
||||
0x48, 0xda, 0xd9, 0x40, 0x50, 0x3e, 0x76, 0x99, 0xd0, 0xb4, 0x63, 0x7d, 0xfa, 0x1c, 0xdc, 0x86,
|
||||
0x8f, 0xd1, 0xbb, 0x70, 0x70, 0x39, 0xc2, 0x17, 0x3f, 0x1e, 0x9d, 0x5e, 0x8d, 0x4f, 0x2e, 0xde,
|
||||
0x9c, 0xe1, 0xef, 0x3b, 0x1b, 0x25, 0x78, 0x7a, 0xf6, 0x72, 0xf4, 0xa2, 0x01, 0x5a, 0xc3, 0xdf,
|
||||
0x2c, 0x78, 0xef, 0xfe, 0x41, 0x47, 0x65, 0x8f, 0x51, 0x06, 0xad, 0x11, 0xbf, 0x16, 0x6f, 0x29,
|
||||
0x0a, 0x1f, 0xfd, 0x24, 0x57, 0x5f, 0xa2, 0xde, 0xe7, 0x8f, 0xdf, 0x50, 0x7d, 0x10, 0xfc, 0x8d,
|
||||
0xe3, 0x2f, 0x7e, 0x0a, 0x13, 0xa6, 0x67, 0xc5, 0x24, 0x88, 0x44, 0x16, 0x66, 0x2c, 0x92, 0x42,
|
||||
0x89, 0xa9, 0x0e, 0x33, 0x11, 0x85, 0x32, 0x8f, 0xc2, 0x85, 0x5a, 0x58, 0xab, 0x4d, 0x5a, 0xe6,
|
||||
0x55, 0xff, 0xf2, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xe1, 0x3a, 0x08, 0xad, 0x07, 0x00,
|
||||
0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -309,7 +309,6 @@ type NetworkSecurityGroup 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"`
|
||||
Networksecuritygrouprules []*NetworkSecurityGroupRule `protobuf:"bytes,3,rep,name=networksecuritygrouprules,proto3" json:"networksecuritygrouprules,omitempty"`
|
||||
GroupName string `protobuf:"bytes,5,opt,name=groupName,proto3" json:"groupName,omitempty"`
|
||||
LocationName string `protobuf:"bytes,6,opt,name=locationName,proto3" json:"locationName,omitempty"`
|
||||
Status *common.Status `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
|
||||
Tags *common.Tags `protobuf:"bytes,8,opt,name=tags,proto3" json:"tags,omitempty"`
|
||||
|
@ -364,13 +363,6 @@ func (m *NetworkSecurityGroup) GetNetworksecuritygrouprules() []*NetworkSecurity
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroup) GetGroupName() string {
|
||||
if m != nil {
|
||||
return m.GroupName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroup) GetLocationName() string {
|
||||
if m != nil {
|
||||
return m.LocationName
|
||||
|
@ -406,51 +398,51 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_f7a6eb5efc25ffee = []byte{
|
||||
// 698 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0xcd, 0x4e, 0xdb, 0x4a,
|
||||
0x14, 0xc6, 0x49, 0x08, 0xf1, 0x31, 0xe1, 0xa2, 0xb9, 0xdc, 0x7b, 0x4d, 0x2e, 0xa0, 0x34, 0xad,
|
||||
0xaa, 0x80, 0x2a, 0x9b, 0x1a, 0xd4, 0x45, 0x37, 0x55, 0x10, 0x55, 0xc5, 0x06, 0xd0, 0x80, 0xba,
|
||||
0xe8, 0x06, 0x39, 0xf6, 0xc4, 0xb5, 0xb0, 0x3d, 0xee, 0xfc, 0x94, 0xf2, 0x1a, 0x5d, 0xf7, 0x21,
|
||||
0xba, 0xeb, 0x4b, 0xf4, 0xa1, 0x2a, 0x1f, 0x9b, 0xfc, 0x54, 0xce, 0x82, 0x4d, 0x57, 0xc9, 0x39,
|
||||
0xdf, 0xf7, 0x9d, 0x39, 0x3e, 0xdf, 0x99, 0x81, 0xfd, 0x94, 0x07, 0x37, 0x41, 0xc2, 0x75, 0xe8,
|
||||
0x47, 0x2c, 0x53, 0x37, 0x19, 0x53, 0x77, 0x5c, 0xdc, 0x4a, 0x16, 0x68, 0x11, 0xab, 0xfb, 0x48,
|
||||
0x70, 0x9d, 0x3b, 0xb9, 0xe0, 0x8a, 0x93, 0x7f, 0x53, 0x1e, 0x38, 0x33, 0xaa, 0x53, 0x51, 0x7b,
|
||||
0x7b, 0x11, 0xe7, 0x51, 0xc2, 0x5c, 0x64, 0x8d, 0xf5, 0xc4, 0xbd, 0x13, 0x7e, 0x9e, 0x33, 0x21,
|
||||
0x4b, 0x5d, 0xef, 0x3f, 0x3c, 0x82, 0xa7, 0x29, 0xcf, 0xaa, 0x9f, 0x0a, 0xd8, 0x9b, 0x03, 0xaa,
|
||||
0x62, 0xf3, 0xf8, 0xe0, 0x87, 0x01, 0xff, 0x9f, 0x97, 0xf9, 0xab, 0xaa, 0x9f, 0x77, 0x45, 0x3f,
|
||||
0x94, 0x7d, 0xd2, 0x4c, 0x2a, 0x32, 0x86, 0x7f, 0xea, 0x60, 0x69, 0x1b, 0xfd, 0xe6, 0xd0, 0xf2,
|
||||
0x5e, 0x38, 0xf5, 0x0d, 0x3b, 0xb5, 0x35, 0xeb, 0x4b, 0x91, 0x63, 0xe8, 0x5e, 0xe4, 0x4c, 0xf8,
|
||||
0x2a, 0xe6, 0xd9, 0xf5, 0x7d, 0xce, 0xec, 0x46, 0xdf, 0x18, 0x6e, 0x78, 0x1b, 0x58, 0x7b, 0x8a,
|
||||
0xd0, 0x45, 0xd2, 0xe0, 0xa7, 0x01, 0x3b, 0xf5, 0x9d, 0xcb, 0x9c, 0x67, 0x92, 0xfd, 0x91, 0xd6,
|
||||
0x3d, 0x68, 0x53, 0x26, 0x75, 0xa2, 0xb0, 0x67, 0xcb, 0xeb, 0x39, 0xa5, 0x51, 0xce, 0x83, 0x51,
|
||||
0xce, 0x09, 0xe7, 0xc9, 0x7b, 0x3f, 0xd1, 0x8c, 0x56, 0x4c, 0xb2, 0x05, 0xab, 0x6f, 0x85, 0xe0,
|
||||
0xc2, 0x6e, 0xf6, 0x8d, 0xa1, 0x49, 0xcb, 0x60, 0xf0, 0xad, 0x05, 0x76, 0xed, 0xc9, 0x3a, 0x61,
|
||||
0x84, 0x40, 0x2b, 0xf3, 0x53, 0x66, 0x1b, 0xa8, 0xc0, 0xff, 0xa4, 0x0f, 0x56, 0xc8, 0x64, 0x20,
|
||||
0xe2, 0xbc, 0x18, 0x09, 0x9e, 0x6f, 0xd2, 0xf9, 0x14, 0x79, 0x05, 0x6d, 0x3f, 0x40, 0xb0, 0x89,
|
||||
0x03, 0xdd, 0x5b, 0xf6, 0xc5, 0x23, 0x64, 0xd1, 0x8a, 0x4d, 0xde, 0x80, 0x19, 0xc6, 0x82, 0x95,
|
||||
0xd2, 0x16, 0x4a, 0x9f, 0x2c, 0x93, 0x9e, 0x3e, 0x10, 0xe9, 0x4c, 0x43, 0x0e, 0xe1, 0x6f, 0xc9,
|
||||
0xb5, 0x08, 0xd8, 0x28, 0x0c, 0x05, 0x93, 0xf2, 0x52, 0xb0, 0x49, 0xfc, 0xc5, 0x5e, 0xc5, 0x16,
|
||||
0xeb, 0x20, 0xf2, 0x1a, 0xec, 0x90, 0x49, 0x15, 0x67, 0xe8, 0xef, 0xa2, 0xac, 0x8d, 0xb2, 0xa5,
|
||||
0x38, 0x19, 0xc2, 0x5f, 0x65, 0xc9, 0x4b, 0x2e, 0x14, 0xf5, 0xb3, 0x88, 0xd9, 0x6b, 0x28, 0xf9,
|
||||
0x3d, 0x4d, 0x3c, 0xd8, 0x9a, 0xab, 0x32, 0xa3, 0x77, 0x90, 0x5e, 0x8b, 0x91, 0x7d, 0xe8, 0xa0,
|
||||
0x97, 0x01, 0x4f, 0x6c, 0x13, 0x67, 0xd1, 0xc5, 0x59, 0x5c, 0x56, 0x49, 0x3a, 0x85, 0x49, 0xaf,
|
||||
0xa0, 0xc6, 0xbc, 0xb0, 0xce, 0x86, 0xbe, 0x31, 0xec, 0xd2, 0x69, 0x4c, 0x6c, 0x58, 0x4b, 0x78,
|
||||
0x14, 0xc5, 0x59, 0x64, 0x5b, 0x7d, 0x63, 0xd8, 0xa1, 0x0f, 0x21, 0x79, 0x06, 0xdd, 0x58, 0x9e,
|
||||
0xb2, 0x89, 0xaf, 0x13, 0x55, 0x98, 0x6d, 0xaf, 0x23, 0xbe, 0x98, 0x1c, 0x7c, 0x6f, 0xc0, 0x56,
|
||||
0xdd, 0x7a, 0xd4, 0xae, 0xc6, 0x06, 0x34, 0xe2, 0xb0, 0xda, 0x88, 0x46, 0x1c, 0x92, 0x0c, 0xb6,
|
||||
0xeb, 0xde, 0x1c, 0xa1, 0x13, 0x26, 0xed, 0x26, 0xde, 0x86, 0xc3, 0x47, 0xdd, 0x06, 0x9d, 0x30,
|
||||
0xba, 0xbc, 0x24, 0xd9, 0x01, 0x13, 0xa3, 0xf3, 0xa2, 0xb1, 0xd2, 0xf5, 0x59, 0x82, 0x0c, 0x60,
|
||||
0x3d, 0xe1, 0x01, 0x8e, 0x19, 0x09, 0xa5, 0xbf, 0x0b, 0x39, 0xf2, 0x14, 0xda, 0x52, 0xf9, 0x4a,
|
||||
0x4b, 0xb4, 0xd2, 0xf2, 0x2c, 0x6c, 0xef, 0x0a, 0x53, 0xb4, 0x82, 0xc8, 0x2e, 0xb4, 0x94, 0x1f,
|
||||
0x49, 0xb4, 0xcf, 0xf2, 0x4c, 0xa4, 0x5c, 0xfb, 0x91, 0xa4, 0x98, 0x3e, 0xd8, 0x85, 0x76, 0xb9,
|
||||
0xd8, 0xc4, 0x84, 0xd5, 0x51, 0x92, 0xf0, 0xbb, 0xcd, 0x15, 0xd2, 0x81, 0xd6, 0x29, 0xcb, 0xee,
|
||||
0x37, 0x8d, 0x83, 0xe7, 0x60, 0x4e, 0x97, 0x97, 0x58, 0xb0, 0x76, 0x96, 0x8d, 0xb9, 0xce, 0xc2,
|
||||
0xcd, 0x15, 0xb2, 0x0e, 0x9d, 0x0b, 0xad, 0xca, 0xc8, 0xf0, 0xbe, 0x1a, 0xb0, 0x5d, 0x37, 0x84,
|
||||
0x51, 0x31, 0x26, 0xa2, 0xa1, 0x7d, 0x96, 0x7d, 0xe6, 0xb7, 0x8c, 0x1c, 0x3d, 0x6a, 0x82, 0xe5,
|
||||
0xf3, 0xda, 0x3b, 0x7e, 0x9c, 0xa8, 0x7c, 0xd9, 0x06, 0x2b, 0x27, 0x2f, 0x3f, 0xb8, 0x51, 0xac,
|
||||
0x3e, 0xea, 0xb1, 0x13, 0xf0, 0xd4, 0x4d, 0xe3, 0x40, 0x70, 0xc9, 0x27, 0xca, 0x4d, 0x79, 0xe0,
|
||||
0x8a, 0x3c, 0x70, 0x67, 0x15, 0xdd, 0xaa, 0xe2, 0xb8, 0x8d, 0x7b, 0x7a, 0xf4, 0x2b, 0x00, 0x00,
|
||||
0xff, 0xff, 0xab, 0xdf, 0x17, 0xa4, 0x8e, 0x06, 0x00, 0x00,
|
||||
// 695 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x4d, 0x6f, 0xd3, 0x4a,
|
||||
0x14, 0xad, 0xf3, 0xe1, 0x26, 0xd7, 0x4d, 0x5f, 0x34, 0xaf, 0xef, 0x3d, 0x37, 0x8f, 0x56, 0x21,
|
||||
0x20, 0x94, 0x56, 0xc8, 0x2e, 0x6e, 0xc5, 0x82, 0x0d, 0x4a, 0x55, 0x84, 0xca, 0xa2, 0xad, 0xa6,
|
||||
0x15, 0x0b, 0x36, 0x95, 0x63, 0x4f, 0x8c, 0x55, 0xdb, 0x63, 0xe6, 0x83, 0xd2, 0xbf, 0xc1, 0x8a,
|
||||
0x05, 0xff, 0x83, 0x3f, 0xc1, 0x8f, 0x42, 0xb9, 0x76, 0xf3, 0x81, 0x9c, 0x45, 0x37, 0xac, 0x92,
|
||||
0xb9, 0xe7, 0x9c, 0xeb, 0xe3, 0x7b, 0xae, 0x07, 0xf6, 0x52, 0x1e, 0x5c, 0x07, 0x09, 0xd7, 0xa1,
|
||||
0x1f, 0xb1, 0x4c, 0x5d, 0x67, 0x4c, 0xdd, 0x72, 0x71, 0x23, 0x59, 0xa0, 0x45, 0xac, 0xee, 0x22,
|
||||
0xc1, 0x75, 0xee, 0xe4, 0x82, 0x2b, 0x4e, 0xfe, 0x4d, 0x79, 0xe0, 0xcc, 0xa9, 0x4e, 0x49, 0xed,
|
||||
0xed, 0x46, 0x9c, 0x47, 0x09, 0x73, 0x91, 0x35, 0xd6, 0x13, 0xf7, 0x56, 0xf8, 0x79, 0xce, 0x84,
|
||||
0x2c, 0x74, 0xbd, 0xff, 0xf0, 0x11, 0x3c, 0x4d, 0x79, 0x56, 0xfe, 0x94, 0xc0, 0xee, 0x02, 0x50,
|
||||
0x36, 0x5b, 0xc4, 0x07, 0x3f, 0x0c, 0xf8, 0xff, 0xac, 0xa8, 0x5f, 0x96, 0x7e, 0xde, 0x4e, 0xfd,
|
||||
0x50, 0xf6, 0x49, 0x33, 0xa9, 0xc8, 0x18, 0xfe, 0xa9, 0x82, 0xa5, 0x6d, 0xf4, 0xeb, 0x43, 0xcb,
|
||||
0x7b, 0xee, 0x54, 0x1b, 0x76, 0x2a, 0x7b, 0x56, 0xb7, 0x22, 0x47, 0xd0, 0x39, 0xcf, 0x99, 0xf0,
|
||||
0x55, 0xcc, 0xb3, 0xab, 0xbb, 0x9c, 0xd9, 0xb5, 0xbe, 0x31, 0xdc, 0xf4, 0x36, 0xb1, 0xf7, 0x0c,
|
||||
0xa1, 0xcb, 0xa4, 0xc1, 0x4f, 0x03, 0x1e, 0x55, 0x3b, 0x97, 0x39, 0xcf, 0x24, 0xfb, 0x23, 0xd6,
|
||||
0x3d, 0x30, 0x29, 0x93, 0x3a, 0x51, 0xe8, 0xd9, 0xf2, 0x7a, 0x4e, 0x11, 0x94, 0x73, 0x1f, 0x94,
|
||||
0x73, 0xcc, 0x79, 0xf2, 0xde, 0x4f, 0x34, 0xa3, 0x25, 0x93, 0x6c, 0x41, 0xf3, 0x8d, 0x10, 0x5c,
|
||||
0xd8, 0xf5, 0xbe, 0x31, 0x6c, 0xd3, 0xe2, 0x30, 0xf8, 0xde, 0x00, 0xbb, 0xf2, 0xc9, 0x3a, 0x61,
|
||||
0x84, 0x40, 0x23, 0xf3, 0x53, 0x66, 0x1b, 0xa8, 0xc0, 0xff, 0xa4, 0x0f, 0x56, 0xc8, 0x64, 0x20,
|
||||
0xe2, 0x7c, 0x3a, 0x12, 0x7c, 0x7e, 0x9b, 0x2e, 0x96, 0xc8, 0x4b, 0x30, 0xfd, 0x00, 0xc1, 0x3a,
|
||||
0x0e, 0x74, 0x77, 0xd5, 0x1b, 0x8f, 0x90, 0x45, 0x4b, 0x36, 0x79, 0x0d, 0xed, 0x30, 0x16, 0xac,
|
||||
0x90, 0x36, 0x50, 0xfa, 0x78, 0x95, 0xf4, 0xe4, 0x9e, 0x48, 0xe7, 0x1a, 0x72, 0x00, 0x7f, 0x4b,
|
||||
0xae, 0x45, 0xc0, 0x46, 0x61, 0x28, 0x98, 0x94, 0x17, 0x82, 0x4d, 0xe2, 0x2f, 0x76, 0x13, 0x2d,
|
||||
0x56, 0x41, 0xe4, 0x15, 0xd8, 0x21, 0x93, 0x2a, 0xce, 0x30, 0xdf, 0x65, 0x99, 0x89, 0xb2, 0x95,
|
||||
0x38, 0x19, 0xc2, 0x5f, 0x45, 0xcb, 0x0b, 0x2e, 0x14, 0xf5, 0xb3, 0x88, 0xd9, 0xeb, 0x28, 0xf9,
|
||||
0xbd, 0x4c, 0x3c, 0xd8, 0x5a, 0xe8, 0x32, 0xa7, 0xb7, 0x90, 0x5e, 0x89, 0x91, 0x3d, 0x68, 0x61,
|
||||
0x96, 0x01, 0x4f, 0xec, 0x36, 0xce, 0xa2, 0x83, 0xb3, 0xb8, 0x28, 0x8b, 0x74, 0x06, 0x93, 0xde,
|
||||
0x94, 0x1a, 0xf3, 0x69, 0x74, 0x36, 0xf4, 0x8d, 0x61, 0x87, 0xce, 0xce, 0xc4, 0x86, 0xf5, 0x84,
|
||||
0x47, 0x51, 0x9c, 0x45, 0xb6, 0xd5, 0x37, 0x86, 0x2d, 0x7a, 0x7f, 0x24, 0x4f, 0xa1, 0x13, 0xcb,
|
||||
0x13, 0x36, 0xf1, 0x75, 0xa2, 0xa6, 0x61, 0xdb, 0x1b, 0x88, 0x2f, 0x17, 0x07, 0xdf, 0x6a, 0xb0,
|
||||
0x55, 0xb5, 0x1e, 0x95, 0xab, 0xb1, 0x09, 0xb5, 0x38, 0x2c, 0x37, 0xa2, 0x16, 0x87, 0x24, 0x83,
|
||||
0xed, 0xaa, 0x3b, 0x47, 0xe8, 0x84, 0x49, 0xbb, 0x8e, 0x5f, 0xc3, 0xc1, 0x83, 0xbe, 0x06, 0x9d,
|
||||
0x30, 0xba, 0xba, 0x25, 0x19, 0xc0, 0x46, 0xc2, 0x03, 0x1c, 0xe4, 0xd9, 0xd4, 0x5b, 0x91, 0xe0,
|
||||
0x52, 0x8d, 0x3c, 0x01, 0x53, 0x2a, 0x5f, 0x69, 0x89, 0x61, 0x59, 0x9e, 0x85, 0x06, 0x2e, 0xb1,
|
||||
0x44, 0x4b, 0x88, 0xec, 0x40, 0x43, 0xf9, 0x91, 0xc4, 0x80, 0x2c, 0xaf, 0x8d, 0x94, 0x2b, 0x3f,
|
||||
0x92, 0x14, 0xcb, 0xef, 0x1a, 0xad, 0x66, 0xd7, 0xdc, 0xdf, 0x01, 0xb3, 0x58, 0x60, 0xd2, 0x86,
|
||||
0xe6, 0x28, 0x49, 0xf8, 0x6d, 0x77, 0x8d, 0xb4, 0xa0, 0x71, 0xc2, 0xb2, 0xbb, 0xae, 0xb1, 0xff,
|
||||
0x0c, 0xda, 0xb3, 0x25, 0x25, 0x16, 0xac, 0x9f, 0x66, 0x63, 0xae, 0xb3, 0xb0, 0xbb, 0x46, 0x36,
|
||||
0xa0, 0x75, 0xae, 0x55, 0x71, 0x32, 0xbc, 0xaf, 0x06, 0x6c, 0x57, 0xbd, 0xec, 0x68, 0x3a, 0x0e,
|
||||
0xa2, 0xc1, 0x3c, 0xcd, 0x3e, 0xf3, 0x1b, 0x46, 0x0e, 0x1f, 0x34, 0xa9, 0xe2, 0x1a, 0xed, 0x1d,
|
||||
0x3d, 0x4c, 0x54, 0xdc, 0x60, 0x83, 0xb5, 0xe3, 0x17, 0x1f, 0xdc, 0x28, 0x56, 0x1f, 0xf5, 0xd8,
|
||||
0x09, 0x78, 0xea, 0xa6, 0x71, 0x20, 0xb8, 0xe4, 0x13, 0xe5, 0xa6, 0x3c, 0x70, 0x45, 0x1e, 0xb8,
|
||||
0xf3, 0x8e, 0x6e, 0xd9, 0x71, 0x6c, 0xe2, 0x3e, 0x1e, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xbc,
|
||||
0xe4, 0xe6, 0x68, 0x76, 0x06, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -294,17 +294,17 @@ func (m *VirtualNetwork) GetTags() *common.Tags {
|
|||
}
|
||||
|
||||
type Subnet 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"`
|
||||
Cidr string `protobuf:"bytes,3,opt,name=cidr,proto3" json:"cidr,omitempty"`
|
||||
Routes []*common.Route `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,5,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Vlan uint32 `protobuf:"varint,6,opt,name=vlan,proto3" json:"vlan,omitempty"`
|
||||
Ippools []*common.IPPool `protobuf:"bytes,7,rep,name=ippools,proto3" json:"ippools,omitempty"`
|
||||
NetworkSecurityGroup string `protobuf:"bytes,8,opt,name=networkSecurityGroup,proto3" json:"networkSecurityGroup,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"`
|
||||
Cidr string `protobuf:"bytes,3,opt,name=cidr,proto3" json:"cidr,omitempty"`
|
||||
Routes []*common.Route `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
||||
Allocation common.IPAllocationMethod `protobuf:"varint,5,opt,name=allocation,proto3,enum=moc.IPAllocationMethod" json:"allocation,omitempty"`
|
||||
Vlan uint32 `protobuf:"varint,6,opt,name=vlan,proto3" json:"vlan,omitempty"`
|
||||
Ippools []*common.IPPool `protobuf:"bytes,7,rep,name=ippools,proto3" json:"ippools,omitempty"`
|
||||
Networksecuritygroupref *common.NetworkSecurityGroupReference `protobuf:"bytes,9,opt,name=networksecuritygroupref,proto3" json:"networksecuritygroupref,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Subnet) Reset() { *m = Subnet{} }
|
||||
|
@ -381,11 +381,11 @@ func (m *Subnet) GetIppools() []*common.IPPool {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *Subnet) GetNetworkSecurityGroup() string {
|
||||
func (m *Subnet) GetNetworksecuritygroupref() *common.NetworkSecurityGroupReference {
|
||||
if m != nil {
|
||||
return m.NetworkSecurityGroup
|
||||
return m.Networksecuritygroupref
|
||||
}
|
||||
return ""
|
||||
return nil
|
||||
}
|
||||
|
||||
type Ipam struct {
|
||||
|
@ -449,54 +449,56 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_65af3e74534f0214 = []byte{
|
||||
// 744 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0x51, 0x8f, 0xdb, 0x44,
|
||||
0x10, 0xae, 0x13, 0x9f, 0x93, 0x8c, 0xaf, 0xa9, 0xb5, 0x94, 0xd6, 0x8a, 0xe0, 0x14, 0xb9, 0xa2,
|
||||
0x3a, 0x55, 0xc2, 0x16, 0x01, 0x09, 0x9e, 0x90, 0x2e, 0x80, 0x50, 0x10, 0xbd, 0x46, 0x9b, 0xa8,
|
||||
0x0f, 0xbc, 0x54, 0x1b, 0x7b, 0xcf, 0xb5, 0x6a, 0xef, 0xba, 0xbb, 0xeb, 0x54, 0xf7, 0xc6, 0x23,
|
||||
0x48, 0xfc, 0x07, 0xf8, 0x11, 0xf0, 0xff, 0xd0, 0x8e, 0x9d, 0xbb, 0xe4, 0x28, 0x52, 0x78, 0xe0,
|
||||
0x29, 0xde, 0xf9, 0xbe, 0x99, 0xf9, 0xe6, 0x9b, 0xcd, 0xc2, 0x93, 0x4a, 0xa6, 0xaf, 0xd2, 0x52,
|
||||
0x36, 0x19, 0xcb, 0xb9, 0x30, 0xaf, 0xb6, 0x85, 0x32, 0x0d, 0x2b, 0x05, 0x37, 0xef, 0xa4, 0x7a,
|
||||
0x13, 0xd7, 0x4a, 0x1a, 0x49, 0x1e, 0x55, 0x32, 0x8d, 0x6f, 0x49, 0x71, 0x87, 0x4e, 0xce, 0x72,
|
||||
0x29, 0xf3, 0x92, 0x27, 0xc8, 0xda, 0x34, 0x57, 0xc9, 0x3b, 0xc5, 0xea, 0x9a, 0x2b, 0xdd, 0xe6,
|
||||
0x4d, 0x1e, 0x63, 0x71, 0x59, 0x55, 0x52, 0x74, 0x3f, 0x1d, 0x70, 0xb6, 0x07, 0x74, 0xc5, 0xf6,
|
||||
0xf1, 0xe8, 0x77, 0x07, 0x3e, 0x7c, 0xd9, 0x2a, 0xb9, 0x6c, 0x61, 0xca, 0xdf, 0x36, 0x5c, 0x1b,
|
||||
0xb2, 0x84, 0x07, 0x87, 0x80, 0x0e, 0x9d, 0x69, 0xff, 0xdc, 0x9f, 0x3d, 0x8d, 0xdf, 0x2f, 0x32,
|
||||
0xbe, 0x53, 0xe7, 0x6e, 0x3a, 0xf9, 0x02, 0xee, 0xbf, 0xa8, 0xb9, 0x62, 0xa6, 0x90, 0x62, 0x7d,
|
||||
0x5d, 0xf3, 0xb0, 0x37, 0x75, 0xce, 0xc7, 0xb3, 0x31, 0xd6, 0xbb, 0x41, 0xe8, 0x21, 0x29, 0xfa,
|
||||
0xd3, 0x81, 0x47, 0x77, 0x15, 0xea, 0x5a, 0x0a, 0xcd, 0xff, 0x07, 0x89, 0x33, 0xf0, 0x28, 0xd7,
|
||||
0x4d, 0x69, 0x50, 0x9b, 0x3f, 0x9b, 0xc4, 0xad, 0xf1, 0xf1, 0xce, 0xf8, 0x78, 0x2e, 0x65, 0xf9,
|
||||
0x92, 0x95, 0x0d, 0xa7, 0x1d, 0x93, 0x3c, 0x84, 0x93, 0xef, 0x94, 0x92, 0x2a, 0xec, 0x4f, 0x9d,
|
||||
0xf3, 0x11, 0x6d, 0x0f, 0xd1, 0x1f, 0x7d, 0x18, 0x1f, 0x56, 0x27, 0x04, 0x5c, 0xc1, 0x2a, 0x1e,
|
||||
0x3a, 0xc8, 0xc3, 0x6f, 0x32, 0x86, 0x5e, 0x91, 0x61, 0xb3, 0x11, 0xed, 0x15, 0x19, 0xf9, 0x0a,
|
||||
0x06, 0xba, 0xd9, 0x08, 0x6e, 0x74, 0xd8, 0xc7, 0x51, 0xce, 0xfe, 0x6d, 0x94, 0x15, 0xd2, 0xe8,
|
||||
0x8e, 0x4e, 0xa6, 0xd0, 0xcf, 0x84, 0x0e, 0x5d, 0xd4, 0x3d, 0xc4, 0xac, 0x6f, 0x85, 0x9e, 0xbb,
|
||||
0xbf, 0xfc, 0x15, 0x3a, 0xd4, 0x42, 0xe4, 0x6b, 0x70, 0x8d, 0xb5, 0xfd, 0x04, 0x6d, 0x7f, 0x76,
|
||||
0x9c, 0x47, 0x76, 0x07, 0x14, 0xf3, 0xc8, 0x04, 0x86, 0x42, 0x66, 0xfc, 0xea, 0x6d, 0x26, 0x42,
|
||||
0x0f, 0x15, 0xdf, 0x9c, 0xc9, 0x47, 0x30, 0xca, 0x95, 0x6c, 0xea, 0x4b, 0x3b, 0xe0, 0x00, 0xc1,
|
||||
0xdb, 0x00, 0x79, 0x02, 0x9e, 0x36, 0xcc, 0x34, 0x3a, 0x1c, 0xa2, 0x3c, 0x1f, 0x7b, 0xaf, 0x30,
|
||||
0x44, 0x3b, 0x88, 0x44, 0x70, 0x5a, 0xca, 0x14, 0x17, 0x8f, 0x55, 0x46, 0x58, 0xe5, 0x20, 0x46,
|
||||
0x9e, 0x82, 0x5f, 0xb1, 0x74, 0x29, 0x65, 0x89, 0x14, 0xb0, 0x94, 0x6e, 0xc4, 0x7d, 0x80, 0x7c,
|
||||
0x0c, 0xae, 0x61, 0xb9, 0x0e, 0x4f, 0xb1, 0xdd, 0x08, 0xdb, 0xad, 0x59, 0xae, 0x29, 0x86, 0x7f,
|
||||
0x70, 0x87, 0x7e, 0x70, 0x1a, 0xfd, 0xd6, 0x03, 0xaf, 0x75, 0xf1, 0xa8, 0xd5, 0x10, 0x70, 0xd3,
|
||||
0x22, 0xdb, 0xad, 0x19, 0xbf, 0x49, 0x04, 0x9e, 0x92, 0x8d, 0xe1, 0xd6, 0x77, 0xbb, 0x2d, 0xc0,
|
||||
0x4e, 0xd4, 0x86, 0x68, 0x87, 0x90, 0x2f, 0x01, 0x58, 0xb9, 0x9b, 0xa2, 0x33, 0xff, 0x31, 0xf2,
|
||||
0x16, 0xcb, 0x8b, 0x1b, 0xe0, 0x39, 0x37, 0xaf, 0x65, 0x46, 0xf7, 0xa8, 0xb6, 0xe1, 0xb6, 0x64,
|
||||
0xad, 0xd7, 0xf7, 0x29, 0x7e, 0x93, 0x4f, 0x60, 0x50, 0xd4, 0xb5, 0x94, 0xa5, 0x0e, 0x07, 0xd8,
|
||||
0xd1, 0xef, 0x2a, 0xd9, 0xd1, 0xe9, 0x0e, 0x23, 0x33, 0x78, 0xd8, 0xad, 0x73, 0xc5, 0xd3, 0x46,
|
||||
0x15, 0xe6, 0xfa, 0x7b, 0xbb, 0x0c, 0xb4, 0x7f, 0x44, 0xdf, 0x8b, 0x45, 0x6b, 0x70, 0x17, 0x35,
|
||||
0xab, 0x6c, 0x5b, 0xbc, 0x26, 0x9d, 0x17, 0xb8, 0xfa, 0xbd, 0x6b, 0xd9, 0xfb, 0x4f, 0xd7, 0xf2,
|
||||
0xd9, 0xaf, 0x0e, 0x90, 0x7f, 0xde, 0x28, 0x32, 0x80, 0xfe, 0xe5, 0xc5, 0x3a, 0xb8, 0x47, 0x1e,
|
||||
0x80, 0xbf, 0x56, 0x4c, 0xe8, 0x9a, 0x29, 0x2e, 0x4c, 0xe0, 0x90, 0x53, 0x18, 0xfe, 0x38, 0x9b,
|
||||
0xab, 0x22, 0xcb, 0x79, 0xd0, 0x6b, 0x4f, 0xeb, 0x46, 0x08, 0x5e, 0x06, 0x7d, 0x9b, 0xb5, 0xf8,
|
||||
0x66, 0x15, 0xb8, 0xc4, 0x87, 0xc1, 0x52, 0x15, 0x5b, 0x66, 0x78, 0x70, 0x62, 0x0f, 0x2f, 0xb6,
|
||||
0x5c, 0x95, 0xec, 0x3a, 0xf0, 0x6c, 0xc2, 0x42, 0x18, 0xae, 0x04, 0x2b, 0x83, 0x81, 0x3d, 0x3d,
|
||||
0x2f, 0xec, 0xff, 0x91, 0x67, 0xc1, 0x70, 0xf6, 0xb3, 0x03, 0x1f, 0x1c, 0x6a, 0xb9, 0xb0, 0xda,
|
||||
0x49, 0x01, 0xde, 0x42, 0x6c, 0xe5, 0x1b, 0x4e, 0x3e, 0x3d, 0xf2, 0xe1, 0x68, 0xdf, 0xc8, 0x49,
|
||||
0x7c, 0x2c, 0xbd, 0x7d, 0xb0, 0xa2, 0x7b, 0xf3, 0xcf, 0x7e, 0x4a, 0xf2, 0xc2, 0xbc, 0x6e, 0x36,
|
||||
0x71, 0x2a, 0xab, 0xa4, 0x2a, 0x52, 0x25, 0xb5, 0xbc, 0x32, 0x49, 0x25, 0xd3, 0x44, 0xd5, 0x69,
|
||||
0x72, 0x5b, 0x2b, 0xe9, 0x6a, 0x6d, 0x3c, 0x7c, 0x7b, 0x3e, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff,
|
||||
0x6d, 0x48, 0x08, 0xeb, 0x41, 0x06, 0x00, 0x00,
|
||||
// 769 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xd1, 0x8e, 0xdb, 0x44,
|
||||
0x14, 0xad, 0x13, 0xaf, 0xe3, 0x5c, 0x6f, 0xb7, 0xd6, 0x00, 0x5d, 0x2b, 0x82, 0xd5, 0xca, 0x15,
|
||||
0xd5, 0xaa, 0x12, 0xb6, 0x08, 0x48, 0xf0, 0x84, 0xb4, 0x0b, 0x08, 0xa5, 0xa2, 0xdb, 0xd5, 0x24,
|
||||
0xea, 0x03, 0x42, 0xaa, 0x26, 0xf6, 0xc4, 0xb5, 0x6a, 0xcf, 0xb8, 0x33, 0xe3, 0x54, 0xfb, 0xc6,
|
||||
0x23, 0x7c, 0x05, 0x7c, 0x04, 0xbc, 0xf1, 0x71, 0x68, 0xae, 0x9d, 0xdd, 0x64, 0xa1, 0x52, 0x78,
|
||||
0xe8, 0x53, 0x3c, 0x73, 0xce, 0x3d, 0xf7, 0xcc, 0xb9, 0x93, 0x81, 0x47, 0xb5, 0xcc, 0x5e, 0x66,
|
||||
0x95, 0x6c, 0x73, 0x56, 0x70, 0x61, 0x5e, 0xae, 0x4b, 0x65, 0x5a, 0x56, 0x09, 0x6e, 0xde, 0x4a,
|
||||
0xf5, 0x3a, 0x69, 0x94, 0x34, 0x92, 0x3c, 0xac, 0x65, 0x96, 0xdc, 0x92, 0x92, 0x1e, 0x9d, 0x9c,
|
||||
0x14, 0x52, 0x16, 0x15, 0x4f, 0x91, 0xb5, 0x6c, 0x57, 0xe9, 0x5b, 0xc5, 0x9a, 0x86, 0x2b, 0xdd,
|
||||
0xd5, 0x4d, 0x8e, 0x51, 0x5c, 0xd6, 0xb5, 0x14, 0xfd, 0x4f, 0x0f, 0x9c, 0x6c, 0x01, 0xbd, 0xd8,
|
||||
0x36, 0x1e, 0xff, 0xee, 0xc0, 0x47, 0x2f, 0x3a, 0x27, 0x97, 0x1d, 0x4c, 0xf9, 0x9b, 0x96, 0x6b,
|
||||
0x43, 0xae, 0xe0, 0xc1, 0x2e, 0xa0, 0x23, 0xe7, 0x74, 0x78, 0x16, 0x4c, 0x1f, 0x27, 0xff, 0x6d,
|
||||
0x32, 0xb9, 0xa3, 0x73, 0xb7, 0x9c, 0x7c, 0x09, 0xf7, 0x9f, 0x37, 0x5c, 0x31, 0x53, 0x4a, 0xb1,
|
||||
0xb8, 0x6e, 0x78, 0x34, 0x38, 0x75, 0xce, 0x8e, 0xa6, 0x47, 0xa8, 0x77, 0x83, 0xd0, 0x5d, 0x52,
|
||||
0xfc, 0xa7, 0x03, 0x0f, 0xef, 0x3a, 0xd4, 0x8d, 0x14, 0x9a, 0xbf, 0x07, 0x8b, 0x53, 0xf0, 0x28,
|
||||
0xd7, 0x6d, 0x65, 0xd0, 0x5b, 0x30, 0x9d, 0x24, 0x5d, 0xf0, 0xc9, 0x26, 0xf8, 0xe4, 0x42, 0xca,
|
||||
0xea, 0x05, 0xab, 0x5a, 0x4e, 0x7b, 0x26, 0xf9, 0x10, 0x0e, 0xbe, 0x57, 0x4a, 0xaa, 0x68, 0x78,
|
||||
0xea, 0x9c, 0x8d, 0x69, 0xb7, 0x88, 0xff, 0x18, 0xc2, 0xd1, 0xae, 0x3a, 0x21, 0xe0, 0x0a, 0x56,
|
||||
0xf3, 0xc8, 0x41, 0x1e, 0x7e, 0x93, 0x23, 0x18, 0x94, 0x39, 0x36, 0x1b, 0xd3, 0x41, 0x99, 0x93,
|
||||
0xaf, 0x61, 0xa4, 0xdb, 0xa5, 0xe0, 0x46, 0x47, 0x43, 0x3c, 0xca, 0xc9, 0xbb, 0x8e, 0x32, 0x47,
|
||||
0x1a, 0xdd, 0xd0, 0xc9, 0x29, 0x0c, 0x73, 0xa1, 0x23, 0x17, 0x7d, 0xfb, 0x58, 0xf5, 0x9d, 0xd0,
|
||||
0x17, 0xee, 0xaf, 0x7f, 0x45, 0x0e, 0xb5, 0x10, 0xf9, 0x06, 0x5c, 0x63, 0x63, 0x3f, 0xc0, 0xd8,
|
||||
0x9f, 0xec, 0x97, 0x91, 0x9d, 0x01, 0xc5, 0x3a, 0x32, 0x01, 0x5f, 0xc8, 0x9c, 0xaf, 0xde, 0xe4,
|
||||
0x22, 0xf2, 0xd0, 0xf1, 0xcd, 0x9a, 0x7c, 0x0c, 0xe3, 0x42, 0xc9, 0xb6, 0xb9, 0xb4, 0x07, 0x1c,
|
||||
0x21, 0x78, 0xbb, 0x41, 0x1e, 0x81, 0xa7, 0x0d, 0x33, 0xad, 0x8e, 0x7c, 0xb4, 0x17, 0x60, 0xef,
|
||||
0x39, 0x6e, 0xd1, 0x1e, 0x22, 0x31, 0x1c, 0x56, 0x32, 0xc3, 0xc1, 0xa3, 0xca, 0x18, 0x55, 0x76,
|
||||
0xf6, 0xc8, 0x63, 0x08, 0x6a, 0x96, 0x5d, 0x49, 0x59, 0x21, 0x05, 0x2c, 0xa5, 0x3f, 0xe2, 0x36,
|
||||
0x40, 0x3e, 0x01, 0xd7, 0xb0, 0x42, 0x47, 0x87, 0xd8, 0x6e, 0x8c, 0xed, 0x16, 0xac, 0xd0, 0x14,
|
||||
0xb7, 0x9f, 0xba, 0x7e, 0x10, 0x1e, 0xc6, 0x7f, 0x0f, 0xc0, 0xeb, 0x52, 0xdc, 0x6b, 0x34, 0x04,
|
||||
0xdc, 0xac, 0xcc, 0x37, 0x63, 0xc6, 0x6f, 0x12, 0x83, 0xa7, 0x64, 0x6b, 0xb8, 0xcd, 0xdd, 0x4e,
|
||||
0x0b, 0xb0, 0x13, 0xb5, 0x5b, 0xb4, 0x47, 0xc8, 0x57, 0x00, 0xac, 0xda, 0x9c, 0xa2, 0x0f, 0xff,
|
||||
0x18, 0x79, 0xb3, 0xab, 0xf3, 0x1b, 0xe0, 0x19, 0x37, 0xaf, 0x64, 0x4e, 0xb7, 0xa8, 0xb6, 0xe1,
|
||||
0xba, 0x62, 0x5d, 0xd6, 0xf7, 0x29, 0x7e, 0x93, 0x4f, 0x61, 0x54, 0x36, 0x8d, 0x94, 0x95, 0x8e,
|
||||
0x46, 0xd8, 0x31, 0xe8, 0x95, 0xec, 0xd1, 0xe9, 0x06, 0x23, 0x3f, 0xc3, 0x71, 0x3f, 0x4e, 0xcd,
|
||||
0xb3, 0x56, 0x95, 0xe6, 0x1a, 0x87, 0xa1, 0xf8, 0x0a, 0x63, 0x0d, 0xa6, 0x31, 0x96, 0xf5, 0x33,
|
||||
0x9e, 0xf7, 0x9c, 0x1f, 0x2c, 0x87, 0xf2, 0x15, 0x57, 0x5c, 0x64, 0x9c, 0xbe, 0x4b, 0xe2, 0xa9,
|
||||
0xeb, 0xfb, 0xe1, 0x38, 0x5e, 0x80, 0x3b, 0x6b, 0x58, 0x6d, 0x6d, 0xe2, 0xb5, 0xea, 0xb3, 0xc3,
|
||||
0xab, 0xb2, 0x75, 0x8d, 0x07, 0xff, 0xeb, 0x1a, 0x3f, 0xf9, 0xcd, 0x01, 0xf2, 0xef, 0x1b, 0x48,
|
||||
0x46, 0x30, 0xbc, 0x3c, 0x5f, 0x84, 0xf7, 0xc8, 0x03, 0x08, 0x16, 0x8a, 0x09, 0xdd, 0x30, 0xc5,
|
||||
0x85, 0x09, 0x1d, 0x72, 0x08, 0xfe, 0x8f, 0xd3, 0x0b, 0x55, 0xe6, 0x05, 0x0f, 0x07, 0xdd, 0x6a,
|
||||
0xd1, 0x0a, 0xc1, 0xab, 0x70, 0x68, 0xab, 0x66, 0xdf, 0xce, 0x43, 0x97, 0x04, 0x30, 0xba, 0x52,
|
||||
0xe5, 0x9a, 0x19, 0x1e, 0x1e, 0xd8, 0xc5, 0xf3, 0x35, 0x57, 0x15, 0xbb, 0x0e, 0x3d, 0x5b, 0x30,
|
||||
0x13, 0x86, 0x2b, 0xc1, 0xaa, 0x70, 0x64, 0x57, 0xcf, 0x4a, 0xfb, 0xff, 0xe5, 0x79, 0xe8, 0x4f,
|
||||
0x7f, 0x71, 0xe0, 0x83, 0x5d, 0x2f, 0xe7, 0xd6, 0x3b, 0x29, 0xc1, 0x9b, 0x89, 0xb5, 0x7c, 0xcd,
|
||||
0xc9, 0x67, 0x7b, 0x3e, 0x34, 0xdd, 0x9b, 0x3a, 0x49, 0xf6, 0xa5, 0x77, 0x0f, 0x5c, 0x7c, 0xef,
|
||||
0xe2, 0xf3, 0x9f, 0xd2, 0xa2, 0x34, 0xaf, 0xda, 0x65, 0x92, 0xc9, 0x3a, 0xad, 0xcb, 0x4c, 0x49,
|
||||
0x2d, 0x57, 0x26, 0xad, 0x65, 0x96, 0xaa, 0x26, 0x4b, 0x6f, 0xb5, 0xd2, 0x5e, 0x6b, 0xe9, 0xe1,
|
||||
0x5b, 0xf5, 0xc5, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x04, 0xe9, 0x22, 0x48, 0x71, 0x06, 0x00,
|
||||
0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -30,6 +30,7 @@ enum NetworkType {
|
|||
}
|
||||
|
||||
message IpConfiguration {
|
||||
reserved 11; // deprecated string version of networkSecurityGroup
|
||||
string ipaddress = 1 [(sensitive) = true];
|
||||
string prefixlength = 2;
|
||||
string subnetid = 3;
|
||||
|
@ -40,7 +41,7 @@ message IpConfiguration {
|
|||
repeated InboundNatRule inboundNatRules = 8;
|
||||
Tags tags = 9;
|
||||
NetworkType networkType = 10;
|
||||
string networksecuritygroup = 11;
|
||||
NetworkSecurityGroupReference networkSecurityGroupRef = 12;
|
||||
}
|
||||
|
||||
message NetworkInterface {
|
||||
|
|
|
@ -46,10 +46,10 @@ message NetworkSecurityGroupRule {
|
|||
}
|
||||
|
||||
message NetworkSecurityGroup {
|
||||
reserved 5; // deprecated group name (now parented to location)
|
||||
string name = 1;
|
||||
string id = 2;
|
||||
repeated NetworkSecurityGroupRule networksecuritygrouprules = 3;
|
||||
string groupName = 5;
|
||||
string locationName = 6;
|
||||
Status status = 7;
|
||||
Tags tags = 8;
|
||||
|
|
|
@ -48,6 +48,7 @@ message VirtualNetwork {
|
|||
}
|
||||
|
||||
message Subnet {
|
||||
reserved 8; // deprecated string version of networkSecurityGroup
|
||||
string name = 1;
|
||||
string id = 2;
|
||||
string cidr = 3;
|
||||
|
@ -55,7 +56,7 @@ message Subnet {
|
|||
IPAllocationMethod allocation = 5;
|
||||
uint32 vlan = 6;
|
||||
repeated IPPool ippools = 7;
|
||||
string networkSecurityGroup = 8;
|
||||
NetworkSecurityGroupReference networksecuritygroupref = 9;
|
||||
}
|
||||
|
||||
message Ipam {
|
||||
|
|
|
@ -351,6 +351,85 @@ func (m *Route) GetMetric() uint32 {
|
|||
return 0
|
||||
}
|
||||
|
||||
// Resource reference is intended to be used as a general component of specific, named resource references
|
||||
type ResourceReference 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 *ResourceReference) Reset() { *m = ResourceReference{} }
|
||||
func (m *ResourceReference) String() string { return proto.CompactTextString(m) }
|
||||
func (*ResourceReference) ProtoMessage() {}
|
||||
func (*ResourceReference) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ba09ae1dfdbe03d2, []int{4}
|
||||
}
|
||||
|
||||
func (m *ResourceReference) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ResourceReference.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ResourceReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ResourceReference.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ResourceReference) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ResourceReference.Merge(m, src)
|
||||
}
|
||||
func (m *ResourceReference) XXX_Size() int {
|
||||
return xxx_messageInfo_ResourceReference.Size(m)
|
||||
}
|
||||
func (m *ResourceReference) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ResourceReference.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ResourceReference proto.InternalMessageInfo
|
||||
|
||||
func (m *ResourceReference) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type NetworkSecurityGroupReference struct {
|
||||
ResourceRef *ResourceReference `protobuf:"bytes,1,opt,name=resourceRef,proto3" json:"resourceRef,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupReference) Reset() { *m = NetworkSecurityGroupReference{} }
|
||||
func (m *NetworkSecurityGroupReference) String() string { return proto.CompactTextString(m) }
|
||||
func (*NetworkSecurityGroupReference) ProtoMessage() {}
|
||||
func (*NetworkSecurityGroupReference) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ba09ae1dfdbe03d2, []int{5}
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupReference) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_NetworkSecurityGroupReference.Unmarshal(m, b)
|
||||
}
|
||||
func (m *NetworkSecurityGroupReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_NetworkSecurityGroupReference.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *NetworkSecurityGroupReference) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_NetworkSecurityGroupReference.Merge(m, src)
|
||||
}
|
||||
func (m *NetworkSecurityGroupReference) XXX_Size() int {
|
||||
return xxx_messageInfo_NetworkSecurityGroupReference.Size(m)
|
||||
}
|
||||
func (m *NetworkSecurityGroupReference) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_NetworkSecurityGroupReference.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_NetworkSecurityGroupReference proto.InternalMessageInfo
|
||||
|
||||
func (m *NetworkSecurityGroupReference) GetResourceRef() *ResourceReference {
|
||||
if m != nil {
|
||||
return m.ResourceRef
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterEnum("moc.Protocol", Protocol_name, Protocol_value)
|
||||
proto.RegisterEnum("moc.IPAllocationMethod", IPAllocationMethod_name, IPAllocationMethod_value)
|
||||
|
@ -359,39 +438,45 @@ func init() {
|
|||
proto.RegisterType((*IPPoolInfo)(nil), "moc.IPPoolInfo")
|
||||
proto.RegisterType((*IPPool)(nil), "moc.IPPool")
|
||||
proto.RegisterType((*Route)(nil), "moc.Route")
|
||||
proto.RegisterType((*ResourceReference)(nil), "moc.ResourceReference")
|
||||
proto.RegisterType((*NetworkSecurityGroupReference)(nil), "moc.NetworkSecurityGroupReference")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("moc_common_networkcommon.proto", fileDescriptor_ba09ae1dfdbe03d2) }
|
||||
|
||||
var fileDescriptor_ba09ae1dfdbe03d2 = []byte{
|
||||
// 460 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x52, 0xd1, 0x8a, 0x13, 0x31,
|
||||
0x14, 0xdd, 0xe9, 0x4c, 0xa7, 0xf6, 0x2e, 0x6a, 0x0c, 0xa2, 0x41, 0x54, 0x6a, 0x17, 0xa1, 0x14,
|
||||
0x69, 0x41, 0xc5, 0x07, 0x41, 0x61, 0x65, 0x1f, 0xec, 0xc3, 0xc2, 0x30, 0xd6, 0x7d, 0xf0, 0x65,
|
||||
0x49, 0x33, 0x69, 0x1b, 0x9c, 0xe4, 0x0e, 0x49, 0x5a, 0xb7, 0x1f, 0xe5, 0x3f, 0x4a, 0x32, 0x53,
|
||||
0x5d, 0xd9, 0xb7, 0x73, 0xee, 0x3d, 0xe7, 0xe4, 0xe6, 0x26, 0xf0, 0x52, 0xa3, 0xb8, 0x16, 0xa8,
|
||||
0x35, 0x9a, 0x6b, 0x23, 0xfd, 0x2f, 0xb4, 0x3f, 0x5b, 0x36, 0x6b, 0x2c, 0x7a, 0xa4, 0xa9, 0x46,
|
||||
0xf1, 0xec, 0xe9, 0x2d, 0xd1, 0xed, 0xee, 0x58, 0x41, 0x7a, 0x61, 0x1c, 0x65, 0x30, 0x70, 0xd2,
|
||||
0xee, 0xa5, 0x75, 0x2c, 0x19, 0xa5, 0x93, 0x61, 0x79, 0xa4, 0xf4, 0x09, 0xe4, 0x15, 0x6a, 0xae,
|
||||
0x0c, 0xeb, 0x8d, 0x92, 0xc9, 0xb0, 0xec, 0x58, 0xa8, 0x3b, 0xc9, 0xad, 0xd8, 0xb2, 0x34, 0x1a,
|
||||
0x3a, 0x16, 0x92, 0xb0, 0xf1, 0x0a, 0x8d, 0x63, 0x59, 0x9b, 0xd4, 0xd1, 0xf1, 0x67, 0x80, 0x45,
|
||||
0x51, 0x20, 0xd6, 0x0b, 0xb3, 0x46, 0x4a, 0x21, 0xdb, 0x39, 0x59, 0xb1, 0x24, 0xa6, 0x46, 0x4c,
|
||||
0x9f, 0xc3, 0x90, 0xef, 0xb9, 0xaa, 0xf9, 0xaa, 0x96, 0xdd, 0x71, 0xff, 0x0a, 0xe3, 0xdf, 0x09,
|
||||
0xe4, 0x6d, 0x40, 0x30, 0x1b, 0xae, 0xe5, 0xd1, 0x1c, 0x30, 0x3d, 0x83, 0xcc, 0x1f, 0x9a, 0xd6,
|
||||
0xf7, 0xe0, 0xed, 0xc3, 0x99, 0x46, 0x31, 0x6b, 0xe5, 0xcb, 0x43, 0x23, 0xcb, 0xd8, 0xa4, 0x8f,
|
||||
0xa1, 0xef, 0x3c, 0xb7, 0x9e, 0xa5, 0xd1, 0xd9, 0x12, 0x4a, 0x20, 0x95, 0xa6, 0x62, 0x59, 0xac,
|
||||
0x05, 0x18, 0xc2, 0x94, 0x59, 0x23, 0xeb, 0x8f, 0x92, 0xc9, 0xe9, 0x7f, 0x61, 0x61, 0xf8, 0x32,
|
||||
0x36, 0xe9, 0x0b, 0xc8, 0x3c, 0xdf, 0x38, 0x96, 0x47, 0xd1, 0x30, 0x8a, 0x96, 0x7c, 0xe3, 0xca,
|
||||
0x58, 0x1e, 0x6f, 0xa0, 0x5f, 0xe2, 0xce, 0xcb, 0xb0, 0x12, 0x23, 0x6f, 0xfc, 0x57, 0x6c, 0xba,
|
||||
0x81, 0x8f, 0x94, 0xbe, 0x81, 0x47, 0x95, 0x74, 0x5e, 0x19, 0x1e, 0x56, 0x54, 0x58, 0xb9, 0x56,
|
||||
0x37, 0xdd, 0xc5, 0xef, 0x36, 0xc2, 0xca, 0xb5, 0xf4, 0x56, 0x89, 0x38, 0xfd, 0xfd, 0xb2, 0x63,
|
||||
0xd3, 0x4f, 0x70, 0xaf, 0x08, 0x8f, 0x29, 0xb0, 0xa6, 0x03, 0x48, 0xcf, 0xeb, 0x9a, 0x9c, 0x04,
|
||||
0xb0, 0x14, 0x0d, 0x49, 0x02, 0xf8, 0x5e, 0x35, 0xa4, 0x47, 0x01, 0xf2, 0x85, 0xd0, 0xcd, 0xfe,
|
||||
0x3d, 0x49, 0xff, 0xe2, 0x0f, 0x24, 0x9b, 0x7e, 0x04, 0xba, 0x28, 0xce, 0xeb, 0x1a, 0x45, 0x3c,
|
||||
0xec, 0x52, 0xfa, 0x2d, 0x56, 0xf4, 0x14, 0x06, 0x0b, 0xb3, 0xe7, 0xb5, 0xaa, 0xc8, 0x49, 0x20,
|
||||
0x17, 0x07, 0xc3, 0xb5, 0x12, 0x24, 0x09, 0xde, 0x6f, 0x9e, 0x7b, 0x25, 0x48, 0x6f, 0xfa, 0xea,
|
||||
0xf8, 0xa6, 0x61, 0xc7, 0x34, 0x87, 0xde, 0xd5, 0x65, 0x2b, 0xbf, 0x6a, 0xcb, 0x24, 0xf9, 0xf2,
|
||||
0xfa, 0xc7, 0xd9, 0x46, 0xf9, 0xed, 0x6e, 0x35, 0x13, 0xa8, 0xe7, 0x5a, 0x09, 0x8b, 0x0e, 0xd7,
|
||||
0x7e, 0xae, 0x51, 0xcc, 0x6d, 0x23, 0xe6, 0xed, 0x77, 0x5c, 0xe5, 0xf1, 0x3f, 0xbe, 0xfb, 0x13,
|
||||
0x00, 0x00, 0xff, 0xff, 0x86, 0x56, 0x6e, 0x03, 0xcf, 0x02, 0x00, 0x00,
|
||||
// 517 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0xf1, 0x6b, 0xd3, 0x40,
|
||||
0x14, 0x5e, 0x9a, 0x2c, 0xb3, 0xaf, 0xa8, 0xd9, 0x21, 0x33, 0x88, 0x93, 0x99, 0x21, 0x96, 0x22,
|
||||
0x2d, 0x4c, 0x11, 0x11, 0x14, 0x26, 0x03, 0xed, 0x0f, 0x93, 0x92, 0xd5, 0x81, 0xfe, 0x32, 0xae,
|
||||
0x97, 0x6b, 0x7b, 0x98, 0xbb, 0x17, 0xee, 0x2e, 0x75, 0xfd, 0xa3, 0xfc, 0x1f, 0xe5, 0x2e, 0xa9,
|
||||
0xad, 0xcc, 0xdf, 0xbe, 0xef, 0xbd, 0xef, 0xfb, 0x72, 0xf7, 0xf2, 0x0e, 0x9e, 0x49, 0x64, 0x37,
|
||||
0x0c, 0xa5, 0x44, 0x75, 0xa3, 0xb8, 0xfd, 0x85, 0xfa, 0x67, 0xc3, 0x86, 0x95, 0x46, 0x8b, 0x24,
|
||||
0x94, 0xc8, 0x9e, 0x3c, 0xde, 0x11, 0xed, 0x76, 0x33, 0x01, 0xe1, 0x85, 0x32, 0x24, 0x85, 0x03,
|
||||
0xc3, 0xf5, 0x8a, 0x6b, 0x93, 0x06, 0x27, 0x61, 0xbf, 0x9b, 0x6f, 0x28, 0x39, 0x82, 0xb8, 0x40,
|
||||
0x49, 0x85, 0x4a, 0x3b, 0x27, 0x41, 0xbf, 0x9b, 0xb7, 0xcc, 0xd5, 0x0d, 0xa7, 0x9a, 0x2d, 0xd3,
|
||||
0xd0, 0x1b, 0x5a, 0xe6, 0x92, 0xb0, 0xb2, 0x02, 0x95, 0x49, 0xa3, 0x26, 0xa9, 0xa5, 0xd9, 0x47,
|
||||
0x80, 0xf1, 0x64, 0x82, 0x58, 0x8e, 0xd5, 0x1c, 0x09, 0x81, 0xa8, 0x36, 0xbc, 0x48, 0x03, 0x9f,
|
||||
0xea, 0x31, 0x79, 0x0a, 0x5d, 0xba, 0xa2, 0xa2, 0xa4, 0xb3, 0x92, 0xb7, 0x9f, 0xdb, 0x16, 0xb2,
|
||||
0xdf, 0x01, 0xc4, 0x4d, 0x80, 0x33, 0x2b, 0x2a, 0xf9, 0xc6, 0xec, 0x30, 0x39, 0x85, 0xc8, 0xae,
|
||||
0xab, 0xc6, 0xf7, 0xe0, 0xec, 0xe1, 0x50, 0x22, 0x1b, 0x36, 0xf2, 0xe9, 0xba, 0xe2, 0xb9, 0x6f,
|
||||
0x92, 0x47, 0xb0, 0x6f, 0x2c, 0xd5, 0x36, 0x0d, 0xbd, 0xb3, 0x21, 0x24, 0x81, 0x90, 0xab, 0x22,
|
||||
0x8d, 0x7c, 0xcd, 0x41, 0x17, 0x26, 0xd4, 0x1c, 0xd3, 0xfd, 0x93, 0xa0, 0xdf, 0xfb, 0x27, 0xcc,
|
||||
0x1d, 0x3e, 0xf7, 0x4d, 0x72, 0x0c, 0x91, 0xa5, 0x0b, 0x93, 0xc6, 0x5e, 0xd4, 0xf5, 0xa2, 0x29,
|
||||
0x5d, 0x98, 0xdc, 0x97, 0xb3, 0x05, 0xec, 0xe7, 0x58, 0x5b, 0xee, 0x46, 0xa2, 0xf8, 0xad, 0xfd,
|
||||
0x82, 0x55, 0x7b, 0xe0, 0x0d, 0x25, 0xaf, 0xe0, 0xb0, 0xe0, 0xc6, 0x0a, 0x45, 0xdd, 0x88, 0x26,
|
||||
0x9a, 0xcf, 0xc5, 0x6d, 0x7b, 0xf1, 0xbb, 0x0d, 0x37, 0x72, 0xc9, 0xad, 0x16, 0xcc, 0x9f, 0xfe,
|
||||
0x7e, 0xde, 0xb2, 0xec, 0x25, 0x1c, 0xe6, 0xdc, 0x60, 0xad, 0x19, 0xcf, 0xf9, 0x9c, 0x6b, 0xae,
|
||||
0x18, 0xff, 0xdf, 0x88, 0xb2, 0xef, 0x70, 0xfc, 0xb5, 0xd9, 0x90, 0x2b, 0xce, 0x6a, 0x2d, 0xec,
|
||||
0xfa, 0xb3, 0xc6, 0xba, 0xda, 0x9a, 0xde, 0x41, 0x4f, 0x6f, 0x93, 0xbc, 0xb7, 0x77, 0x76, 0xe4,
|
||||
0x2f, 0x76, 0xe7, 0x0b, 0xf9, 0xae, 0x74, 0xf0, 0x01, 0xee, 0x4d, 0xdc, 0x42, 0x31, 0x2c, 0xc9,
|
||||
0x01, 0x84, 0xe7, 0x65, 0x99, 0xec, 0x39, 0x30, 0x65, 0x55, 0x12, 0x38, 0xf0, 0xad, 0xa8, 0x92,
|
||||
0x0e, 0x01, 0x88, 0xc7, 0x4c, 0x56, 0xab, 0x37, 0x49, 0xf8, 0x17, 0xbf, 0x4d, 0xa2, 0xc1, 0x7b,
|
||||
0x20, 0xe3, 0xc9, 0x79, 0x59, 0x22, 0xf3, 0x17, 0xbe, 0xe4, 0x76, 0x89, 0x05, 0xe9, 0xc1, 0xc1,
|
||||
0x58, 0xad, 0x68, 0x29, 0x8a, 0x64, 0xcf, 0x91, 0x8b, 0xb5, 0xa2, 0x52, 0xb0, 0x24, 0x70, 0xde,
|
||||
0x2b, 0x4b, 0xad, 0x60, 0x49, 0x67, 0xf0, 0x7c, 0xb3, 0x57, 0xee, 0x3f, 0x93, 0x18, 0x3a, 0xd7,
|
||||
0x97, 0x8d, 0xfc, 0xba, 0x29, 0x27, 0xc1, 0xa7, 0x17, 0x3f, 0x4e, 0x17, 0xc2, 0x2e, 0xeb, 0xd9,
|
||||
0x90, 0xa1, 0x1c, 0x49, 0xc1, 0x34, 0x1a, 0x9c, 0xdb, 0x91, 0x44, 0x36, 0xd2, 0x15, 0x1b, 0x35,
|
||||
0x4f, 0x62, 0x16, 0xfb, 0x37, 0xf1, 0xfa, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x10, 0x51,
|
||||
0xe6, 0x53, 0x03, 0x00, 0x00,
|
||||
}
|
||||
|
|
|
@ -51,4 +51,13 @@ message Route {
|
|||
string nextHop = 1;
|
||||
string destinationPrefix = 2;
|
||||
uint32 metric = 3;
|
||||
}
|
||||
|
||||
// Resource reference is intended to be used as a general component of specific, named resource references
|
||||
message ResourceReference {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message NetworkSecurityGroupReference {
|
||||
ResourceReference resourceRef = 1;
|
||||
}
|
Загрузка…
Ссылка в новой задаче