v1

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Aug 30, 2024 License: Apache-2.0 Imports: 18 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AppStatus_name = map[int32]string{
		0: "APP_STATUS_UNSPECIFIED",
		1: "APP_STATUS_HEALTHY",
		2: "APP_STATUS_UNHEALTHY",
	}
	AppStatus_value = map[string]int32{
		"APP_STATUS_UNSPECIFIED": 0,
		"APP_STATUS_HEALTHY":     1,
		"APP_STATUS_UNHEALTHY":   2,
	}
)

Enum value maps for AppStatus.

View Source
var File_platform_server_v1_web_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type App added in v0.4.0

type App struct {
	Name        string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name" bun:"name" csv:"name" pg:"name" yaml:"name"`
	Version     string   `protobuf:"bytes,2,opt,name=version,proto3" json:"version" bun:"version" csv:"version" pg:"version" yaml:"version"`
	AppVersion  string   `` /* 153-byte string literal not displayed */
	Description string   `` /* 137-byte string literal not displayed */
	Icon        string   `protobuf:"bytes,5,opt,name=icon,proto3" json:"icon" bun:"icon" csv:"icon" pg:"icon" yaml:"icon"`
	CreatedAt   string   `` /* 146-byte string literal not displayed */
	Digest      string   `protobuf:"bytes,7,opt,name=digest,proto3" json:"digest" bun:"digest" csv:"digest" pg:"digest" yaml:"digest"`
	Type        string   `protobuf:"bytes,8,opt,name=type,proto3" json:"type" bun:"type" csv:"type" pg:"type" yaml:"type"`
	Urls        []string `protobuf:"bytes,9,rep,name=urls,proto3" json:"urls" bun:"urls" csv:"urls" pg:"urls" yaml:"urls"`
	// contains filtered or unexported fields
}

Model used for the store, and installed apps

func (*App) Descriptor deprecated added in v0.4.0

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

Deprecated: Use App.ProtoReflect.Descriptor instead.

func (*App) GetAppVersion added in v0.4.0

func (x *App) GetAppVersion() string

func (*App) GetCreatedAt added in v0.4.0

func (x *App) GetCreatedAt() string

func (*App) GetDescription added in v0.4.0

func (x *App) GetDescription() string

func (*App) GetDigest added in v0.4.0

func (x *App) GetDigest() string

func (*App) GetIcon added in v0.4.0

func (x *App) GetIcon() string

func (*App) GetName added in v0.4.0

func (x *App) GetName() string

func (*App) GetType added in v0.4.0

func (x *App) GetType() string

func (*App) GetUrls added in v0.4.0

func (x *App) GetUrls() []string

func (*App) GetVersion added in v0.4.0

func (x *App) GetVersion() string

func (*App) ProtoMessage added in v0.4.0

func (*App) ProtoMessage()

func (*App) ProtoReflect added in v0.4.0

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

func (*App) Reset added in v0.4.0

func (x *App) Reset()

func (*App) String added in v0.4.0

func (x *App) String() string

func (*App) Validate added in v0.4.0

func (m *App) Validate() error

Validate checks the field values on App with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*App) ValidateAll added in v0.4.0

func (m *App) ValidateAll() error

ValidateAll checks the field values on App with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppMultiError, or nil if none found.

type AppHealth added in v0.3.7

type AppHealth struct {
	Name   string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name" bun:"name" csv:"name" pg:"name" yaml:"name"`
	Status AppStatus `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AppHealth) Descriptor deprecated added in v0.3.7

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

Deprecated: Use AppHealth.ProtoReflect.Descriptor instead.

func (*AppHealth) GetName added in v0.3.7

func (x *AppHealth) GetName() string

func (*AppHealth) GetStatus added in v0.3.7

func (x *AppHealth) GetStatus() AppStatus

func (*AppHealth) ProtoMessage added in v0.3.7

func (*AppHealth) ProtoMessage()

func (*AppHealth) ProtoReflect added in v0.3.7

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

func (*AppHealth) Reset added in v0.3.7

func (x *AppHealth) Reset()

func (*AppHealth) String added in v0.3.7

func (x *AppHealth) String() string

func (*AppHealth) Validate added in v0.3.7

func (m *AppHealth) Validate() error

Validate checks the field values on AppHealth with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppHealth) ValidateAll added in v0.3.7

func (m *AppHealth) ValidateAll() error

ValidateAll checks the field values on AppHealth with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppHealthMultiError, or nil if none found.

type AppHealthMultiError added in v0.3.7

type AppHealthMultiError []error

AppHealthMultiError is an error wrapping multiple validation errors returned by AppHealth.ValidateAll() if the designated constraints aren't met.

func (AppHealthMultiError) AllErrors added in v0.3.7

func (m AppHealthMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppHealthMultiError) Error added in v0.3.7

func (m AppHealthMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AppHealthValidationError added in v0.3.7

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

AppHealthValidationError is the validation error returned by AppHealth.Validate if the designated constraints aren't met.

func (AppHealthValidationError) Cause added in v0.3.7

func (e AppHealthValidationError) Cause() error

Cause function returns cause value.

func (AppHealthValidationError) Error added in v0.3.7

func (e AppHealthValidationError) Error() string

Error satisfies the builtin error interface

func (AppHealthValidationError) ErrorName added in v0.3.7

func (e AppHealthValidationError) ErrorName() string

ErrorName returns error name.

func (AppHealthValidationError) Field added in v0.3.7

func (e AppHealthValidationError) Field() string

Field function returns field value.

func (AppHealthValidationError) Key added in v0.3.7

Key function returns key value.

func (AppHealthValidationError) Reason added in v0.3.7

func (e AppHealthValidationError) Reason() string

Reason function returns reason value.

type AppMultiError added in v0.4.0

type AppMultiError []error

AppMultiError is an error wrapping multiple validation errors returned by App.ValidateAll() if the designated constraints aren't met.

func (AppMultiError) AllErrors added in v0.4.0

func (m AppMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppMultiError) Error added in v0.4.0

func (m AppMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AppRunningStatus added in v0.4.0

type AppRunningStatus struct {
	Name    string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name" bun:"name" csv:"name" pg:"name" yaml:"name"`
	Version string    `protobuf:"bytes,2,opt,name=version,proto3" json:"version" bun:"version" csv:"version" pg:"version" yaml:"version"`
	Status  AppStatus `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AppRunningStatus) Descriptor deprecated added in v0.4.0

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

Deprecated: Use AppRunningStatus.ProtoReflect.Descriptor instead.

func (*AppRunningStatus) GetName added in v0.4.0

func (x *AppRunningStatus) GetName() string

func (*AppRunningStatus) GetStatus added in v0.4.0

func (x *AppRunningStatus) GetStatus() AppStatus

func (*AppRunningStatus) GetVersion added in v0.4.0

func (x *AppRunningStatus) GetVersion() string

func (*AppRunningStatus) ProtoMessage added in v0.4.0

func (*AppRunningStatus) ProtoMessage()

func (*AppRunningStatus) ProtoReflect added in v0.4.0

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

func (*AppRunningStatus) Reset added in v0.4.0

func (x *AppRunningStatus) Reset()

func (*AppRunningStatus) String added in v0.4.0

func (x *AppRunningStatus) String() string

func (*AppRunningStatus) Validate added in v0.4.0

func (m *AppRunningStatus) Validate() error

Validate checks the field values on AppRunningStatus with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppRunningStatus) ValidateAll added in v0.4.0

func (m *AppRunningStatus) ValidateAll() error

ValidateAll checks the field values on AppRunningStatus with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppRunningStatusMultiError, or nil if none found.

type AppRunningStatusMultiError added in v0.4.0

type AppRunningStatusMultiError []error

AppRunningStatusMultiError is an error wrapping multiple validation errors returned by AppRunningStatus.ValidateAll() if the designated constraints aren't met.

func (AppRunningStatusMultiError) AllErrors added in v0.4.0

func (m AppRunningStatusMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppRunningStatusMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type AppRunningStatusValidationError added in v0.4.0

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

AppRunningStatusValidationError is the validation error returned by AppRunningStatus.Validate if the designated constraints aren't met.

func (AppRunningStatusValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (AppRunningStatusValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (AppRunningStatusValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (AppRunningStatusValidationError) Field added in v0.4.0

Field function returns field value.

func (AppRunningStatusValidationError) Key added in v0.4.0

Key function returns key value.

func (AppRunningStatusValidationError) Reason added in v0.4.0

Reason function returns reason value.

type AppStatus added in v0.3.7

type AppStatus int32
const (
	AppStatus_APP_STATUS_UNSPECIFIED AppStatus = 0
	AppStatus_APP_STATUS_HEALTHY     AppStatus = 1
	AppStatus_APP_STATUS_UNHEALTHY   AppStatus = 2
)

func (AppStatus) Descriptor added in v0.3.7

func (AppStatus) Descriptor() protoreflect.EnumDescriptor

func (AppStatus) Enum added in v0.3.7

func (x AppStatus) Enum() *AppStatus

func (AppStatus) EnumDescriptor deprecated added in v0.3.7

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

Deprecated: Use AppStatus.Descriptor instead.

func (AppStatus) Number added in v0.3.7

func (x AppStatus) Number() protoreflect.EnumNumber

func (AppStatus) String added in v0.3.7

func (x AppStatus) String() string

func (AppStatus) Type added in v0.3.7

type AppStoreEntries added in v0.4.0

type AppStoreEntries struct {
	ApiVersion string              `` /* 152-byte string literal not displayed */
	Generated  string              `protobuf:"bytes,2,opt,name=generated,proto3" json:"generated" bun:"generated" csv:"generated" pg:"generated" yaml:"generated"`
	Entries    map[string]*Entries `` /* 201-byte string literal not displayed */
	// contains filtered or unexported fields
}

Model to parse the yaml file for the app's available in the store currently they are stored in a public repo and fetched from there (https://home-cloud-io.github.io/store/index.yaml) A backround thread in the server will fetch the file and update the store first when it starts and then every 24 hours

func (*AppStoreEntries) Descriptor deprecated added in v0.4.0

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

Deprecated: Use AppStoreEntries.ProtoReflect.Descriptor instead.

func (*AppStoreEntries) GetApiVersion added in v0.4.0

func (x *AppStoreEntries) GetApiVersion() string

func (*AppStoreEntries) GetEntries added in v0.4.0

func (x *AppStoreEntries) GetEntries() map[string]*Entries

func (*AppStoreEntries) GetGenerated added in v0.4.0

func (x *AppStoreEntries) GetGenerated() string

func (*AppStoreEntries) ProtoMessage added in v0.4.0

func (*AppStoreEntries) ProtoMessage()

func (*AppStoreEntries) ProtoReflect added in v0.4.0

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

func (*AppStoreEntries) Reset added in v0.4.0

func (x *AppStoreEntries) Reset()

func (*AppStoreEntries) String added in v0.4.0

func (x *AppStoreEntries) String() string

func (*AppStoreEntries) Validate added in v0.4.0

func (m *AppStoreEntries) Validate() error

Validate checks the field values on AppStoreEntries with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppStoreEntries) ValidateAll added in v0.4.0

func (m *AppStoreEntries) ValidateAll() error

ValidateAll checks the field values on AppStoreEntries with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppStoreEntriesMultiError, or nil if none found.

type AppStoreEntriesMultiError added in v0.4.0

type AppStoreEntriesMultiError []error

AppStoreEntriesMultiError is an error wrapping multiple validation errors returned by AppStoreEntries.ValidateAll() if the designated constraints aren't met.

func (AppStoreEntriesMultiError) AllErrors added in v0.4.0

func (m AppStoreEntriesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppStoreEntriesMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type AppStoreEntriesValidationError added in v0.4.0

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

AppStoreEntriesValidationError is the validation error returned by AppStoreEntries.Validate if the designated constraints aren't met.

func (AppStoreEntriesValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (AppStoreEntriesValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (AppStoreEntriesValidationError) ErrorName added in v0.4.0

func (e AppStoreEntriesValidationError) ErrorName() string

ErrorName returns error name.

func (AppStoreEntriesValidationError) Field added in v0.4.0

Field function returns field value.

func (AppStoreEntriesValidationError) Key added in v0.4.0

Key function returns key value.

func (AppStoreEntriesValidationError) Reason added in v0.4.0

Reason function returns reason value.

type AppValidationError added in v0.4.0

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

AppValidationError is the validation error returned by App.Validate if the designated constraints aren't met.

func (AppValidationError) Cause added in v0.4.0

func (e AppValidationError) Cause() error

Cause function returns cause value.

func (AppValidationError) Error added in v0.4.0

func (e AppValidationError) Error() string

Error satisfies the builtin error interface

func (AppValidationError) ErrorName added in v0.4.0

func (e AppValidationError) ErrorName() string

ErrorName returns error name.

func (AppValidationError) Field added in v0.4.0

func (e AppValidationError) Field() string

Field function returns field value.

func (AppValidationError) Key added in v0.4.0

func (e AppValidationError) Key() bool

Key function returns key value.

func (AppValidationError) Reason added in v0.4.0

func (e AppValidationError) Reason() string

Reason function returns reason value.

type AppsHealthCheckRequest added in v0.3.7

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

func (*AppsHealthCheckRequest) Descriptor deprecated added in v0.3.7

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

Deprecated: Use AppsHealthCheckRequest.ProtoReflect.Descriptor instead.

func (*AppsHealthCheckRequest) ProtoMessage added in v0.3.7

func (*AppsHealthCheckRequest) ProtoMessage()

func (*AppsHealthCheckRequest) ProtoReflect added in v0.3.7

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

func (*AppsHealthCheckRequest) Reset added in v0.3.7

func (x *AppsHealthCheckRequest) Reset()

func (*AppsHealthCheckRequest) String added in v0.3.7

func (x *AppsHealthCheckRequest) String() string

func (*AppsHealthCheckRequest) Validate added in v0.3.7

func (m *AppsHealthCheckRequest) Validate() error

Validate checks the field values on AppsHealthCheckRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppsHealthCheckRequest) ValidateAll added in v0.3.7

func (m *AppsHealthCheckRequest) ValidateAll() error

ValidateAll checks the field values on AppsHealthCheckRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppsHealthCheckRequestMultiError, or nil if none found.

type AppsHealthCheckRequestMultiError added in v0.3.7

type AppsHealthCheckRequestMultiError []error

AppsHealthCheckRequestMultiError is an error wrapping multiple validation errors returned by AppsHealthCheckRequest.ValidateAll() if the designated constraints aren't met.

func (AppsHealthCheckRequestMultiError) AllErrors added in v0.3.7

func (m AppsHealthCheckRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppsHealthCheckRequestMultiError) Error added in v0.3.7

Error returns a concatenation of all the error messages it wraps.

type AppsHealthCheckRequestValidationError added in v0.3.7

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

AppsHealthCheckRequestValidationError is the validation error returned by AppsHealthCheckRequest.Validate if the designated constraints aren't met.

func (AppsHealthCheckRequestValidationError) Cause added in v0.3.7

Cause function returns cause value.

func (AppsHealthCheckRequestValidationError) Error added in v0.3.7

Error satisfies the builtin error interface

func (AppsHealthCheckRequestValidationError) ErrorName added in v0.3.7

ErrorName returns error name.

func (AppsHealthCheckRequestValidationError) Field added in v0.3.7

Field function returns field value.

func (AppsHealthCheckRequestValidationError) Key added in v0.3.7

Key function returns key value.

func (AppsHealthCheckRequestValidationError) Reason added in v0.3.7

Reason function returns reason value.

type AppsHealthCheckResponse added in v0.3.7

type AppsHealthCheckResponse struct {
	Checks []*AppHealth `protobuf:"bytes,1,rep,name=checks,proto3" json:"checks" bun:"checks" csv:"checks" pg:"checks" yaml:"checks"`
	// contains filtered or unexported fields
}

func (*AppsHealthCheckResponse) Descriptor deprecated added in v0.3.7

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

Deprecated: Use AppsHealthCheckResponse.ProtoReflect.Descriptor instead.

func (*AppsHealthCheckResponse) GetChecks added in v0.3.7

func (x *AppsHealthCheckResponse) GetChecks() []*AppHealth

func (*AppsHealthCheckResponse) ProtoMessage added in v0.3.7

func (*AppsHealthCheckResponse) ProtoMessage()

func (*AppsHealthCheckResponse) ProtoReflect added in v0.3.7

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

func (*AppsHealthCheckResponse) Reset added in v0.3.7

func (x *AppsHealthCheckResponse) Reset()

func (*AppsHealthCheckResponse) String added in v0.3.7

func (x *AppsHealthCheckResponse) String() string

func (*AppsHealthCheckResponse) Validate added in v0.3.7

func (m *AppsHealthCheckResponse) Validate() error

Validate checks the field values on AppsHealthCheckResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AppsHealthCheckResponse) ValidateAll added in v0.3.7

func (m *AppsHealthCheckResponse) ValidateAll() error

ValidateAll checks the field values on AppsHealthCheckResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AppsHealthCheckResponseMultiError, or nil if none found.

type AppsHealthCheckResponseMultiError added in v0.3.7

type AppsHealthCheckResponseMultiError []error

AppsHealthCheckResponseMultiError is an error wrapping multiple validation errors returned by AppsHealthCheckResponse.ValidateAll() if the designated constraints aren't met.

func (AppsHealthCheckResponseMultiError) AllErrors added in v0.3.7

func (m AppsHealthCheckResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppsHealthCheckResponseMultiError) Error added in v0.3.7

Error returns a concatenation of all the error messages it wraps.

type AppsHealthCheckResponseValidationError added in v0.3.7

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

AppsHealthCheckResponseValidationError is the validation error returned by AppsHealthCheckResponse.Validate if the designated constraints aren't met.

func (AppsHealthCheckResponseValidationError) Cause added in v0.3.7

Cause function returns cause value.

func (AppsHealthCheckResponseValidationError) Error added in v0.3.7

Error satisfies the builtin error interface

func (AppsHealthCheckResponseValidationError) ErrorName added in v0.3.7

ErrorName returns error name.

func (AppsHealthCheckResponseValidationError) Field added in v0.3.7

Field function returns field value.

func (AppsHealthCheckResponseValidationError) Key added in v0.3.7

Key function returns key value.

func (AppsHealthCheckResponseValidationError) Reason added in v0.3.7

Reason function returns reason value.

type ChangeDaemonVersionRequest added in v0.3.5

type ChangeDaemonVersionRequest struct {
	Version    string `protobuf:"bytes,1,opt,name=version,proto3" json:"version" bun:"version" csv:"version" pg:"version" yaml:"version"`
	VendorHash string `` /* 153-byte string literal not displayed */
	SrcHash    string `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ChangeDaemonVersionRequest) Descriptor deprecated added in v0.3.5

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

Deprecated: Use ChangeDaemonVersionRequest.ProtoReflect.Descriptor instead.

func (*ChangeDaemonVersionRequest) GetSrcHash added in v0.3.5

func (x *ChangeDaemonVersionRequest) GetSrcHash() string

func (*ChangeDaemonVersionRequest) GetVendorHash added in v0.3.5

func (x *ChangeDaemonVersionRequest) GetVendorHash() string

func (*ChangeDaemonVersionRequest) GetVersion added in v0.3.5

func (x *ChangeDaemonVersionRequest) GetVersion() string

func (*ChangeDaemonVersionRequest) ProtoMessage added in v0.3.5

func (*ChangeDaemonVersionRequest) ProtoMessage()

func (*ChangeDaemonVersionRequest) ProtoReflect added in v0.3.5

func (*ChangeDaemonVersionRequest) Reset added in v0.3.5

func (x *ChangeDaemonVersionRequest) Reset()

func (*ChangeDaemonVersionRequest) String added in v0.3.5

func (x *ChangeDaemonVersionRequest) String() string

func (*ChangeDaemonVersionRequest) Validate added in v0.3.5

func (m *ChangeDaemonVersionRequest) Validate() error

Validate checks the field values on ChangeDaemonVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ChangeDaemonVersionRequest) ValidateAll added in v0.3.5

func (m *ChangeDaemonVersionRequest) ValidateAll() error

ValidateAll checks the field values on ChangeDaemonVersionRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ChangeDaemonVersionRequestMultiError, or nil if none found.

type ChangeDaemonVersionRequestMultiError added in v0.3.5

type ChangeDaemonVersionRequestMultiError []error

ChangeDaemonVersionRequestMultiError is an error wrapping multiple validation errors returned by ChangeDaemonVersionRequest.ValidateAll() if the designated constraints aren't met.

func (ChangeDaemonVersionRequestMultiError) AllErrors added in v0.3.5

AllErrors returns a list of validation violation errors.

func (ChangeDaemonVersionRequestMultiError) Error added in v0.3.5

Error returns a concatenation of all the error messages it wraps.

type ChangeDaemonVersionRequestValidationError added in v0.3.5

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

ChangeDaemonVersionRequestValidationError is the validation error returned by ChangeDaemonVersionRequest.Validate if the designated constraints aren't met.

func (ChangeDaemonVersionRequestValidationError) Cause added in v0.3.5

Cause function returns cause value.

func (ChangeDaemonVersionRequestValidationError) Error added in v0.3.5

Error satisfies the builtin error interface

func (ChangeDaemonVersionRequestValidationError) ErrorName added in v0.3.5

ErrorName returns error name.

func (ChangeDaemonVersionRequestValidationError) Field added in v0.3.5

Field function returns field value.

func (ChangeDaemonVersionRequestValidationError) Key added in v0.3.5

Key function returns key value.

func (ChangeDaemonVersionRequestValidationError) Reason added in v0.3.5

Reason function returns reason value.

type ChangeDaemonVersionResponse added in v0.3.5

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

func (*ChangeDaemonVersionResponse) Descriptor deprecated added in v0.3.5

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

Deprecated: Use ChangeDaemonVersionResponse.ProtoReflect.Descriptor instead.

func (*ChangeDaemonVersionResponse) ProtoMessage added in v0.3.5

func (*ChangeDaemonVersionResponse) ProtoMessage()

func (*ChangeDaemonVersionResponse) ProtoReflect added in v0.3.5

func (*ChangeDaemonVersionResponse) Reset added in v0.3.5

func (x *ChangeDaemonVersionResponse) Reset()

func (*ChangeDaemonVersionResponse) String added in v0.3.5

func (x *ChangeDaemonVersionResponse) String() string

func (*ChangeDaemonVersionResponse) Validate added in v0.3.5

func (m *ChangeDaemonVersionResponse) Validate() error

Validate checks the field values on ChangeDaemonVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ChangeDaemonVersionResponse) ValidateAll added in v0.3.5

func (m *ChangeDaemonVersionResponse) ValidateAll() error

ValidateAll checks the field values on ChangeDaemonVersionResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ChangeDaemonVersionResponseMultiError, or nil if none found.

type ChangeDaemonVersionResponseMultiError added in v0.3.5

type ChangeDaemonVersionResponseMultiError []error

ChangeDaemonVersionResponseMultiError is an error wrapping multiple validation errors returned by ChangeDaemonVersionResponse.ValidateAll() if the designated constraints aren't met.

func (ChangeDaemonVersionResponseMultiError) AllErrors added in v0.3.5

AllErrors returns a list of validation violation errors.

func (ChangeDaemonVersionResponseMultiError) Error added in v0.3.5

Error returns a concatenation of all the error messages it wraps.

type ChangeDaemonVersionResponseValidationError added in v0.3.5

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

ChangeDaemonVersionResponseValidationError is the validation error returned by ChangeDaemonVersionResponse.Validate if the designated constraints aren't met.

func (ChangeDaemonVersionResponseValidationError) Cause added in v0.3.5

Cause function returns cause value.

func (ChangeDaemonVersionResponseValidationError) Error added in v0.3.5

Error satisfies the builtin error interface

func (ChangeDaemonVersionResponseValidationError) ErrorName added in v0.3.5

ErrorName returns error name.

func (ChangeDaemonVersionResponseValidationError) Field added in v0.3.5

Field function returns field value.

func (ChangeDaemonVersionResponseValidationError) Key added in v0.3.5

Key function returns key value.

func (ChangeDaemonVersionResponseValidationError) Reason added in v0.3.5

Reason function returns reason value.

type CheckForContainerUpdatesRequest added in v0.3.4

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

func (*CheckForContainerUpdatesRequest) Descriptor deprecated added in v0.3.4

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

Deprecated: Use CheckForContainerUpdatesRequest.ProtoReflect.Descriptor instead.

func (*CheckForContainerUpdatesRequest) ProtoMessage added in v0.3.4

func (*CheckForContainerUpdatesRequest) ProtoMessage()

func (*CheckForContainerUpdatesRequest) ProtoReflect added in v0.3.4

func (*CheckForContainerUpdatesRequest) Reset added in v0.3.4

func (*CheckForContainerUpdatesRequest) String added in v0.3.4

func (*CheckForContainerUpdatesRequest) Validate added in v0.3.4

func (m *CheckForContainerUpdatesRequest) Validate() error

Validate checks the field values on CheckForContainerUpdatesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckForContainerUpdatesRequest) ValidateAll added in v0.3.4

func (m *CheckForContainerUpdatesRequest) ValidateAll() error

ValidateAll checks the field values on CheckForContainerUpdatesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckForContainerUpdatesRequestMultiError, or nil if none found.

type CheckForContainerUpdatesRequestMultiError added in v0.3.4

type CheckForContainerUpdatesRequestMultiError []error

CheckForContainerUpdatesRequestMultiError is an error wrapping multiple validation errors returned by CheckForContainerUpdatesRequest.ValidateAll() if the designated constraints aren't met.

func (CheckForContainerUpdatesRequestMultiError) AllErrors added in v0.3.4

AllErrors returns a list of validation violation errors.

func (CheckForContainerUpdatesRequestMultiError) Error added in v0.3.4

Error returns a concatenation of all the error messages it wraps.

type CheckForContainerUpdatesRequestValidationError added in v0.3.4

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

CheckForContainerUpdatesRequestValidationError is the validation error returned by CheckForContainerUpdatesRequest.Validate if the designated constraints aren't met.

func (CheckForContainerUpdatesRequestValidationError) Cause added in v0.3.4

Cause function returns cause value.

func (CheckForContainerUpdatesRequestValidationError) Error added in v0.3.4

Error satisfies the builtin error interface

func (CheckForContainerUpdatesRequestValidationError) ErrorName added in v0.3.4

ErrorName returns error name.

func (CheckForContainerUpdatesRequestValidationError) Field added in v0.3.4

Field function returns field value.

func (CheckForContainerUpdatesRequestValidationError) Key added in v0.3.4

Key function returns key value.

func (CheckForContainerUpdatesRequestValidationError) Reason added in v0.3.4

Reason function returns reason value.

type CheckForContainerUpdatesResponse added in v0.3.4

type CheckForContainerUpdatesResponse struct {
	ImageVersions []*ImageVersion `` /* 174-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CheckForContainerUpdatesResponse) Descriptor deprecated added in v0.3.4

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

Deprecated: Use CheckForContainerUpdatesResponse.ProtoReflect.Descriptor instead.

func (*CheckForContainerUpdatesResponse) GetImageVersions added in v0.3.4

func (x *CheckForContainerUpdatesResponse) GetImageVersions() []*ImageVersion

func (*CheckForContainerUpdatesResponse) ProtoMessage added in v0.3.4

func (*CheckForContainerUpdatesResponse) ProtoMessage()

func (*CheckForContainerUpdatesResponse) ProtoReflect added in v0.3.4

func (*CheckForContainerUpdatesResponse) Reset added in v0.3.4

func (*CheckForContainerUpdatesResponse) String added in v0.3.4

func (*CheckForContainerUpdatesResponse) Validate added in v0.3.4

Validate checks the field values on CheckForContainerUpdatesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckForContainerUpdatesResponse) ValidateAll added in v0.3.4

func (m *CheckForContainerUpdatesResponse) ValidateAll() error

ValidateAll checks the field values on CheckForContainerUpdatesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckForContainerUpdatesResponseMultiError, or nil if none found.

type CheckForContainerUpdatesResponseMultiError added in v0.3.4

type CheckForContainerUpdatesResponseMultiError []error

CheckForContainerUpdatesResponseMultiError is an error wrapping multiple validation errors returned by CheckForContainerUpdatesResponse.ValidateAll() if the designated constraints aren't met.

func (CheckForContainerUpdatesResponseMultiError) AllErrors added in v0.3.4

AllErrors returns a list of validation violation errors.

func (CheckForContainerUpdatesResponseMultiError) Error added in v0.3.4

Error returns a concatenation of all the error messages it wraps.

type CheckForContainerUpdatesResponseValidationError added in v0.3.4

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

CheckForContainerUpdatesResponseValidationError is the validation error returned by CheckForContainerUpdatesResponse.Validate if the designated constraints aren't met.

func (CheckForContainerUpdatesResponseValidationError) Cause added in v0.3.4

Cause function returns cause value.

func (CheckForContainerUpdatesResponseValidationError) Error added in v0.3.4

Error satisfies the builtin error interface

func (CheckForContainerUpdatesResponseValidationError) ErrorName added in v0.3.4

ErrorName returns error name.

func (CheckForContainerUpdatesResponseValidationError) Field added in v0.3.4

Field function returns field value.

func (CheckForContainerUpdatesResponseValidationError) Key added in v0.3.4

Key function returns key value.

func (CheckForContainerUpdatesResponseValidationError) Reason added in v0.3.4

Reason function returns reason value.

type CheckForSystemUpdatesRequest added in v0.3.2

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

func (*CheckForSystemUpdatesRequest) Descriptor deprecated added in v0.3.2

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

Deprecated: Use CheckForSystemUpdatesRequest.ProtoReflect.Descriptor instead.

func (*CheckForSystemUpdatesRequest) ProtoMessage added in v0.3.2

func (*CheckForSystemUpdatesRequest) ProtoMessage()

func (*CheckForSystemUpdatesRequest) ProtoReflect added in v0.3.2

func (*CheckForSystemUpdatesRequest) Reset added in v0.3.2

func (x *CheckForSystemUpdatesRequest) Reset()

func (*CheckForSystemUpdatesRequest) String added in v0.3.2

func (*CheckForSystemUpdatesRequest) Validate added in v0.3.2

func (m *CheckForSystemUpdatesRequest) Validate() error

Validate checks the field values on CheckForSystemUpdatesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckForSystemUpdatesRequest) ValidateAll added in v0.3.2

func (m *CheckForSystemUpdatesRequest) ValidateAll() error

ValidateAll checks the field values on CheckForSystemUpdatesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckForSystemUpdatesRequestMultiError, or nil if none found.

type CheckForSystemUpdatesRequestMultiError added in v0.3.2

type CheckForSystemUpdatesRequestMultiError []error

CheckForSystemUpdatesRequestMultiError is an error wrapping multiple validation errors returned by CheckForSystemUpdatesRequest.ValidateAll() if the designated constraints aren't met.

func (CheckForSystemUpdatesRequestMultiError) AllErrors added in v0.3.2

AllErrors returns a list of validation violation errors.

func (CheckForSystemUpdatesRequestMultiError) Error added in v0.3.2

Error returns a concatenation of all the error messages it wraps.

type CheckForSystemUpdatesRequestValidationError added in v0.3.2

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

CheckForSystemUpdatesRequestValidationError is the validation error returned by CheckForSystemUpdatesRequest.Validate if the designated constraints aren't met.

func (CheckForSystemUpdatesRequestValidationError) Cause added in v0.3.2

Cause function returns cause value.

func (CheckForSystemUpdatesRequestValidationError) Error added in v0.3.2

Error satisfies the builtin error interface

func (CheckForSystemUpdatesRequestValidationError) ErrorName added in v0.3.2

ErrorName returns error name.

func (CheckForSystemUpdatesRequestValidationError) Field added in v0.3.2

Field function returns field value.

func (CheckForSystemUpdatesRequestValidationError) Key added in v0.3.2

Key function returns key value.

func (CheckForSystemUpdatesRequestValidationError) Reason added in v0.3.2

Reason function returns reason value.

type CheckForSystemUpdatesResponse added in v0.3.2

type CheckForSystemUpdatesResponse struct {
	DaemonVersions *DaemonVersions `` /* 181-byte string literal not displayed */
	// os_diff is the result of the `nvd diff` command
	OsDiff string `protobuf:"bytes,2,opt,name=os_diff,json=osDiff,proto3" json:"os_diff" bun:"os_diff" csv:"os_diff" pg:"os_diff" yaml:"os_diff"`
	// contains filtered or unexported fields
}

func (*CheckForSystemUpdatesResponse) Descriptor deprecated added in v0.3.2

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

Deprecated: Use CheckForSystemUpdatesResponse.ProtoReflect.Descriptor instead.

func (*CheckForSystemUpdatesResponse) GetDaemonVersions added in v0.3.2

func (x *CheckForSystemUpdatesResponse) GetDaemonVersions() *DaemonVersions

func (*CheckForSystemUpdatesResponse) GetOsDiff added in v0.3.2

func (x *CheckForSystemUpdatesResponse) GetOsDiff() string

func (*CheckForSystemUpdatesResponse) ProtoMessage added in v0.3.2

func (*CheckForSystemUpdatesResponse) ProtoMessage()

func (*CheckForSystemUpdatesResponse) ProtoReflect added in v0.3.2

func (*CheckForSystemUpdatesResponse) Reset added in v0.3.2

func (x *CheckForSystemUpdatesResponse) Reset()

func (*CheckForSystemUpdatesResponse) String added in v0.3.2

func (*CheckForSystemUpdatesResponse) Validate added in v0.3.2

func (m *CheckForSystemUpdatesResponse) Validate() error

Validate checks the field values on CheckForSystemUpdatesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*CheckForSystemUpdatesResponse) ValidateAll added in v0.3.2

func (m *CheckForSystemUpdatesResponse) ValidateAll() error

ValidateAll checks the field values on CheckForSystemUpdatesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CheckForSystemUpdatesResponseMultiError, or nil if none found.

type CheckForSystemUpdatesResponseMultiError added in v0.3.2

type CheckForSystemUpdatesResponseMultiError []error

CheckForSystemUpdatesResponseMultiError is an error wrapping multiple validation errors returned by CheckForSystemUpdatesResponse.ValidateAll() if the designated constraints aren't met.

func (CheckForSystemUpdatesResponseMultiError) AllErrors added in v0.3.2

AllErrors returns a list of validation violation errors.

func (CheckForSystemUpdatesResponseMultiError) Error added in v0.3.2

Error returns a concatenation of all the error messages it wraps.

type CheckForSystemUpdatesResponseValidationError added in v0.3.2

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

CheckForSystemUpdatesResponseValidationError is the validation error returned by CheckForSystemUpdatesResponse.Validate if the designated constraints aren't met.

func (CheckForSystemUpdatesResponseValidationError) Cause added in v0.3.2

Cause function returns cause value.

func (CheckForSystemUpdatesResponseValidationError) Error added in v0.3.2

Error satisfies the builtin error interface

func (CheckForSystemUpdatesResponseValidationError) ErrorName added in v0.3.2

ErrorName returns error name.

func (CheckForSystemUpdatesResponseValidationError) Field added in v0.3.2

Field function returns field value.

func (CheckForSystemUpdatesResponseValidationError) Key added in v0.3.2

Key function returns key value.

func (CheckForSystemUpdatesResponseValidationError) Reason added in v0.3.2

Reason function returns reason value.

type DaemonVersions added in v0.3.2

type DaemonVersions struct {
	Current string `protobuf:"bytes,1,opt,name=current,proto3" json:"current" bun:"current" csv:"current" pg:"current" yaml:"current"`
	Latest  string `protobuf:"bytes,2,opt,name=latest,proto3" json:"latest" bun:"latest" csv:"latest" pg:"latest" yaml:"latest"`
	// contains filtered or unexported fields
}

func (*DaemonVersions) Descriptor deprecated added in v0.3.2

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

Deprecated: Use DaemonVersions.ProtoReflect.Descriptor instead.

func (*DaemonVersions) GetCurrent added in v0.3.2

func (x *DaemonVersions) GetCurrent() string

func (*DaemonVersions) GetLatest added in v0.3.2

func (x *DaemonVersions) GetLatest() string

func (*DaemonVersions) ProtoMessage added in v0.3.2

func (*DaemonVersions) ProtoMessage()

func (*DaemonVersions) ProtoReflect added in v0.3.2

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

func (*DaemonVersions) Reset added in v0.3.2

func (x *DaemonVersions) Reset()

func (*DaemonVersions) String added in v0.3.2

func (x *DaemonVersions) String() string

func (*DaemonVersions) Validate added in v0.3.2

func (m *DaemonVersions) Validate() error

Validate checks the field values on DaemonVersions with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DaemonVersions) ValidateAll added in v0.3.2

func (m *DaemonVersions) ValidateAll() error

ValidateAll checks the field values on DaemonVersions with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DaemonVersionsMultiError, or nil if none found.

type DaemonVersionsMultiError added in v0.3.2

type DaemonVersionsMultiError []error

DaemonVersionsMultiError is an error wrapping multiple validation errors returned by DaemonVersions.ValidateAll() if the designated constraints aren't met.

func (DaemonVersionsMultiError) AllErrors added in v0.3.2

func (m DaemonVersionsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DaemonVersionsMultiError) Error added in v0.3.2

func (m DaemonVersionsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DaemonVersionsValidationError added in v0.3.2

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

DaemonVersionsValidationError is the validation error returned by DaemonVersions.Validate if the designated constraints aren't met.

func (DaemonVersionsValidationError) Cause added in v0.3.2

Cause function returns cause value.

func (DaemonVersionsValidationError) Error added in v0.3.2

Error satisfies the builtin error interface

func (DaemonVersionsValidationError) ErrorName added in v0.3.2

func (e DaemonVersionsValidationError) ErrorName() string

ErrorName returns error name.

func (DaemonVersionsValidationError) Field added in v0.3.2

Field function returns field value.

func (DaemonVersionsValidationError) Key added in v0.3.2

Key function returns key value.

func (DaemonVersionsValidationError) Reason added in v0.3.2

Reason function returns reason value.

type DeleteAppRequest added in v0.3.0

type DeleteAppRequest struct {
	Release string `protobuf:"bytes,1,opt,name=release,proto3" json:"release" bun:"release" csv:"release" pg:"release" yaml:"release"`
	// contains filtered or unexported fields
}

func (*DeleteAppRequest) Descriptor deprecated added in v0.3.0

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

Deprecated: Use DeleteAppRequest.ProtoReflect.Descriptor instead.

func (*DeleteAppRequest) GetRelease added in v0.3.0

func (x *DeleteAppRequest) GetRelease() string

func (*DeleteAppRequest) ProtoMessage added in v0.3.0

func (*DeleteAppRequest) ProtoMessage()

func (*DeleteAppRequest) ProtoReflect added in v0.3.0

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

func (*DeleteAppRequest) Reset added in v0.3.0

func (x *DeleteAppRequest) Reset()

func (*DeleteAppRequest) String added in v0.3.0

func (x *DeleteAppRequest) String() string

func (*DeleteAppRequest) Validate added in v0.3.0

func (m *DeleteAppRequest) Validate() error

Validate checks the field values on DeleteAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteAppRequest) ValidateAll added in v0.3.0

func (m *DeleteAppRequest) ValidateAll() error

ValidateAll checks the field values on DeleteAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteAppRequestMultiError, or nil if none found.

type DeleteAppRequestMultiError added in v0.3.0

type DeleteAppRequestMultiError []error

DeleteAppRequestMultiError is an error wrapping multiple validation errors returned by DeleteAppRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteAppRequestMultiError) AllErrors added in v0.3.0

func (m DeleteAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteAppRequestMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type DeleteAppRequestValidationError added in v0.3.0

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

DeleteAppRequestValidationError is the validation error returned by DeleteAppRequest.Validate if the designated constraints aren't met.

func (DeleteAppRequestValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (DeleteAppRequestValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (DeleteAppRequestValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (DeleteAppRequestValidationError) Field added in v0.3.0

Field function returns field value.

func (DeleteAppRequestValidationError) Key added in v0.3.0

Key function returns key value.

func (DeleteAppRequestValidationError) Reason added in v0.3.0

Reason function returns reason value.

type DeleteAppResponse added in v0.3.0

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

func (*DeleteAppResponse) Descriptor deprecated added in v0.3.0

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

Deprecated: Use DeleteAppResponse.ProtoReflect.Descriptor instead.

func (*DeleteAppResponse) ProtoMessage added in v0.3.0

func (*DeleteAppResponse) ProtoMessage()

func (*DeleteAppResponse) ProtoReflect added in v0.3.0

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

func (*DeleteAppResponse) Reset added in v0.3.0

func (x *DeleteAppResponse) Reset()

func (*DeleteAppResponse) String added in v0.3.0

func (x *DeleteAppResponse) String() string

func (*DeleteAppResponse) Validate added in v0.3.0

func (m *DeleteAppResponse) Validate() error

Validate checks the field values on DeleteAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteAppResponse) ValidateAll added in v0.3.0

func (m *DeleteAppResponse) ValidateAll() error

ValidateAll checks the field values on DeleteAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteAppResponseMultiError, or nil if none found.

type DeleteAppResponseMultiError added in v0.3.0

type DeleteAppResponseMultiError []error

DeleteAppResponseMultiError is an error wrapping multiple validation errors returned by DeleteAppResponse.ValidateAll() if the designated constraints aren't met.

func (DeleteAppResponseMultiError) AllErrors added in v0.3.0

func (m DeleteAppResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteAppResponseMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type DeleteAppResponseValidationError added in v0.3.0

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

DeleteAppResponseValidationError is the validation error returned by DeleteAppResponse.Validate if the designated constraints aren't met.

func (DeleteAppResponseValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (DeleteAppResponseValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (DeleteAppResponseValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (DeleteAppResponseValidationError) Field added in v0.3.0

Field function returns field value.

func (DeleteAppResponseValidationError) Key added in v0.3.0

Key function returns key value.

func (DeleteAppResponseValidationError) Reason added in v0.3.0

Reason function returns reason value.

type DeviceSettings added in v0.4.0

type DeviceSettings struct {
	AdminUser      *User  `` /* 146-byte string literal not displayed */
	Timezone       string `protobuf:"bytes,2,opt,name=timezone,proto3" json:"timezone" bun:"timezone" csv:"timezone" pg:"timezone" yaml:"timezone"`
	AutoUpdateApps bool   `` /* 188-byte string literal not displayed */
	AutoUpdateOs   bool   `` /* 174-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*DeviceSettings) Descriptor deprecated added in v0.4.0

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

Deprecated: Use DeviceSettings.ProtoReflect.Descriptor instead.

func (*DeviceSettings) GetAdminUser added in v0.4.0

func (x *DeviceSettings) GetAdminUser() *User

func (*DeviceSettings) GetAutoUpdateApps added in v0.4.0

func (x *DeviceSettings) GetAutoUpdateApps() bool

func (*DeviceSettings) GetAutoUpdateOs added in v0.4.0

func (x *DeviceSettings) GetAutoUpdateOs() bool

func (*DeviceSettings) GetTimezone added in v0.4.0

func (x *DeviceSettings) GetTimezone() string

func (*DeviceSettings) ProtoMessage added in v0.4.0

func (*DeviceSettings) ProtoMessage()

func (*DeviceSettings) ProtoReflect added in v0.4.0

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

func (*DeviceSettings) Reset added in v0.4.0

func (x *DeviceSettings) Reset()

func (*DeviceSettings) String added in v0.4.0

func (x *DeviceSettings) String() string

func (*DeviceSettings) Validate added in v0.4.0

func (m *DeviceSettings) Validate() error

Validate checks the field values on DeviceSettings with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeviceSettings) ValidateAll added in v0.4.0

func (m *DeviceSettings) ValidateAll() error

ValidateAll checks the field values on DeviceSettings with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeviceSettingsMultiError, or nil if none found.

type DeviceSettingsMultiError added in v0.4.0

type DeviceSettingsMultiError []error

DeviceSettingsMultiError is an error wrapping multiple validation errors returned by DeviceSettings.ValidateAll() if the designated constraints aren't met.

func (DeviceSettingsMultiError) AllErrors added in v0.4.0

func (m DeviceSettingsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeviceSettingsMultiError) Error added in v0.4.0

func (m DeviceSettingsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DeviceSettingsValidationError added in v0.4.0

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

DeviceSettingsValidationError is the validation error returned by DeviceSettings.Validate if the designated constraints aren't met.

func (DeviceSettingsValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (DeviceSettingsValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (DeviceSettingsValidationError) ErrorName added in v0.4.0

func (e DeviceSettingsValidationError) ErrorName() string

ErrorName returns error name.

func (DeviceSettingsValidationError) Field added in v0.4.0

Field function returns field value.

func (DeviceSettingsValidationError) Key added in v0.4.0

Key function returns key value.

func (DeviceSettingsValidationError) Reason added in v0.4.0

Reason function returns reason value.

type DiskStats added in v0.4.0

type DiskStats struct {
	Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total" bun:"total" csv:"total" pg:"total" yaml:"total"`
	Used  int64 `protobuf:"varint,2,opt,name=used,proto3" json:"used" bun:"used" csv:"used" pg:"used" yaml:"used"`
	Free  int64 `protobuf:"varint,3,opt,name=free,proto3" json:"free" bun:"free" csv:"free" pg:"free" yaml:"free"`
	// contains filtered or unexported fields
}

func (*DiskStats) Descriptor deprecated added in v0.4.0

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

Deprecated: Use DiskStats.ProtoReflect.Descriptor instead.

func (*DiskStats) GetFree added in v0.4.0

func (x *DiskStats) GetFree() int64

func (*DiskStats) GetTotal added in v0.4.0

func (x *DiskStats) GetTotal() int64

func (*DiskStats) GetUsed added in v0.4.0

func (x *DiskStats) GetUsed() int64

func (*DiskStats) ProtoMessage added in v0.4.0

func (*DiskStats) ProtoMessage()

func (*DiskStats) ProtoReflect added in v0.4.0

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

func (*DiskStats) Reset added in v0.4.0

func (x *DiskStats) Reset()

func (*DiskStats) String added in v0.4.0

func (x *DiskStats) String() string

func (*DiskStats) Validate added in v0.4.0

func (m *DiskStats) Validate() error

Validate checks the field values on DiskStats with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DiskStats) ValidateAll added in v0.4.0

func (m *DiskStats) ValidateAll() error

ValidateAll checks the field values on DiskStats with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DiskStatsMultiError, or nil if none found.

type DiskStatsMultiError added in v0.4.0

type DiskStatsMultiError []error

DiskStatsMultiError is an error wrapping multiple validation errors returned by DiskStats.ValidateAll() if the designated constraints aren't met.

func (DiskStatsMultiError) AllErrors added in v0.4.0

func (m DiskStatsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DiskStatsMultiError) Error added in v0.4.0

func (m DiskStatsMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type DiskStatsValidationError added in v0.4.0

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

DiskStatsValidationError is the validation error returned by DiskStats.Validate if the designated constraints aren't met.

func (DiskStatsValidationError) Cause added in v0.4.0

func (e DiskStatsValidationError) Cause() error

Cause function returns cause value.

func (DiskStatsValidationError) Error added in v0.4.0

func (e DiskStatsValidationError) Error() string

Error satisfies the builtin error interface

func (DiskStatsValidationError) ErrorName added in v0.4.0

func (e DiskStatsValidationError) ErrorName() string

ErrorName returns error name.

func (DiskStatsValidationError) Field added in v0.4.0

func (e DiskStatsValidationError) Field() string

Field function returns field value.

func (DiskStatsValidationError) Key added in v0.4.0

Key function returns key value.

func (DiskStatsValidationError) Reason added in v0.4.0

func (e DiskStatsValidationError) Reason() string

Reason function returns reason value.

type Entries added in v0.4.0

type Entries struct {
	Apps []*App `protobuf:"bytes,1,rep,name=apps,proto3" json:"apps" bun:"apps" csv:"apps" pg:"apps" yaml:"apps"`
	// contains filtered or unexported fields
}

func (*Entries) Descriptor deprecated added in v0.4.0

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

Deprecated: Use Entries.ProtoReflect.Descriptor instead.

func (*Entries) GetApps added in v0.4.0

func (x *Entries) GetApps() []*App

func (*Entries) ProtoMessage added in v0.4.0

func (*Entries) ProtoMessage()

func (*Entries) ProtoReflect added in v0.4.0

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

func (*Entries) Reset added in v0.4.0

func (x *Entries) Reset()

func (*Entries) String added in v0.4.0

func (x *Entries) String() string

func (*Entries) Validate added in v0.4.0

func (m *Entries) Validate() error

Validate checks the field values on Entries with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Entries) ValidateAll added in v0.4.0

func (m *Entries) ValidateAll() error

ValidateAll checks the field values on Entries with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in EntriesMultiError, or nil if none found.

type EntriesMultiError added in v0.4.0

type EntriesMultiError []error

EntriesMultiError is an error wrapping multiple validation errors returned by Entries.ValidateAll() if the designated constraints aren't met.

func (EntriesMultiError) AllErrors added in v0.4.0

func (m EntriesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EntriesMultiError) Error added in v0.4.0

func (m EntriesMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type EntriesValidationError added in v0.4.0

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

EntriesValidationError is the validation error returned by Entries.Validate if the designated constraints aren't met.

func (EntriesValidationError) Cause added in v0.4.0

func (e EntriesValidationError) Cause() error

Cause function returns cause value.

func (EntriesValidationError) Error added in v0.4.0

func (e EntriesValidationError) Error() string

Error satisfies the builtin error interface

func (EntriesValidationError) ErrorName added in v0.4.0

func (e EntriesValidationError) ErrorName() string

ErrorName returns error name.

func (EntriesValidationError) Field added in v0.4.0

func (e EntriesValidationError) Field() string

Field function returns field value.

func (EntriesValidationError) Key added in v0.4.0

func (e EntriesValidationError) Key() bool

Key function returns key value.

func (EntriesValidationError) Reason added in v0.4.0

func (e EntriesValidationError) Reason() string

Reason function returns reason value.

type GetAppsInStoreRequest added in v0.4.0

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

func (*GetAppsInStoreRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetAppsInStoreRequest.ProtoReflect.Descriptor instead.

func (*GetAppsInStoreRequest) ProtoMessage added in v0.4.0

func (*GetAppsInStoreRequest) ProtoMessage()

func (*GetAppsInStoreRequest) ProtoReflect added in v0.4.0

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

func (*GetAppsInStoreRequest) Reset added in v0.4.0

func (x *GetAppsInStoreRequest) Reset()

func (*GetAppsInStoreRequest) String added in v0.4.0

func (x *GetAppsInStoreRequest) String() string

func (*GetAppsInStoreRequest) Validate added in v0.4.0

func (m *GetAppsInStoreRequest) Validate() error

Validate checks the field values on GetAppsInStoreRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetAppsInStoreRequest) ValidateAll added in v0.4.0

func (m *GetAppsInStoreRequest) ValidateAll() error

ValidateAll checks the field values on GetAppsInStoreRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetAppsInStoreRequestMultiError, or nil if none found.

type GetAppsInStoreRequestMultiError added in v0.4.0

type GetAppsInStoreRequestMultiError []error

GetAppsInStoreRequestMultiError is an error wrapping multiple validation errors returned by GetAppsInStoreRequest.ValidateAll() if the designated constraints aren't met.

func (GetAppsInStoreRequestMultiError) AllErrors added in v0.4.0

func (m GetAppsInStoreRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAppsInStoreRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetAppsInStoreRequestValidationError added in v0.4.0

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

GetAppsInStoreRequestValidationError is the validation error returned by GetAppsInStoreRequest.Validate if the designated constraints aren't met.

func (GetAppsInStoreRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetAppsInStoreRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetAppsInStoreRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetAppsInStoreRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (GetAppsInStoreRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (GetAppsInStoreRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetAppsInStoreResponse added in v0.4.0

type GetAppsInStoreResponse struct {
	Apps []*App `protobuf:"bytes,1,rep,name=apps,proto3" json:"apps" bun:"apps" csv:"apps" pg:"apps" yaml:"apps"`
	// contains filtered or unexported fields
}

func (*GetAppsInStoreResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetAppsInStoreResponse.ProtoReflect.Descriptor instead.

func (*GetAppsInStoreResponse) GetApps added in v0.4.0

func (x *GetAppsInStoreResponse) GetApps() []*App

func (*GetAppsInStoreResponse) ProtoMessage added in v0.4.0

func (*GetAppsInStoreResponse) ProtoMessage()

func (*GetAppsInStoreResponse) ProtoReflect added in v0.4.0

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

func (*GetAppsInStoreResponse) Reset added in v0.4.0

func (x *GetAppsInStoreResponse) Reset()

func (*GetAppsInStoreResponse) String added in v0.4.0

func (x *GetAppsInStoreResponse) String() string

func (*GetAppsInStoreResponse) Validate added in v0.4.0

func (m *GetAppsInStoreResponse) Validate() error

Validate checks the field values on GetAppsInStoreResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetAppsInStoreResponse) ValidateAll added in v0.4.0

func (m *GetAppsInStoreResponse) ValidateAll() error

ValidateAll checks the field values on GetAppsInStoreResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetAppsInStoreResponseMultiError, or nil if none found.

type GetAppsInStoreResponseMultiError added in v0.4.0

type GetAppsInStoreResponseMultiError []error

GetAppsInStoreResponseMultiError is an error wrapping multiple validation errors returned by GetAppsInStoreResponse.ValidateAll() if the designated constraints aren't met.

func (GetAppsInStoreResponseMultiError) AllErrors added in v0.4.0

func (m GetAppsInStoreResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAppsInStoreResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetAppsInStoreResponseValidationError added in v0.4.0

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

GetAppsInStoreResponseValidationError is the validation error returned by GetAppsInStoreResponse.Validate if the designated constraints aren't met.

func (GetAppsInStoreResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetAppsInStoreResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetAppsInStoreResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetAppsInStoreResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (GetAppsInStoreResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (GetAppsInStoreResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetDeviceSettingsRequest added in v0.4.0

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

func (*GetDeviceSettingsRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetDeviceSettingsRequest.ProtoReflect.Descriptor instead.

func (*GetDeviceSettingsRequest) ProtoMessage added in v0.4.0

func (*GetDeviceSettingsRequest) ProtoMessage()

func (*GetDeviceSettingsRequest) ProtoReflect added in v0.4.0

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

func (*GetDeviceSettingsRequest) Reset added in v0.4.0

func (x *GetDeviceSettingsRequest) Reset()

func (*GetDeviceSettingsRequest) String added in v0.4.0

func (x *GetDeviceSettingsRequest) String() string

func (*GetDeviceSettingsRequest) Validate added in v0.4.0

func (m *GetDeviceSettingsRequest) Validate() error

Validate checks the field values on GetDeviceSettingsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeviceSettingsRequest) ValidateAll added in v0.4.0

func (m *GetDeviceSettingsRequest) ValidateAll() error

ValidateAll checks the field values on GetDeviceSettingsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeviceSettingsRequestMultiError, or nil if none found.

type GetDeviceSettingsRequestMultiError added in v0.4.0

type GetDeviceSettingsRequestMultiError []error

GetDeviceSettingsRequestMultiError is an error wrapping multiple validation errors returned by GetDeviceSettingsRequest.ValidateAll() if the designated constraints aren't met.

func (GetDeviceSettingsRequestMultiError) AllErrors added in v0.4.0

func (m GetDeviceSettingsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDeviceSettingsRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetDeviceSettingsRequestValidationError added in v0.4.0

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

GetDeviceSettingsRequestValidationError is the validation error returned by GetDeviceSettingsRequest.Validate if the designated constraints aren't met.

func (GetDeviceSettingsRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetDeviceSettingsRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetDeviceSettingsRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetDeviceSettingsRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (GetDeviceSettingsRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (GetDeviceSettingsRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetDeviceSettingsResponse added in v0.4.0

type GetDeviceSettingsResponse struct {
	Settings *DeviceSettings `protobuf:"bytes,1,opt,name=settings,proto3" json:"settings" bun:"settings" csv:"settings" pg:"settings" yaml:"settings"`
	// contains filtered or unexported fields
}

func (*GetDeviceSettingsResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetDeviceSettingsResponse.ProtoReflect.Descriptor instead.

func (*GetDeviceSettingsResponse) GetSettings added in v0.4.0

func (x *GetDeviceSettingsResponse) GetSettings() *DeviceSettings

func (*GetDeviceSettingsResponse) ProtoMessage added in v0.4.0

func (*GetDeviceSettingsResponse) ProtoMessage()

func (*GetDeviceSettingsResponse) ProtoReflect added in v0.4.0

func (*GetDeviceSettingsResponse) Reset added in v0.4.0

func (x *GetDeviceSettingsResponse) Reset()

func (*GetDeviceSettingsResponse) String added in v0.4.0

func (x *GetDeviceSettingsResponse) String() string

func (*GetDeviceSettingsResponse) Validate added in v0.4.0

func (m *GetDeviceSettingsResponse) Validate() error

Validate checks the field values on GetDeviceSettingsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeviceSettingsResponse) ValidateAll added in v0.4.0

func (m *GetDeviceSettingsResponse) ValidateAll() error

ValidateAll checks the field values on GetDeviceSettingsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeviceSettingsResponseMultiError, or nil if none found.

type GetDeviceSettingsResponseMultiError added in v0.4.0

type GetDeviceSettingsResponseMultiError []error

GetDeviceSettingsResponseMultiError is an error wrapping multiple validation errors returned by GetDeviceSettingsResponse.ValidateAll() if the designated constraints aren't met.

func (GetDeviceSettingsResponseMultiError) AllErrors added in v0.4.0

AllErrors returns a list of validation violation errors.

func (GetDeviceSettingsResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetDeviceSettingsResponseValidationError added in v0.4.0

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

GetDeviceSettingsResponseValidationError is the validation error returned by GetDeviceSettingsResponse.Validate if the designated constraints aren't met.

func (GetDeviceSettingsResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetDeviceSettingsResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetDeviceSettingsResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetDeviceSettingsResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (GetDeviceSettingsResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (GetDeviceSettingsResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetDeviceUsageStatsRequest added in v0.4.0

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

func (*GetDeviceUsageStatsRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetDeviceUsageStatsRequest.ProtoReflect.Descriptor instead.

func (*GetDeviceUsageStatsRequest) ProtoMessage added in v0.4.0

func (*GetDeviceUsageStatsRequest) ProtoMessage()

func (*GetDeviceUsageStatsRequest) ProtoReflect added in v0.4.0

func (*GetDeviceUsageStatsRequest) Reset added in v0.4.0

func (x *GetDeviceUsageStatsRequest) Reset()

func (*GetDeviceUsageStatsRequest) String added in v0.4.0

func (x *GetDeviceUsageStatsRequest) String() string

func (*GetDeviceUsageStatsRequest) Validate added in v0.4.0

func (m *GetDeviceUsageStatsRequest) Validate() error

Validate checks the field values on GetDeviceUsageStatsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeviceUsageStatsRequest) ValidateAll added in v0.4.0

func (m *GetDeviceUsageStatsRequest) ValidateAll() error

ValidateAll checks the field values on GetDeviceUsageStatsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeviceUsageStatsRequestMultiError, or nil if none found.

type GetDeviceUsageStatsRequestMultiError added in v0.4.0

type GetDeviceUsageStatsRequestMultiError []error

GetDeviceUsageStatsRequestMultiError is an error wrapping multiple validation errors returned by GetDeviceUsageStatsRequest.ValidateAll() if the designated constraints aren't met.

func (GetDeviceUsageStatsRequestMultiError) AllErrors added in v0.4.0

AllErrors returns a list of validation violation errors.

func (GetDeviceUsageStatsRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetDeviceUsageStatsRequestValidationError added in v0.4.0

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

GetDeviceUsageStatsRequestValidationError is the validation error returned by GetDeviceUsageStatsRequest.Validate if the designated constraints aren't met.

func (GetDeviceUsageStatsRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetDeviceUsageStatsRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetDeviceUsageStatsRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetDeviceUsageStatsRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (GetDeviceUsageStatsRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (GetDeviceUsageStatsRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetDeviceUsageStatsResponse added in v0.4.0

type GetDeviceUsageStatsResponse struct {
	Disk        *DiskStats `protobuf:"bytes,3,opt,name=disk,proto3" json:"disk" bun:"disk" csv:"disk" pg:"disk" yaml:"disk"`
	Temperature uint32     `` /* 138-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetDeviceUsageStatsResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetDeviceUsageStatsResponse.ProtoReflect.Descriptor instead.

func (*GetDeviceUsageStatsResponse) GetDisk added in v0.4.0

func (x *GetDeviceUsageStatsResponse) GetDisk() *DiskStats

func (*GetDeviceUsageStatsResponse) GetTemperature added in v0.4.0

func (x *GetDeviceUsageStatsResponse) GetTemperature() uint32

func (*GetDeviceUsageStatsResponse) ProtoMessage added in v0.4.0

func (*GetDeviceUsageStatsResponse) ProtoMessage()

func (*GetDeviceUsageStatsResponse) ProtoReflect added in v0.4.0

func (*GetDeviceUsageStatsResponse) Reset added in v0.4.0

func (x *GetDeviceUsageStatsResponse) Reset()

func (*GetDeviceUsageStatsResponse) String added in v0.4.0

func (x *GetDeviceUsageStatsResponse) String() string

func (*GetDeviceUsageStatsResponse) Validate added in v0.4.0

func (m *GetDeviceUsageStatsResponse) Validate() error

Validate checks the field values on GetDeviceUsageStatsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetDeviceUsageStatsResponse) ValidateAll added in v0.4.0

func (m *GetDeviceUsageStatsResponse) ValidateAll() error

ValidateAll checks the field values on GetDeviceUsageStatsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetDeviceUsageStatsResponseMultiError, or nil if none found.

type GetDeviceUsageStatsResponseMultiError added in v0.4.0

type GetDeviceUsageStatsResponseMultiError []error

GetDeviceUsageStatsResponseMultiError is an error wrapping multiple validation errors returned by GetDeviceUsageStatsResponse.ValidateAll() if the designated constraints aren't met.

func (GetDeviceUsageStatsResponseMultiError) AllErrors added in v0.4.0

AllErrors returns a list of validation violation errors.

func (GetDeviceUsageStatsResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetDeviceUsageStatsResponseValidationError added in v0.4.0

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

GetDeviceUsageStatsResponseValidationError is the validation error returned by GetDeviceUsageStatsResponse.Validate if the designated constraints aren't met.

func (GetDeviceUsageStatsResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetDeviceUsageStatsResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetDeviceUsageStatsResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetDeviceUsageStatsResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (GetDeviceUsageStatsResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (GetDeviceUsageStatsResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetInstalledAppsRequest added in v0.4.0

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

func (*GetInstalledAppsRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetInstalledAppsRequest.ProtoReflect.Descriptor instead.

func (*GetInstalledAppsRequest) ProtoMessage added in v0.4.0

func (*GetInstalledAppsRequest) ProtoMessage()

func (*GetInstalledAppsRequest) ProtoReflect added in v0.4.0

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

func (*GetInstalledAppsRequest) Reset added in v0.4.0

func (x *GetInstalledAppsRequest) Reset()

func (*GetInstalledAppsRequest) String added in v0.4.0

func (x *GetInstalledAppsRequest) String() string

func (*GetInstalledAppsRequest) Validate added in v0.4.0

func (m *GetInstalledAppsRequest) Validate() error

Validate checks the field values on GetInstalledAppsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetInstalledAppsRequest) ValidateAll added in v0.4.0

func (m *GetInstalledAppsRequest) ValidateAll() error

ValidateAll checks the field values on GetInstalledAppsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetInstalledAppsRequestMultiError, or nil if none found.

type GetInstalledAppsRequestMultiError added in v0.4.0

type GetInstalledAppsRequestMultiError []error

GetInstalledAppsRequestMultiError is an error wrapping multiple validation errors returned by GetInstalledAppsRequest.ValidateAll() if the designated constraints aren't met.

func (GetInstalledAppsRequestMultiError) AllErrors added in v0.4.0

func (m GetInstalledAppsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetInstalledAppsRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetInstalledAppsRequestValidationError added in v0.4.0

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

GetInstalledAppsRequestValidationError is the validation error returned by GetInstalledAppsRequest.Validate if the designated constraints aren't met.

func (GetInstalledAppsRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetInstalledAppsRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetInstalledAppsRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetInstalledAppsRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (GetInstalledAppsRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (GetInstalledAppsRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetInstalledAppsResponse added in v0.4.0

type GetInstalledAppsResponse struct {
	Apps []AppStatus `` /* 137-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetInstalledAppsResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use GetInstalledAppsResponse.ProtoReflect.Descriptor instead.

func (*GetInstalledAppsResponse) GetApps added in v0.4.0

func (x *GetInstalledAppsResponse) GetApps() []AppStatus

func (*GetInstalledAppsResponse) ProtoMessage added in v0.4.0

func (*GetInstalledAppsResponse) ProtoMessage()

func (*GetInstalledAppsResponse) ProtoReflect added in v0.4.0

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

func (*GetInstalledAppsResponse) Reset added in v0.4.0

func (x *GetInstalledAppsResponse) Reset()

func (*GetInstalledAppsResponse) String added in v0.4.0

func (x *GetInstalledAppsResponse) String() string

func (*GetInstalledAppsResponse) Validate added in v0.4.0

func (m *GetInstalledAppsResponse) Validate() error

Validate checks the field values on GetInstalledAppsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetInstalledAppsResponse) ValidateAll added in v0.4.0

func (m *GetInstalledAppsResponse) ValidateAll() error

ValidateAll checks the field values on GetInstalledAppsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetInstalledAppsResponseMultiError, or nil if none found.

type GetInstalledAppsResponseMultiError added in v0.4.0

type GetInstalledAppsResponseMultiError []error

GetInstalledAppsResponseMultiError is an error wrapping multiple validation errors returned by GetInstalledAppsResponse.ValidateAll() if the designated constraints aren't met.

func (GetInstalledAppsResponseMultiError) AllErrors added in v0.4.0

func (m GetInstalledAppsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetInstalledAppsResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type GetInstalledAppsResponseValidationError added in v0.4.0

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

GetInstalledAppsResponseValidationError is the validation error returned by GetInstalledAppsResponse.Validate if the designated constraints aren't met.

func (GetInstalledAppsResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (GetInstalledAppsResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (GetInstalledAppsResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (GetInstalledAppsResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (GetInstalledAppsResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (GetInstalledAppsResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type GetSystemStatsRequest added in v0.3.8

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

func (*GetSystemStatsRequest) Descriptor deprecated added in v0.3.8

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

Deprecated: Use GetSystemStatsRequest.ProtoReflect.Descriptor instead.

func (*GetSystemStatsRequest) ProtoMessage added in v0.3.8

func (*GetSystemStatsRequest) ProtoMessage()

func (*GetSystemStatsRequest) ProtoReflect added in v0.3.8

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

func (*GetSystemStatsRequest) Reset added in v0.3.8

func (x *GetSystemStatsRequest) Reset()

func (*GetSystemStatsRequest) String added in v0.3.8

func (x *GetSystemStatsRequest) String() string

func (*GetSystemStatsRequest) Validate added in v0.3.8

func (m *GetSystemStatsRequest) Validate() error

Validate checks the field values on GetSystemStatsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetSystemStatsRequest) ValidateAll added in v0.3.8

func (m *GetSystemStatsRequest) ValidateAll() error

ValidateAll checks the field values on GetSystemStatsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetSystemStatsRequestMultiError, or nil if none found.

type GetSystemStatsRequestMultiError added in v0.3.8

type GetSystemStatsRequestMultiError []error

GetSystemStatsRequestMultiError is an error wrapping multiple validation errors returned by GetSystemStatsRequest.ValidateAll() if the designated constraints aren't met.

func (GetSystemStatsRequestMultiError) AllErrors added in v0.3.8

func (m GetSystemStatsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSystemStatsRequestMultiError) Error added in v0.3.8

Error returns a concatenation of all the error messages it wraps.

type GetSystemStatsRequestValidationError added in v0.3.8

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

GetSystemStatsRequestValidationError is the validation error returned by GetSystemStatsRequest.Validate if the designated constraints aren't met.

func (GetSystemStatsRequestValidationError) Cause added in v0.3.8

Cause function returns cause value.

func (GetSystemStatsRequestValidationError) Error added in v0.3.8

Error satisfies the builtin error interface

func (GetSystemStatsRequestValidationError) ErrorName added in v0.3.8

ErrorName returns error name.

func (GetSystemStatsRequestValidationError) Field added in v0.3.8

Field function returns field value.

func (GetSystemStatsRequestValidationError) Key added in v0.3.8

Key function returns key value.

func (GetSystemStatsRequestValidationError) Reason added in v0.3.8

Reason function returns reason value.

type GetSystemStatsResponse added in v0.3.8

type GetSystemStatsResponse struct {
	Stats *v1.SystemStats `protobuf:"bytes,1,opt,name=stats,proto3" json:"stats" bun:"stats" csv:"stats" pg:"stats" yaml:"stats"`
	// contains filtered or unexported fields
}

func (*GetSystemStatsResponse) Descriptor deprecated added in v0.3.8

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

Deprecated: Use GetSystemStatsResponse.ProtoReflect.Descriptor instead.

func (*GetSystemStatsResponse) GetStats added in v0.3.8

func (x *GetSystemStatsResponse) GetStats() *v1.SystemStats

func (*GetSystemStatsResponse) ProtoMessage added in v0.3.8

func (*GetSystemStatsResponse) ProtoMessage()

func (*GetSystemStatsResponse) ProtoReflect added in v0.3.8

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

func (*GetSystemStatsResponse) Reset added in v0.3.8

func (x *GetSystemStatsResponse) Reset()

func (*GetSystemStatsResponse) String added in v0.3.8

func (x *GetSystemStatsResponse) String() string

func (*GetSystemStatsResponse) Validate added in v0.3.8

func (m *GetSystemStatsResponse) Validate() error

Validate checks the field values on GetSystemStatsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetSystemStatsResponse) ValidateAll added in v0.3.8

func (m *GetSystemStatsResponse) ValidateAll() error

ValidateAll checks the field values on GetSystemStatsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetSystemStatsResponseMultiError, or nil if none found.

type GetSystemStatsResponseMultiError added in v0.3.8

type GetSystemStatsResponseMultiError []error

GetSystemStatsResponseMultiError is an error wrapping multiple validation errors returned by GetSystemStatsResponse.ValidateAll() if the designated constraints aren't met.

func (GetSystemStatsResponseMultiError) AllErrors added in v0.3.8

func (m GetSystemStatsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSystemStatsResponseMultiError) Error added in v0.3.8

Error returns a concatenation of all the error messages it wraps.

type GetSystemStatsResponseValidationError added in v0.3.8

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

GetSystemStatsResponseValidationError is the validation error returned by GetSystemStatsResponse.Validate if the designated constraints aren't met.

func (GetSystemStatsResponseValidationError) Cause added in v0.3.8

Cause function returns cause value.

func (GetSystemStatsResponseValidationError) Error added in v0.3.8

Error satisfies the builtin error interface

func (GetSystemStatsResponseValidationError) ErrorName added in v0.3.8

ErrorName returns error name.

func (GetSystemStatsResponseValidationError) Field added in v0.3.8

Field function returns field value.

func (GetSystemStatsResponseValidationError) Key added in v0.3.8

Key function returns key value.

func (GetSystemStatsResponseValidationError) Reason added in v0.3.8

Reason function returns reason value.

type ImageVersion added in v0.3.4

type ImageVersion struct {
	Image   string `protobuf:"bytes,1,opt,name=image,proto3" json:"image" bun:"image" csv:"image" pg:"image" yaml:"image"`
	Current string `protobuf:"bytes,2,opt,name=current,proto3" json:"current" bun:"current" csv:"current" pg:"current" yaml:"current"`
	Latest  string `protobuf:"bytes,3,opt,name=latest,proto3" json:"latest" bun:"latest" csv:"latest" pg:"latest" yaml:"latest"`
	// contains filtered or unexported fields
}

func (*ImageVersion) Descriptor deprecated added in v0.3.4

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

Deprecated: Use ImageVersion.ProtoReflect.Descriptor instead.

func (*ImageVersion) GetCurrent added in v0.3.4

func (x *ImageVersion) GetCurrent() string

func (*ImageVersion) GetImage added in v0.3.4

func (x *ImageVersion) GetImage() string

func (*ImageVersion) GetLatest added in v0.3.4

func (x *ImageVersion) GetLatest() string

func (*ImageVersion) ProtoMessage added in v0.3.4

func (*ImageVersion) ProtoMessage()

func (*ImageVersion) ProtoReflect added in v0.3.4

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

func (*ImageVersion) Reset added in v0.3.4

func (x *ImageVersion) Reset()

func (*ImageVersion) String added in v0.3.4

func (x *ImageVersion) String() string

func (*ImageVersion) Validate added in v0.3.4

func (m *ImageVersion) Validate() error

Validate checks the field values on ImageVersion with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ImageVersion) ValidateAll added in v0.3.4

func (m *ImageVersion) ValidateAll() error

ValidateAll checks the field values on ImageVersion with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ImageVersionMultiError, or nil if none found.

type ImageVersionMultiError added in v0.3.4

type ImageVersionMultiError []error

ImageVersionMultiError is an error wrapping multiple validation errors returned by ImageVersion.ValidateAll() if the designated constraints aren't met.

func (ImageVersionMultiError) AllErrors added in v0.3.4

func (m ImageVersionMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ImageVersionMultiError) Error added in v0.3.4

func (m ImageVersionMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ImageVersionValidationError added in v0.3.4

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

ImageVersionValidationError is the validation error returned by ImageVersion.Validate if the designated constraints aren't met.

func (ImageVersionValidationError) Cause added in v0.3.4

Cause function returns cause value.

func (ImageVersionValidationError) Error added in v0.3.4

Error satisfies the builtin error interface

func (ImageVersionValidationError) ErrorName added in v0.3.4

func (e ImageVersionValidationError) ErrorName() string

ErrorName returns error name.

func (ImageVersionValidationError) Field added in v0.3.4

Field function returns field value.

func (ImageVersionValidationError) Key added in v0.3.4

Key function returns key value.

func (ImageVersionValidationError) Reason added in v0.3.4

Reason function returns reason value.

type InitializeDeviceRequest added in v0.4.0

type InitializeDeviceRequest struct {
	Username       string   `protobuf:"bytes,1,opt,name=username,proto3" json:"username" bun:"username" csv:"username" pg:"username" yaml:"username"`
	Password       string   `protobuf:"bytes,2,opt,name=password,proto3" json:"password" bun:"password" csv:"password" pg:"password" yaml:"password"`
	Timezone       string   `protobuf:"bytes,3,opt,name=timezone,proto3" json:"timezone" bun:"timezone" csv:"timezone" pg:"timezone" yaml:"timezone"`
	AutoUpdateApps bool     `` /* 188-byte string literal not displayed */
	AutoUpdateOs   bool     `` /* 174-byte string literal not displayed */
	DefaultApps    []string `` /* 160-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*InitializeDeviceRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use InitializeDeviceRequest.ProtoReflect.Descriptor instead.

func (*InitializeDeviceRequest) GetAutoUpdateApps added in v0.4.0

func (x *InitializeDeviceRequest) GetAutoUpdateApps() bool

func (*InitializeDeviceRequest) GetAutoUpdateOs added in v0.4.0

func (x *InitializeDeviceRequest) GetAutoUpdateOs() bool

func (*InitializeDeviceRequest) GetDefaultApps added in v0.4.0

func (x *InitializeDeviceRequest) GetDefaultApps() []string

func (*InitializeDeviceRequest) GetPassword added in v0.4.0

func (x *InitializeDeviceRequest) GetPassword() string

func (*InitializeDeviceRequest) GetTimezone added in v0.4.0

func (x *InitializeDeviceRequest) GetTimezone() string

func (*InitializeDeviceRequest) GetUsername added in v0.4.0

func (x *InitializeDeviceRequest) GetUsername() string

func (*InitializeDeviceRequest) ProtoMessage added in v0.4.0

func (*InitializeDeviceRequest) ProtoMessage()

func (*InitializeDeviceRequest) ProtoReflect added in v0.4.0

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

func (*InitializeDeviceRequest) Reset added in v0.4.0

func (x *InitializeDeviceRequest) Reset()

func (*InitializeDeviceRequest) String added in v0.4.0

func (x *InitializeDeviceRequest) String() string

func (*InitializeDeviceRequest) Validate added in v0.4.0

func (m *InitializeDeviceRequest) Validate() error

Validate checks the field values on InitializeDeviceRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InitializeDeviceRequest) ValidateAll added in v0.4.0

func (m *InitializeDeviceRequest) ValidateAll() error

ValidateAll checks the field values on InitializeDeviceRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InitializeDeviceRequestMultiError, or nil if none found.

type InitializeDeviceRequestMultiError added in v0.4.0

type InitializeDeviceRequestMultiError []error

InitializeDeviceRequestMultiError is an error wrapping multiple validation errors returned by InitializeDeviceRequest.ValidateAll() if the designated constraints aren't met.

func (InitializeDeviceRequestMultiError) AllErrors added in v0.4.0

func (m InitializeDeviceRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InitializeDeviceRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type InitializeDeviceRequestValidationError added in v0.4.0

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

InitializeDeviceRequestValidationError is the validation error returned by InitializeDeviceRequest.Validate if the designated constraints aren't met.

func (InitializeDeviceRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (InitializeDeviceRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (InitializeDeviceRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (InitializeDeviceRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (InitializeDeviceRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (InitializeDeviceRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type InitializeDeviceResponse added in v0.4.0

type InitializeDeviceResponse struct {
	Setup bool `protobuf:"varint,1,opt,name=setup,proto3" json:"setup" bun:"setup" csv:"setup" pg:"setup" yaml:"setup"`
	// contains filtered or unexported fields
}

func (*InitializeDeviceResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use InitializeDeviceResponse.ProtoReflect.Descriptor instead.

func (*InitializeDeviceResponse) GetSetup added in v0.4.0

func (x *InitializeDeviceResponse) GetSetup() bool

func (*InitializeDeviceResponse) ProtoMessage added in v0.4.0

func (*InitializeDeviceResponse) ProtoMessage()

func (*InitializeDeviceResponse) ProtoReflect added in v0.4.0

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

func (*InitializeDeviceResponse) Reset added in v0.4.0

func (x *InitializeDeviceResponse) Reset()

func (*InitializeDeviceResponse) String added in v0.4.0

func (x *InitializeDeviceResponse) String() string

func (*InitializeDeviceResponse) Validate added in v0.4.0

func (m *InitializeDeviceResponse) Validate() error

Validate checks the field values on InitializeDeviceResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InitializeDeviceResponse) ValidateAll added in v0.4.0

func (m *InitializeDeviceResponse) ValidateAll() error

ValidateAll checks the field values on InitializeDeviceResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InitializeDeviceResponseMultiError, or nil if none found.

type InitializeDeviceResponseMultiError added in v0.4.0

type InitializeDeviceResponseMultiError []error

InitializeDeviceResponseMultiError is an error wrapping multiple validation errors returned by InitializeDeviceResponse.ValidateAll() if the designated constraints aren't met.

func (InitializeDeviceResponseMultiError) AllErrors added in v0.4.0

func (m InitializeDeviceResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InitializeDeviceResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type InitializeDeviceResponseValidationError added in v0.4.0

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

InitializeDeviceResponseValidationError is the validation error returned by InitializeDeviceResponse.Validate if the designated constraints aren't met.

func (InitializeDeviceResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (InitializeDeviceResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (InitializeDeviceResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (InitializeDeviceResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (InitializeDeviceResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (InitializeDeviceResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type InstallAppRequest added in v0.3.0

type InstallAppRequest struct {
	Chart   string `protobuf:"bytes,1,opt,name=chart,proto3" json:"chart" bun:"chart" csv:"chart" pg:"chart" yaml:"chart"`
	Repo    string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo" bun:"repo" csv:"repo" pg:"repo" yaml:"repo"`
	Release string `protobuf:"bytes,3,opt,name=release,proto3" json:"release" bun:"release" csv:"release" pg:"release" yaml:"release"`
	Values  string `protobuf:"bytes,4,opt,name=values,proto3" json:"values" bun:"values" csv:"values" pg:"values" yaml:"values"`
	Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version" bun:"version" csv:"version" pg:"version" yaml:"version"`
	// contains filtered or unexported fields
}

func (*InstallAppRequest) Descriptor deprecated added in v0.3.0

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

Deprecated: Use InstallAppRequest.ProtoReflect.Descriptor instead.

func (*InstallAppRequest) GetChart added in v0.3.0

func (x *InstallAppRequest) GetChart() string

func (*InstallAppRequest) GetRelease added in v0.3.0

func (x *InstallAppRequest) GetRelease() string

func (*InstallAppRequest) GetRepo added in v0.3.0

func (x *InstallAppRequest) GetRepo() string

func (*InstallAppRequest) GetValues added in v0.3.0

func (x *InstallAppRequest) GetValues() string

func (*InstallAppRequest) GetVersion added in v0.3.1

func (x *InstallAppRequest) GetVersion() string

func (*InstallAppRequest) ProtoMessage added in v0.3.0

func (*InstallAppRequest) ProtoMessage()

func (*InstallAppRequest) ProtoReflect added in v0.3.0

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

func (*InstallAppRequest) Reset added in v0.3.0

func (x *InstallAppRequest) Reset()

func (*InstallAppRequest) String added in v0.3.0

func (x *InstallAppRequest) String() string

func (*InstallAppRequest) Validate added in v0.3.0

func (m *InstallAppRequest) Validate() error

Validate checks the field values on InstallAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InstallAppRequest) ValidateAll added in v0.3.0

func (m *InstallAppRequest) ValidateAll() error

ValidateAll checks the field values on InstallAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InstallAppRequestMultiError, or nil if none found.

type InstallAppRequestMultiError added in v0.3.0

type InstallAppRequestMultiError []error

InstallAppRequestMultiError is an error wrapping multiple validation errors returned by InstallAppRequest.ValidateAll() if the designated constraints aren't met.

func (InstallAppRequestMultiError) AllErrors added in v0.3.0

func (m InstallAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InstallAppRequestMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type InstallAppRequestValidationError added in v0.3.0

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

InstallAppRequestValidationError is the validation error returned by InstallAppRequest.Validate if the designated constraints aren't met.

func (InstallAppRequestValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (InstallAppRequestValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (InstallAppRequestValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (InstallAppRequestValidationError) Field added in v0.3.0

Field function returns field value.

func (InstallAppRequestValidationError) Key added in v0.3.0

Key function returns key value.

func (InstallAppRequestValidationError) Reason added in v0.3.0

Reason function returns reason value.

type InstallAppResponse added in v0.3.0

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

func (*InstallAppResponse) Descriptor deprecated added in v0.3.0

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

Deprecated: Use InstallAppResponse.ProtoReflect.Descriptor instead.

func (*InstallAppResponse) ProtoMessage added in v0.3.0

func (*InstallAppResponse) ProtoMessage()

func (*InstallAppResponse) ProtoReflect added in v0.3.0

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

func (*InstallAppResponse) Reset added in v0.3.0

func (x *InstallAppResponse) Reset()

func (*InstallAppResponse) String added in v0.3.0

func (x *InstallAppResponse) String() string

func (*InstallAppResponse) Validate added in v0.3.0

func (m *InstallAppResponse) Validate() error

Validate checks the field values on InstallAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InstallAppResponse) ValidateAll added in v0.3.0

func (m *InstallAppResponse) ValidateAll() error

ValidateAll checks the field values on InstallAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InstallAppResponseMultiError, or nil if none found.

type InstallAppResponseMultiError added in v0.3.0

type InstallAppResponseMultiError []error

InstallAppResponseMultiError is an error wrapping multiple validation errors returned by InstallAppResponse.ValidateAll() if the designated constraints aren't met.

func (InstallAppResponseMultiError) AllErrors added in v0.3.0

func (m InstallAppResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InstallAppResponseMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type InstallAppResponseValidationError added in v0.3.0

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

InstallAppResponseValidationError is the validation error returned by InstallAppResponse.Validate if the designated constraints aren't met.

func (InstallAppResponseValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (InstallAppResponseValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (InstallAppResponseValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (InstallAppResponseValidationError) Field added in v0.3.0

Field function returns field value.

func (InstallAppResponseValidationError) Key added in v0.3.0

Key function returns key value.

func (InstallAppResponseValidationError) Reason added in v0.3.0

Reason function returns reason value.

type InstallOSUpdateRequest added in v0.3.5

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

func (*InstallOSUpdateRequest) Descriptor deprecated added in v0.3.5

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

Deprecated: Use InstallOSUpdateRequest.ProtoReflect.Descriptor instead.

func (*InstallOSUpdateRequest) ProtoMessage added in v0.3.5

func (*InstallOSUpdateRequest) ProtoMessage()

func (*InstallOSUpdateRequest) ProtoReflect added in v0.3.5

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

func (*InstallOSUpdateRequest) Reset added in v0.3.5

func (x *InstallOSUpdateRequest) Reset()

func (*InstallOSUpdateRequest) String added in v0.3.5

func (x *InstallOSUpdateRequest) String() string

func (*InstallOSUpdateRequest) Validate added in v0.3.5

func (m *InstallOSUpdateRequest) Validate() error

Validate checks the field values on InstallOSUpdateRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InstallOSUpdateRequest) ValidateAll added in v0.3.5

func (m *InstallOSUpdateRequest) ValidateAll() error

ValidateAll checks the field values on InstallOSUpdateRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InstallOSUpdateRequestMultiError, or nil if none found.

type InstallOSUpdateRequestMultiError added in v0.3.5

type InstallOSUpdateRequestMultiError []error

InstallOSUpdateRequestMultiError is an error wrapping multiple validation errors returned by InstallOSUpdateRequest.ValidateAll() if the designated constraints aren't met.

func (InstallOSUpdateRequestMultiError) AllErrors added in v0.3.5

func (m InstallOSUpdateRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InstallOSUpdateRequestMultiError) Error added in v0.3.5

Error returns a concatenation of all the error messages it wraps.

type InstallOSUpdateRequestValidationError added in v0.3.5

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

InstallOSUpdateRequestValidationError is the validation error returned by InstallOSUpdateRequest.Validate if the designated constraints aren't met.

func (InstallOSUpdateRequestValidationError) Cause added in v0.3.5

Cause function returns cause value.

func (InstallOSUpdateRequestValidationError) Error added in v0.3.5

Error satisfies the builtin error interface

func (InstallOSUpdateRequestValidationError) ErrorName added in v0.3.5

ErrorName returns error name.

func (InstallOSUpdateRequestValidationError) Field added in v0.3.5

Field function returns field value.

func (InstallOSUpdateRequestValidationError) Key added in v0.3.5

Key function returns key value.

func (InstallOSUpdateRequestValidationError) Reason added in v0.3.5

Reason function returns reason value.

type InstallOSUpdateResponse added in v0.3.5

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

func (*InstallOSUpdateResponse) Descriptor deprecated added in v0.3.5

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

Deprecated: Use InstallOSUpdateResponse.ProtoReflect.Descriptor instead.

func (*InstallOSUpdateResponse) ProtoMessage added in v0.3.5

func (*InstallOSUpdateResponse) ProtoMessage()

func (*InstallOSUpdateResponse) ProtoReflect added in v0.3.5

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

func (*InstallOSUpdateResponse) Reset added in v0.3.5

func (x *InstallOSUpdateResponse) Reset()

func (*InstallOSUpdateResponse) String added in v0.3.5

func (x *InstallOSUpdateResponse) String() string

func (*InstallOSUpdateResponse) Validate added in v0.3.5

func (m *InstallOSUpdateResponse) Validate() error

Validate checks the field values on InstallOSUpdateResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InstallOSUpdateResponse) ValidateAll added in v0.3.5

func (m *InstallOSUpdateResponse) ValidateAll() error

ValidateAll checks the field values on InstallOSUpdateResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InstallOSUpdateResponseMultiError, or nil if none found.

type InstallOSUpdateResponseMultiError added in v0.3.5

type InstallOSUpdateResponseMultiError []error

InstallOSUpdateResponseMultiError is an error wrapping multiple validation errors returned by InstallOSUpdateResponse.ValidateAll() if the designated constraints aren't met.

func (InstallOSUpdateResponseMultiError) AllErrors added in v0.3.5

func (m InstallOSUpdateResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InstallOSUpdateResponseMultiError) Error added in v0.3.5

Error returns a concatenation of all the error messages it wraps.

type InstallOSUpdateResponseValidationError added in v0.3.5

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

InstallOSUpdateResponseValidationError is the validation error returned by InstallOSUpdateResponse.Validate if the designated constraints aren't met.

func (InstallOSUpdateResponseValidationError) Cause added in v0.3.5

Cause function returns cause value.

func (InstallOSUpdateResponseValidationError) Error added in v0.3.5

Error satisfies the builtin error interface

func (InstallOSUpdateResponseValidationError) ErrorName added in v0.3.5

ErrorName returns error name.

func (InstallOSUpdateResponseValidationError) Field added in v0.3.5

Field function returns field value.

func (InstallOSUpdateResponseValidationError) Key added in v0.3.5

Key function returns key value.

func (InstallOSUpdateResponseValidationError) Reason added in v0.3.5

Reason function returns reason value.

type InstalledApp added in v0.4.0

type InstalledApp struct {
	Application *App              `` /* 137-byte string literal not displayed */
	Status      *AppRunningStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status" bun:"status" csv:"status" pg:"status" yaml:"status"`
	// contains filtered or unexported fields
}

Aggregate model for the installed apps saved in blueprint

func (*InstalledApp) Descriptor deprecated added in v0.4.0

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

Deprecated: Use InstalledApp.ProtoReflect.Descriptor instead.

func (*InstalledApp) GetApplication added in v0.4.0

func (x *InstalledApp) GetApplication() *App

func (*InstalledApp) GetStatus added in v0.4.0

func (x *InstalledApp) GetStatus() *AppRunningStatus

func (*InstalledApp) ProtoMessage added in v0.4.0

func (*InstalledApp) ProtoMessage()

func (*InstalledApp) ProtoReflect added in v0.4.0

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

func (*InstalledApp) Reset added in v0.4.0

func (x *InstalledApp) Reset()

func (*InstalledApp) String added in v0.4.0

func (x *InstalledApp) String() string

func (*InstalledApp) Validate added in v0.4.0

func (m *InstalledApp) Validate() error

Validate checks the field values on InstalledApp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*InstalledApp) ValidateAll added in v0.4.0

func (m *InstalledApp) ValidateAll() error

ValidateAll checks the field values on InstalledApp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in InstalledAppMultiError, or nil if none found.

type InstalledAppMultiError added in v0.4.0

type InstalledAppMultiError []error

InstalledAppMultiError is an error wrapping multiple validation errors returned by InstalledApp.ValidateAll() if the designated constraints aren't met.

func (InstalledAppMultiError) AllErrors added in v0.4.0

func (m InstalledAppMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (InstalledAppMultiError) Error added in v0.4.0

func (m InstalledAppMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type InstalledAppValidationError added in v0.4.0

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

InstalledAppValidationError is the validation error returned by InstalledApp.Validate if the designated constraints aren't met.

func (InstalledAppValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (InstalledAppValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (InstalledAppValidationError) ErrorName added in v0.4.0

func (e InstalledAppValidationError) ErrorName() string

ErrorName returns error name.

func (InstalledAppValidationError) Field added in v0.4.0

Field function returns field value.

func (InstalledAppValidationError) Key added in v0.4.0

Key function returns key value.

func (InstalledAppValidationError) Reason added in v0.4.0

Reason function returns reason value.

type IsDeviceSetupRequest added in v0.4.0

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

func (*IsDeviceSetupRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use IsDeviceSetupRequest.ProtoReflect.Descriptor instead.

func (*IsDeviceSetupRequest) ProtoMessage added in v0.4.0

func (*IsDeviceSetupRequest) ProtoMessage()

func (*IsDeviceSetupRequest) ProtoReflect added in v0.4.0

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

func (*IsDeviceSetupRequest) Reset added in v0.4.0

func (x *IsDeviceSetupRequest) Reset()

func (*IsDeviceSetupRequest) String added in v0.4.0

func (x *IsDeviceSetupRequest) String() string

func (*IsDeviceSetupRequest) Validate added in v0.4.0

func (m *IsDeviceSetupRequest) Validate() error

Validate checks the field values on IsDeviceSetupRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*IsDeviceSetupRequest) ValidateAll added in v0.4.0

func (m *IsDeviceSetupRequest) ValidateAll() error

ValidateAll checks the field values on IsDeviceSetupRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in IsDeviceSetupRequestMultiError, or nil if none found.

type IsDeviceSetupRequestMultiError added in v0.4.0

type IsDeviceSetupRequestMultiError []error

IsDeviceSetupRequestMultiError is an error wrapping multiple validation errors returned by IsDeviceSetupRequest.ValidateAll() if the designated constraints aren't met.

func (IsDeviceSetupRequestMultiError) AllErrors added in v0.4.0

func (m IsDeviceSetupRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IsDeviceSetupRequestMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type IsDeviceSetupRequestValidationError added in v0.4.0

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

IsDeviceSetupRequestValidationError is the validation error returned by IsDeviceSetupRequest.Validate if the designated constraints aren't met.

func (IsDeviceSetupRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (IsDeviceSetupRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (IsDeviceSetupRequestValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (IsDeviceSetupRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (IsDeviceSetupRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (IsDeviceSetupRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type IsDeviceSetupResponse added in v0.4.0

type IsDeviceSetupResponse struct {

	// If false the device is not setup, and the user should be redirected into the onboarding flow
	Setup bool `protobuf:"varint,1,opt,name=setup,proto3" json:"setup" bun:"setup" csv:"setup" pg:"setup" yaml:"setup"`
	// contains filtered or unexported fields
}

func (*IsDeviceSetupResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use IsDeviceSetupResponse.ProtoReflect.Descriptor instead.

func (*IsDeviceSetupResponse) GetSetup added in v0.4.0

func (x *IsDeviceSetupResponse) GetSetup() bool

func (*IsDeviceSetupResponse) ProtoMessage added in v0.4.0

func (*IsDeviceSetupResponse) ProtoMessage()

func (*IsDeviceSetupResponse) ProtoReflect added in v0.4.0

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

func (*IsDeviceSetupResponse) Reset added in v0.4.0

func (x *IsDeviceSetupResponse) Reset()

func (*IsDeviceSetupResponse) String added in v0.4.0

func (x *IsDeviceSetupResponse) String() string

func (*IsDeviceSetupResponse) Validate added in v0.4.0

func (m *IsDeviceSetupResponse) Validate() error

Validate checks the field values on IsDeviceSetupResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*IsDeviceSetupResponse) ValidateAll added in v0.4.0

func (m *IsDeviceSetupResponse) ValidateAll() error

ValidateAll checks the field values on IsDeviceSetupResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in IsDeviceSetupResponseMultiError, or nil if none found.

type IsDeviceSetupResponseMultiError added in v0.4.0

type IsDeviceSetupResponseMultiError []error

IsDeviceSetupResponseMultiError is an error wrapping multiple validation errors returned by IsDeviceSetupResponse.ValidateAll() if the designated constraints aren't met.

func (IsDeviceSetupResponseMultiError) AllErrors added in v0.4.0

func (m IsDeviceSetupResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IsDeviceSetupResponseMultiError) Error added in v0.4.0

Error returns a concatenation of all the error messages it wraps.

type IsDeviceSetupResponseValidationError added in v0.4.0

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

IsDeviceSetupResponseValidationError is the validation error returned by IsDeviceSetupResponse.Validate if the designated constraints aren't met.

func (IsDeviceSetupResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (IsDeviceSetupResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (IsDeviceSetupResponseValidationError) ErrorName added in v0.4.0

ErrorName returns error name.

func (IsDeviceSetupResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (IsDeviceSetupResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (IsDeviceSetupResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type LoginRequest added in v0.4.0

type LoginRequest struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username" bun:"username" csv:"username" pg:"username" yaml:"username"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password" bun:"password" csv:"password" pg:"password" yaml:"password"`
	// contains filtered or unexported fields
}

func (*LoginRequest) Descriptor deprecated added in v0.4.0

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

Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.

func (*LoginRequest) GetPassword added in v0.4.0

func (x *LoginRequest) GetPassword() string

func (*LoginRequest) GetUsername added in v0.4.0

func (x *LoginRequest) GetUsername() string

func (*LoginRequest) ProtoMessage added in v0.4.0

func (*LoginRequest) ProtoMessage()

func (*LoginRequest) ProtoReflect added in v0.4.0

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

func (*LoginRequest) Reset added in v0.4.0

func (x *LoginRequest) Reset()

func (*LoginRequest) String added in v0.4.0

func (x *LoginRequest) String() string

func (*LoginRequest) Validate added in v0.4.0

func (m *LoginRequest) Validate() error

Validate checks the field values on LoginRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LoginRequest) ValidateAll added in v0.4.0

func (m *LoginRequest) ValidateAll() error

ValidateAll checks the field values on LoginRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LoginRequestMultiError, or nil if none found.

type LoginRequestMultiError added in v0.4.0

type LoginRequestMultiError []error

LoginRequestMultiError is an error wrapping multiple validation errors returned by LoginRequest.ValidateAll() if the designated constraints aren't met.

func (LoginRequestMultiError) AllErrors added in v0.4.0

func (m LoginRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginRequestMultiError) Error added in v0.4.0

func (m LoginRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LoginRequestValidationError added in v0.4.0

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

LoginRequestValidationError is the validation error returned by LoginRequest.Validate if the designated constraints aren't met.

func (LoginRequestValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (LoginRequestValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (LoginRequestValidationError) ErrorName added in v0.4.0

func (e LoginRequestValidationError) ErrorName() string

ErrorName returns error name.

func (LoginRequestValidationError) Field added in v0.4.0

Field function returns field value.

func (LoginRequestValidationError) Key added in v0.4.0

Key function returns key value.

func (LoginRequestValidationError) Reason added in v0.4.0

Reason function returns reason value.

type LoginResponse added in v0.4.0

type LoginResponse struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token" bun:"token" csv:"token" pg:"token" yaml:"token"`
	// contains filtered or unexported fields
}

func (*LoginResponse) Descriptor deprecated added in v0.4.0

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetToken added in v0.4.0

func (x *LoginResponse) GetToken() string

func (*LoginResponse) ProtoMessage added in v0.4.0

func (*LoginResponse) ProtoMessage()

func (*LoginResponse) ProtoReflect added in v0.4.0

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

func (*LoginResponse) Reset added in v0.4.0

func (x *LoginResponse) Reset()

func (*LoginResponse) String added in v0.4.0

func (x *LoginResponse) String() string

func (*LoginResponse) Validate added in v0.4.0

func (m *LoginResponse) Validate() error

Validate checks the field values on LoginResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*LoginResponse) ValidateAll added in v0.4.0

func (m *LoginResponse) ValidateAll() error

ValidateAll checks the field values on LoginResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LoginResponseMultiError, or nil if none found.

type LoginResponseMultiError added in v0.4.0

type LoginResponseMultiError []error

LoginResponseMultiError is an error wrapping multiple validation errors returned by LoginResponse.ValidateAll() if the designated constraints aren't met.

func (LoginResponseMultiError) AllErrors added in v0.4.0

func (m LoginResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (LoginResponseMultiError) Error added in v0.4.0

func (m LoginResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type LoginResponseValidationError added in v0.4.0

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

LoginResponseValidationError is the validation error returned by LoginResponse.Validate if the designated constraints aren't met.

func (LoginResponseValidationError) Cause added in v0.4.0

Cause function returns cause value.

func (LoginResponseValidationError) Error added in v0.4.0

Error satisfies the builtin error interface

func (LoginResponseValidationError) ErrorName added in v0.4.0

func (e LoginResponseValidationError) ErrorName() string

ErrorName returns error name.

func (LoginResponseValidationError) Field added in v0.4.0

Field function returns field value.

func (LoginResponseValidationError) Key added in v0.4.0

Key function returns key value.

func (LoginResponseValidationError) Reason added in v0.4.0

Reason function returns reason value.

type RestartHostRequest

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

func (*RestartHostRequest) Descriptor deprecated

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

Deprecated: Use RestartHostRequest.ProtoReflect.Descriptor instead.

func (*RestartHostRequest) ProtoMessage

func (*RestartHostRequest) ProtoMessage()

func (*RestartHostRequest) ProtoReflect

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

func (*RestartHostRequest) Reset

func (x *RestartHostRequest) Reset()

func (*RestartHostRequest) String

func (x *RestartHostRequest) String() string

func (*RestartHostRequest) Validate

func (m *RestartHostRequest) Validate() error

Validate checks the field values on RestartHostRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RestartHostRequest) ValidateAll

func (m *RestartHostRequest) ValidateAll() error

ValidateAll checks the field values on RestartHostRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RestartHostRequestMultiError, or nil if none found.

type RestartHostRequestMultiError

type RestartHostRequestMultiError []error

RestartHostRequestMultiError is an error wrapping multiple validation errors returned by RestartHostRequest.ValidateAll() if the designated constraints aren't met.

func (RestartHostRequestMultiError) AllErrors

func (m RestartHostRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RestartHostRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type RestartHostRequestValidationError

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

RestartHostRequestValidationError is the validation error returned by RestartHostRequest.Validate if the designated constraints aren't met.

func (RestartHostRequestValidationError) Cause

Cause function returns cause value.

func (RestartHostRequestValidationError) Error

Error satisfies the builtin error interface

func (RestartHostRequestValidationError) ErrorName

ErrorName returns error name.

func (RestartHostRequestValidationError) Field

Field function returns field value.

func (RestartHostRequestValidationError) Key

Key function returns key value.

func (RestartHostRequestValidationError) Reason

Reason function returns reason value.

type RestartHostResponse

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

func (*RestartHostResponse) Descriptor deprecated

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

Deprecated: Use RestartHostResponse.ProtoReflect.Descriptor instead.

func (*RestartHostResponse) ProtoMessage

func (*RestartHostResponse) ProtoMessage()

func (*RestartHostResponse) ProtoReflect

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

func (*RestartHostResponse) Reset

func (x *RestartHostResponse) Reset()

func (*RestartHostResponse) String

func (x *RestartHostResponse) String() string

func (*RestartHostResponse) Validate

func (m *RestartHostResponse) Validate() error

Validate checks the field values on RestartHostResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*RestartHostResponse) ValidateAll

func (m *RestartHostResponse) ValidateAll() error

ValidateAll checks the field values on RestartHostResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in RestartHostResponseMultiError, or nil if none found.

type RestartHostResponseMultiError

type RestartHostResponseMultiError []error

RestartHostResponseMultiError is an error wrapping multiple validation errors returned by RestartHostResponse.ValidateAll() if the designated constraints aren't met.

func (RestartHostResponseMultiError) AllErrors

func (m RestartHostResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (RestartHostResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type RestartHostResponseValidationError

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

RestartHostResponseValidationError is the validation error returned by RestartHostResponse.Validate if the designated constraints aren't met.

func (RestartHostResponseValidationError) Cause

Cause function returns cause value.

func (RestartHostResponseValidationError) Error

Error satisfies the builtin error interface

func (RestartHostResponseValidationError) ErrorName

ErrorName returns error name.

func (RestartHostResponseValidationError) Field

Field function returns field value.

func (RestartHostResponseValidationError) Key

Key function returns key value.

func (RestartHostResponseValidationError) Reason

Reason function returns reason value.

type SetSystemImageRequest added in v0.3.6

type SetSystemImageRequest struct {
	CurrentImage   string `` /* 167-byte string literal not displayed */
	RequestedImage string `` /* 181-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SetSystemImageRequest) Descriptor deprecated added in v0.3.6

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

Deprecated: Use SetSystemImageRequest.ProtoReflect.Descriptor instead.

func (*SetSystemImageRequest) GetCurrentImage added in v0.3.6

func (x *SetSystemImageRequest) GetCurrentImage() string

func (*SetSystemImageRequest) GetRequestedImage added in v0.3.6

func (x *SetSystemImageRequest) GetRequestedImage() string

func (*SetSystemImageRequest) ProtoMessage added in v0.3.6

func (*SetSystemImageRequest) ProtoMessage()

func (*SetSystemImageRequest) ProtoReflect added in v0.3.6

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

func (*SetSystemImageRequest) Reset added in v0.3.6

func (x *SetSystemImageRequest) Reset()

func (*SetSystemImageRequest) String added in v0.3.6

func (x *SetSystemImageRequest) String() string

func (*SetSystemImageRequest) Validate added in v0.3.6

func (m *SetSystemImageRequest) Validate() error

Validate checks the field values on SetSystemImageRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetSystemImageRequest) ValidateAll added in v0.3.6

func (m *SetSystemImageRequest) ValidateAll() error

ValidateAll checks the field values on SetSystemImageRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetSystemImageRequestMultiError, or nil if none found.

type SetSystemImageRequestMultiError added in v0.3.6

type SetSystemImageRequestMultiError []error

SetSystemImageRequestMultiError is an error wrapping multiple validation errors returned by SetSystemImageRequest.ValidateAll() if the designated constraints aren't met.

func (SetSystemImageRequestMultiError) AllErrors added in v0.3.6

func (m SetSystemImageRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetSystemImageRequestMultiError) Error added in v0.3.6

Error returns a concatenation of all the error messages it wraps.

type SetSystemImageRequestValidationError added in v0.3.6

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

SetSystemImageRequestValidationError is the validation error returned by SetSystemImageRequest.Validate if the designated constraints aren't met.

func (SetSystemImageRequestValidationError) Cause added in v0.3.6

Cause function returns cause value.

func (SetSystemImageRequestValidationError) Error added in v0.3.6

Error satisfies the builtin error interface

func (SetSystemImageRequestValidationError) ErrorName added in v0.3.6

ErrorName returns error name.

func (SetSystemImageRequestValidationError) Field added in v0.3.6

Field function returns field value.

func (SetSystemImageRequestValidationError) Key added in v0.3.6

Key function returns key value.

func (SetSystemImageRequestValidationError) Reason added in v0.3.6

Reason function returns reason value.

type SetSystemImageResponse added in v0.3.6

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

func (*SetSystemImageResponse) Descriptor deprecated added in v0.3.6

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

Deprecated: Use SetSystemImageResponse.ProtoReflect.Descriptor instead.

func (*SetSystemImageResponse) ProtoMessage added in v0.3.6

func (*SetSystemImageResponse) ProtoMessage()

func (*SetSystemImageResponse) ProtoReflect added in v0.3.6

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

func (*SetSystemImageResponse) Reset added in v0.3.6

func (x *SetSystemImageResponse) Reset()

func (*SetSystemImageResponse) String added in v0.3.6

func (x *SetSystemImageResponse) String() string

func (*SetSystemImageResponse) Validate added in v0.3.6

func (m *SetSystemImageResponse) Validate() error

Validate checks the field values on SetSystemImageResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetSystemImageResponse) ValidateAll added in v0.3.6

func (m *SetSystemImageResponse) ValidateAll() error

ValidateAll checks the field values on SetSystemImageResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetSystemImageResponseMultiError, or nil if none found.

type SetSystemImageResponseMultiError added in v0.3.6

type SetSystemImageResponseMultiError []error

SetSystemImageResponseMultiError is an error wrapping multiple validation errors returned by SetSystemImageResponse.ValidateAll() if the designated constraints aren't met.

func (SetSystemImageResponseMultiError) AllErrors added in v0.3.6

func (m SetSystemImageResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SetSystemImageResponseMultiError) Error added in v0.3.6

Error returns a concatenation of all the error messages it wraps.

type SetSystemImageResponseValidationError added in v0.3.6

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

SetSystemImageResponseValidationError is the validation error returned by SetSystemImageResponse.Validate if the designated constraints aren't met.

func (SetSystemImageResponseValidationError) Cause added in v0.3.6

Cause function returns cause value.

func (SetSystemImageResponseValidationError) Error added in v0.3.6

Error satisfies the builtin error interface

func (SetSystemImageResponseValidationError) ErrorName added in v0.3.6

ErrorName returns error name.

func (SetSystemImageResponseValidationError) Field added in v0.3.6

Field function returns field value.

func (SetSystemImageResponseValidationError) Key added in v0.3.6

Key function returns key value.

func (SetSystemImageResponseValidationError) Reason added in v0.3.6

Reason function returns reason value.

type ShutdownHostRequest

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

func (*ShutdownHostRequest) Descriptor deprecated

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

Deprecated: Use ShutdownHostRequest.ProtoReflect.Descriptor instead.

func (*ShutdownHostRequest) ProtoMessage

func (*ShutdownHostRequest) ProtoMessage()

func (*ShutdownHostRequest) ProtoReflect

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

func (*ShutdownHostRequest) Reset

func (x *ShutdownHostRequest) Reset()

func (*ShutdownHostRequest) String

func (x *ShutdownHostRequest) String() string

func (*ShutdownHostRequest) Validate

func (m *ShutdownHostRequest) Validate() error

Validate checks the field values on ShutdownHostRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ShutdownHostRequest) ValidateAll

func (m *ShutdownHostRequest) ValidateAll() error

ValidateAll checks the field values on ShutdownHostRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ShutdownHostRequestMultiError, or nil if none found.

type ShutdownHostRequestMultiError

type ShutdownHostRequestMultiError []error

ShutdownHostRequestMultiError is an error wrapping multiple validation errors returned by ShutdownHostRequest.ValidateAll() if the designated constraints aren't met.

func (ShutdownHostRequestMultiError) AllErrors

func (m ShutdownHostRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ShutdownHostRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ShutdownHostRequestValidationError

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

ShutdownHostRequestValidationError is the validation error returned by ShutdownHostRequest.Validate if the designated constraints aren't met.

func (ShutdownHostRequestValidationError) Cause

Cause function returns cause value.

func (ShutdownHostRequestValidationError) Error

Error satisfies the builtin error interface

func (ShutdownHostRequestValidationError) ErrorName

ErrorName returns error name.

func (ShutdownHostRequestValidationError) Field

Field function returns field value.

func (ShutdownHostRequestValidationError) Key

Key function returns key value.

func (ShutdownHostRequestValidationError) Reason

Reason function returns reason value.

type ShutdownHostResponse

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

func (*ShutdownHostResponse) Descriptor deprecated

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

Deprecated: Use ShutdownHostResponse.ProtoReflect.Descriptor instead.

func (*ShutdownHostResponse) ProtoMessage

func (*ShutdownHostResponse) ProtoMessage()

func (*ShutdownHostResponse) ProtoReflect

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

func (*ShutdownHostResponse) Reset

func (x *ShutdownHostResponse) Reset()

func (*ShutdownHostResponse) String

func (x *ShutdownHostResponse) String() string

func (*ShutdownHostResponse) Validate

func (m *ShutdownHostResponse) Validate() error

Validate checks the field values on ShutdownHostResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ShutdownHostResponse) ValidateAll

func (m *ShutdownHostResponse) ValidateAll() error

ValidateAll checks the field values on ShutdownHostResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ShutdownHostResponseMultiError, or nil if none found.

type ShutdownHostResponseMultiError

type ShutdownHostResponseMultiError []error

ShutdownHostResponseMultiError is an error wrapping multiple validation errors returned by ShutdownHostResponse.ValidateAll() if the designated constraints aren't met.

func (ShutdownHostResponseMultiError) AllErrors

func (m ShutdownHostResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ShutdownHostResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ShutdownHostResponseValidationError

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

ShutdownHostResponseValidationError is the validation error returned by ShutdownHostResponse.Validate if the designated constraints aren't met.

func (ShutdownHostResponseValidationError) Cause

Cause function returns cause value.

func (ShutdownHostResponseValidationError) Error

Error satisfies the builtin error interface

func (ShutdownHostResponseValidationError) ErrorName

ErrorName returns error name.

func (ShutdownHostResponseValidationError) Field

Field function returns field value.

func (ShutdownHostResponseValidationError) Key

Key function returns key value.

func (ShutdownHostResponseValidationError) Reason

Reason function returns reason value.

type UpdateAppRequest added in v0.3.0

type UpdateAppRequest struct {
	Chart   string `protobuf:"bytes,1,opt,name=chart,proto3" json:"chart" bun:"chart" csv:"chart" pg:"chart" yaml:"chart"`
	Repo    string `protobuf:"bytes,2,opt,name=repo,proto3" json:"repo" bun:"repo" csv:"repo" pg:"repo" yaml:"repo"`
	Release string `protobuf:"bytes,3,opt,name=release,proto3" json:"release" bun:"release" csv:"release" pg:"release" yaml:"release"`
	Values  string `protobuf:"bytes,4,opt,name=values,proto3" json:"values" bun:"values" csv:"values" pg:"values" yaml:"values"`
	Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version" bun:"version" csv:"version" pg:"version" yaml:"version"`
	// contains filtered or unexported fields
}

func (*UpdateAppRequest) Descriptor deprecated added in v0.3.0

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

Deprecated: Use UpdateAppRequest.ProtoReflect.Descriptor instead.

func (*UpdateAppRequest) GetChart added in v0.3.0

func (x *UpdateAppRequest) GetChart() string

func (*UpdateAppRequest) GetRelease added in v0.3.0

func (x *UpdateAppRequest) GetRelease() string

func (*UpdateAppRequest) GetRepo added in v0.3.0

func (x *UpdateAppRequest) GetRepo() string

func (*UpdateAppRequest) GetValues added in v0.3.0

func (x *UpdateAppRequest) GetValues() string

func (*UpdateAppRequest) GetVersion added in v0.3.1

func (x *UpdateAppRequest) GetVersion() string

func (*UpdateAppRequest) ProtoMessage added in v0.3.0

func (*UpdateAppRequest) ProtoMessage()

func (*UpdateAppRequest) ProtoReflect added in v0.3.0

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

func (*UpdateAppRequest) Reset added in v0.3.0

func (x *UpdateAppRequest) Reset()

func (*UpdateAppRequest) String added in v0.3.0

func (x *UpdateAppRequest) String() string

func (*UpdateAppRequest) Validate added in v0.3.0

func (m *UpdateAppRequest) Validate() error

Validate checks the field values on UpdateAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateAppRequest) ValidateAll added in v0.3.0

func (m *UpdateAppRequest) ValidateAll() error

ValidateAll checks the field values on UpdateAppRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateAppRequestMultiError, or nil if none found.

type UpdateAppRequestMultiError added in v0.3.0

type UpdateAppRequestMultiError []error

UpdateAppRequestMultiError is an error wrapping multiple validation errors returned by UpdateAppRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateAppRequestMultiError) AllErrors added in v0.3.0

func (m UpdateAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateAppRequestMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type UpdateAppRequestValidationError added in v0.3.0

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

UpdateAppRequestValidationError is the validation error returned by UpdateAppRequest.Validate if the designated constraints aren't met.

func (UpdateAppRequestValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (UpdateAppRequestValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (UpdateAppRequestValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (UpdateAppRequestValidationError) Field added in v0.3.0

Field function returns field value.

func (UpdateAppRequestValidationError) Key added in v0.3.0

Key function returns key value.

func (UpdateAppRequestValidationError) Reason added in v0.3.0

Reason function returns reason value.

type UpdateAppResponse added in v0.3.0

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

func (*UpdateAppResponse) Descriptor deprecated added in v0.3.0

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

Deprecated: Use UpdateAppResponse.ProtoReflect.Descriptor instead.

func (*UpdateAppResponse) ProtoMessage added in v0.3.0

func (*UpdateAppResponse) ProtoMessage()

func (*UpdateAppResponse) ProtoReflect added in v0.3.0

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

func (*UpdateAppResponse) Reset added in v0.3.0

func (x *UpdateAppResponse) Reset()

func (*UpdateAppResponse) String added in v0.3.0

func (x *UpdateAppResponse) String() string

func (*UpdateAppResponse) Validate added in v0.3.0

func (m *UpdateAppResponse) Validate() error

Validate checks the field values on UpdateAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*UpdateAppResponse) ValidateAll added in v0.3.0

func (m *UpdateAppResponse) ValidateAll() error

ValidateAll checks the field values on UpdateAppResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UpdateAppResponseMultiError, or nil if none found.

type UpdateAppResponseMultiError added in v0.3.0

type UpdateAppResponseMultiError []error

UpdateAppResponseMultiError is an error wrapping multiple validation errors returned by UpdateAppResponse.ValidateAll() if the designated constraints aren't met.

func (UpdateAppResponseMultiError) AllErrors added in v0.3.0

func (m UpdateAppResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateAppResponseMultiError) Error added in v0.3.0

Error returns a concatenation of all the error messages it wraps.

type UpdateAppResponseValidationError added in v0.3.0

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

UpdateAppResponseValidationError is the validation error returned by UpdateAppResponse.Validate if the designated constraints aren't met.

func (UpdateAppResponseValidationError) Cause added in v0.3.0

Cause function returns cause value.

func (UpdateAppResponseValidationError) Error added in v0.3.0

Error satisfies the builtin error interface

func (UpdateAppResponseValidationError) ErrorName added in v0.3.0

ErrorName returns error name.

func (UpdateAppResponseValidationError) Field added in v0.3.0

Field function returns field value.

func (UpdateAppResponseValidationError) Key added in v0.3.0

Key function returns key value.

func (UpdateAppResponseValidationError) Reason added in v0.3.0

Reason function returns reason value.

type User added in v0.4.0

type User struct {
	Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username" bun:"username" csv:"username" pg:"username" yaml:"username"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password" bun:"password" csv:"password" pg:"password" yaml:"password"`
	// contains filtered or unexported fields
}

func (*User) Descriptor deprecated added in v0.4.0

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

Deprecated: Use User.ProtoReflect.Descriptor instead.

func (*User) GetPassword added in v0.4.0

func (x *User) GetPassword() string

func (*User) GetUsername added in v0.4.0

func (x *User) GetUsername() string

func (*User) ProtoMessage added in v0.4.0

func (*User) ProtoMessage()

func (*User) ProtoReflect added in v0.4.0

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

func (*User) Reset added in v0.4.0

func (x *User) Reset()

func (*User) String added in v0.4.0

func (x *User) String() string

func (*User) Validate added in v0.4.0

func (m *User) Validate() error

Validate checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*User) ValidateAll added in v0.4.0

func (m *User) ValidateAll() error

ValidateAll checks the field values on User with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in UserMultiError, or nil if none found.

type UserMultiError added in v0.4.0

type UserMultiError []error

UserMultiError is an error wrapping multiple validation errors returned by User.ValidateAll() if the designated constraints aren't met.

func (UserMultiError) AllErrors added in v0.4.0

func (m UserMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UserMultiError) Error added in v0.4.0

func (m UserMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type UserValidationError added in v0.4.0

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

UserValidationError is the validation error returned by User.Validate if the designated constraints aren't met.

func (UserValidationError) Cause added in v0.4.0

func (e UserValidationError) Cause() error

Cause function returns cause value.

func (UserValidationError) Error added in v0.4.0

func (e UserValidationError) Error() string

Error satisfies the builtin error interface

func (UserValidationError) ErrorName added in v0.4.0

func (e UserValidationError) ErrorName() string

ErrorName returns error name.

func (UserValidationError) Field added in v0.4.0

func (e UserValidationError) Field() string

Field function returns field value.

func (UserValidationError) Key added in v0.4.0

func (e UserValidationError) Key() bool

Key function returns key value.

func (UserValidationError) Reason added in v0.4.0

func (e UserValidationError) Reason() string

Reason function returns reason value.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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