...

Source file src/github.com/datawire/ambassador/v2/pkg/api/envoy/admin/v4alpha/init_dump.pb.go

Documentation: github.com/datawire/ambassador/v2/pkg/api/envoy/admin/v4alpha

     1  // Code generated by protoc-gen-go. DO NOT EDIT.
     2  // versions:
     3  // 	protoc-gen-go v1.25.0
     4  // 	protoc        v3.14.0
     5  // source: envoy/admin/v4alpha/init_dump.proto
     6  
     7  package envoy_admin_v4alpha
     8  
     9  import (
    10  	_ "github.com/cncf/udpa/go/udpa/annotations"
    11  	proto "github.com/golang/protobuf/proto"
    12  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    13  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    14  	reflect "reflect"
    15  	sync "sync"
    16  )
    17  
    18  const (
    19  	// Verify that this generated code is sufficiently up-to-date.
    20  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    21  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    22  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    23  )
    24  
    25  // This is a compile-time assertion that a sufficiently up-to-date version
    26  // of the legacy proto package is being used.
    27  const _ = proto.ProtoPackageIsVersion4
    28  
    29  // Dumps of unready targets of envoy init managers. Envoy's admin fills this message with init managers,
    30  // which provides the information of their unready targets.
    31  // The :ref:`/init_dump <operations_admin_interface_init_dump>` will dump all unready targets information.
    32  type UnreadyTargetsDumps struct {
    33  	state         protoimpl.MessageState
    34  	sizeCache     protoimpl.SizeCache
    35  	unknownFields protoimpl.UnknownFields
    36  
    37  	// You can choose specific component to dump unready targets with mask query parameter.
    38  	// See :ref:`/init_dump?mask={} <operations_admin_interface_init_dump_by_mask>` for more information.
    39  	// The dumps of unready targets of all init managers.
    40  	UnreadyTargetsDumps []*UnreadyTargetsDumps_UnreadyTargetsDump `protobuf:"bytes,1,rep,name=unready_targets_dumps,json=unreadyTargetsDumps,proto3" json:"unready_targets_dumps,omitempty"`
    41  }
    42  
    43  func (x *UnreadyTargetsDumps) Reset() {
    44  	*x = UnreadyTargetsDumps{}
    45  	if protoimpl.UnsafeEnabled {
    46  		mi := &file_envoy_admin_v4alpha_init_dump_proto_msgTypes[0]
    47  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    48  		ms.StoreMessageInfo(mi)
    49  	}
    50  }
    51  
    52  func (x *UnreadyTargetsDumps) String() string {
    53  	return protoimpl.X.MessageStringOf(x)
    54  }
    55  
    56  func (*UnreadyTargetsDumps) ProtoMessage() {}
    57  
    58  func (x *UnreadyTargetsDumps) ProtoReflect() protoreflect.Message {
    59  	mi := &file_envoy_admin_v4alpha_init_dump_proto_msgTypes[0]
    60  	if protoimpl.UnsafeEnabled && x != nil {
    61  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    62  		if ms.LoadMessageInfo() == nil {
    63  			ms.StoreMessageInfo(mi)
    64  		}
    65  		return ms
    66  	}
    67  	return mi.MessageOf(x)
    68  }
    69  
    70  // Deprecated: Use UnreadyTargetsDumps.ProtoReflect.Descriptor instead.
    71  func (*UnreadyTargetsDumps) Descriptor() ([]byte, []int) {
    72  	return file_envoy_admin_v4alpha_init_dump_proto_rawDescGZIP(), []int{0}
    73  }
    74  
    75  func (x *UnreadyTargetsDumps) GetUnreadyTargetsDumps() []*UnreadyTargetsDumps_UnreadyTargetsDump {
    76  	if x != nil {
    77  		return x.UnreadyTargetsDumps
    78  	}
    79  	return nil
    80  }
    81  
    82  // Message of unready targets information of an init manager.
    83  type UnreadyTargetsDumps_UnreadyTargetsDump struct {
    84  	state         protoimpl.MessageState
    85  	sizeCache     protoimpl.SizeCache
    86  	unknownFields protoimpl.UnknownFields
    87  
    88  	// Name of the init manager. Example: "init_manager_xxx".
    89  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    90  	// Names of unready targets of the init manager. Example: "target_xxx".
    91  	TargetNames []string `protobuf:"bytes,2,rep,name=target_names,json=targetNames,proto3" json:"target_names,omitempty"`
    92  }
    93  
    94  func (x *UnreadyTargetsDumps_UnreadyTargetsDump) Reset() {
    95  	*x = UnreadyTargetsDumps_UnreadyTargetsDump{}
    96  	if protoimpl.UnsafeEnabled {
    97  		mi := &file_envoy_admin_v4alpha_init_dump_proto_msgTypes[1]
    98  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    99  		ms.StoreMessageInfo(mi)
   100  	}
   101  }
   102  
   103  func (x *UnreadyTargetsDumps_UnreadyTargetsDump) String() string {
   104  	return protoimpl.X.MessageStringOf(x)
   105  }
   106  
   107  func (*UnreadyTargetsDumps_UnreadyTargetsDump) ProtoMessage() {}
   108  
   109  func (x *UnreadyTargetsDumps_UnreadyTargetsDump) ProtoReflect() protoreflect.Message {
   110  	mi := &file_envoy_admin_v4alpha_init_dump_proto_msgTypes[1]
   111  	if protoimpl.UnsafeEnabled && x != nil {
   112  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   113  		if ms.LoadMessageInfo() == nil {
   114  			ms.StoreMessageInfo(mi)
   115  		}
   116  		return ms
   117  	}
   118  	return mi.MessageOf(x)
   119  }
   120  
   121  // Deprecated: Use UnreadyTargetsDumps_UnreadyTargetsDump.ProtoReflect.Descriptor instead.
   122  func (*UnreadyTargetsDumps_UnreadyTargetsDump) Descriptor() ([]byte, []int) {
   123  	return file_envoy_admin_v4alpha_init_dump_proto_rawDescGZIP(), []int{0, 0}
   124  }
   125  
   126  func (x *UnreadyTargetsDumps_UnreadyTargetsDump) GetName() string {
   127  	if x != nil {
   128  		return x.Name
   129  	}
   130  	return ""
   131  }
   132  
   133  func (x *UnreadyTargetsDumps_UnreadyTargetsDump) GetTargetNames() []string {
   134  	if x != nil {
   135  		return x.TargetNames
   136  	}
   137  	return nil
   138  }
   139  
   140  var File_envoy_admin_v4alpha_init_dump_proto protoreflect.FileDescriptor
   141  
   142  var file_envoy_admin_v4alpha_init_dump_proto_rawDesc = []byte{
   143  	0x0a, 0x23, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2f, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2f, 0x76, 0x34,
   144  	0x61, 0x6c, 0x70, 0x68, 0x61, 0x2f, 0x69, 0x6e, 0x69, 0x74, 0x5f, 0x64, 0x75, 0x6d, 0x70, 0x2e,
   145  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x13, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d,
   146  	0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x1a, 0x1d, 0x75, 0x64, 0x70, 0x61,
   147  	0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x73, 0x74, 0x61,
   148  	0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x21, 0x75, 0x64, 0x70, 0x61, 0x2f,
   149  	0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x76, 0x65, 0x72, 0x73,
   150  	0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbd, 0x02, 0x0a,
   151  	0x13, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44,
   152  	0x75, 0x6d, 0x70, 0x73, 0x12, 0x6f, 0x0a, 0x15, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x5f,
   153  	0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x5f, 0x64, 0x75, 0x6d, 0x70, 0x73, 0x18, 0x01, 0x20,
   154  	0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69,
   155  	0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
   156  	0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d, 0x70, 0x73, 0x2e, 0x55, 0x6e,
   157  	0x72, 0x65, 0x61, 0x64, 0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d, 0x70,
   158  	0x52, 0x13, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73,
   159  	0x44, 0x75, 0x6d, 0x70, 0x73, 0x1a, 0x89, 0x01, 0x0a, 0x12, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
   160  	0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04,
   161  	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
   162  	0x12, 0x21, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73,
   163  	0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4e, 0x61,
   164  	0x6d, 0x65, 0x73, 0x3a, 0x3c, 0x9a, 0xc5, 0x88, 0x1e, 0x37, 0x0a, 0x35, 0x65, 0x6e, 0x76, 0x6f,
   165  	0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61,
   166  	0x64, 0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d, 0x70, 0x73, 0x2e, 0x55,
   167  	0x6e, 0x72, 0x65, 0x61, 0x64, 0x79, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d,
   168  	0x70, 0x3a, 0x29, 0x9a, 0xc5, 0x88, 0x1e, 0x24, 0x0a, 0x22, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x2e,
   169  	0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x33, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x79,
   170  	0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x44, 0x75, 0x6d, 0x70, 0x73, 0x42, 0x3c, 0x0a, 0x21,
   171  	0x69, 0x6f, 0x2e, 0x65, 0x6e, 0x76, 0x6f, 0x79, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x65, 0x6e,
   172  	0x76, 0x6f, 0x79, 0x2e, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x2e, 0x76, 0x34, 0x61, 0x6c, 0x70, 0x68,
   173  	0x61, 0x42, 0x0d, 0x49, 0x6e, 0x69, 0x74, 0x44, 0x75, 0x6d, 0x70, 0x50, 0x72, 0x6f, 0x74, 0x6f,
   174  	0x50, 0x01, 0xba, 0x80, 0xc8, 0xd1, 0x06, 0x02, 0x10, 0x03, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
   175  	0x6f, 0x33,
   176  }
   177  
   178  var (
   179  	file_envoy_admin_v4alpha_init_dump_proto_rawDescOnce sync.Once
   180  	file_envoy_admin_v4alpha_init_dump_proto_rawDescData = file_envoy_admin_v4alpha_init_dump_proto_rawDesc
   181  )
   182  
   183  func file_envoy_admin_v4alpha_init_dump_proto_rawDescGZIP() []byte {
   184  	file_envoy_admin_v4alpha_init_dump_proto_rawDescOnce.Do(func() {
   185  		file_envoy_admin_v4alpha_init_dump_proto_rawDescData = protoimpl.X.CompressGZIP(file_envoy_admin_v4alpha_init_dump_proto_rawDescData)
   186  	})
   187  	return file_envoy_admin_v4alpha_init_dump_proto_rawDescData
   188  }
   189  
   190  var file_envoy_admin_v4alpha_init_dump_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
   191  var file_envoy_admin_v4alpha_init_dump_proto_goTypes = []interface{}{
   192  	(*UnreadyTargetsDumps)(nil),                    // 0: envoy.admin.v4alpha.UnreadyTargetsDumps
   193  	(*UnreadyTargetsDumps_UnreadyTargetsDump)(nil), // 1: envoy.admin.v4alpha.UnreadyTargetsDumps.UnreadyTargetsDump
   194  }
   195  var file_envoy_admin_v4alpha_init_dump_proto_depIdxs = []int32{
   196  	1, // 0: envoy.admin.v4alpha.UnreadyTargetsDumps.unready_targets_dumps:type_name -> envoy.admin.v4alpha.UnreadyTargetsDumps.UnreadyTargetsDump
   197  	1, // [1:1] is the sub-list for method output_type
   198  	1, // [1:1] is the sub-list for method input_type
   199  	1, // [1:1] is the sub-list for extension type_name
   200  	1, // [1:1] is the sub-list for extension extendee
   201  	0, // [0:1] is the sub-list for field type_name
   202  }
   203  
   204  func init() { file_envoy_admin_v4alpha_init_dump_proto_init() }
   205  func file_envoy_admin_v4alpha_init_dump_proto_init() {
   206  	if File_envoy_admin_v4alpha_init_dump_proto != nil {
   207  		return
   208  	}
   209  	if !protoimpl.UnsafeEnabled {
   210  		file_envoy_admin_v4alpha_init_dump_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   211  			switch v := v.(*UnreadyTargetsDumps); i {
   212  			case 0:
   213  				return &v.state
   214  			case 1:
   215  				return &v.sizeCache
   216  			case 2:
   217  				return &v.unknownFields
   218  			default:
   219  				return nil
   220  			}
   221  		}
   222  		file_envoy_admin_v4alpha_init_dump_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   223  			switch v := v.(*UnreadyTargetsDumps_UnreadyTargetsDump); i {
   224  			case 0:
   225  				return &v.state
   226  			case 1:
   227  				return &v.sizeCache
   228  			case 2:
   229  				return &v.unknownFields
   230  			default:
   231  				return nil
   232  			}
   233  		}
   234  	}
   235  	type x struct{}
   236  	out := protoimpl.TypeBuilder{
   237  		File: protoimpl.DescBuilder{
   238  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   239  			RawDescriptor: file_envoy_admin_v4alpha_init_dump_proto_rawDesc,
   240  			NumEnums:      0,
   241  			NumMessages:   2,
   242  			NumExtensions: 0,
   243  			NumServices:   0,
   244  		},
   245  		GoTypes:           file_envoy_admin_v4alpha_init_dump_proto_goTypes,
   246  		DependencyIndexes: file_envoy_admin_v4alpha_init_dump_proto_depIdxs,
   247  		MessageInfos:      file_envoy_admin_v4alpha_init_dump_proto_msgTypes,
   248  	}.Build()
   249  	File_envoy_admin_v4alpha_init_dump_proto = out.File
   250  	file_envoy_admin_v4alpha_init_dump_proto_rawDesc = nil
   251  	file_envoy_admin_v4alpha_init_dump_proto_goTypes = nil
   252  	file_envoy_admin_v4alpha_init_dump_proto_depIdxs = nil
   253  }
   254  

View as plain text