@ -95,6 +95,9 @@ type Permission struct {
unknownFields protoimpl . UnknownFields
Principals [ ] * Principal ` protobuf:"bytes,1,rep,name=principals,proto3" json:"principals,omitempty" `
// In the case of multiple ports, the sidecar proxy controller is responsible for filtering
// per-port permissions.
DestinationRules [ ] * DestinationRule ` protobuf:"bytes,2,rep,name=destination_rules,json=destinationRules,proto3" json:"destination_rules,omitempty" `
}
func ( x * Permission ) Reset ( ) {
@ -136,6 +139,13 @@ func (x *Permission) GetPrincipals() []*Principal {
return nil
}
func ( x * Permission ) GetDestinationRules ( ) [ ] * DestinationRule {
if x != nil {
return x . DestinationRules
}
return nil
}
type Principal struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
@ -249,6 +259,180 @@ func (x *Spiffe) GetXfccRegex() string {
return ""
}
type DestinationRule struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
PathExact string ` protobuf:"bytes,1,opt,name=path_exact,json=pathExact,proto3" json:"path_exact,omitempty" `
PathPrefix string ` protobuf:"bytes,2,opt,name=path_prefix,json=pathPrefix,proto3" json:"path_prefix,omitempty" `
PathRegex string ` protobuf:"bytes,3,opt,name=path_regex,json=pathRegex,proto3" json:"path_regex,omitempty" `
Methods [ ] string ` protobuf:"bytes,4,rep,name=methods,proto3" json:"methods,omitempty" `
DestinationRuleHeader [ ] * DestinationRuleHeader ` protobuf:"bytes,5,rep,name=destination_rule_header,json=destinationRuleHeader,proto3" json:"destination_rule_header,omitempty" `
}
func ( x * DestinationRule ) Reset ( ) {
* x = DestinationRule { }
if protoimpl . UnsafeEnabled {
mi := & file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 4 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * DestinationRule ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * DestinationRule ) ProtoMessage ( ) { }
func ( x * DestinationRule ) ProtoReflect ( ) protoreflect . Message {
mi := & file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 4 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use DestinationRule.ProtoReflect.Descriptor instead.
func ( * DestinationRule ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDescGZIP ( ) , [ ] int { 4 }
}
func ( x * DestinationRule ) GetPathExact ( ) string {
if x != nil {
return x . PathExact
}
return ""
}
func ( x * DestinationRule ) GetPathPrefix ( ) string {
if x != nil {
return x . PathPrefix
}
return ""
}
func ( x * DestinationRule ) GetPathRegex ( ) string {
if x != nil {
return x . PathRegex
}
return ""
}
func ( x * DestinationRule ) GetMethods ( ) [ ] string {
if x != nil {
return x . Methods
}
return nil
}
func ( x * DestinationRule ) GetDestinationRuleHeader ( ) [ ] * DestinationRuleHeader {
if x != nil {
return x . DestinationRuleHeader
}
return nil
}
type DestinationRuleHeader struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
Present bool ` protobuf:"varint,2,opt,name=present,proto3" json:"present,omitempty" `
Exact string ` protobuf:"bytes,3,opt,name=exact,proto3" json:"exact,omitempty" `
Prefix string ` protobuf:"bytes,4,opt,name=prefix,proto3" json:"prefix,omitempty" `
Suffix string ` protobuf:"bytes,5,opt,name=suffix,proto3" json:"suffix,omitempty" `
Regex string ` protobuf:"bytes,6,opt,name=regex,proto3" json:"regex,omitempty" `
Invert bool ` protobuf:"varint,7,opt,name=invert,proto3" json:"invert,omitempty" `
}
func ( x * DestinationRuleHeader ) Reset ( ) {
* x = DestinationRuleHeader { }
if protoimpl . UnsafeEnabled {
mi := & file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 5 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * DestinationRuleHeader ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * DestinationRuleHeader ) ProtoMessage ( ) { }
func ( x * DestinationRuleHeader ) ProtoReflect ( ) protoreflect . Message {
mi := & file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 5 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use DestinationRuleHeader.ProtoReflect.Descriptor instead.
func ( * DestinationRuleHeader ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDescGZIP ( ) , [ ] int { 5 }
}
func ( x * DestinationRuleHeader ) GetName ( ) string {
if x != nil {
return x . Name
}
return ""
}
func ( x * DestinationRuleHeader ) GetPresent ( ) bool {
if x != nil {
return x . Present
}
return false
}
func ( x * DestinationRuleHeader ) GetExact ( ) string {
if x != nil {
return x . Exact
}
return ""
}
func ( x * DestinationRuleHeader ) GetPrefix ( ) string {
if x != nil {
return x . Prefix
}
return ""
}
func ( x * DestinationRuleHeader ) GetSuffix ( ) string {
if x != nil {
return x . Suffix
}
return ""
}
func ( x * DestinationRuleHeader ) GetRegex ( ) string {
if x != nil {
return x . Regex
}
return ""
}
func ( x * DestinationRuleHeader ) GetInvert ( ) bool {
if x != nil {
return x . Invert
}
return false
}
var File_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto protoreflect . FileDescriptor
var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDesc = [ ] byte {
@ -274,51 +458,86 @@ var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDesc = []byte{
0x6e , 0x52 , 0x0f , 0x64 , 0x65 , 0x6e , 0x79 , 0x50 , 0x65 , 0x72 , 0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x12 , 0x23 , 0x0a , 0x0d , 0x64 , 0x65 , 0x66 , 0x61 , 0x75 , 0x6c , 0x74 , 0x5f , 0x61 , 0x6c ,
0x6c , 0x6f , 0x77 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0c , 0x64 , 0x65 , 0x66 , 0x61 , 0x75 ,
0x6c , 0x74 , 0x41 , 0x6c , 0x6c , 0x6f , 0x77 , 0x22 , 0x63 , 0x0a , 0x0a , 0x50 , 0x65 , 0x72 , 0x6d , 0x69 ,
0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x55 , 0x0a , 0x0a , 0x70 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 ,
0x61 , 0x6c , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x35 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 , 0x73 ,
0x68 , 0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 ,
0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x50 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 , 0x61 , 0x6c ,
0x52 , 0x0a , 0x70 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 , 0x61 , 0x6c , 0x73 , 0x22 , 0xb4 , 0x01 , 0x0a ,
0x09 , 0x50 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 , 0x61 , 0x6c , 0x12 , 0x4a , 0x0a , 0x06 , 0x73 , 0x70 ,
0x69 , 0x66 , 0x66 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x68 , 0x61 , 0x73 ,
0x6c , 0x74 , 0x41 , 0x6c , 0x6c , 0x6f , 0x77 , 0x22 , 0xcd , 0x01 , 0x0a , 0x0a , 0x50 , 0x65 , 0x72 , 0x6d ,
0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x55 , 0x0a , 0x0a , 0x70 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 ,
0x70 , 0x61 , 0x6c , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x35 , 0x2e , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 ,
0x73 , 0x68 , 0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f ,
0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x52 , 0x06 ,
0x73 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x12 , 0x5b , 0x0a , 0x0f , 0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x64 ,
0x65 , 0x5f , 0x73 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x32 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6c , 0x2e , 0x6d , 0x65 , 0x73 , 0x68 , 0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e ,
0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x53 , 0x70 , 0x69 ,
0x66 , 0x66 , 0x65 , 0x52 , 0x0e , 0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x64 , 0x65 , 0x53 , 0x70 , 0x69 , 0x66 ,
0x66 , 0x65 , 0x73 , 0x22 , 0x3d , 0x0a , 0x06 , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x72 , 0x65 ,
0x67 , 0x65 , 0x78 , 0x12 , 0x1d , 0x0a , 0x0a , 0x78 , 0x66 , 0x63 , 0x63 , 0x5f , 0x72 , 0x65 , 0x67 , 0x65 ,
0x78 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x78 , 0x66 , 0x63 , 0x63 , 0x52 , 0x65 , 0x67 ,
0x65 , 0x78 , 0x42 , 0xdd , 0x02 , 0x0a , 0x2e , 0x63 , 0x6f , 0x6d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 ,
0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x50 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 , 0x61 ,
0x6c , 0x52 , 0x0a , 0x70 , 0x72 , 0x69 , 0x6e , 0x63 , 0x69 , 0x70 , 0x61 , 0x6c , 0x73 , 0x12 , 0x68 , 0x0a ,
0x11 , 0x64 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x5f , 0x72 , 0x75 , 0x6c ,
0x65 , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x3b , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 ,
0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 , 0x73 , 0x68 ,
0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x42 , 0x17 , 0x54 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x65 ,
0x72 , 0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x50 , 0x72 , 0x6f , 0x74 , 0x6f , 0x50 , 0x01 ,
0x5a , 0x44 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2f , 0x70 , 0x72 ,
0x6f , 0x74 , 0x6f , 0x2d , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x2f , 0x70 , 0x62 , 0x6d , 0x65 , 0x73 ,
0x68 , 0x2f , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2f , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 ,
0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xa2 , 0x02 , 0x05 , 0x48 , 0x43 , 0x4d , 0x56 , 0x50 , 0xaa , 0x02 ,
0x2a , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 ,
0x6c , 0x2e , 0x4d , 0x65 , 0x73 , 0x68 , 0x2e , 0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x50 ,
0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xca , 0x02 , 0x2a , 0x48 , 0x61 ,
0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x4d ,
0x65 , 0x73 , 0x68 , 0x5c , 0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x5c , 0x50 , 0x62 , 0x70 , 0x72 ,
0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xe2 , 0x02 , 0x36 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 ,
0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x4d , 0x65 , 0x73 , 0x68 ,
0x5c , 0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x5c , 0x50 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x5c , 0x47 , 0x50 , 0x42 , 0x4d , 0x65 , 0x74 , 0x61 , 0x64 , 0x61 , 0x74 ,
0x61 , 0xea , 0x02 , 0x2e , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x3a , 0x3a , 0x43 ,
0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x3a , 0x3a , 0x4d , 0x65 , 0x73 , 0x68 , 0x3a , 0x3a , 0x56 , 0x32 , 0x62 ,
0x65 , 0x74 , 0x61 , 0x31 , 0x3a , 0x3a , 0x50 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 ,
0x74 , 0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x44 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x52 , 0x75 , 0x6c , 0x65 , 0x52 , 0x10 , 0x64 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x52 , 0x75 , 0x6c , 0x65 , 0x73 , 0x22 , 0xb4 , 0x01 , 0x0a , 0x09 , 0x50 , 0x72 , 0x69 , 0x6e ,
0x63 , 0x69 , 0x70 , 0x61 , 0x6c , 0x12 , 0x4a , 0x0a , 0x06 , 0x73 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 ,
0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 , 0x73 , 0x68 , 0x2e , 0x76 , 0x32 ,
0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 ,
0x74 , 0x65 , 0x2e , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x52 , 0x06 , 0x73 , 0x70 , 0x69 , 0x66 , 0x66 ,
0x65 , 0x12 , 0x5b , 0x0a , 0x0f , 0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x64 , 0x65 , 0x5f , 0x73 , 0x70 , 0x69 ,
0x66 , 0x66 , 0x65 , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x32 , 0x2e , 0x68 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 ,
0x73 , 0x68 , 0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f ,
0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x52 , 0x0e ,
0x65 , 0x78 , 0x63 , 0x6c , 0x75 , 0x64 , 0x65 , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x73 , 0x22 , 0x3d ,
0x0a , 0x06 , 0x53 , 0x70 , 0x69 , 0x66 , 0x66 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x72 , 0x65 , 0x67 , 0x65 ,
0x78 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x12 , 0x1d ,
0x0a , 0x0a , 0x78 , 0x66 , 0x63 , 0x63 , 0x5f , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x09 , 0x78 , 0x66 , 0x63 , 0x63 , 0x52 , 0x65 , 0x67 , 0x65 , 0x78 , 0x22 , 0x85 , 0x02 ,
0x0a , 0x0f , 0x44 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x75 , 0x6c ,
0x65 , 0x12 , 0x1d , 0x0a , 0x0a , 0x70 , 0x61 , 0x74 , 0x68 , 0x5f , 0x65 , 0x78 , 0x61 , 0x63 , 0x74 , 0x18 ,
0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x70 , 0x61 , 0x74 , 0x68 , 0x45 , 0x78 , 0x61 , 0x63 , 0x74 ,
0x12 , 0x1f , 0x0a , 0x0b , 0x70 , 0x61 , 0x74 , 0x68 , 0x5f , 0x70 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x18 ,
0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0a , 0x70 , 0x61 , 0x74 , 0x68 , 0x50 , 0x72 , 0x65 , 0x66 , 0x69 ,
0x78 , 0x12 , 0x1d , 0x0a , 0x0a , 0x70 , 0x61 , 0x74 , 0x68 , 0x5f , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x18 ,
0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x09 , 0x70 , 0x61 , 0x74 , 0x68 , 0x52 , 0x65 , 0x67 , 0x65 , 0x78 ,
0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x74 , 0x68 , 0x6f , 0x64 , 0x73 , 0x18 , 0x04 , 0x20 , 0x03 , 0x28 ,
0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x74 , 0x68 , 0x6f , 0x64 , 0x73 , 0x12 , 0x79 , 0x0a , 0x17 , 0x64 , 0x65 ,
0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x5f , 0x72 , 0x75 , 0x6c , 0x65 , 0x5f , 0x68 ,
0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x18 , 0x05 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x41 , 0x2e , 0x68 , 0x61 ,
0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d ,
0x65 , 0x73 , 0x68 , 0x2e , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 ,
0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0x2e , 0x44 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x75 , 0x6c , 0x65 , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x52 , 0x15 ,
0x64 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e , 0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x75 , 0x6c , 0x65 , 0x48 ,
0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x22 , 0xb9 , 0x01 , 0x0a , 0x15 , 0x44 , 0x65 , 0x73 , 0x74 , 0x69 , 0x6e ,
0x61 , 0x74 , 0x69 , 0x6f , 0x6e , 0x52 , 0x75 , 0x6c , 0x65 , 0x48 , 0x65 , 0x61 , 0x64 , 0x65 , 0x72 , 0x12 ,
0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e ,
0x61 , 0x6d , 0x65 , 0x12 , 0x18 , 0x0a , 0x07 , 0x70 , 0x72 , 0x65 , 0x73 , 0x65 , 0x6e , 0x74 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x07 , 0x70 , 0x72 , 0x65 , 0x73 , 0x65 , 0x6e , 0x74 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x65 , 0x78 , 0x61 , 0x63 , 0x74 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x78 ,
0x61 , 0x63 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 , 0x70 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x18 , 0x04 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x70 , 0x72 , 0x65 , 0x66 , 0x69 , 0x78 , 0x12 , 0x16 , 0x0a , 0x06 , 0x73 ,
0x75 , 0x66 , 0x66 , 0x69 , 0x78 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x73 , 0x75 , 0x66 ,
0x66 , 0x69 , 0x78 , 0x12 , 0x14 , 0x0a , 0x05 , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x18 , 0x06 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x05 , 0x72 , 0x65 , 0x67 , 0x65 , 0x78 , 0x12 , 0x16 , 0x0a , 0x06 , 0x69 , 0x6e , 0x76 ,
0x65 , 0x72 , 0x74 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x06 , 0x69 , 0x6e , 0x76 , 0x65 , 0x72 ,
0x74 , 0x42 , 0xdd , 0x02 , 0x0a , 0x2e , 0x63 , 0x6f , 0x6d , 0x2e , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x2e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2e , 0x6d , 0x65 , 0x73 , 0x68 , 0x2e ,
0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 ,
0x74 , 0x61 , 0x74 , 0x65 , 0x42 , 0x17 , 0x54 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x65 , 0x72 ,
0x6d , 0x69 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x73 , 0x50 , 0x72 , 0x6f , 0x74 , 0x6f , 0x50 , 0x01 , 0x5a ,
0x44 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 , 0x68 ,
0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x2f , 0x70 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x2d , 0x70 , 0x75 , 0x62 , 0x6c , 0x69 , 0x63 , 0x2f , 0x70 , 0x62 , 0x6d , 0x65 , 0x73 , 0x68 ,
0x2f , 0x76 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2f , 0x70 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xa2 , 0x02 , 0x05 , 0x48 , 0x43 , 0x4d , 0x56 , 0x50 , 0xaa , 0x02 , 0x2a ,
0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2e , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c ,
0x2e , 0x4d , 0x65 , 0x73 , 0x68 , 0x2e , 0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x2e , 0x50 , 0x62 ,
0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xca , 0x02 , 0x2a , 0x48 , 0x61 , 0x73 ,
0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x4d , 0x65 ,
0x73 , 0x68 , 0x5c , 0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x5c , 0x50 , 0x62 , 0x70 , 0x72 , 0x6f ,
0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 , 0x65 , 0xe2 , 0x02 , 0x36 , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 ,
0x6f , 0x72 , 0x70 , 0x5c , 0x43 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6c , 0x5c , 0x4d , 0x65 , 0x73 , 0x68 , 0x5c ,
0x56 , 0x32 , 0x62 , 0x65 , 0x74 , 0x61 , 0x31 , 0x5c , 0x50 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 ,
0x74 , 0x61 , 0x74 , 0x65 , 0x5c , 0x47 , 0x50 , 0x42 , 0x4d , 0x65 , 0x74 , 0x61 , 0x64 , 0x61 , 0x74 , 0x61 ,
0xea , 0x02 , 0x2e , 0x48 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x3a , 0x3a , 0x43 , 0x6f ,
0x6e , 0x73 , 0x75 , 0x6c , 0x3a , 0x3a , 0x4d , 0x65 , 0x73 , 0x68 , 0x3a , 0x3a , 0x56 , 0x32 , 0x62 , 0x65 ,
0x74 , 0x61 , 0x31 , 0x3a , 0x3a , 0x50 , 0x62 , 0x70 , 0x72 , 0x6f , 0x78 , 0x79 , 0x73 , 0x74 , 0x61 , 0x74 ,
0x65 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@ -333,24 +552,28 @@ func file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDescGZIP() []
return file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDescData
}
var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 4 )
var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 6 )
var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_goTypes = [ ] interface { } {
( * TrafficPermissions ) ( nil ) , // 0: hashicorp.consul.mesh.v2beta1.pbproxystate.TrafficPermissions
( * Permission ) ( nil ) , // 1: hashicorp.consul.mesh.v2beta1.pbproxystate.Permission
( * Principal ) ( nil ) , // 2: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal
( * Spiffe ) ( nil ) , // 3: hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
( * TrafficPermissions ) ( nil ) , // 0: hashicorp.consul.mesh.v2beta1.pbproxystate.TrafficPermissions
( * Permission ) ( nil ) , // 1: hashicorp.consul.mesh.v2beta1.pbproxystate.Permission
( * Principal ) ( nil ) , // 2: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal
( * Spiffe ) ( nil ) , // 3: hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
( * DestinationRule ) ( nil ) , // 4: hashicorp.consul.mesh.v2beta1.pbproxystate.DestinationRule
( * DestinationRuleHeader ) ( nil ) , // 5: hashicorp.consul.mesh.v2beta1.pbproxystate.DestinationRuleHeader
}
var file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_depIdxs = [ ] int32 {
1 , // 0: hashicorp.consul.mesh.v2beta1.pbproxystate.TrafficPermissions.allow_permissions:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Permission
1 , // 1: hashicorp.consul.mesh.v2beta1.pbproxystate.TrafficPermissions.deny_permissions:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Permission
2 , // 2: hashicorp.consul.mesh.v2beta1.pbproxystate.Permission.principals:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Principal
3 , // 3: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal.spiffe:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
3 , // 4: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal.exclude_spiffes:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
5 , // [5:5] is the sub-list for method output_type
5 , // [5:5] is the sub-list for method input_type
5 , // [5:5] is the sub-list for extension type_name
5 , // [5:5] is the sub-list for extension extendee
0 , // [0:5] is the sub-list for field type_name
4 , // 3: hashicorp.consul.mesh.v2beta1.pbproxystate.Permission.destination_rules:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.DestinationRule
3 , // 4: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal.spiffe:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
3 , // 5: hashicorp.consul.mesh.v2beta1.pbproxystate.Principal.exclude_spiffes:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.Spiffe
5 , // 6: hashicorp.consul.mesh.v2beta1.pbproxystate.DestinationRule.destination_rule_header:type_name -> hashicorp.consul.mesh.v2beta1.pbproxystate.DestinationRuleHeader
7 , // [7:7] is the sub-list for method output_type
7 , // [7:7] is the sub-list for method input_type
7 , // [7:7] is the sub-list for extension type_name
7 , // [7:7] is the sub-list for extension extendee
0 , // [0:7] is the sub-list for field type_name
}
func init ( ) { file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_init ( ) }
@ -407,6 +630,30 @@ func file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_init() {
return nil
}
}
file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 4 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * DestinationRule ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_msgTypes [ 5 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * DestinationRuleHeader ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
}
type x struct { }
out := protoimpl . TypeBuilder {
@ -414,7 +661,7 @@ func file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_pbmesh_v2beta1_pbproxystate_traffic_permissions_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 4 ,
NumMessages : 6 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,