v2

package
v0.0.0-...-2f63041 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 22, 2024 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	FeatureRequirementsInternalService_ValidateFeatureRequirementsInternal_FullMethodName        = "/com.coralogixapis.apm.requirements.v2.FeatureRequirementsInternalService/ValidateFeatureRequirementsInternal"
	FeatureRequirementsInternalService_ListFeatureRequirementsInternalDataSources_FullMethodName = "/com.coralogixapis.apm.requirements.v2.FeatureRequirementsInternalService/ListFeatureRequirementsInternalDataSources"
)
View Source
const (
	FeatureRequirementsService_ValidateFeatureRequirements_FullMethodName        = "/com.coralogixapis.apm.requirements.v2.FeatureRequirementsService/ValidateFeatureRequirements"
	FeatureRequirementsService_ListFeatureRequirementsDataSources_FullMethodName = "/com.coralogixapis.apm.requirements.v2.FeatureRequirementsService/ListFeatureRequirementsDataSources"
)

Variables

View Source
var (
	Feature_name = map[int32]string{
		0: "FEATURE_UNSPECIFIED",
		1: "FEATURE_K8S_DASHBOARD",
	}
	Feature_value = map[string]int32{
		"FEATURE_UNSPECIFIED":   0,
		"FEATURE_K8S_DASHBOARD": 1,
	}
)

Enum value maps for Feature.

View Source
var FeatureRequirementsInternalService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "com.coralogixapis.apm.requirements.v2.FeatureRequirementsInternalService",
	HandlerType: (*FeatureRequirementsInternalServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ValidateFeatureRequirementsInternal",
			Handler:    _FeatureRequirementsInternalService_ValidateFeatureRequirementsInternal_Handler,
		},
		{
			MethodName: "ListFeatureRequirementsInternalDataSources",
			Handler:    _FeatureRequirementsInternalService_ListFeatureRequirementsInternalDataSources_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "com/coralogixapis/apm/requirements/v2/feature_requirements_internal_service.proto",
}

FeatureRequirementsInternalService_ServiceDesc is the grpc.ServiceDesc for FeatureRequirementsInternalService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var FeatureRequirementsService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "com.coralogixapis.apm.requirements.v2.FeatureRequirementsService",
	HandlerType: (*FeatureRequirementsServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ValidateFeatureRequirements",
			Handler:    _FeatureRequirementsService_ValidateFeatureRequirements_Handler,
		},
		{
			MethodName: "ListFeatureRequirementsDataSources",
			Handler:    _FeatureRequirementsService_ListFeatureRequirementsDataSources_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "com/coralogixapis/apm/requirements/v2/feature_requirements_service.proto",
}

FeatureRequirementsService_ServiceDesc is the grpc.ServiceDesc for FeatureRequirementsService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_com_coralogixapis_apm_requirements_v2_data_source_requirements_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_requirements_v2_feature_requirements_internal_service_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_requirements_v2_feature_requirements_service_proto protoreflect.FileDescriptor
View Source
var File_com_coralogixapis_apm_requirements_v2_features_proto protoreflect.FileDescriptor

Functions

func RegisterFeatureRequirementsServiceServer

func RegisterFeatureRequirementsServiceServer(s grpc.ServiceRegistrar, srv FeatureRequirementsServiceServer)

Types

type DataSourceRequirements

type DataSourceRequirements struct {
	DataSource         *v2.DataSource              `protobuf:"bytes,1,opt,name=data_source,json=dataSource,proto3" json:"data_source,omitempty"`
	Requirements       *Requirements               `protobuf:"bytes,2,opt,name=requirements,proto3" json:"requirements,omitempty"`
	PassedRequirements *wrapperspb.BoolValue       `protobuf:"bytes,3,opt,name=passed_requirements,json=passedRequirements,proto3" json:"passed_requirements,omitempty"`
	PageRequirements   map[string]*PageRequirement `` /* 197-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DataSourceRequirements) Descriptor deprecated

func (*DataSourceRequirements) Descriptor() ([]byte, []int)

Deprecated: Use DataSourceRequirements.ProtoReflect.Descriptor instead.

func (*DataSourceRequirements) GetDataSource

func (x *DataSourceRequirements) GetDataSource() *v2.DataSource

func (*DataSourceRequirements) GetPageRequirements

func (x *DataSourceRequirements) GetPageRequirements() map[string]*PageRequirement

func (*DataSourceRequirements) GetPassedRequirements

func (x *DataSourceRequirements) GetPassedRequirements() *wrapperspb.BoolValue

func (*DataSourceRequirements) GetRequirements

func (x *DataSourceRequirements) GetRequirements() *Requirements

func (*DataSourceRequirements) ProtoMessage

func (*DataSourceRequirements) ProtoMessage()

func (*DataSourceRequirements) ProtoReflect

func (x *DataSourceRequirements) ProtoReflect() protoreflect.Message

func (*DataSourceRequirements) Reset

func (x *DataSourceRequirements) Reset()

func (*DataSourceRequirements) String

func (x *DataSourceRequirements) String() string

type Feature

type Feature int32
const (
	Feature_FEATURE_UNSPECIFIED   Feature = 0
	Feature_FEATURE_K8S_DASHBOARD Feature = 1
)

func (Feature) Descriptor

func (Feature) Descriptor() protoreflect.EnumDescriptor

func (Feature) Enum

func (x Feature) Enum() *Feature

func (Feature) EnumDescriptor deprecated

func (Feature) EnumDescriptor() ([]byte, []int)

Deprecated: Use Feature.Descriptor instead.

func (Feature) Number

func (x Feature) Number() protoreflect.EnumNumber

func (Feature) String

func (x Feature) String() string

func (Feature) Type

func (Feature) Type() protoreflect.EnumType

type FeatureRequirementsInternalServiceClient

type FeatureRequirementsInternalServiceClient interface {
	ValidateFeatureRequirementsInternal(ctx context.Context, in *ValidateFeatureRequirementsInternalRequest, opts ...grpc.CallOption) (*ValidateFeatureRequirementsInternalResponse, error)
	ListFeatureRequirementsInternalDataSources(ctx context.Context, in *ListFeatureRequirementsInternalDataSourcesRequest, opts ...grpc.CallOption) (*ListFeatureRequirementsInternalDataSourcesResponse, error)
}

FeatureRequirementsInternalServiceClient is the client API for FeatureRequirementsInternalService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type FeatureRequirementsInternalServiceServer

type FeatureRequirementsInternalServiceServer interface {
	ValidateFeatureRequirementsInternal(context.Context, *ValidateFeatureRequirementsInternalRequest) (*ValidateFeatureRequirementsInternalResponse, error)
	ListFeatureRequirementsInternalDataSources(context.Context, *ListFeatureRequirementsInternalDataSourcesRequest) (*ListFeatureRequirementsInternalDataSourcesResponse, error)
	// contains filtered or unexported methods
}

FeatureRequirementsInternalServiceServer is the server API for FeatureRequirementsInternalService service. All implementations must embed UnimplementedFeatureRequirementsInternalServiceServer for forward compatibility

type FeatureRequirementsServiceClient

type FeatureRequirementsServiceClient interface {
	ValidateFeatureRequirements(ctx context.Context, in *ValidateFeatureRequirementsRequest, opts ...grpc.CallOption) (*ValidateFeatureRequirementsResponse, error)
	ListFeatureRequirementsDataSources(ctx context.Context, in *ListFeatureRequirementsDataSourcesRequest, opts ...grpc.CallOption) (*ListFeatureRequirementsDataSourcesResponse, error)
}

FeatureRequirementsServiceClient is the client API for FeatureRequirementsService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type FeatureRequirementsServiceServer

type FeatureRequirementsServiceServer interface {
	ValidateFeatureRequirements(context.Context, *ValidateFeatureRequirementsRequest) (*ValidateFeatureRequirementsResponse, error)
	ListFeatureRequirementsDataSources(context.Context, *ListFeatureRequirementsDataSourcesRequest) (*ListFeatureRequirementsDataSourcesResponse, error)
	// contains filtered or unexported methods
}

FeatureRequirementsServiceServer is the server API for FeatureRequirementsService service. All implementations must embed UnimplementedFeatureRequirementsServiceServer for forward compatibility

type LabelExistence

type LabelExistence struct {
	Label  *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=label,proto3" json:"label,omitempty"`
	Exists *wrapperspb.BoolValue   `protobuf:"bytes,2,opt,name=exists,proto3" json:"exists,omitempty"`
	// contains filtered or unexported fields
}

func (*LabelExistence) Descriptor deprecated

func (*LabelExistence) Descriptor() ([]byte, []int)

Deprecated: Use LabelExistence.ProtoReflect.Descriptor instead.

func (*LabelExistence) GetExists

func (x *LabelExistence) GetExists() *wrapperspb.BoolValue

func (*LabelExistence) GetLabel

func (x *LabelExistence) GetLabel() *wrapperspb.StringValue

func (*LabelExistence) ProtoMessage

func (*LabelExistence) ProtoMessage()

func (*LabelExistence) ProtoReflect

func (x *LabelExistence) ProtoReflect() protoreflect.Message

func (*LabelExistence) Reset

func (x *LabelExistence) Reset()

func (*LabelExistence) String

func (x *LabelExistence) String() string

type ListFeatureRequirementsDataSourcesRequest

type ListFeatureRequirementsDataSourcesRequest struct {
	Feature Feature `protobuf:"varint,1,opt,name=feature,proto3,enum=com.coralogixapis.apm.requirements.v2.Feature" json:"feature,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFeatureRequirementsDataSourcesRequest) Descriptor deprecated

func (*ListFeatureRequirementsDataSourcesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListFeatureRequirementsDataSourcesRequest.ProtoReflect.Descriptor instead.

func (*ListFeatureRequirementsDataSourcesRequest) GetFeature

func (*ListFeatureRequirementsDataSourcesRequest) ProtoMessage

func (*ListFeatureRequirementsDataSourcesRequest) ProtoReflect

func (*ListFeatureRequirementsDataSourcesRequest) Reset

func (*ListFeatureRequirementsDataSourcesRequest) String

type ListFeatureRequirementsDataSourcesResponse

type ListFeatureRequirementsDataSourcesResponse struct {
	DataSources []*v2.DataSource `protobuf:"bytes,1,rep,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFeatureRequirementsDataSourcesResponse) Descriptor deprecated

Deprecated: Use ListFeatureRequirementsDataSourcesResponse.ProtoReflect.Descriptor instead.

func (*ListFeatureRequirementsDataSourcesResponse) GetDataSources

func (*ListFeatureRequirementsDataSourcesResponse) ProtoMessage

func (*ListFeatureRequirementsDataSourcesResponse) ProtoReflect

func (*ListFeatureRequirementsDataSourcesResponse) Reset

func (*ListFeatureRequirementsDataSourcesResponse) String

type ListFeatureRequirementsInternalDataSourcesRequest

type ListFeatureRequirementsInternalDataSourcesRequest struct {
	Feature Feature `protobuf:"varint,1,opt,name=feature,proto3,enum=com.coralogixapis.apm.requirements.v2.Feature" json:"feature,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFeatureRequirementsInternalDataSourcesRequest) Descriptor deprecated

Deprecated: Use ListFeatureRequirementsInternalDataSourcesRequest.ProtoReflect.Descriptor instead.

func (*ListFeatureRequirementsInternalDataSourcesRequest) GetFeature

func (*ListFeatureRequirementsInternalDataSourcesRequest) ProtoMessage

func (*ListFeatureRequirementsInternalDataSourcesRequest) ProtoReflect

func (*ListFeatureRequirementsInternalDataSourcesRequest) Reset

func (*ListFeatureRequirementsInternalDataSourcesRequest) String

type ListFeatureRequirementsInternalDataSourcesResponse

type ListFeatureRequirementsInternalDataSourcesResponse struct {
	DataSources []*v2.DataSource `protobuf:"bytes,1,rep,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFeatureRequirementsInternalDataSourcesResponse) Descriptor deprecated

Deprecated: Use ListFeatureRequirementsInternalDataSourcesResponse.ProtoReflect.Descriptor instead.

func (*ListFeatureRequirementsInternalDataSourcesResponse) GetDataSources

func (*ListFeatureRequirementsInternalDataSourcesResponse) ProtoMessage

func (*ListFeatureRequirementsInternalDataSourcesResponse) ProtoReflect

func (*ListFeatureRequirementsInternalDataSourcesResponse) Reset

func (*ListFeatureRequirementsInternalDataSourcesResponse) String

type MetricExistence

type MetricExistence struct {
	Metric *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=metric,proto3" json:"metric,omitempty"`
	Exists *wrapperspb.BoolValue   `protobuf:"bytes,2,opt,name=exists,proto3" json:"exists,omitempty"`
	// contains filtered or unexported fields
}

func (*MetricExistence) Descriptor deprecated

func (*MetricExistence) Descriptor() ([]byte, []int)

Deprecated: Use MetricExistence.ProtoReflect.Descriptor instead.

func (*MetricExistence) GetExists

func (x *MetricExistence) GetExists() *wrapperspb.BoolValue

func (*MetricExistence) GetMetric

func (x *MetricExistence) GetMetric() *wrapperspb.StringValue

func (*MetricExistence) ProtoMessage

func (*MetricExistence) ProtoMessage()

func (*MetricExistence) ProtoReflect

func (x *MetricExistence) ProtoReflect() protoreflect.Message

func (*MetricExistence) Reset

func (x *MetricExistence) Reset()

func (*MetricExistence) String

func (x *MetricExistence) String() string

type MetricLabelsExistence

type MetricLabelsExistence struct {
	Metric *wrapperspb.StringValue `protobuf:"bytes,1,opt,name=metric,proto3" json:"metric,omitempty"`
	Labels []*LabelExistence       `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty"`
	// contains filtered or unexported fields
}

func (*MetricLabelsExistence) Descriptor deprecated

func (*MetricLabelsExistence) Descriptor() ([]byte, []int)

Deprecated: Use MetricLabelsExistence.ProtoReflect.Descriptor instead.

func (*MetricLabelsExistence) GetLabels

func (x *MetricLabelsExistence) GetLabels() []*LabelExistence

func (*MetricLabelsExistence) GetMetric

func (*MetricLabelsExistence) ProtoMessage

func (*MetricLabelsExistence) ProtoMessage()

func (*MetricLabelsExistence) ProtoReflect

func (x *MetricLabelsExistence) ProtoReflect() protoreflect.Message

func (*MetricLabelsExistence) Reset

func (x *MetricLabelsExistence) Reset()

func (*MetricLabelsExistence) String

func (x *MetricLabelsExistence) String() string

type MissingNothing

type MissingNothing struct {
	// contains filtered or unexported fields
}

func (*MissingNothing) Descriptor deprecated

func (*MissingNothing) Descriptor() ([]byte, []int)

Deprecated: Use MissingNothing.ProtoReflect.Descriptor instead.

func (*MissingNothing) ProtoMessage

func (*MissingNothing) ProtoMessage()

func (*MissingNothing) ProtoReflect

func (x *MissingNothing) ProtoReflect() protoreflect.Message

func (*MissingNothing) Reset

func (x *MissingNothing) Reset()

func (*MissingNothing) String

func (x *MissingNothing) String() string

type PageRequirement

type PageRequirement struct {
	Requirements       *Requirements         `protobuf:"bytes,1,opt,name=requirements,proto3" json:"requirements,omitempty"`
	PassedRequirements *wrapperspb.BoolValue `protobuf:"bytes,2,opt,name=passed_requirements,json=passedRequirements,proto3" json:"passed_requirements,omitempty"`
	// contains filtered or unexported fields
}

func (*PageRequirement) Descriptor deprecated

func (*PageRequirement) Descriptor() ([]byte, []int)

Deprecated: Use PageRequirement.ProtoReflect.Descriptor instead.

func (*PageRequirement) GetPassedRequirements

func (x *PageRequirement) GetPassedRequirements() *wrapperspb.BoolValue

func (*PageRequirement) GetRequirements

func (x *PageRequirement) GetRequirements() *Requirements

func (*PageRequirement) ProtoMessage

func (*PageRequirement) ProtoMessage()

func (*PageRequirement) ProtoReflect

func (x *PageRequirement) ProtoReflect() protoreflect.Message

func (*PageRequirement) Reset

func (x *PageRequirement) Reset()

func (*PageRequirement) String

func (x *PageRequirement) String() string

type Requirements

type Requirements struct {
	MetricExistence      []*MetricExistence       `protobuf:"bytes,1,rep,name=metric_existence,json=metricExistence,proto3" json:"metric_existence,omitempty"`
	MetricLabelExistence []*MetricLabelsExistence `protobuf:"bytes,2,rep,name=metric_label_existence,json=metricLabelExistence,proto3" json:"metric_label_existence,omitempty"`
	// contains filtered or unexported fields
}

func (*Requirements) Descriptor deprecated

func (*Requirements) Descriptor() ([]byte, []int)

Deprecated: Use Requirements.ProtoReflect.Descriptor instead.

func (*Requirements) GetMetricExistence

func (x *Requirements) GetMetricExistence() []*MetricExistence

func (*Requirements) GetMetricLabelExistence

func (x *Requirements) GetMetricLabelExistence() []*MetricLabelsExistence

func (*Requirements) ProtoMessage

func (*Requirements) ProtoMessage()

func (*Requirements) ProtoReflect

func (x *Requirements) ProtoReflect() protoreflect.Message

func (*Requirements) Reset

func (x *Requirements) Reset()

func (*Requirements) String

func (x *Requirements) String() string

type UnimplementedFeatureRequirementsInternalServiceServer

type UnimplementedFeatureRequirementsInternalServiceServer struct {
}

UnimplementedFeatureRequirementsInternalServiceServer must be embedded to have forward compatible implementations.

type UnimplementedFeatureRequirementsServiceServer

type UnimplementedFeatureRequirementsServiceServer struct {
}

UnimplementedFeatureRequirementsServiceServer must be embedded to have forward compatible implementations.

type UnsafeFeatureRequirementsInternalServiceServer

type UnsafeFeatureRequirementsInternalServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeFeatureRequirementsInternalServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FeatureRequirementsInternalServiceServer will result in compilation errors.

type UnsafeFeatureRequirementsServiceServer

type UnsafeFeatureRequirementsServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeFeatureRequirementsServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to FeatureRequirementsServiceServer will result in compilation errors.

type ValidateFeatureRequirementsInternalRequest

type ValidateFeatureRequirementsInternalRequest struct {
	Feature     Feature          `protobuf:"varint,1,opt,name=feature,proto3,enum=com.coralogixapis.apm.requirements.v2.Feature" json:"feature,omitempty"`
	DataSources []*v2.DataSource `protobuf:"bytes,2,rep,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateFeatureRequirementsInternalRequest) Descriptor deprecated

Deprecated: Use ValidateFeatureRequirementsInternalRequest.ProtoReflect.Descriptor instead.

func (*ValidateFeatureRequirementsInternalRequest) GetDataSources

func (*ValidateFeatureRequirementsInternalRequest) GetFeature

func (*ValidateFeatureRequirementsInternalRequest) ProtoMessage

func (*ValidateFeatureRequirementsInternalRequest) ProtoReflect

func (*ValidateFeatureRequirementsInternalRequest) Reset

func (*ValidateFeatureRequirementsInternalRequest) String

type ValidateFeatureRequirementsInternalResponse

type ValidateFeatureRequirementsInternalResponse struct {
	Requirements []*DataSourceRequirements `protobuf:"bytes,1,rep,name=requirements,proto3" json:"requirements,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateFeatureRequirementsInternalResponse) Descriptor deprecated

Deprecated: Use ValidateFeatureRequirementsInternalResponse.ProtoReflect.Descriptor instead.

func (*ValidateFeatureRequirementsInternalResponse) GetRequirements

func (*ValidateFeatureRequirementsInternalResponse) ProtoMessage

func (*ValidateFeatureRequirementsInternalResponse) ProtoReflect

func (*ValidateFeatureRequirementsInternalResponse) Reset

func (*ValidateFeatureRequirementsInternalResponse) String

type ValidateFeatureRequirementsRequest

type ValidateFeatureRequirementsRequest struct {
	Feature     Feature               `protobuf:"varint,1,opt,name=feature,proto3,enum=com.coralogixapis.apm.requirements.v2.Feature" json:"feature,omitempty"`
	DataSources []*v2.DataSource      `protobuf:"bytes,2,rep,name=data_sources,json=dataSources,proto3" json:"data_sources,omitempty"`
	UseCache    *wrapperspb.BoolValue `protobuf:"bytes,3,opt,name=use_cache,json=useCache,proto3" json:"use_cache,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateFeatureRequirementsRequest) Descriptor deprecated

func (*ValidateFeatureRequirementsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ValidateFeatureRequirementsRequest.ProtoReflect.Descriptor instead.

func (*ValidateFeatureRequirementsRequest) GetDataSources

func (x *ValidateFeatureRequirementsRequest) GetDataSources() []*v2.DataSource

func (*ValidateFeatureRequirementsRequest) GetFeature

func (*ValidateFeatureRequirementsRequest) GetUseCache

func (*ValidateFeatureRequirementsRequest) ProtoMessage

func (*ValidateFeatureRequirementsRequest) ProtoMessage()

func (*ValidateFeatureRequirementsRequest) ProtoReflect

func (*ValidateFeatureRequirementsRequest) Reset

func (*ValidateFeatureRequirementsRequest) String

type ValidateFeatureRequirementsResponse

type ValidateFeatureRequirementsResponse struct {
	Requirements []*DataSourceRequirements `protobuf:"bytes,1,rep,name=requirements,proto3" json:"requirements,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateFeatureRequirementsResponse) Descriptor deprecated

func (*ValidateFeatureRequirementsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ValidateFeatureRequirementsResponse.ProtoReflect.Descriptor instead.

func (*ValidateFeatureRequirementsResponse) GetRequirements

func (*ValidateFeatureRequirementsResponse) ProtoMessage

func (*ValidateFeatureRequirementsResponse) ProtoMessage()

func (*ValidateFeatureRequirementsResponse) ProtoReflect

func (*ValidateFeatureRequirementsResponse) Reset

func (*ValidateFeatureRequirementsResponse) String

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL