The new `PlunginInfo()` call can be used for instrospecting the details
of the runtime plugin.
```console
$ ctr plugins inspect-runtime --runtime=io.containerd.runc.v2 --runc-binary=runc
{
    "Name": "io.containerd.runc.v2",
    "Version": {
        "Version": "v2.0.0-beta.0-XX-gXXXXXXXXX.m",
        "Revision": "v2.0.0-beta.0-XX-gXXXXXXXXX.m"
    },
    "Options": {
        "binary_name": "runc"
    },
    "Features": {
        "ociVersionMin": "1.0.0",
        "ociVersionMax": "1.1.0-rc.2",
        ...,
    },
    "Annotations": null
}
```
The shim binary has to support `-info` flag, see `runtime/v2/README.md`
Replaces PR 8509 (`api/services/task: add RuntimeInfo()`)
Co-authored-by: Derek McGowan <derek@mcg.dev>
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
		
	
		
			
				
	
	
		
			376 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			376 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//
 | 
						|
//Copyright The containerd Authors.
 | 
						|
//
 | 
						|
//Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
//you may not use this file except in compliance with the License.
 | 
						|
//You may obtain a copy of the License at
 | 
						|
//
 | 
						|
//http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
//Unless required by applicable law or agreed to in writing, software
 | 
						|
//distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
//See the License for the specific language governing permissions and
 | 
						|
//limitations under the License.
 | 
						|
 | 
						|
// Code generated by protoc-gen-go. DO NOT EDIT.
 | 
						|
// versions:
 | 
						|
// 	protoc-gen-go v1.28.1
 | 
						|
// 	protoc        v3.20.1
 | 
						|
// source: github.com/containerd/containerd/api/types/introspection.proto
 | 
						|
 | 
						|
package types
 | 
						|
 | 
						|
import (
 | 
						|
	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
 | 
						|
	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
 | 
						|
	anypb "google.golang.org/protobuf/types/known/anypb"
 | 
						|
	reflect "reflect"
 | 
						|
	sync "sync"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	// Verify that this generated code is sufficiently up-to-date.
 | 
						|
	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
 | 
						|
	// Verify that runtime/protoimpl is sufficiently up-to-date.
 | 
						|
	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
 | 
						|
)
 | 
						|
 | 
						|
type RuntimeRequest struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	RuntimePath string `protobuf:"bytes,1,opt,name=runtime_path,json=runtimePath,proto3" json:"runtime_path,omitempty"`
 | 
						|
	// Options correspond to CreateTaskRequest.options.
 | 
						|
	// This is needed to pass the runc binary path, etc.
 | 
						|
	Options *anypb.Any `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeRequest) Reset() {
 | 
						|
	*x = RuntimeRequest{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[0]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeRequest) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*RuntimeRequest) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *RuntimeRequest) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[0]
 | 
						|
	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 RuntimeRequest.ProtoReflect.Descriptor instead.
 | 
						|
func (*RuntimeRequest) Descriptor() ([]byte, []int) {
 | 
						|
	return file_github_com_containerd_containerd_api_types_introspection_proto_rawDescGZIP(), []int{0}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeRequest) GetRuntimePath() string {
 | 
						|
	if x != nil {
 | 
						|
		return x.RuntimePath
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeRequest) GetOptions() *anypb.Any {
 | 
						|
	if x != nil {
 | 
						|
		return x.Options
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
type RuntimeVersion struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	Version  string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
 | 
						|
	Revision string `protobuf:"bytes,2,opt,name=revision,proto3" json:"revision,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeVersion) Reset() {
 | 
						|
	*x = RuntimeVersion{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[1]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeVersion) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*RuntimeVersion) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *RuntimeVersion) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[1]
 | 
						|
	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 RuntimeVersion.ProtoReflect.Descriptor instead.
 | 
						|
func (*RuntimeVersion) Descriptor() ([]byte, []int) {
 | 
						|
	return file_github_com_containerd_containerd_api_types_introspection_proto_rawDescGZIP(), []int{1}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeVersion) GetVersion() string {
 | 
						|
	if x != nil {
 | 
						|
		return x.Version
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeVersion) GetRevision() string {
 | 
						|
	if x != nil {
 | 
						|
		return x.Revision
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
type RuntimeInfo struct {
 | 
						|
	state         protoimpl.MessageState
 | 
						|
	sizeCache     protoimpl.SizeCache
 | 
						|
	unknownFields protoimpl.UnknownFields
 | 
						|
 | 
						|
	Name    string          `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
 | 
						|
	Version *RuntimeVersion `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
 | 
						|
	// Options correspond to RuntimeInfoRequest.Options (contains runc binary path, etc.)
 | 
						|
	Options *anypb.Any `protobuf:"bytes,3,opt,name=options,proto3" json:"options,omitempty"`
 | 
						|
	// OCI-compatible runtimes should use https://github.com/opencontainers/runtime-spec/blob/main/features.md
 | 
						|
	Features *anypb.Any `protobuf:"bytes,4,opt,name=features,proto3" json:"features,omitempty"`
 | 
						|
	// Annotations of the shim. Irrelevant to features.Annotations.
 | 
						|
	Annotations map[string]string `protobuf:"bytes,5,rep,name=annotations,proto3" json:"annotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) Reset() {
 | 
						|
	*x = RuntimeInfo{}
 | 
						|
	if protoimpl.UnsafeEnabled {
 | 
						|
		mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[2]
 | 
						|
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 | 
						|
		ms.StoreMessageInfo(mi)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) String() string {
 | 
						|
	return protoimpl.X.MessageStringOf(x)
 | 
						|
}
 | 
						|
 | 
						|
func (*RuntimeInfo) ProtoMessage() {}
 | 
						|
 | 
						|
func (x *RuntimeInfo) ProtoReflect() protoreflect.Message {
 | 
						|
	mi := &file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[2]
 | 
						|
	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 RuntimeInfo.ProtoReflect.Descriptor instead.
 | 
						|
func (*RuntimeInfo) Descriptor() ([]byte, []int) {
 | 
						|
	return file_github_com_containerd_containerd_api_types_introspection_proto_rawDescGZIP(), []int{2}
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) GetName() string {
 | 
						|
	if x != nil {
 | 
						|
		return x.Name
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) GetVersion() *RuntimeVersion {
 | 
						|
	if x != nil {
 | 
						|
		return x.Version
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) GetOptions() *anypb.Any {
 | 
						|
	if x != nil {
 | 
						|
		return x.Options
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) GetFeatures() *anypb.Any {
 | 
						|
	if x != nil {
 | 
						|
		return x.Features
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (x *RuntimeInfo) GetAnnotations() map[string]string {
 | 
						|
	if x != nil {
 | 
						|
		return x.Annotations
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
var File_github_com_containerd_containerd_api_types_introspection_proto protoreflect.FileDescriptor
 | 
						|
 | 
						|
var file_github_com_containerd_containerd_api_types_introspection_proto_rawDesc = []byte{
 | 
						|
	0x0a, 0x3e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x6e,
 | 
						|
	0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
 | 
						|
	0x72, 0x64, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x69, 0x6e, 0x74,
 | 
						|
	0x72, 0x6f, 0x73, 0x70, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
 | 
						|
	0x12, 0x10, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x74, 0x79, 0x70,
 | 
						|
	0x65, 0x73, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
 | 
						|
	0x62, 0x75, 0x66, 0x2f, 0x61, 0x6e, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x63, 0x0a,
 | 
						|
	0x0e, 0x52, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
 | 
						|
	0x21, 0x0a, 0x0c, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18,
 | 
						|
	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x50, 0x61,
 | 
						|
	0x74, 0x68, 0x12, 0x2e, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20,
 | 
						|
	0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
 | 
						|
	0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f,
 | 
						|
	0x6e, 0x73, 0x22, 0x46, 0x0a, 0x0e, 0x52, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x65, 0x72,
 | 
						|
	0x73, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
 | 
						|
	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
 | 
						|
	0x0a, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
 | 
						|
	0x52, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xd1, 0x02, 0x0a, 0x0b, 0x52,
 | 
						|
	0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
 | 
						|
	0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3a,
 | 
						|
	0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
 | 
						|
	0x20, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x74, 0x79, 0x70,
 | 
						|
	0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
 | 
						|
	0x6e, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x07, 0x6f, 0x70,
 | 
						|
	0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67, 0x6f,
 | 
						|
	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x6e,
 | 
						|
	0x79, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x0a, 0x08, 0x66, 0x65,
 | 
						|
	0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x67,
 | 
						|
	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41,
 | 
						|
	0x6e, 0x79, 0x52, 0x08, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0b,
 | 
						|
	0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
 | 
						|
	0x0b, 0x32, 0x2e, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2e, 0x74,
 | 
						|
	0x79, 0x70, 0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, 0x74, 0x69, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f,
 | 
						|
	0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,
 | 
						|
	0x79, 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3e,
 | 
						|
	0x0a, 0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74,
 | 
						|
	0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
 | 
						|
	0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
 | 
						|
	0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x35,
 | 
						|
	0x5a, 0x33, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x6e,
 | 
						|
	0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65,
 | 
						|
	0x72, 0x64, 0x2f, 0x76, 0x32, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x3b,
 | 
						|
	0x74, 0x79, 0x70, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | 
						|
}
 | 
						|
 | 
						|
var (
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_rawDescOnce sync.Once
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_rawDescData = file_github_com_containerd_containerd_api_types_introspection_proto_rawDesc
 | 
						|
)
 | 
						|
 | 
						|
func file_github_com_containerd_containerd_api_types_introspection_proto_rawDescGZIP() []byte {
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_rawDescOnce.Do(func() {
 | 
						|
		file_github_com_containerd_containerd_api_types_introspection_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_containerd_containerd_api_types_introspection_proto_rawDescData)
 | 
						|
	})
 | 
						|
	return file_github_com_containerd_containerd_api_types_introspection_proto_rawDescData
 | 
						|
}
 | 
						|
 | 
						|
var file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
 | 
						|
var file_github_com_containerd_containerd_api_types_introspection_proto_goTypes = []interface{}{
 | 
						|
	(*RuntimeRequest)(nil), // 0: containerd.types.RuntimeRequest
 | 
						|
	(*RuntimeVersion)(nil), // 1: containerd.types.RuntimeVersion
 | 
						|
	(*RuntimeInfo)(nil),    // 2: containerd.types.RuntimeInfo
 | 
						|
	nil,                    // 3: containerd.types.RuntimeInfo.AnnotationsEntry
 | 
						|
	(*anypb.Any)(nil),      // 4: google.protobuf.Any
 | 
						|
}
 | 
						|
var file_github_com_containerd_containerd_api_types_introspection_proto_depIdxs = []int32{
 | 
						|
	4, // 0: containerd.types.RuntimeRequest.options:type_name -> google.protobuf.Any
 | 
						|
	1, // 1: containerd.types.RuntimeInfo.version:type_name -> containerd.types.RuntimeVersion
 | 
						|
	4, // 2: containerd.types.RuntimeInfo.options:type_name -> google.protobuf.Any
 | 
						|
	4, // 3: containerd.types.RuntimeInfo.features:type_name -> google.protobuf.Any
 | 
						|
	3, // 4: containerd.types.RuntimeInfo.annotations:type_name -> containerd.types.RuntimeInfo.AnnotationsEntry
 | 
						|
	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
 | 
						|
}
 | 
						|
 | 
						|
func init() { file_github_com_containerd_containerd_api_types_introspection_proto_init() }
 | 
						|
func file_github_com_containerd_containerd_api_types_introspection_proto_init() {
 | 
						|
	if File_github_com_containerd_containerd_api_types_introspection_proto != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	if !protoimpl.UnsafeEnabled {
 | 
						|
		file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*RuntimeRequest); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*RuntimeVersion); i {
 | 
						|
			case 0:
 | 
						|
				return &v.state
 | 
						|
			case 1:
 | 
						|
				return &v.sizeCache
 | 
						|
			case 2:
 | 
						|
				return &v.unknownFields
 | 
						|
			default:
 | 
						|
				return nil
 | 
						|
			}
 | 
						|
		}
 | 
						|
		file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
 | 
						|
			switch v := v.(*RuntimeInfo); 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{
 | 
						|
		File: protoimpl.DescBuilder{
 | 
						|
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | 
						|
			RawDescriptor: file_github_com_containerd_containerd_api_types_introspection_proto_rawDesc,
 | 
						|
			NumEnums:      0,
 | 
						|
			NumMessages:   4,
 | 
						|
			NumExtensions: 0,
 | 
						|
			NumServices:   0,
 | 
						|
		},
 | 
						|
		GoTypes:           file_github_com_containerd_containerd_api_types_introspection_proto_goTypes,
 | 
						|
		DependencyIndexes: file_github_com_containerd_containerd_api_types_introspection_proto_depIdxs,
 | 
						|
		MessageInfos:      file_github_com_containerd_containerd_api_types_introspection_proto_msgTypes,
 | 
						|
	}.Build()
 | 
						|
	File_github_com_containerd_containerd_api_types_introspection_proto = out.File
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_rawDesc = nil
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_goTypes = nil
 | 
						|
	file_github_com_containerd_containerd_api_types_introspection_proto_depIdxs = nil
 | 
						|
}
 |