infrav3

package
v0.2.7 Latest Latest
Warning

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

Go to latest
Published: Feb 28, 2024 License: Apache-2.0 Imports: 11 Imported by: 4

Documentation

Overview

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Code generated by go generate; DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var (
	ClusterNodeState_name = map[int32]string{
		0: "ClusterNodeCreated",
		1: "ClusterNodeNotReady",
		2: "ClusterNodeReady",
	}
	ClusterNodeState_value = map[string]int32{
		"ClusterNodeCreated":  0,
		"ClusterNodeNotReady": 1,
		"ClusterNodeReady":    2,
	}
)

Enum value maps for ClusterNodeState.

View Source
var (
	ClusterConditionType_name = map[int32]string{
		0:  "ClusterBlueprintSync",
		1:  "ClusterApprove",
		2:  "ClusterCheckIn",
		3:  "ClusterNodeSync",
		4:  "ClusterRegister",
		5:  "ClusterNamespaceSync",
		6:  "ClusterReady",
		7:  "ClusterAuxiliaryTaskSync",
		8:  "ClusterBootstrapAgent",
		9:  "ClusterDelete",
		10: "ClusterHealth",
	}
	ClusterConditionType_value = map[string]int32{
		"ClusterBlueprintSync":     0,
		"ClusterApprove":           1,
		"ClusterCheckIn":           2,
		"ClusterNodeSync":          3,
		"ClusterRegister":          4,
		"ClusterNamespaceSync":     5,
		"ClusterReady":             6,
		"ClusterAuxiliaryTaskSync": 7,
		"ClusterBootstrapAgent":    8,
		"ClusterDelete":            9,
		"ClusterHealth":            10,
	}
)

Enum value maps for ClusterConditionType.

View Source
var (
	ClusterShareMode_name = map[int32]string{
		0: "ClusterShareModeNotSet",
		1: "ALL",
		2: "CUSTOM",
	}
	ClusterShareMode_value = map[string]int32{
		"ClusterShareModeNotSet": 0,
		"ALL":                    1,
		"CUSTOM":                 2,
	}
)

Enum value maps for ClusterShareMode.

View Source
var (
	Health_name = map[int32]string{
		0: "EDGE_IGNORE",
		1: "EDGE_HEALTHY",
		2: "EDGE_UNHEALTHY",
		3: "EDGE_DISCONNECTED",
	}
	Health_value = map[string]int32{
		"EDGE_IGNORE":       0,
		"EDGE_HEALTHY":      1,
		"EDGE_UNHEALTHY":    2,
		"EDGE_DISCONNECTED": 3,
	}
)

Enum value maps for Health.

View Source
var (
	ClusterTokenType_name = map[int32]string{
		0: "ClusterBootstrapToken",
	}
	ClusterTokenType_value = map[string]int32{
		"ClusterBootstrapToken": 0,
	}
)

Enum value maps for ClusterTokenType.

View Source
var (
	ClusterTokenState_name = map[int32]string{
		0: "TokenNotUsed",
		1: "TokenUsed",
	}
	ClusterTokenState_value = map[string]int32{
		"TokenNotUsed": 0,
		"TokenUsed":    1,
	}
)

Enum value maps for ClusterTokenState.

View Source
var File_proto_types_infrapb_v3_cluster_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Cluster

type Cluster struct {
	ApiVersion string       `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	Kind       string       `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Metadata   *v3.Metadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Spec       *ClusterSpec `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
	Status     *v3.Status   `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Cluster) Descriptor deprecated

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

Deprecated: Use Cluster.ProtoReflect.Descriptor instead.

func (*Cluster) GetApiVersion

func (x *Cluster) GetApiVersion() string

func (*Cluster) GetKind

func (x *Cluster) GetKind() string

func (*Cluster) GetMetadata

func (x *Cluster) GetMetadata() *v3.Metadata

func (*Cluster) GetSpec

func (x *Cluster) GetSpec() *ClusterSpec

func (*Cluster) GetStatus

func (x *Cluster) GetStatus() *v3.Status

func (*Cluster) ProtoMessage

func (*Cluster) ProtoMessage()

func (*Cluster) ProtoReflect

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

func (*Cluster) Reset

func (x *Cluster) Reset()

func (*Cluster) String

func (x *Cluster) String() string

type ClusterCondition

type ClusterCondition struct {
	Type        ClusterConditionType      `protobuf:"varint,1,opt,name=type,proto3,enum=paralus.dev.types.infra.v3.ClusterConditionType" json:"type,omitempty"`
	Status      v3.ParalusConditionStatus `protobuf:"varint,2,opt,name=status,proto3,enum=paralus.dev.types.common.v3.ParalusConditionStatus" json:"status,omitempty"`
	LastUpdated *timestamppb.Timestamp    `protobuf:"bytes,3,opt,name=lastUpdated,proto3" json:"lastUpdated,omitempty"`
	Reason      string                    `protobuf:"bytes,4,opt,name=reason,proto3" json:"reason,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterCondition) Descriptor deprecated

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

Deprecated: Use ClusterCondition.ProtoReflect.Descriptor instead.

func (*ClusterCondition) GetLastUpdated

func (x *ClusterCondition) GetLastUpdated() *timestamppb.Timestamp

func (*ClusterCondition) GetReason

func (x *ClusterCondition) GetReason() string

func (*ClusterCondition) GetStatus

func (*ClusterCondition) GetType

func (*ClusterCondition) ProtoMessage

func (*ClusterCondition) ProtoMessage()

func (*ClusterCondition) ProtoReflect

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

func (*ClusterCondition) Reset

func (x *ClusterCondition) Reset()

func (*ClusterCondition) String

func (x *ClusterCondition) String() string

type ClusterConditionType

type ClusterConditionType int32
const (
	ClusterConditionType_ClusterBlueprintSync     ClusterConditionType = 0
	ClusterConditionType_ClusterApprove           ClusterConditionType = 1
	ClusterConditionType_ClusterCheckIn           ClusterConditionType = 2
	ClusterConditionType_ClusterNodeSync          ClusterConditionType = 3
	ClusterConditionType_ClusterRegister          ClusterConditionType = 4
	ClusterConditionType_ClusterNamespaceSync     ClusterConditionType = 5
	ClusterConditionType_ClusterReady             ClusterConditionType = 6
	ClusterConditionType_ClusterAuxiliaryTaskSync ClusterConditionType = 7
	ClusterConditionType_ClusterBootstrapAgent    ClusterConditionType = 8
	ClusterConditionType_ClusterDelete            ClusterConditionType = 9
	ClusterConditionType_ClusterHealth            ClusterConditionType = 10
)

func (ClusterConditionType) Descriptor

func (ClusterConditionType) Enum

func (ClusterConditionType) EnumDescriptor deprecated

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

Deprecated: Use ClusterConditionType.Descriptor instead.

func (ClusterConditionType) IsEnum

func (e ClusterConditionType) IsEnum()

implement proto enum interface

func (ClusterConditionType) MarshalJSON

func (e ClusterConditionType) MarshalJSON() ([]byte, error)

MarshalJSON converts ClusterConditionType to JSON

func (ClusterConditionType) MarshalYAML added in v0.2.6

func (e ClusterConditionType) MarshalYAML() (interface{}, error)

MarshalYAML implements the yaml.Marshaler interface

func (ClusterConditionType) Number

func (*ClusterConditionType) Scan

func (e *ClusterConditionType) Scan(value interface{}) error

Scan converts database string to ClusterConditionType

func (ClusterConditionType) String

func (x ClusterConditionType) String() string

func (ClusterConditionType) Type

func (*ClusterConditionType) UnmarshalJSON

func (e *ClusterConditionType) UnmarshalJSON(b []byte) error

UnmarshalJSON converts ClusterConditionType from JSON

func (*ClusterConditionType) UnmarshalYAML added in v0.2.6

func (e *ClusterConditionType) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements the yaml.Unmarshaler interface

func (ClusterConditionType) Value

func (e ClusterConditionType) Value() (driver.Value, error)

Value converts ClusterConditionType into database string

type ClusterData

type ClusterData struct {
	Provider         string            `protobuf:"bytes,1,opt,name=provider,proto3" json:"provider,omitempty"`
	Passphrase       string            `protobuf:"bytes,2,opt,name=passphrase,proto3" json:"passphrase,omitempty"`
	Cname            string            `protobuf:"bytes,3,opt,name=cname,proto3" json:"cname,omitempty"`
	Arecord          string            `protobuf:"bytes,4,opt,name=arecord,proto3" json:"arecord,omitempty"`
	DisplayName      string            `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Health           Health            `protobuf:"varint,6,opt,name=health,proto3,enum=paralus.dev.types.infra.v3.Health" json:"health,omitempty"`
	Manufacturer     string            `protobuf:"bytes,7,opt,name=manufacturer,proto3" json:"manufacturer,omitempty"`
	ClusterBlueprint string            `protobuf:"bytes,8,opt,name=cluster_blueprint,json=clusterBlueprint,proto3" json:"cluster_blueprint,omitempty"`
	Nodes            []*ClusterNode    `protobuf:"bytes,9,rep,name=nodes,proto3" json:"nodes,omitempty"`
	Projects         []*ProjectCluster `protobuf:"bytes,10,rep,name=projects,proto3" json:"projects,omitempty"`
	ClusterStatus    *ClusterStatus    `protobuf:"bytes,11,opt,name=cluster_status,json=clusterStatus,proto3" json:"cluster_status,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterData) Descriptor deprecated

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

Deprecated: Use ClusterData.ProtoReflect.Descriptor instead.

func (*ClusterData) GetArecord

func (x *ClusterData) GetArecord() string

func (*ClusterData) GetClusterBlueprint

func (x *ClusterData) GetClusterBlueprint() string

func (*ClusterData) GetClusterStatus

func (x *ClusterData) GetClusterStatus() *ClusterStatus

func (*ClusterData) GetCname

func (x *ClusterData) GetCname() string

func (*ClusterData) GetDisplayName

func (x *ClusterData) GetDisplayName() string

func (*ClusterData) GetHealth

func (x *ClusterData) GetHealth() Health

func (*ClusterData) GetManufacturer

func (x *ClusterData) GetManufacturer() string

func (*ClusterData) GetNodes

func (x *ClusterData) GetNodes() []*ClusterNode

func (*ClusterData) GetPassphrase

func (x *ClusterData) GetPassphrase() string

func (*ClusterData) GetProjects

func (x *ClusterData) GetProjects() []*ProjectCluster

func (*ClusterData) GetProvider

func (x *ClusterData) GetProvider() string

func (*ClusterData) ProtoMessage

func (*ClusterData) ProtoMessage()

func (*ClusterData) ProtoReflect

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

func (*ClusterData) Reset

func (x *ClusterData) Reset()

func (*ClusterData) String

func (x *ClusterData) String() string

type ClusterList

type ClusterList struct {
	ApiVersion string           `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	Kind       string           `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Metadata   *v3.ListMetadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Items      []*Cluster       `protobuf:"bytes,4,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterList) Descriptor deprecated

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

Deprecated: Use ClusterList.ProtoReflect.Descriptor instead.

func (*ClusterList) GetApiVersion

func (x *ClusterList) GetApiVersion() string

func (*ClusterList) GetItems

func (x *ClusterList) GetItems() []*Cluster

func (*ClusterList) GetKind

func (x *ClusterList) GetKind() string

func (*ClusterList) GetMetadata

func (x *ClusterList) GetMetadata() *v3.ListMetadata

func (*ClusterList) ProtoMessage

func (*ClusterList) ProtoMessage()

func (*ClusterList) ProtoReflect

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

func (*ClusterList) Reset

func (x *ClusterList) Reset()

func (*ClusterList) String

func (x *ClusterList) String() string

type ClusterNode

type ClusterNode struct {
	Metadata *v3.Metadata       `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Spec     *ClusterNodeSpec   `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	Status   *ClusterNodeStatus `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterNode) Descriptor deprecated

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

Deprecated: Use ClusterNode.ProtoReflect.Descriptor instead.

func (*ClusterNode) GetMetadata

func (x *ClusterNode) GetMetadata() *v3.Metadata

func (*ClusterNode) GetSpec

func (x *ClusterNode) GetSpec() *ClusterNodeSpec

func (*ClusterNode) GetStatus

func (x *ClusterNode) GetStatus() *ClusterNodeStatus

func (*ClusterNode) ProtoMessage

func (*ClusterNode) ProtoMessage()

func (*ClusterNode) ProtoReflect

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

func (*ClusterNode) Reset

func (x *ClusterNode) Reset()

func (*ClusterNode) String

func (x *ClusterNode) String() string

type ClusterNodeIP

type ClusterNodeIP struct {
	PrivateIP string `protobuf:"bytes,1,opt,name=privateIP,proto3" json:"privateIP,omitempty"`
	PublicIP  string `protobuf:"bytes,2,opt,name=publicIP,proto3" json:"publicIP,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterNodeIP) Descriptor deprecated

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

Deprecated: Use ClusterNodeIP.ProtoReflect.Descriptor instead.

func (*ClusterNodeIP) GetPrivateIP

func (x *ClusterNodeIP) GetPrivateIP() string

func (*ClusterNodeIP) GetPublicIP

func (x *ClusterNodeIP) GetPublicIP() string

func (*ClusterNodeIP) ProtoMessage

func (*ClusterNodeIP) ProtoMessage()

func (*ClusterNodeIP) ProtoReflect

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

func (*ClusterNodeIP) Reset

func (x *ClusterNodeIP) Reset()

func (*ClusterNodeIP) String

func (x *ClusterNodeIP) String() string

type ClusterNodeSpec

type ClusterNodeSpec struct {
	Unschedulable bool        `protobuf:"varint,1,opt,name=unschedulable,proto3" json:"unschedulable,omitempty"`
	Taints        []*v1.Taint `protobuf:"bytes,2,rep,name=taints,proto3" json:"taints,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterNodeSpec) Descriptor deprecated

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

Deprecated: Use ClusterNodeSpec.ProtoReflect.Descriptor instead.

func (*ClusterNodeSpec) GetTaints

func (x *ClusterNodeSpec) GetTaints() []*v1.Taint

func (*ClusterNodeSpec) GetUnschedulable

func (x *ClusterNodeSpec) GetUnschedulable() bool

func (*ClusterNodeSpec) ProtoMessage

func (*ClusterNodeSpec) ProtoMessage()

func (*ClusterNodeSpec) ProtoReflect

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

func (*ClusterNodeSpec) Reset

func (x *ClusterNodeSpec) Reset()

func (*ClusterNodeSpec) String

func (x *ClusterNodeSpec) String() string

type ClusterNodeState

type ClusterNodeState int32
const (
	ClusterNodeState_ClusterNodeCreated  ClusterNodeState = 0
	ClusterNodeState_ClusterNodeNotReady ClusterNodeState = 1
	ClusterNodeState_ClusterNodeReady    ClusterNodeState = 2
)

func (ClusterNodeState) Descriptor

func (ClusterNodeState) Enum

func (ClusterNodeState) EnumDescriptor deprecated

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

Deprecated: Use ClusterNodeState.Descriptor instead.

func (ClusterNodeState) IsEnum

func (e ClusterNodeState) IsEnum()

implement proto enum interface

func (ClusterNodeState) MarshalJSON

func (e ClusterNodeState) MarshalJSON() ([]byte, error)

MarshalJSON converts ClusterNodeState to JSON

func (ClusterNodeState) MarshalYAML added in v0.2.6

func (e ClusterNodeState) MarshalYAML() (interface{}, error)

MarshalYAML implements the yaml.Marshaler interface

func (ClusterNodeState) Number

func (*ClusterNodeState) Scan

func (e *ClusterNodeState) Scan(value interface{}) error

Scan converts database string to ClusterNodeState

func (ClusterNodeState) String

func (x ClusterNodeState) String() string

func (ClusterNodeState) Type

func (*ClusterNodeState) UnmarshalJSON

func (e *ClusterNodeState) UnmarshalJSON(b []byte) error

UnmarshalJSON converts ClusterNodeState from JSON

func (*ClusterNodeState) UnmarshalYAML added in v0.2.6

func (e *ClusterNodeState) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements the yaml.Unmarshaler interface

func (ClusterNodeState) Value

func (e ClusterNodeState) Value() (driver.Value, error)

Value converts ClusterNodeState into database string

type ClusterNodeStatus

type ClusterNodeStatus struct {
	State       ClusterNodeState    `protobuf:"varint,1,opt,name=state,proto3,enum=paralus.dev.types.infra.v3.ClusterNodeState" json:"state,omitempty"`
	Conditions  []*v1.NodeCondition `protobuf:"bytes,2,rep,name=conditions,proto3" json:"conditions,omitempty"`
	NodeInfo    *v1.NodeSystemInfo  `protobuf:"bytes,3,opt,name=nodeInfo,proto3" json:"nodeInfo,omitempty"`
	Capacity    *Resources          `protobuf:"bytes,4,opt,name=capacity,proto3" json:"capacity,omitempty"`
	Allocatable *Resources          `protobuf:"bytes,5,opt,name=allocatable,proto3" json:"allocatable,omitempty"`
	Allocated   *Resources          `protobuf:"bytes,6,opt,name=allocated,proto3" json:"allocated,omitempty"`
	Ips         []*ClusterNodeIP    `protobuf:"bytes,7,rep,name=ips,proto3" json:"ips,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterNodeStatus) Descriptor deprecated

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

Deprecated: Use ClusterNodeStatus.ProtoReflect.Descriptor instead.

func (*ClusterNodeStatus) GetAllocatable

func (x *ClusterNodeStatus) GetAllocatable() *Resources

func (*ClusterNodeStatus) GetAllocated

func (x *ClusterNodeStatus) GetAllocated() *Resources

func (*ClusterNodeStatus) GetCapacity

func (x *ClusterNodeStatus) GetCapacity() *Resources

func (*ClusterNodeStatus) GetConditions

func (x *ClusterNodeStatus) GetConditions() []*v1.NodeCondition

func (*ClusterNodeStatus) GetIps

func (x *ClusterNodeStatus) GetIps() []*ClusterNodeIP

func (*ClusterNodeStatus) GetNodeInfo

func (x *ClusterNodeStatus) GetNodeInfo() *v1.NodeSystemInfo

func (*ClusterNodeStatus) GetState

func (x *ClusterNodeStatus) GetState() ClusterNodeState

func (*ClusterNodeStatus) ProtoMessage

func (*ClusterNodeStatus) ProtoMessage()

func (*ClusterNodeStatus) ProtoReflect

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

func (*ClusterNodeStatus) Reset

func (x *ClusterNodeStatus) Reset()

func (*ClusterNodeStatus) String

func (x *ClusterNodeStatus) String() string

type ClusterShareMode

type ClusterShareMode int32
const (
	ClusterShareMode_ClusterShareModeNotSet ClusterShareMode = 0
	ClusterShareMode_ALL                    ClusterShareMode = 1
	ClusterShareMode_CUSTOM                 ClusterShareMode = 2
)

func (ClusterShareMode) Descriptor

func (ClusterShareMode) Enum

func (ClusterShareMode) EnumDescriptor deprecated

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

Deprecated: Use ClusterShareMode.Descriptor instead.

func (ClusterShareMode) IsEnum

func (e ClusterShareMode) IsEnum()

implement proto enum interface

func (ClusterShareMode) MarshalJSON

func (e ClusterShareMode) MarshalJSON() ([]byte, error)

MarshalJSON converts ClusterShareMode to JSON

func (ClusterShareMode) MarshalYAML added in v0.2.6

func (e ClusterShareMode) MarshalYAML() (interface{}, error)

MarshalYAML implements the yaml.Marshaler interface

func (ClusterShareMode) Number

func (*ClusterShareMode) Scan

func (e *ClusterShareMode) Scan(value interface{}) error

Scan converts database string to ClusterShareMode

func (ClusterShareMode) String

func (x ClusterShareMode) String() string

func (ClusterShareMode) Type

func (*ClusterShareMode) UnmarshalJSON

func (e *ClusterShareMode) UnmarshalJSON(b []byte) error

UnmarshalJSON converts ClusterShareMode from JSON

func (*ClusterShareMode) UnmarshalYAML added in v0.2.6

func (e *ClusterShareMode) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements the yaml.Unmarshaler interface

func (ClusterShareMode) Value

func (e ClusterShareMode) Value() (driver.Value, error)

Value converts ClusterShareMode into database string

type ClusterSpec

type ClusterSpec struct {
	ClusterType      string           `protobuf:"bytes,1,opt,name=clusterType,proto3" json:"clusterType,omitempty"`
	Metro            *Metro           `protobuf:"bytes,2,opt,name=metro,proto3" json:"metro,omitempty"`
	OverrideSelector string           `protobuf:"bytes,3,opt,name=overrideSelector,proto3" json:"overrideSelector,omitempty"`
	Params           *ProvisionParams `protobuf:"bytes,4,opt,name=params,proto3" json:"params,omitempty"`
	ShareMode        ClusterShareMode `protobuf:"varint,5,opt,name=shareMode,proto3,enum=paralus.dev.types.infra.v3.ClusterShareMode" json:"shareMode,omitempty"`
	ProxyConfig      *ProxyConfig     `protobuf:"bytes,6,opt,name=proxyConfig,proto3" json:"proxyConfig,omitempty"`
	ClusterData      *ClusterData     `protobuf:"bytes,7,opt,name=clusterData,proto3" json:"clusterData,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterSpec) Descriptor deprecated

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

Deprecated: Use ClusterSpec.ProtoReflect.Descriptor instead.

func (*ClusterSpec) GetClusterData

func (x *ClusterSpec) GetClusterData() *ClusterData

func (*ClusterSpec) GetClusterType

func (x *ClusterSpec) GetClusterType() string

func (*ClusterSpec) GetMetro

func (x *ClusterSpec) GetMetro() *Metro

func (*ClusterSpec) GetOverrideSelector

func (x *ClusterSpec) GetOverrideSelector() string

func (*ClusterSpec) GetParams

func (x *ClusterSpec) GetParams() *ProvisionParams

func (*ClusterSpec) GetProxyConfig

func (x *ClusterSpec) GetProxyConfig() *ProxyConfig

func (*ClusterSpec) GetShareMode

func (x *ClusterSpec) GetShareMode() ClusterShareMode

func (*ClusterSpec) ProtoMessage

func (*ClusterSpec) ProtoMessage()

func (*ClusterSpec) ProtoReflect

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

func (*ClusterSpec) Reset

func (x *ClusterSpec) Reset()

func (*ClusterSpec) String

func (x *ClusterSpec) String() string

type ClusterStatus

type ClusterStatus struct {
	Conditions         []*ClusterCondition `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Token              string              `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	PublishedBlueprint string              `protobuf:"bytes,3,opt,name=publishedBlueprint,proto3" json:"publishedBlueprint,omitempty"`
	SystemTaskCount    int64               `protobuf:"zigzag64,4,opt,name=systemTaskCount,proto3" json:"systemTaskCount,omitempty"`
	CustomTaskCount    int64               `protobuf:"zigzag64,5,opt,name=customTaskCount,proto3" json:"customTaskCount,omitempty"`
	AuxiliaryTaskCount int64               `protobuf:"zigzag64,6,opt,name=auxiliaryTaskCount,proto3" json:"auxiliaryTaskCount,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterStatus) Descriptor deprecated

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

Deprecated: Use ClusterStatus.ProtoReflect.Descriptor instead.

func (*ClusterStatus) GetAuxiliaryTaskCount

func (x *ClusterStatus) GetAuxiliaryTaskCount() int64

func (*ClusterStatus) GetConditions

func (x *ClusterStatus) GetConditions() []*ClusterCondition

func (*ClusterStatus) GetCustomTaskCount

func (x *ClusterStatus) GetCustomTaskCount() int64

func (*ClusterStatus) GetPublishedBlueprint

func (x *ClusterStatus) GetPublishedBlueprint() string

func (*ClusterStatus) GetSystemTaskCount

func (x *ClusterStatus) GetSystemTaskCount() int64

func (*ClusterStatus) GetToken

func (x *ClusterStatus) GetToken() string

func (*ClusterStatus) ProtoMessage

func (*ClusterStatus) ProtoMessage()

func (*ClusterStatus) ProtoReflect

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

func (*ClusterStatus) Reset

func (x *ClusterStatus) Reset()

func (*ClusterStatus) String

func (x *ClusterStatus) String() string

type ClusterToken

type ClusterToken struct {
	ApiVersion string              `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	Kind       string              `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Metadata   *v3.Metadata        `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Spec       *ClusterTokenSpec   `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
	Status     *ClusterTokenStatus `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterToken) Descriptor deprecated

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

Deprecated: Use ClusterToken.ProtoReflect.Descriptor instead.

func (*ClusterToken) GetApiVersion

func (x *ClusterToken) GetApiVersion() string

func (*ClusterToken) GetKind

func (x *ClusterToken) GetKind() string

func (*ClusterToken) GetMetadata

func (x *ClusterToken) GetMetadata() *v3.Metadata

func (*ClusterToken) GetSpec

func (x *ClusterToken) GetSpec() *ClusterTokenSpec

func (*ClusterToken) GetStatus

func (x *ClusterToken) GetStatus() *ClusterTokenStatus

func (*ClusterToken) ProtoMessage

func (*ClusterToken) ProtoMessage()

func (*ClusterToken) ProtoReflect

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

func (*ClusterToken) Reset

func (x *ClusterToken) Reset()

func (*ClusterToken) String

func (x *ClusterToken) String() string

type ClusterTokenSpec

type ClusterTokenSpec struct {
	TokenType ClusterTokenType `protobuf:"varint,1,opt,name=tokenType,proto3,enum=paralus.dev.types.infra.v3.ClusterTokenType" json:"tokenType,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterTokenSpec) Descriptor deprecated

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

Deprecated: Use ClusterTokenSpec.ProtoReflect.Descriptor instead.

func (*ClusterTokenSpec) GetTokenType

func (x *ClusterTokenSpec) GetTokenType() ClusterTokenType

func (*ClusterTokenSpec) ProtoMessage

func (*ClusterTokenSpec) ProtoMessage()

func (*ClusterTokenSpec) ProtoReflect

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

func (*ClusterTokenSpec) Reset

func (x *ClusterTokenSpec) Reset()

func (*ClusterTokenSpec) String

func (x *ClusterTokenSpec) String() string

type ClusterTokenState

type ClusterTokenState int32
const (
	ClusterTokenState_TokenNotUsed ClusterTokenState = 0
	ClusterTokenState_TokenUsed    ClusterTokenState = 1
)

func (ClusterTokenState) Descriptor

func (ClusterTokenState) Enum

func (ClusterTokenState) EnumDescriptor deprecated

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

Deprecated: Use ClusterTokenState.Descriptor instead.

func (ClusterTokenState) IsEnum

func (e ClusterTokenState) IsEnum()

implement proto enum interface

func (ClusterTokenState) MarshalJSON

func (e ClusterTokenState) MarshalJSON() ([]byte, error)

MarshalJSON converts ClusterTokenState to JSON

func (ClusterTokenState) MarshalYAML added in v0.2.6

func (e ClusterTokenState) MarshalYAML() (interface{}, error)

MarshalYAML implements the yaml.Marshaler interface

func (ClusterTokenState) Number

func (*ClusterTokenState) Scan

func (e *ClusterTokenState) Scan(value interface{}) error

Scan converts database string to ClusterTokenState

func (ClusterTokenState) String

func (x ClusterTokenState) String() string

func (ClusterTokenState) Type

func (*ClusterTokenState) UnmarshalJSON

func (e *ClusterTokenState) UnmarshalJSON(b []byte) error

UnmarshalJSON converts ClusterTokenState from JSON

func (*ClusterTokenState) UnmarshalYAML added in v0.2.6

func (e *ClusterTokenState) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements the yaml.Unmarshaler interface

func (ClusterTokenState) Value

func (e ClusterTokenState) Value() (driver.Value, error)

Value converts ClusterTokenState into database string

type ClusterTokenStatus

type ClusterTokenStatus struct {
	State ClusterTokenState `protobuf:"varint,1,opt,name=state,proto3,enum=paralus.dev.types.infra.v3.ClusterTokenState" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterTokenStatus) Descriptor deprecated

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

Deprecated: Use ClusterTokenStatus.ProtoReflect.Descriptor instead.

func (*ClusterTokenStatus) GetState

func (x *ClusterTokenStatus) GetState() ClusterTokenState

func (*ClusterTokenStatus) ProtoMessage

func (*ClusterTokenStatus) ProtoMessage()

func (*ClusterTokenStatus) ProtoReflect

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

func (*ClusterTokenStatus) Reset

func (x *ClusterTokenStatus) Reset()

func (*ClusterTokenStatus) String

func (x *ClusterTokenStatus) String() string

type ClusterTokenType

type ClusterTokenType int32
const (
	ClusterTokenType_ClusterBootstrapToken ClusterTokenType = 0
)

func (ClusterTokenType) Descriptor

func (ClusterTokenType) Enum

func (ClusterTokenType) EnumDescriptor deprecated

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

Deprecated: Use ClusterTokenType.Descriptor instead.

func (ClusterTokenType) IsEnum

func (e ClusterTokenType) IsEnum()

implement proto enum interface

func (ClusterTokenType) MarshalJSON

func (e ClusterTokenType) MarshalJSON() ([]byte, error)

MarshalJSON converts ClusterTokenType to JSON

func (ClusterTokenType) MarshalYAML added in v0.2.6

func (e ClusterTokenType) MarshalYAML() (interface{}, error)

MarshalYAML implements the yaml.Marshaler interface

func (ClusterTokenType) Number

func (*ClusterTokenType) Scan

func (e *ClusterTokenType) Scan(value interface{}) error

Scan converts database string to ClusterTokenType

func (ClusterTokenType) String

func (x ClusterTokenType) String() string

func (ClusterTokenType) Type

func (*ClusterTokenType) UnmarshalJSON

func (e *ClusterTokenType) UnmarshalJSON(b []byte) error

UnmarshalJSON converts ClusterTokenType from JSON

func (*ClusterTokenType) UnmarshalYAML added in v0.2.6

func (e *ClusterTokenType) UnmarshalYAML(unmarshal func(interface{}) error) error

UnmarshalYAML implements the yaml.Unmarshaler interface

func (ClusterTokenType) Value

func (e ClusterTokenType) Value() (driver.Value, error)

Value converts ClusterTokenType into database string

type Health

type Health int32
const (
	Health_EDGE_IGNORE       Health = 0
	Health_EDGE_HEALTHY      Health = 1
	Health_EDGE_UNHEALTHY    Health = 2
	Health_EDGE_DISCONNECTED Health = 3
)

func (Health) Descriptor

func (Health) Descriptor() protoreflect.EnumDescriptor

func (Health) Enum

func (x Health) Enum() *Health

func (Health) EnumDescriptor deprecated

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

Deprecated: Use Health.Descriptor instead.

func (Health) Number

func (x Health) Number() protoreflect.EnumNumber

func (Health) String

func (x Health) String() string

func (Health) Type

func (Health) Type() protoreflect.EnumType

type Location

type Location struct {
	ApiVersion string       `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	Kind       string       `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Metadata   *v3.Metadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Spec       *Metro       `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty"`
	Status     *v3.Status   `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Location) Descriptor deprecated

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

Deprecated: Use Location.ProtoReflect.Descriptor instead.

func (*Location) GetApiVersion

func (x *Location) GetApiVersion() string

func (*Location) GetKind

func (x *Location) GetKind() string

func (*Location) GetMetadata

func (x *Location) GetMetadata() *v3.Metadata

func (*Location) GetSpec

func (x *Location) GetSpec() *Metro

func (*Location) GetStatus

func (x *Location) GetStatus() *v3.Status

func (*Location) ProtoMessage

func (*Location) ProtoMessage()

func (*Location) ProtoReflect

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

func (*Location) Reset

func (x *Location) Reset()

func (*Location) String

func (x *Location) String() string

type LocationList

type LocationList struct {
	ApiVersion string           `protobuf:"bytes,1,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
	Kind       string           `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Metadata   *v3.ListMetadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	Items      []*Metro         `protobuf:"bytes,4,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*LocationList) Descriptor deprecated

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

Deprecated: Use LocationList.ProtoReflect.Descriptor instead.

func (*LocationList) GetApiVersion

func (x *LocationList) GetApiVersion() string

func (*LocationList) GetItems

func (x *LocationList) GetItems() []*Metro

func (*LocationList) GetKind

func (x *LocationList) GetKind() string

func (*LocationList) GetMetadata

func (x *LocationList) GetMetadata() *v3.ListMetadata

func (*LocationList) ProtoMessage

func (*LocationList) ProtoMessage()

func (*LocationList) ProtoReflect

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

func (*LocationList) Reset

func (x *LocationList) Reset()

func (*LocationList) String

func (x *LocationList) String() string

type Metro

type Metro struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	City        string `protobuf:"bytes,3,opt,name=city,proto3" json:"city,omitempty"`
	State       string `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	Country     string `protobuf:"bytes,5,opt,name=country,proto3" json:"country,omitempty"`
	Locale      string `protobuf:"bytes,6,opt,name=locale,proto3" json:"locale,omitempty"`
	Latitude    string `protobuf:"bytes,7,opt,name=latitude,proto3" json:"latitude,omitempty"`
	Longitude   string `protobuf:"bytes,8,opt,name=longitude,proto3" json:"longitude,omitempty"`
	CountryCode string `protobuf:"bytes,9,opt,name=countryCode,proto3" json:"countryCode,omitempty"`
	StateCode   string `protobuf:"bytes,10,opt,name=stateCode,proto3" json:"stateCode,omitempty"`
	// contains filtered or unexported fields
}

func (*Metro) Descriptor deprecated

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

Deprecated: Use Metro.ProtoReflect.Descriptor instead.

func (*Metro) GetCity

func (x *Metro) GetCity() string

func (*Metro) GetCountry

func (x *Metro) GetCountry() string

func (*Metro) GetCountryCode

func (x *Metro) GetCountryCode() string

func (*Metro) GetId

func (x *Metro) GetId() string

func (*Metro) GetLatitude

func (x *Metro) GetLatitude() string

func (*Metro) GetLocale

func (x *Metro) GetLocale() string

func (*Metro) GetLongitude

func (x *Metro) GetLongitude() string

func (*Metro) GetName

func (x *Metro) GetName() string

func (*Metro) GetState

func (x *Metro) GetState() string

func (*Metro) GetStateCode

func (x *Metro) GetStateCode() string

func (*Metro) ProtoMessage

func (*Metro) ProtoMessage()

func (*Metro) ProtoReflect

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

func (*Metro) Reset

func (x *Metro) Reset()

func (*Metro) String

func (x *Metro) String() string

type NameHash

type NameHash struct {
	Name     string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Hash     string `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	Deleting bool   `protobuf:"varint,3,opt,name=deleting,proto3" json:"deleting,omitempty"`
	// contains filtered or unexported fields
}

func (*NameHash) Descriptor deprecated

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

Deprecated: Use NameHash.ProtoReflect.Descriptor instead.

func (*NameHash) GetDeleting

func (x *NameHash) GetDeleting() bool

func (*NameHash) GetHash

func (x *NameHash) GetHash() string

func (*NameHash) GetName

func (x *NameHash) GetName() string

func (*NameHash) ProtoMessage

func (*NameHash) ProtoMessage()

func (*NameHash) ProtoReflect

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

func (*NameHash) Reset

func (x *NameHash) Reset()

func (*NameHash) String

func (x *NameHash) String() string

type ProjectCluster

type ProjectCluster struct {
	ProjectID string `protobuf:"bytes,1,opt,name=projectID,proto3" json:"projectID,omitempty"`
	ClusterID string `protobuf:"bytes,2,opt,name=clusterID,proto3" json:"clusterID,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectCluster) Descriptor deprecated

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

Deprecated: Use ProjectCluster.ProtoReflect.Descriptor instead.

func (*ProjectCluster) GetClusterID

func (x *ProjectCluster) GetClusterID() string

func (*ProjectCluster) GetProjectID

func (x *ProjectCluster) GetProjectID() string

func (*ProjectCluster) ProtoMessage

func (*ProjectCluster) ProtoMessage()

func (*ProjectCluster) ProtoReflect

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

func (*ProjectCluster) Reset

func (x *ProjectCluster) Reset()

func (*ProjectCluster) String

func (x *ProjectCluster) String() string

type ProvisionParams

type ProvisionParams struct {
	EnvironmentProvider  string `protobuf:"bytes,1,opt,name=environmentProvider,proto3" json:"environmentProvider,omitempty"`
	KubernetesProvider   string `protobuf:"bytes,2,opt,name=kubernetesProvider,proto3" json:"kubernetesProvider,omitempty"`
	ProvisionEnvironment string `protobuf:"bytes,3,opt,name=provisionEnvironment,proto3" json:"provisionEnvironment,omitempty"`
	ProvisionPackageType string `protobuf:"bytes,4,opt,name=provisionPackageType,proto3" json:"provisionPackageType,omitempty"`
	ProvisionType        string `protobuf:"bytes,5,opt,name=provisionType,proto3" json:"provisionType,omitempty"`
	State                string `protobuf:"bytes,6,opt,name=state,proto3" json:"state,omitempty"`
	// contains filtered or unexported fields
}

func (*ProvisionParams) Descriptor deprecated

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

Deprecated: Use ProvisionParams.ProtoReflect.Descriptor instead.

func (*ProvisionParams) GetEnvironmentProvider

func (x *ProvisionParams) GetEnvironmentProvider() string

func (*ProvisionParams) GetKubernetesProvider

func (x *ProvisionParams) GetKubernetesProvider() string

func (*ProvisionParams) GetProvisionEnvironment

func (x *ProvisionParams) GetProvisionEnvironment() string

func (*ProvisionParams) GetProvisionPackageType

func (x *ProvisionParams) GetProvisionPackageType() string

func (*ProvisionParams) GetProvisionType

func (x *ProvisionParams) GetProvisionType() string

func (*ProvisionParams) GetState

func (x *ProvisionParams) GetState() string

func (*ProvisionParams) ProtoMessage

func (*ProvisionParams) ProtoMessage()

func (*ProvisionParams) ProtoReflect

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

func (*ProvisionParams) Reset

func (x *ProvisionParams) Reset()

func (*ProvisionParams) String

func (x *ProvisionParams) String() string

type ProxyConfig

type ProxyConfig struct {
	HttpProxy              string `protobuf:"bytes,1,opt,name=httpProxy,proto3" json:"httpProxy,omitempty"`
	HttpsProxy             string `protobuf:"bytes,2,opt,name=httpsProxy,proto3" json:"httpsProxy,omitempty"`
	NoProxy                string `protobuf:"bytes,3,opt,name=noProxy,proto3" json:"noProxy,omitempty"`
	ProxyAuth              string `protobuf:"bytes,4,opt,name=proxyAuth,proto3" json:"proxyAuth,omitempty"`
	AllowInsecureBootstrap bool   `protobuf:"varint,5,opt,name=allowInsecureBootstrap,proto3" json:"allowInsecureBootstrap,omitempty"`
	Enabled                bool   `protobuf:"varint,6,opt,name=enabled,proto3" json:"enabled,omitempty"`
	BootstrapCA            string `protobuf:"bytes,7,opt,name=bootstrapCA,proto3" json:"bootstrapCA,omitempty"`
	// contains filtered or unexported fields
}

func (*ProxyConfig) Descriptor deprecated

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

Deprecated: Use ProxyConfig.ProtoReflect.Descriptor instead.

func (*ProxyConfig) GetAllowInsecureBootstrap

func (x *ProxyConfig) GetAllowInsecureBootstrap() bool

func (*ProxyConfig) GetBootstrapCA

func (x *ProxyConfig) GetBootstrapCA() string

func (*ProxyConfig) GetEnabled

func (x *ProxyConfig) GetEnabled() bool

func (*ProxyConfig) GetHttpProxy

func (x *ProxyConfig) GetHttpProxy() string

func (*ProxyConfig) GetHttpsProxy

func (x *ProxyConfig) GetHttpsProxy() string

func (*ProxyConfig) GetNoProxy

func (x *ProxyConfig) GetNoProxy() string

func (*ProxyConfig) GetProxyAuth

func (x *ProxyConfig) GetProxyAuth() string

func (*ProxyConfig) ProtoMessage

func (*ProxyConfig) ProtoMessage()

func (*ProxyConfig) ProtoReflect

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

func (*ProxyConfig) Reset

func (x *ProxyConfig) Reset()

func (*ProxyConfig) String

func (x *ProxyConfig) String() string

type Resources

type Resources struct {
	CpuCount           int64 `protobuf:"zigzag64,1,opt,name=cpuCount,proto3" json:"cpuCount,omitempty"`
	EphemeralStorageKB int64 `protobuf:"zigzag64,2,opt,name=ephemeralStorageKB,proto3" json:"ephemeralStorageKB,omitempty"`
	MemoryKB           int64 `protobuf:"zigzag64,3,opt,name=memoryKB,proto3" json:"memoryKB,omitempty"`
	PodsCount          int64 `protobuf:"zigzag64,4,opt,name=podsCount,proto3" json:"podsCount,omitempty"`
	GpuCount           int64 `protobuf:"zigzag64,5,opt,name=gpuCount,proto3" json:"gpuCount,omitempty"`
	// contains filtered or unexported fields
}

func (*Resources) Descriptor deprecated

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

Deprecated: Use Resources.ProtoReflect.Descriptor instead.

func (*Resources) GetCpuCount

func (x *Resources) GetCpuCount() int64

func (*Resources) GetEphemeralStorageKB

func (x *Resources) GetEphemeralStorageKB() int64

func (*Resources) GetGpuCount

func (x *Resources) GetGpuCount() int64

func (*Resources) GetMemoryKB

func (x *Resources) GetMemoryKB() int64

func (*Resources) GetPodsCount

func (x *Resources) GetPodsCount() int64

func (*Resources) ProtoMessage

func (*Resources) ProtoMessage()

func (*Resources) ProtoReflect

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

func (*Resources) Reset

func (x *Resources) Reset()

func (*Resources) String

func (x *Resources) String() string

Jump to

Keyboard shortcuts

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