зеркало из https://github.com/microsoft/moc.git
remove plural options in nsg rule
This commit is contained in:
Родитель
e3894eeb24
Коммит
4e84f07143
2
go.mod
2
go.mod
|
@ -15,7 +15,7 @@ require (
|
|||
)
|
||||
|
||||
require (
|
||||
golang.org/x/net v0.20.0 // indirect
|
||||
golang.org/x/net v0.21.0 // indirect
|
||||
google.golang.org/protobuf v1.32.0 // indirect
|
||||
)
|
||||
|
||||
|
|
6
go.sum
6
go.sum
|
@ -1112,8 +1112,8 @@ golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
|
|||
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
|
||||
golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ=
|
||||
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
|
||||
golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo=
|
||||
golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY=
|
||||
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
|
||||
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
|
||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
|
||||
|
@ -1173,7 +1173,7 @@ golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo=
|
|||
golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo=
|
||||
golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU=
|
||||
golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0=
|
||||
golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY=
|
||||
golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
|
|
|
@ -179,24 +179,20 @@ func (m *NetworkSecurityGroupResponse) GetError() string {
|
|||
}
|
||||
|
||||
type NetworkSecurityGroupRule struct {
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
||||
Action Action `protobuf:"varint,3,opt,name=action,proto3,enum=moc.cloudagent.network.Action" json:"action,omitempty"`
|
||||
Direction Direction `protobuf:"varint,4,opt,name=direction,proto3,enum=moc.cloudagent.network.Direction" json:"direction,omitempty"`
|
||||
SourceAddressPrefix string `protobuf:"bytes,5,opt,name=sourceAddressPrefix,proto3" json:"sourceAddressPrefix,omitempty"`
|
||||
DestinationAddressPrefix string `protobuf:"bytes,6,opt,name=destinationAddressPrefix,proto3" json:"destinationAddressPrefix,omitempty"`
|
||||
SourceAddressPrefixes []string `protobuf:"bytes,7,rep,name=sourceAddressPrefixes,proto3" json:"sourceAddressPrefixes,omitempty"`
|
||||
DestinationAddressPrefixes []string `protobuf:"bytes,8,rep,name=destinationAddressPrefixes,proto3" json:"destinationAddressPrefixes,omitempty"`
|
||||
SourcePortRange string `protobuf:"bytes,9,opt,name=sourcePortRange,proto3" json:"sourcePortRange,omitempty"`
|
||||
DestinationPortRange string `protobuf:"bytes,10,opt,name=destinationPortRange,proto3" json:"destinationPortRange,omitempty"`
|
||||
SourcePortRanges []string `protobuf:"bytes,11,rep,name=sourcePortRanges,proto3" json:"sourcePortRanges,omitempty"`
|
||||
DestinationPortRanges []string `protobuf:"bytes,12,rep,name=destinationPortRanges,proto3" json:"destinationPortRanges,omitempty"`
|
||||
Protocol common.Protocol `protobuf:"varint,13,opt,name=protocol,proto3,enum=moc.Protocol" json:"protocol,omitempty"`
|
||||
Priority uint32 `protobuf:"varint,14,opt,name=priority,proto3" json:"priority,omitempty"`
|
||||
Logging bool `protobuf:"varint,15,opt,name=logging,proto3" json:"logging,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"`
|
||||
Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
|
||||
Action Action `protobuf:"varint,3,opt,name=action,proto3,enum=moc.cloudagent.network.Action" json:"action,omitempty"`
|
||||
Direction Direction `protobuf:"varint,4,opt,name=direction,proto3,enum=moc.cloudagent.network.Direction" json:"direction,omitempty"`
|
||||
SourceAddressPrefix string `protobuf:"bytes,5,opt,name=sourceAddressPrefix,proto3" json:"sourceAddressPrefix,omitempty"`
|
||||
DestinationAddressPrefix string `protobuf:"bytes,6,opt,name=destinationAddressPrefix,proto3" json:"destinationAddressPrefix,omitempty"`
|
||||
SourcePortRange string `protobuf:"bytes,7,opt,name=sourcePortRange,proto3" json:"sourcePortRange,omitempty"`
|
||||
DestinationPortRange string `protobuf:"bytes,8,opt,name=destinationPortRange,proto3" json:"destinationPortRange,omitempty"`
|
||||
Protocol common.Protocol `protobuf:"varint,9,opt,name=protocol,proto3,enum=moc.Protocol" json:"protocol,omitempty"`
|
||||
Priority uint32 `protobuf:"varint,10,opt,name=priority,proto3" json:"priority,omitempty"`
|
||||
Logging bool `protobuf:"varint,11,opt,name=logging,proto3" json:"logging,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) Reset() { *m = NetworkSecurityGroupRule{} }
|
||||
|
@ -266,20 +262,6 @@ func (m *NetworkSecurityGroupRule) GetDestinationAddressPrefix() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetSourceAddressPrefixes() []string {
|
||||
if m != nil {
|
||||
return m.SourceAddressPrefixes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetDestinationAddressPrefixes() []string {
|
||||
if m != nil {
|
||||
return m.DestinationAddressPrefixes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetSourcePortRange() string {
|
||||
if m != nil {
|
||||
return m.SourcePortRange
|
||||
|
@ -294,20 +276,6 @@ func (m *NetworkSecurityGroupRule) GetDestinationPortRange() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetSourcePortRanges() []string {
|
||||
if m != nil {
|
||||
return m.SourcePortRanges
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetDestinationPortRanges() []string {
|
||||
if m != nil {
|
||||
return m.DestinationPortRanges
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *NetworkSecurityGroupRule) GetProtocol() common.Protocol {
|
||||
if m != nil {
|
||||
return m.Protocol
|
||||
|
@ -430,53 +398,50 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_f7a6eb5efc25ffee = []byte{
|
||||
// 731 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x4f, 0x4f, 0xe3, 0x46,
|
||||
0x14, 0xc7, 0xf9, 0x47, 0xfc, 0x42, 0x42, 0x34, 0x85, 0x76, 0x48, 0x01, 0xa5, 0xa9, 0x54, 0x05,
|
||||
0x54, 0xd9, 0x34, 0xa0, 0x1e, 0x7a, 0x68, 0x15, 0x44, 0x55, 0x71, 0x01, 0x34, 0xa0, 0x1e, 0x7a,
|
||||
0x41, 0x8e, 0x3d, 0xb8, 0x16, 0xb6, 0xc7, 0x9d, 0xf1, 0x94, 0xe5, 0x6b, 0xec, 0x27, 0xd9, 0xdb,
|
||||
0x7e, 0x89, 0xd5, 0x7e, 0xa6, 0x95, 0x9f, 0x4d, 0x12, 0xd8, 0xc9, 0x4a, 0x5c, 0xf6, 0x04, 0xf3,
|
||||
0x7e, 0x7f, 0xe6, 0x37, 0x6f, 0xde, 0x38, 0x70, 0x90, 0x08, 0xff, 0xd6, 0x8f, 0x85, 0x0e, 0xbc,
|
||||
0x90, 0xa7, 0xf9, 0x6d, 0xca, 0xf3, 0x07, 0x21, 0xef, 0x15, 0xf7, 0xb5, 0x8c, 0xf2, 0xc7, 0x50,
|
||||
0x0a, 0x9d, 0x39, 0x99, 0x14, 0xb9, 0x20, 0xdf, 0x26, 0xc2, 0x77, 0x16, 0x54, 0xa7, 0xa2, 0x0e,
|
||||
0xf6, 0x43, 0x21, 0xc2, 0x98, 0xbb, 0xc8, 0x9a, 0xe9, 0x3b, 0xf7, 0x41, 0x7a, 0x59, 0xc6, 0xa5,
|
||||
0x2a, 0x75, 0x83, 0xef, 0x70, 0x0b, 0x91, 0x24, 0x22, 0xad, 0xfe, 0x54, 0xc0, 0xfe, 0x12, 0x50,
|
||||
0x99, 0x2d, 0xe3, 0xa3, 0xf7, 0x16, 0x7c, 0x7f, 0x51, 0xd6, 0xaf, 0xab, 0x3c, 0x7f, 0x15, 0x79,
|
||||
0x18, 0xff, 0x4f, 0x73, 0x95, 0x93, 0x19, 0x6c, 0x9b, 0x60, 0x45, 0xad, 0x61, 0x7d, 0xdc, 0x99,
|
||||
0xfc, 0xec, 0x98, 0x03, 0x3b, 0x46, 0x4f, 0xb3, 0x15, 0x39, 0x81, 0xee, 0x65, 0xc6, 0xa5, 0x97,
|
||||
0x47, 0x22, 0xbd, 0x79, 0xcc, 0x38, 0xad, 0x0d, 0xad, 0x71, 0x6f, 0xd2, 0x43, 0xef, 0x39, 0xc2,
|
||||
0x9e, 0x93, 0x46, 0x1f, 0x2c, 0xd8, 0x35, 0x27, 0x57, 0x99, 0x48, 0x15, 0xff, 0x2a, 0xd1, 0x27,
|
||||
0xd0, 0x62, 0x5c, 0xe9, 0x38, 0xc7, 0xcc, 0x9d, 0xc9, 0xc0, 0x29, 0x2f, 0xca, 0x79, 0xba, 0x28,
|
||||
0xe7, 0x54, 0x88, 0xf8, 0x6f, 0x2f, 0xd6, 0x9c, 0x55, 0x4c, 0xb2, 0x05, 0xcd, 0x3f, 0xa5, 0x14,
|
||||
0x92, 0xd6, 0x87, 0xd6, 0xd8, 0x66, 0xe5, 0x62, 0xf4, 0xb1, 0x09, 0xd4, 0xb8, 0xb3, 0x8e, 0x39,
|
||||
0x21, 0xd0, 0x48, 0xbd, 0x84, 0x53, 0x0b, 0x15, 0xf8, 0x3f, 0x19, 0x42, 0x27, 0xe0, 0xca, 0x97,
|
||||
0x51, 0x56, 0xb4, 0x04, 0xf7, 0xb7, 0xd9, 0x72, 0x89, 0xfc, 0x0a, 0x2d, 0xcf, 0x47, 0xb0, 0x8e,
|
||||
0x0d, 0xdd, 0x5f, 0x75, 0xe2, 0x29, 0xb2, 0x58, 0xc5, 0x26, 0x7f, 0x80, 0x1d, 0x44, 0x92, 0x97,
|
||||
0xd2, 0x06, 0x4a, 0x7f, 0x58, 0x25, 0x3d, 0x7b, 0x22, 0xb2, 0x85, 0x86, 0x1c, 0xc1, 0x37, 0x4a,
|
||||
0x68, 0xe9, 0xf3, 0x69, 0x10, 0x48, 0xae, 0xd4, 0x95, 0xe4, 0x77, 0xd1, 0x1b, 0xda, 0xc4, 0x88,
|
||||
0x26, 0x88, 0xfc, 0x06, 0x34, 0xe0, 0x2a, 0x8f, 0x52, 0xbc, 0xdf, 0xe7, 0xb2, 0x16, 0xca, 0x56,
|
||||
0xe2, 0xe4, 0x04, 0xb6, 0x0d, 0x96, 0x5c, 0xd1, 0xf5, 0x61, 0x7d, 0x6c, 0x33, 0x33, 0x48, 0x7e,
|
||||
0x87, 0xc1, 0x2a, 0x47, 0xae, 0x68, 0x1b, 0xa5, 0x5f, 0x60, 0x90, 0x31, 0x6c, 0x96, 0xc6, 0x57,
|
||||
0x42, 0xe6, 0xcc, 0x4b, 0x43, 0x4e, 0x6d, 0x0c, 0xfa, 0xb2, 0x4c, 0x26, 0xb0, 0xb5, 0xe4, 0xb3,
|
||||
0xa0, 0x03, 0xd2, 0x8d, 0x18, 0x39, 0x84, 0xfe, 0x0b, 0x1b, 0x45, 0x3b, 0x98, 0xe9, 0xb3, 0x7a,
|
||||
0x71, 0x7e, 0x93, 0x87, 0xa2, 0x1b, 0xe5, 0xf9, 0x8d, 0x20, 0x39, 0x80, 0x36, 0xce, 0xa8, 0x2f,
|
||||
0x62, 0xda, 0xc5, 0x3b, 0xee, 0xe2, 0x1d, 0x5f, 0x55, 0x45, 0x36, 0x87, 0xc9, 0xa0, 0xa0, 0x46,
|
||||
0xa2, 0x18, 0x49, 0xda, 0x1b, 0x5a, 0xe3, 0x2e, 0x9b, 0xaf, 0x09, 0x85, 0xf5, 0x58, 0x84, 0x61,
|
||||
0x94, 0x86, 0x74, 0x73, 0x68, 0x8d, 0xdb, 0xec, 0x69, 0x39, 0x7a, 0x57, 0x83, 0x2d, 0xd3, 0x40,
|
||||
0x1b, 0x87, 0xb9, 0x07, 0xb5, 0x28, 0xa8, 0x66, 0xb8, 0x16, 0x05, 0x24, 0x85, 0x1d, 0xd3, 0x57,
|
||||
0x52, 0xea, 0x98, 0x2b, 0x5a, 0xc7, 0xf7, 0x7b, 0xf4, 0xaa, 0xf7, 0xab, 0x63, 0xce, 0x56, 0x5b,
|
||||
0x92, 0x5d, 0xb0, 0x71, 0x75, 0x51, 0x04, 0x6b, 0x60, 0x8c, 0x45, 0x81, 0x8c, 0x60, 0x23, 0x16,
|
||||
0x3e, 0x76, 0x10, 0x09, 0xe5, 0x20, 0x3f, 0xab, 0x91, 0x1f, 0xa1, 0xa5, 0x72, 0x2f, 0xd7, 0x0a,
|
||||
0xe7, 0xb5, 0x33, 0xe9, 0x60, 0xbc, 0x6b, 0x2c, 0xb1, 0x0a, 0x22, 0x7b, 0xd0, 0xc8, 0xbd, 0xb0,
|
||||
0x98, 0xcc, 0x82, 0x62, 0x23, 0xe5, 0xc6, 0x0b, 0x15, 0xc3, 0xf2, 0xe1, 0x1e, 0xb4, 0xca, 0xa7,
|
||||
0x48, 0x6c, 0x68, 0x4e, 0xe3, 0x58, 0x3c, 0xf4, 0xd7, 0x48, 0x1b, 0x1a, 0x67, 0x3c, 0x7d, 0xec,
|
||||
0x5b, 0x87, 0x3f, 0x81, 0x3d, 0x7f, 0x6e, 0xa4, 0x03, 0xeb, 0xe7, 0xe9, 0x4c, 0xe8, 0x34, 0xe8,
|
||||
0xaf, 0x91, 0x0d, 0x68, 0x5f, 0xea, 0xbc, 0x5c, 0x59, 0x93, 0xb7, 0x16, 0xec, 0x98, 0x9a, 0x30,
|
||||
0x2d, 0xda, 0x44, 0x34, 0xb4, 0xce, 0xd3, 0xff, 0xc5, 0x3d, 0x27, 0xc7, 0xaf, 0xea, 0x60, 0xf9,
|
||||
0x83, 0x30, 0x38, 0x79, 0x9d, 0xa8, 0xfc, 0x16, 0x8f, 0xd6, 0x4e, 0x7f, 0xf9, 0xc7, 0x0d, 0xa3,
|
||||
0xfc, 0x5f, 0x3d, 0x73, 0x7c, 0x91, 0xb8, 0x49, 0xe4, 0x4b, 0xa1, 0xc4, 0x5d, 0xee, 0x26, 0xc2,
|
||||
0x77, 0x65, 0xe6, 0xbb, 0x0b, 0x47, 0xb7, 0x72, 0x9c, 0xb5, 0x70, 0x02, 0x8f, 0x3f, 0x05, 0x00,
|
||||
0x00, 0xff, 0xff, 0x49, 0xc6, 0x11, 0xf6, 0x40, 0x07, 0x00, 0x00,
|
||||
// 677 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x54, 0x4d, 0x4f, 0xdb, 0x40,
|
||||
0x10, 0xc5, 0x49, 0x08, 0xf1, 0x18, 0x28, 0xda, 0xd2, 0xd6, 0xa4, 0x80, 0xd2, 0x54, 0xaa, 0x02,
|
||||
0xaa, 0x6c, 0x6a, 0x50, 0x0f, 0xbd, 0x54, 0x41, 0x54, 0x15, 0x17, 0x40, 0x06, 0xf5, 0xd0, 0x0b,
|
||||
0x72, 0xec, 0xc5, 0xb5, 0xb0, 0x3d, 0xee, 0x7e, 0x94, 0xf2, 0x37, 0xfa, 0x4b, 0x7a, 0xeb, 0x9f,
|
||||
0xe8, 0xef, 0xe9, 0xb9, 0xca, 0xd8, 0x24, 0xa1, 0x72, 0x0e, 0x5c, 0x7a, 0x4a, 0x76, 0xde, 0x7b,
|
||||
0xb3, 0xcf, 0xf3, 0x46, 0x0b, 0x3b, 0x19, 0x86, 0x97, 0x61, 0x8a, 0x3a, 0x0a, 0x62, 0x9e, 0xab,
|
||||
0xcb, 0x9c, 0xab, 0x1b, 0x14, 0xd7, 0x92, 0x87, 0x5a, 0x24, 0xea, 0x36, 0x16, 0xa8, 0x0b, 0xa7,
|
||||
0x10, 0xa8, 0x90, 0x3d, 0xcd, 0x30, 0x74, 0xa6, 0x54, 0xa7, 0xa2, 0x76, 0xb7, 0x63, 0xc4, 0x38,
|
||||
0xe5, 0x2e, 0xb1, 0x46, 0xfa, 0xca, 0xbd, 0x11, 0x41, 0x51, 0x70, 0x21, 0x4b, 0x5d, 0xf7, 0x19,
|
||||
0x5d, 0x81, 0x59, 0x86, 0x79, 0xf5, 0x53, 0x01, 0xdb, 0x33, 0x40, 0xd5, 0x6c, 0x16, 0xef, 0xff,
|
||||
0x32, 0xe0, 0xf9, 0x49, 0x59, 0x3f, 0xaf, 0xfc, 0x7c, 0x1c, 0xfb, 0xf1, 0xf9, 0x57, 0xcd, 0xa5,
|
||||
0x62, 0x23, 0x78, 0x52, 0x07, 0x4b, 0xdb, 0xe8, 0x35, 0x07, 0x96, 0xf7, 0xda, 0xa9, 0x37, 0xec,
|
||||
0xd4, 0xf6, 0xac, 0x6f, 0xc5, 0x0e, 0x60, 0xe5, 0xb4, 0xe0, 0x22, 0x50, 0x09, 0xe6, 0x17, 0xb7,
|
||||
0x05, 0xb7, 0x1b, 0x3d, 0x63, 0xb0, 0xea, 0xad, 0x52, 0xef, 0x09, 0xe2, 0xdf, 0x27, 0xf5, 0x7f,
|
||||
0x1b, 0xb0, 0x59, 0xef, 0x5c, 0x16, 0x98, 0x4b, 0xfe, 0x5f, 0xac, 0x7b, 0xd0, 0xf6, 0xb9, 0xd4,
|
||||
0xa9, 0x22, 0xcf, 0x96, 0xd7, 0x75, 0xca, 0xa0, 0x9c, 0xbb, 0xa0, 0x9c, 0x43, 0xc4, 0xf4, 0x53,
|
||||
0x90, 0x6a, 0xee, 0x57, 0x4c, 0xb6, 0x0e, 0x8b, 0x1f, 0x84, 0x40, 0x61, 0x37, 0x7b, 0xc6, 0xc0,
|
||||
0xf4, 0xcb, 0x43, 0xff, 0x4f, 0x13, 0xec, 0xda, 0x9b, 0x75, 0xca, 0x19, 0x83, 0x56, 0x1e, 0x64,
|
||||
0xdc, 0x36, 0x48, 0x41, 0xff, 0x59, 0x0f, 0xac, 0x88, 0xcb, 0x50, 0x24, 0xc5, 0x78, 0x24, 0x74,
|
||||
0xbf, 0xe9, 0xcf, 0x96, 0xd8, 0x5b, 0x68, 0x07, 0x21, 0x81, 0x4d, 0x1a, 0xe8, 0xf6, 0xbc, 0x2f,
|
||||
0x1e, 0x12, 0xcb, 0xaf, 0xd8, 0xec, 0x3d, 0x98, 0x51, 0x22, 0x78, 0x29, 0x6d, 0x91, 0xf4, 0xc5,
|
||||
0x3c, 0xe9, 0xd1, 0x1d, 0xd1, 0x9f, 0x6a, 0xd8, 0x1e, 0x3c, 0x96, 0xa8, 0x45, 0xc8, 0x87, 0x51,
|
||||
0x24, 0xb8, 0x94, 0x67, 0x82, 0x5f, 0x25, 0xdf, 0xed, 0x45, 0xb2, 0x58, 0x07, 0xb1, 0x77, 0x60,
|
||||
0x47, 0x5c, 0xaa, 0x24, 0xa7, 0x7c, 0xef, 0xcb, 0xda, 0x24, 0x9b, 0x8b, 0xb3, 0x01, 0x3c, 0x2a,
|
||||
0x5b, 0x9e, 0xa1, 0x50, 0x7e, 0x90, 0xc7, 0xdc, 0x5e, 0x22, 0xc9, 0xbf, 0x65, 0xe6, 0xc1, 0xfa,
|
||||
0x4c, 0x97, 0x29, 0xbd, 0x43, 0xf4, 0x5a, 0x8c, 0xed, 0x40, 0x87, 0xb2, 0x0c, 0x31, 0xb5, 0x4d,
|
||||
0x9a, 0xc5, 0x0a, 0xcd, 0xe2, 0xac, 0x2a, 0xfa, 0x13, 0x98, 0x75, 0xc7, 0xd4, 0x04, 0xc7, 0xd1,
|
||||
0xd9, 0xd0, 0x33, 0x06, 0x2b, 0xfe, 0xe4, 0xcc, 0x6c, 0x58, 0x4a, 0x31, 0x8e, 0x93, 0x3c, 0xb6,
|
||||
0xad, 0x9e, 0x31, 0xe8, 0xf8, 0x77, 0xc7, 0xfe, 0xcf, 0x06, 0xac, 0xd7, 0x05, 0x5f, 0x1b, 0xfa,
|
||||
0x2a, 0x34, 0x92, 0xa8, 0xca, 0xba, 0x91, 0x44, 0x2c, 0x87, 0x8d, 0xba, 0xd7, 0x44, 0xe8, 0x94,
|
||||
0x4b, 0xbb, 0x49, 0x7b, 0xbe, 0xf7, 0xa0, 0x3d, 0xd7, 0x29, 0xf7, 0xe7, 0xb7, 0x64, 0x9b, 0x60,
|
||||
0xd2, 0xe9, 0x64, 0x6c, 0xac, 0x45, 0x36, 0xa6, 0x05, 0xd6, 0x87, 0xe5, 0x14, 0x43, 0x1a, 0x20,
|
||||
0x11, 0xca, 0xc0, 0xef, 0xd5, 0xd8, 0x4b, 0x68, 0x4b, 0x15, 0x28, 0x2d, 0x29, 0x57, 0xcb, 0xb3,
|
||||
0xc8, 0xde, 0x39, 0x95, 0xfc, 0x0a, 0x62, 0x5b, 0xd0, 0x52, 0x41, 0x2c, 0x29, 0x47, 0xcb, 0x33,
|
||||
0x89, 0x72, 0x11, 0xc4, 0xd2, 0xa7, 0xf2, 0xee, 0x16, 0xb4, 0xcb, 0x95, 0x65, 0x26, 0x2c, 0x0e,
|
||||
0xd3, 0x14, 0x6f, 0xd6, 0x16, 0x58, 0x07, 0x5a, 0x47, 0x3c, 0xbf, 0x5d, 0x33, 0x76, 0x5f, 0x81,
|
||||
0x39, 0x59, 0x4b, 0x66, 0xc1, 0xd2, 0x71, 0x3e, 0x42, 0x9d, 0x47, 0x6b, 0x0b, 0x6c, 0x19, 0x3a,
|
||||
0xa7, 0x5a, 0x95, 0x27, 0xc3, 0xfb, 0x61, 0xc0, 0x46, 0xdd, 0x10, 0x86, 0xe3, 0x31, 0x31, 0x0d,
|
||||
0xed, 0xe3, 0xfc, 0x1b, 0x5e, 0x73, 0xb6, 0xff, 0xa0, 0x09, 0x96, 0x0f, 0x67, 0xf7, 0xe0, 0x61,
|
||||
0xa2, 0xf2, 0xcd, 0xea, 0x2f, 0x1c, 0xbe, 0xf9, 0xec, 0xc6, 0x89, 0xfa, 0xa2, 0x47, 0x4e, 0x88,
|
||||
0x99, 0x9b, 0x25, 0xa1, 0x40, 0x89, 0x57, 0xca, 0xcd, 0x30, 0x74, 0x45, 0x11, 0xba, 0xd3, 0x8e,
|
||||
0x6e, 0xd5, 0x71, 0xd4, 0xa6, 0x0d, 0xdc, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x1e, 0xd4,
|
||||
0xf1, 0x68, 0x06, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -37,15 +37,11 @@ message NetworkSecurityGroupRule {
|
|||
Direction direction = 4;
|
||||
string sourceAddressPrefix = 5;
|
||||
string destinationAddressPrefix = 6;
|
||||
repeated string sourceAddressPrefixes = 7;
|
||||
repeated string destinationAddressPrefixes = 8;
|
||||
string sourcePortRange = 9;
|
||||
string destinationPortRange = 10;
|
||||
repeated string sourcePortRanges = 11;
|
||||
repeated string destinationPortRanges = 12;
|
||||
Protocol protocol = 13;
|
||||
uint32 priority = 14;
|
||||
bool logging = 15;
|
||||
string sourcePortRange = 7;
|
||||
string destinationPortRange = 8;
|
||||
Protocol protocol = 9;
|
||||
uint32 priority = 10;
|
||||
bool logging = 11;
|
||||
}
|
||||
|
||||
message NetworkSecurityGroup {
|
||||
|
|
Загрузка…
Ссылка в новой задаче