client

package
v0.6.2 Latest Latest
Warning

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

Go to latest
Published: Oct 8, 2019 License: Apache-2.0 Imports: 15 Imported by: 0

README

Longhorn API Client

The code in this package are generated by rancher/go-rancher. But in order to fix some compatibility issues, you need to use this repo, and you should checkout the longhorn-v1 branch.

Generate code in go-rancher

If you have a longhorn api URL, you can use this script:

./scripts/generate-longhorn-schemas.sh http://manager-api-ip:port

Copy code to longhorn-manager

Just use cp to copy these code is fine, but you should update package name in longhorn-manager:

cd longhorn-manager/client
sed -i -e 's/package longhorn/package client/g' *.go

Documentation

Index

Constants

View Source
const (
	SELF       = "self"
	COLLECTION = "collection"
)
View Source
const (
	ACTIVATE_INPUT_TYPE = "activateInput"
)
View Source
const (
	API_VERSION_TYPE = "apiVersion"
)
View Source
const (
	ATTACH_INPUT_TYPE = "attachInput"
)
View Source
const (
	BACKUP_INPUT_TYPE = "backupInput"
)
View Source
const (
	BACKUP_STATUS_TYPE = "backupStatus"
)
View Source
const (
	BACKUP_TYPE = "backup"
)
View Source
const (
	BACKUP_VOLUME_TYPE = "backupVolume"
)
View Source
const (
	CONTROLLER_TYPE = "controller"
)
View Source
const (
	DISK_CONDITION_TYPE = "diskCondition"
)
View Source
const (
	DISK_INFO_TYPE = "diskInfo"
)
View Source
const (
	DISK_UPDATE_INPUT_TYPE = "diskUpdateInput"
)
View Source
const (
	DISK_UPDATE_TYPE = "diskUpdate"
)
View Source
const (
	ENGINE_IMAGE_TYPE = "engineImage"
)
View Source
const (
	ENGINE_UPGRADE_INPUT_TYPE = "engineUpgradeInput"
)
View Source
const (
	ERROR_TYPE = "error"
)
View Source
const (
	KUBERNETES_STATUS_TYPE = "kubernetesStatus"
)
View Source
const (
	LONGHORN_CONDITION_TYPE = "longhornCondition"
)
View Source
const (
	NODE_CONDITION_TYPE = "nodeCondition"
)
View Source
const (
	NODE_INPUT_TYPE = "nodeInput"
)
View Source
const (
	NODE_TYPE = "node"
)
View Source
const (
	PURGE_STATUS_TYPE = "purgeStatus"
)
View Source
const (
	PVCCREATE_INPUT_TYPE = "PVCCreateInput"
)
View Source
const (
	PVCREATE_INPUT_TYPE = "PVCreateInput"
)
View Source
const (
	RECURRING_INPUT_TYPE = "recurringInput"
)
View Source
const (
	RECURRING_JOB_TYPE = "recurringJob"
)
View Source
const (
	REPLICA_REMOVE_INPUT_TYPE = "replicaRemoveInput"
)
View Source
const (
	REPLICA_TYPE = "replica"
)
View Source
const (
	RESTORE_STATUS_TYPE = "restoreStatus"
)
View Source
const (
	SALVAGE_INPUT_TYPE = "salvageInput"
)
View Source
const (
	SETTING_DEFINITION_TYPE = "settingDefinition"
)
View Source
const (
	SETTING_TYPE = "setting"
)
View Source
const (
	SNAPSHOT_INPUT_TYPE = "snapshotInput"
)
View Source
const (
	SNAPSHOT_TYPE = "snapshot"
)
View Source
const (
	SUPPORT_BUNDLE_INITATE_INPUT_TYPE = "supportBundleInitateInput"
)
View Source
const (
	SUPPORT_BUNDLE_TYPE = "supportBundle"
)
View Source
const (
	TAG_TYPE = "tag"
)
View Source
const (
	UPDATE_REPLICA_COUNT_INPUT_TYPE = "UpdateReplicaCountInput"
)
View Source
const (
	VOLUME_CONDITION_TYPE = "volumeCondition"
)
View Source
const (
	VOLUME_TYPE = "volume"
)
View Source
const (
	WORKLOAD_STATUS_TYPE = "workloadStatus"
)

Variables

This section is empty.

Functions

func IsNotFound

func IsNotFound(err error) bool

func NormalizeUrl

func NormalizeUrl(existingUrl string) (string, error)

Types

type Action

type Action struct {
	Input  string `json:"input,omitempty"`
	Output string `json:"output,omitempty"`
}

type ActivateInput added in v0.6.0

type ActivateInput struct {
	Resource `yaml:"-"`

	Frontend string `json:"frontend,omitempty" yaml:"frontend,omitempty"`
}

type ActivateInputClient added in v0.6.0

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

func (*ActivateInputClient) ById added in v0.6.0

func (*ActivateInputClient) Create added in v0.6.0

func (c *ActivateInputClient) Create(container *ActivateInput) (*ActivateInput, error)

func (*ActivateInputClient) Delete added in v0.6.0

func (c *ActivateInputClient) Delete(container *ActivateInput) error

func (*ActivateInputClient) List added in v0.6.0

func (*ActivateInputClient) Update added in v0.6.0

func (c *ActivateInputClient) Update(existing *ActivateInput, updates interface{}) (*ActivateInput, error)

type ActivateInputCollection added in v0.6.0

type ActivateInputCollection struct {
	Collection
	Data []ActivateInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ActivateInputCollection) Next added in v0.6.0

type ActivateInputOperations added in v0.6.0

type ActivateInputOperations interface {
	List(opts *ListOpts) (*ActivateInputCollection, error)
	Create(opts *ActivateInput) (*ActivateInput, error)
	Update(existing *ActivateInput, updates interface{}) (*ActivateInput, error)
	ById(id string) (*ActivateInput, error)
	Delete(container *ActivateInput) error
}

type ApiError

type ApiError struct {
	StatusCode int
	Url        string
	Msg        string
	Status     string
	Body       string
}

func (*ApiError) Error

func (e *ApiError) Error() string

type ApiVersion

type ApiVersion struct {
	Resource `yaml:"-"`
}

type ApiVersionClient

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

func (*ApiVersionClient) ById

func (c *ApiVersionClient) ById(id string) (*ApiVersion, error)

func (*ApiVersionClient) Create

func (c *ApiVersionClient) Create(container *ApiVersion) (*ApiVersion, error)

func (*ApiVersionClient) Delete

func (c *ApiVersionClient) Delete(container *ApiVersion) error

func (*ApiVersionClient) List

func (*ApiVersionClient) Update

func (c *ApiVersionClient) Update(existing *ApiVersion, updates interface{}) (*ApiVersion, error)

type ApiVersionCollection

type ApiVersionCollection struct {
	Collection
	Data []ApiVersion `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ApiVersionCollection) Next

type ApiVersionOperations

type ApiVersionOperations interface {
	List(opts *ListOpts) (*ApiVersionCollection, error)
	Create(opts *ApiVersion) (*ApiVersion, error)
	Update(existing *ApiVersion, updates interface{}) (*ApiVersion, error)
	ById(id string) (*ApiVersion, error)
	Delete(container *ApiVersion) error
}

type AttachInput

type AttachInput struct {
	Resource `yaml:"-"`

	DisableFrontend bool `json:"disableFrontend,omitempty" yaml:"disable_frontend,omitempty"`

	HostId string `json:"hostId,omitempty" yaml:"host_id,omitempty"`
}

type AttachInputClient

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

func (*AttachInputClient) ById

func (c *AttachInputClient) ById(id string) (*AttachInput, error)

func (*AttachInputClient) Create

func (c *AttachInputClient) Create(container *AttachInput) (*AttachInput, error)

func (*AttachInputClient) Delete

func (c *AttachInputClient) Delete(container *AttachInput) error

func (*AttachInputClient) List

func (*AttachInputClient) Update

func (c *AttachInputClient) Update(existing *AttachInput, updates interface{}) (*AttachInput, error)

type AttachInputCollection

type AttachInputCollection struct {
	Collection
	Data []AttachInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*AttachInputCollection) Next

type AttachInputOperations

type AttachInputOperations interface {
	List(opts *ListOpts) (*AttachInputCollection, error)
	Create(opts *AttachInput) (*AttachInput, error)
	Update(existing *AttachInput, updates interface{}) (*AttachInput, error)
	ById(id string) (*AttachInput, error)
	Delete(container *AttachInput) error
}

type Backup

type Backup struct {
	Resource `yaml:"-"`

	Created string `json:"created,omitempty" yaml:"created,omitempty"`

	Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Size string `json:"size,omitempty" yaml:"size,omitempty"`

	SnapshotCreated string `json:"snapshotCreated,omitempty" yaml:"snapshot_created,omitempty"`

	SnapshotName string `json:"snapshotName,omitempty" yaml:"snapshot_name,omitempty"`

	Url string `json:"url,omitempty" yaml:"url,omitempty"`

	VolumeCreated string `json:"volumeCreated,omitempty" yaml:"volume_created,omitempty"`

	VolumeName string `json:"volumeName,omitempty" yaml:"volume_name,omitempty"`

	VolumeSize string `json:"volumeSize,omitempty" yaml:"volume_size,omitempty"`
}

type BackupClient

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

func (*BackupClient) ById

func (c *BackupClient) ById(id string) (*Backup, error)

func (*BackupClient) Create

func (c *BackupClient) Create(container *Backup) (*Backup, error)

func (*BackupClient) Delete

func (c *BackupClient) Delete(container *Backup) error

func (*BackupClient) List

func (c *BackupClient) List(opts *ListOpts) (*BackupCollection, error)

func (*BackupClient) Update

func (c *BackupClient) Update(existing *Backup, updates interface{}) (*Backup, error)

type BackupCollection

type BackupCollection struct {
	Collection
	Data []Backup `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*BackupCollection) Next

func (cc *BackupCollection) Next() (*BackupCollection, error)

type BackupInput

type BackupInput struct {
	Resource `yaml:"-"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`
}

type BackupInputClient

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

func (*BackupInputClient) ById

func (c *BackupInputClient) ById(id string) (*BackupInput, error)

func (*BackupInputClient) Create

func (c *BackupInputClient) Create(container *BackupInput) (*BackupInput, error)

func (*BackupInputClient) Delete

func (c *BackupInputClient) Delete(container *BackupInput) error

func (*BackupInputClient) List

func (*BackupInputClient) Update

func (c *BackupInputClient) Update(existing *BackupInput, updates interface{}) (*BackupInput, error)

type BackupInputCollection

type BackupInputCollection struct {
	Collection
	Data []BackupInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*BackupInputCollection) Next

type BackupInputOperations

type BackupInputOperations interface {
	List(opts *ListOpts) (*BackupInputCollection, error)
	Create(opts *BackupInput) (*BackupInput, error)
	Update(existing *BackupInput, updates interface{}) (*BackupInput, error)
	ById(id string) (*BackupInput, error)
	Delete(container *BackupInput) error
}

type BackupOperations

type BackupOperations interface {
	List(opts *ListOpts) (*BackupCollection, error)
	Create(opts *Backup) (*Backup, error)
	Update(existing *Backup, updates interface{}) (*Backup, error)
	ById(id string) (*Backup, error)
	Delete(container *Backup) error
}

type BackupStatus added in v0.6.0

type BackupStatus struct {
	Resource `yaml:"-"`

	BackupURL string `json:"backupURL,omitempty" yaml:"backup_url,omitempty"`

	Error string `json:"error,omitempty" yaml:"error,omitempty"`

	Progress int64 `json:"progress,omitempty" yaml:"progress,omitempty"`

	Snapshot string `json:"snapshot,omitempty" yaml:"snapshot,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`
}

type BackupStatusClient added in v0.6.0

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

func (*BackupStatusClient) ById added in v0.6.0

func (c *BackupStatusClient) ById(id string) (*BackupStatus, error)

func (*BackupStatusClient) Create added in v0.6.0

func (c *BackupStatusClient) Create(container *BackupStatus) (*BackupStatus, error)

func (*BackupStatusClient) Delete added in v0.6.0

func (c *BackupStatusClient) Delete(container *BackupStatus) error

func (*BackupStatusClient) List added in v0.6.0

func (*BackupStatusClient) Update added in v0.6.0

func (c *BackupStatusClient) Update(existing *BackupStatus, updates interface{}) (*BackupStatus, error)

type BackupStatusCollection added in v0.6.0

type BackupStatusCollection struct {
	Collection
	Data []BackupStatus `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*BackupStatusCollection) Next added in v0.6.0

type BackupStatusOperations added in v0.6.0

type BackupStatusOperations interface {
	List(opts *ListOpts) (*BackupStatusCollection, error)
	Create(opts *BackupStatus) (*BackupStatus, error)
	Update(existing *BackupStatus, updates interface{}) (*BackupStatus, error)
	ById(id string) (*BackupStatus, error)
	Delete(container *BackupStatus) error
}

type BackupVolume

type BackupVolume struct {
	Resource `yaml:"-"`

	Backups map[string]string `json:"backups,omitempty" yaml:"backups,omitempty"`

	BaseImage string `json:"baseImage,omitempty" yaml:"base_image,omitempty"`

	Created string `json:"created,omitempty" yaml:"created,omitempty"`

	DataStored string `json:"dataStored,omitempty" yaml:"data_stored,omitempty"`

	LastBackupAt string `json:"lastBackupAt,omitempty" yaml:"last_backup_at,omitempty"`

	LastBackupName string `json:"lastBackupName,omitempty" yaml:"last_backup_name,omitempty"`

	Messages map[string]string `json:"messages,omitempty" yaml:"messages,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Size string `json:"size,omitempty" yaml:"size,omitempty"`
}

type BackupVolumeClient

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

func (*BackupVolumeClient) ActionBackupDelete

func (c *BackupVolumeClient) ActionBackupDelete(resource *BackupVolume, input *BackupInput) (*BackupVolume, error)

func (*BackupVolumeClient) ActionBackupGet

func (c *BackupVolumeClient) ActionBackupGet(resource *BackupVolume, input *BackupInput) (*Backup, error)

func (*BackupVolumeClient) ById

func (c *BackupVolumeClient) ById(id string) (*BackupVolume, error)

func (*BackupVolumeClient) Create

func (c *BackupVolumeClient) Create(container *BackupVolume) (*BackupVolume, error)

func (*BackupVolumeClient) Delete

func (c *BackupVolumeClient) Delete(container *BackupVolume) error

func (*BackupVolumeClient) List

func (*BackupVolumeClient) Update

func (c *BackupVolumeClient) Update(existing *BackupVolume, updates interface{}) (*BackupVolume, error)

type BackupVolumeCollection

type BackupVolumeCollection struct {
	Collection
	Data []BackupVolume `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*BackupVolumeCollection) Next

type BackupVolumeOperations

type BackupVolumeOperations interface {
	List(opts *ListOpts) (*BackupVolumeCollection, error)
	Create(opts *BackupVolume) (*BackupVolume, error)
	Update(existing *BackupVolume, updates interface{}) (*BackupVolume, error)
	ById(id string) (*BackupVolume, error)
	Delete(container *BackupVolume) error

	ActionBackupDelete(*BackupVolume, *BackupInput) (*BackupVolume, error)

	ActionBackupGet(*BackupVolume, *BackupInput) (*Backup, error)
}

type ClientOpts

type ClientOpts struct {
	Url       string
	AccessKey string
	SecretKey string
	Timeout   time.Duration
}

type Collection

type Collection struct {
	Type         string                 `json:"type,omitempty"`
	ResourceType string                 `json:"resourceType,omitempty"`
	Links        map[string]string      `json:"links,omitempty"`
	CreateTypes  map[string]string      `json:"createTypes,omitempty"`
	Actions      map[string]string      `json:"actions,omitempty"`
	SortLinks    map[string]string      `json:"sortLinks,omitempty"`
	Pagination   *Pagination            `json:"pagination,omitempty"`
	Sort         *Sort                  `json:"sort,omitempty"`
	Filters      map[string][]Condition `json:"filters,omitempty"`
}

type Condition

type Condition struct {
	Modifier string      `json:"modifier,omitempty"`
	Value    interface{} `json:"value,omitempty"`
}

type Controller

type Controller struct {
	Resource `yaml:"-"`

	Address string `json:"address,omitempty" yaml:"address,omitempty"`

	CurrentImage string `json:"currentImage,omitempty" yaml:"current_image,omitempty"`

	Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`

	EngineImage string `json:"engineImage,omitempty" yaml:"engine_image,omitempty"`

	HostId string `json:"hostId,omitempty" yaml:"host_id,omitempty"`

	InstanceManagerName string `json:"instanceManagerName,omitempty" yaml:"instance_manager_name,omitempty"`

	LastRestoredBackup string `json:"lastRestoredBackup,omitempty" yaml:"last_restored_backup,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	RequestedBackupRestore string `json:"requestedBackupRestore,omitempty" yaml:"requested_backup_restore,omitempty"`

	Running bool `json:"running,omitempty" yaml:"running,omitempty"`
}

type ControllerClient

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

func (*ControllerClient) ById

func (c *ControllerClient) ById(id string) (*Controller, error)

func (*ControllerClient) Create

func (c *ControllerClient) Create(container *Controller) (*Controller, error)

func (*ControllerClient) Delete

func (c *ControllerClient) Delete(container *Controller) error

func (*ControllerClient) List

func (*ControllerClient) Update

func (c *ControllerClient) Update(existing *Controller, updates interface{}) (*Controller, error)

type ControllerCollection

type ControllerCollection struct {
	Collection
	Data []Controller `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ControllerCollection) Next

type ControllerOperations

type ControllerOperations interface {
	List(opts *ListOpts) (*ControllerCollection, error)
	Create(opts *Controller) (*Controller, error)
	Update(existing *Controller, updates interface{}) (*Controller, error)
	ById(id string) (*Controller, error)
	Delete(container *Controller) error
}

type DiskCondition

type DiskCondition struct {
	Resource `yaml:"-"`

	LastProbeTime string `json:"lastProbeTime,omitempty" yaml:"last_probe_time,omitempty"`

	LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"last_transition_time,omitempty"`

	Message string `json:"message,omitempty" yaml:"message,omitempty"`

	Reason string `json:"reason,omitempty" yaml:"reason,omitempty"`

	Status string `json:"status,omitempty" yaml:"status,omitempty"`
}

type DiskConditionClient

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

func (*DiskConditionClient) ById

func (*DiskConditionClient) Create

func (c *DiskConditionClient) Create(container *DiskCondition) (*DiskCondition, error)

func (*DiskConditionClient) Delete

func (c *DiskConditionClient) Delete(container *DiskCondition) error

func (*DiskConditionClient) List

func (*DiskConditionClient) Update

func (c *DiskConditionClient) Update(existing *DiskCondition, updates interface{}) (*DiskCondition, error)

type DiskConditionCollection

type DiskConditionCollection struct {
	Collection
	Data []DiskCondition `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DiskConditionCollection) Next

type DiskConditionOperations

type DiskConditionOperations interface {
	List(opts *ListOpts) (*DiskConditionCollection, error)
	Create(opts *DiskCondition) (*DiskCondition, error)
	Update(existing *DiskCondition, updates interface{}) (*DiskCondition, error)
	ById(id string) (*DiskCondition, error)
	Delete(container *DiskCondition) error
}

type DiskInfo

type DiskInfo struct {
	Resource `yaml:"-"`

	AllowScheduling bool `json:"allowScheduling,omitempty" yaml:"allow_scheduling,omitempty"`

	Conditions map[string]interface{} `json:"conditions,omitempty" yaml:"conditions,omitempty"`

	Path string `json:"path,omitempty" yaml:"path,omitempty"`

	ScheduledReplica map[string]string `json:"scheduledReplica,omitempty" yaml:"scheduled_replica,omitempty"`

	StorageAvailable int64 `json:"storageAvailable,omitempty" yaml:"storage_available,omitempty"`

	StorageMaximum int64 `json:"storageMaximum,omitempty" yaml:"storage_maximum,omitempty"`

	StorageReserved int64 `json:"storageReserved,omitempty" yaml:"storage_reserved,omitempty"`

	StorageScheduled int64 `json:"storageScheduled,omitempty" yaml:"storage_scheduled,omitempty"`

	Tags []string `json:"tags,omitempty" yaml:"tags,omitempty"`
}

type DiskInfoClient

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

func (*DiskInfoClient) ById

func (c *DiskInfoClient) ById(id string) (*DiskInfo, error)

func (*DiskInfoClient) Create

func (c *DiskInfoClient) Create(container *DiskInfo) (*DiskInfo, error)

func (*DiskInfoClient) Delete

func (c *DiskInfoClient) Delete(container *DiskInfo) error

func (*DiskInfoClient) List

func (c *DiskInfoClient) List(opts *ListOpts) (*DiskInfoCollection, error)

func (*DiskInfoClient) Update

func (c *DiskInfoClient) Update(existing *DiskInfo, updates interface{}) (*DiskInfo, error)

type DiskInfoCollection

type DiskInfoCollection struct {
	Collection
	Data []DiskInfo `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DiskInfoCollection) Next

type DiskInfoOperations

type DiskInfoOperations interface {
	List(opts *ListOpts) (*DiskInfoCollection, error)
	Create(opts *DiskInfo) (*DiskInfo, error)
	Update(existing *DiskInfo, updates interface{}) (*DiskInfo, error)
	ById(id string) (*DiskInfo, error)
	Delete(container *DiskInfo) error
}

type DiskUpdate

type DiskUpdate struct {
	Resource `yaml:"-"`

	AllowScheduling bool `json:"allowScheduling,omitempty" yaml:"allow_scheduling,omitempty"`

	Path string `json:"path,omitempty" yaml:"path,omitempty"`

	StorageReserved int64 `json:"storageReserved,omitempty" yaml:"storage_reserved,omitempty"`

	Tags []string `json:"tags,omitempty" yaml:"tags,omitempty"`
}

type DiskUpdateClient

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

func (*DiskUpdateClient) ById

func (c *DiskUpdateClient) ById(id string) (*DiskUpdate, error)

func (*DiskUpdateClient) Create

func (c *DiskUpdateClient) Create(container *DiskUpdate) (*DiskUpdate, error)

func (*DiskUpdateClient) Delete

func (c *DiskUpdateClient) Delete(container *DiskUpdate) error

func (*DiskUpdateClient) List

func (*DiskUpdateClient) Update

func (c *DiskUpdateClient) Update(existing *DiskUpdate, updates interface{}) (*DiskUpdate, error)

type DiskUpdateCollection

type DiskUpdateCollection struct {
	Collection
	Data []DiskUpdate `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DiskUpdateCollection) Next

type DiskUpdateInput

type DiskUpdateInput struct {
	Resource `yaml:"-"`

	Disks []DiskUpdate `json:"disks,omitempty" yaml:"disks,omitempty"`
}

type DiskUpdateInputClient

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

func (*DiskUpdateInputClient) ById

func (*DiskUpdateInputClient) Create

func (c *DiskUpdateInputClient) Create(container *DiskUpdateInput) (*DiskUpdateInput, error)

func (*DiskUpdateInputClient) Delete

func (c *DiskUpdateInputClient) Delete(container *DiskUpdateInput) error

func (*DiskUpdateInputClient) List

func (*DiskUpdateInputClient) Update

func (c *DiskUpdateInputClient) Update(existing *DiskUpdateInput, updates interface{}) (*DiskUpdateInput, error)

type DiskUpdateInputCollection

type DiskUpdateInputCollection struct {
	Collection
	Data []DiskUpdateInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*DiskUpdateInputCollection) Next

type DiskUpdateInputOperations

type DiskUpdateInputOperations interface {
	List(opts *ListOpts) (*DiskUpdateInputCollection, error)
	Create(opts *DiskUpdateInput) (*DiskUpdateInput, error)
	Update(existing *DiskUpdateInput, updates interface{}) (*DiskUpdateInput, error)
	ById(id string) (*DiskUpdateInput, error)
	Delete(container *DiskUpdateInput) error
}

type DiskUpdateOperations

type DiskUpdateOperations interface {
	List(opts *ListOpts) (*DiskUpdateCollection, error)
	Create(opts *DiskUpdate) (*DiskUpdate, error)
	Update(existing *DiskUpdate, updates interface{}) (*DiskUpdate, error)
	ById(id string) (*DiskUpdate, error)
	Delete(container *DiskUpdate) error
}

type EngineImage

type EngineImage struct {
	Resource `yaml:"-"`

	BuildDate string `json:"buildDate,omitempty" yaml:"build_date,omitempty"`

	CliAPIMinVersion int64 `json:"cliAPIMinVersion,omitempty" yaml:"cli_apimin_version,omitempty"`

	CliAPIVersion int64 `json:"cliAPIVersion,omitempty" yaml:"cli_apiversion,omitempty"`

	ControllerAPIMinVersion int64 `json:"controllerAPIMinVersion,omitempty" yaml:"controller_apimin_version,omitempty"`

	ControllerAPIVersion int64 `json:"controllerAPIVersion,omitempty" yaml:"controller_apiversion,omitempty"`

	DataFormatMinVersion int64 `json:"dataFormatMinVersion,omitempty" yaml:"data_format_min_version,omitempty"`

	DataFormatVersion int64 `json:"dataFormatVersion,omitempty" yaml:"data_format_version,omitempty"`

	Default bool `json:"default,omitempty" yaml:"default,omitempty"`

	GitCommit string `json:"gitCommit,omitempty" yaml:"git_commit,omitempty"`

	Image string `json:"image,omitempty" yaml:"image,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	NoRefSince string `json:"noRefSince,omitempty" yaml:"no_ref_since,omitempty"`

	RefCount int64 `json:"refCount,omitempty" yaml:"ref_count,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`

	Timestamp string `json:"timestamp,omitempty" yaml:"timestamp,omitempty"`

	Version string `json:"version,omitempty" yaml:"version,omitempty"`
}

type EngineImageClient

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

func (*EngineImageClient) ById

func (c *EngineImageClient) ById(id string) (*EngineImage, error)

func (*EngineImageClient) Create

func (c *EngineImageClient) Create(container *EngineImage) (*EngineImage, error)

func (*EngineImageClient) Delete

func (c *EngineImageClient) Delete(container *EngineImage) error

func (*EngineImageClient) List

func (*EngineImageClient) Update

func (c *EngineImageClient) Update(existing *EngineImage, updates interface{}) (*EngineImage, error)

type EngineImageCollection

type EngineImageCollection struct {
	Collection
	Data []EngineImage `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*EngineImageCollection) Next

type EngineImageOperations

type EngineImageOperations interface {
	List(opts *ListOpts) (*EngineImageCollection, error)
	Create(opts *EngineImage) (*EngineImage, error)
	Update(existing *EngineImage, updates interface{}) (*EngineImage, error)
	ById(id string) (*EngineImage, error)
	Delete(container *EngineImage) error
}

type EngineUpgradeInput

type EngineUpgradeInput struct {
	Resource `yaml:"-"`

	Image string `json:"image,omitempty" yaml:"image,omitempty"`
}

type EngineUpgradeInputClient

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

func (*EngineUpgradeInputClient) ById

func (*EngineUpgradeInputClient) Create

func (*EngineUpgradeInputClient) Delete

func (c *EngineUpgradeInputClient) Delete(container *EngineUpgradeInput) error

func (*EngineUpgradeInputClient) List

func (*EngineUpgradeInputClient) Update

func (c *EngineUpgradeInputClient) Update(existing *EngineUpgradeInput, updates interface{}) (*EngineUpgradeInput, error)

type EngineUpgradeInputCollection

type EngineUpgradeInputCollection struct {
	Collection
	Data []EngineUpgradeInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*EngineUpgradeInputCollection) Next

type EngineUpgradeInputOperations

type EngineUpgradeInputOperations interface {
	List(opts *ListOpts) (*EngineUpgradeInputCollection, error)
	Create(opts *EngineUpgradeInput) (*EngineUpgradeInput, error)
	Update(existing *EngineUpgradeInput, updates interface{}) (*EngineUpgradeInput, error)
	ById(id string) (*EngineUpgradeInput, error)
	Delete(container *EngineUpgradeInput) error
}

type Error

type Error struct {
	Resource `yaml:"-"`

	Code string `json:"code,omitempty" yaml:"code,omitempty"`

	Detail string `json:"detail,omitempty" yaml:"detail,omitempty"`

	Message string `json:"message,omitempty" yaml:"message,omitempty"`

	Status int64 `json:"status,omitempty" yaml:"status,omitempty"`
}

type ErrorClient

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

func (*ErrorClient) ById

func (c *ErrorClient) ById(id string) (*Error, error)

func (*ErrorClient) Create

func (c *ErrorClient) Create(container *Error) (*Error, error)

func (*ErrorClient) Delete

func (c *ErrorClient) Delete(container *Error) error

func (*ErrorClient) List

func (c *ErrorClient) List(opts *ListOpts) (*ErrorCollection, error)

func (*ErrorClient) Update

func (c *ErrorClient) Update(existing *Error, updates interface{}) (*Error, error)

type ErrorCollection

type ErrorCollection struct {
	Collection
	Data []Error `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ErrorCollection) Next

func (cc *ErrorCollection) Next() (*ErrorCollection, error)

type ErrorOperations

type ErrorOperations interface {
	List(opts *ListOpts) (*ErrorCollection, error)
	Create(opts *Error) (*Error, error)
	Update(existing *Error, updates interface{}) (*Error, error)
	ById(id string) (*Error, error)
	Delete(container *Error) error
}

type Field

type Field struct {
	Type         string      `json:"type,omitempty"`
	Default      interface{} `json:"default,omitempty"`
	Unique       bool        `json:"unique,omitempty"`
	Nullable     bool        `json:"nullable,omitempty"`
	Create       bool        `json:"create,omitempty"`
	Required     bool        `json:"required,omitempty"`
	Update       bool        `json:"update,omitempty"`
	MinLength    *int64      `json:"minLength,omitempty"`
	MaxLength    *int64      `json:"maxLength,omitempty"`
	Min          *int64      `json:"min,omitempty"`
	Max          *int64      `json:"max,omitempty"`
	Options      []string    `json:"options,omitempty"`
	ValidChars   string      `json:"validChars,omitempty"`
	InvalidChars string      `json:"invalidChars,omitempty"`
	Description  string      `json:"description,omitempty"`
}

type Filter

type Filter struct {
	Modifiers []string `json:"modifiers,omitempty"`
}

type GenericCollection

type GenericCollection struct {
	Collection
	Data []interface{} `json:"data,omitempty"`
}

type KubernetesStatus added in v0.6.0

type KubernetesStatus struct {
	Resource `yaml:"-"`

	LastPVCRefAt string `json:"lastPVCRefAt,omitempty" yaml:"last_pvcref_at,omitempty"`

	LastPodRefAt string `json:"lastPodRefAt,omitempty" yaml:"last_pod_ref_at,omitempty"`

	Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`

	PvName string `json:"pvName,omitempty" yaml:"pv_name,omitempty"`

	PvStatus string `json:"pvStatus,omitempty" yaml:"pv_status,omitempty"`

	PvcName string `json:"pvcName,omitempty" yaml:"pvc_name,omitempty"`

	WorkloadsStatus []WorkloadStatus `json:"workloadsStatus,omitempty" yaml:"workloads_status,omitempty"`
}

type KubernetesStatusClient added in v0.6.0

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

func (*KubernetesStatusClient) ById added in v0.6.0

func (*KubernetesStatusClient) Create added in v0.6.0

func (*KubernetesStatusClient) Delete added in v0.6.0

func (c *KubernetesStatusClient) Delete(container *KubernetesStatus) error

func (*KubernetesStatusClient) List added in v0.6.0

func (*KubernetesStatusClient) Update added in v0.6.0

func (c *KubernetesStatusClient) Update(existing *KubernetesStatus, updates interface{}) (*KubernetesStatus, error)

type KubernetesStatusCollection added in v0.6.0

type KubernetesStatusCollection struct {
	Collection
	Data []KubernetesStatus `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*KubernetesStatusCollection) Next added in v0.6.0

type KubernetesStatusOperations added in v0.6.0

type KubernetesStatusOperations interface {
	List(opts *ListOpts) (*KubernetesStatusCollection, error)
	Create(opts *KubernetesStatus) (*KubernetesStatus, error)
	Update(existing *KubernetesStatus, updates interface{}) (*KubernetesStatus, error)
	ById(id string) (*KubernetesStatus, error)
	Delete(container *KubernetesStatus) error
}

type ListOpts

type ListOpts struct {
	Filters map[string]interface{}
}

func NewListOpts

func NewListOpts() *ListOpts

type LonghornCondition

type LonghornCondition struct {
	Resource `yaml:"-"`

	LastProbeTime string `json:"lastProbeTime,omitempty" yaml:"last_probe_time,omitempty"`

	LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"last_transition_time,omitempty"`

	Message string `json:"message,omitempty" yaml:"message,omitempty"`

	Reason string `json:"reason,omitempty" yaml:"reason,omitempty"`

	Status string `json:"status,omitempty" yaml:"status,omitempty"`
}

type LonghornConditionClient

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

func (*LonghornConditionClient) ById

func (*LonghornConditionClient) Create

func (*LonghornConditionClient) Delete

func (c *LonghornConditionClient) Delete(container *LonghornCondition) error

func (*LonghornConditionClient) List

func (*LonghornConditionClient) Update

func (c *LonghornConditionClient) Update(existing *LonghornCondition, updates interface{}) (*LonghornCondition, error)

type LonghornConditionCollection

type LonghornConditionCollection struct {
	Collection
	Data []LonghornCondition `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*LonghornConditionCollection) Next

type LonghornConditionOperations

type LonghornConditionOperations interface {
	List(opts *ListOpts) (*LonghornConditionCollection, error)
	Create(opts *LonghornCondition) (*LonghornCondition, error)
	Update(existing *LonghornCondition, updates interface{}) (*LonghornCondition, error)
	ById(id string) (*LonghornCondition, error)
	Delete(container *LonghornCondition) error
}

type Node

type Node struct {
	Resource `yaml:"-"`

	Address string `json:"address,omitempty" yaml:"address,omitempty"`

	AllowScheduling bool `json:"allowScheduling,omitempty" yaml:"allow_scheduling,omitempty"`

	Conditions map[string]interface{} `json:"conditions,omitempty" yaml:"conditions,omitempty"`

	Disks map[string]interface{} `json:"disks,omitempty" yaml:"disks,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Tags []string `json:"tags,omitempty" yaml:"tags,omitempty"`

	Timestamp string `json:"timestamp,omitempty" yaml:"timestamp,omitempty"`
}

type NodeClient

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

func (*NodeClient) ActionDiskUpdate

func (c *NodeClient) ActionDiskUpdate(resource *Node, input *DiskUpdateInput) (*Node, error)

func (*NodeClient) ById

func (c *NodeClient) ById(id string) (*Node, error)

func (*NodeClient) Create

func (c *NodeClient) Create(container *Node) (*Node, error)

func (*NodeClient) Delete

func (c *NodeClient) Delete(container *Node) error

func (*NodeClient) List

func (c *NodeClient) List(opts *ListOpts) (*NodeCollection, error)

func (*NodeClient) Update

func (c *NodeClient) Update(existing *Node, updates interface{}) (*Node, error)

type NodeCollection

type NodeCollection struct {
	Collection
	Data []Node `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeCollection) Next

func (cc *NodeCollection) Next() (*NodeCollection, error)

type NodeCondition

type NodeCondition struct {
	Resource `yaml:"-"`

	LastProbeTime string `json:"lastProbeTime,omitempty" yaml:"last_probe_time,omitempty"`

	LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"last_transition_time,omitempty"`

	Message string `json:"message,omitempty" yaml:"message,omitempty"`

	Reason string `json:"reason,omitempty" yaml:"reason,omitempty"`

	Status string `json:"status,omitempty" yaml:"status,omitempty"`
}

type NodeConditionClient

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

func (*NodeConditionClient) ById

func (*NodeConditionClient) Create

func (c *NodeConditionClient) Create(container *NodeCondition) (*NodeCondition, error)

func (*NodeConditionClient) Delete

func (c *NodeConditionClient) Delete(container *NodeCondition) error

func (*NodeConditionClient) List

func (*NodeConditionClient) Update

func (c *NodeConditionClient) Update(existing *NodeCondition, updates interface{}) (*NodeCondition, error)

type NodeConditionCollection

type NodeConditionCollection struct {
	Collection
	Data []NodeCondition `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeConditionCollection) Next

type NodeConditionOperations

type NodeConditionOperations interface {
	List(opts *ListOpts) (*NodeConditionCollection, error)
	Create(opts *NodeCondition) (*NodeCondition, error)
	Update(existing *NodeCondition, updates interface{}) (*NodeCondition, error)
	ById(id string) (*NodeCondition, error)
	Delete(container *NodeCondition) error
}

type NodeInput

type NodeInput struct {
	Resource `yaml:"-"`

	NodeId string `json:"nodeId,omitempty" yaml:"node_id,omitempty"`
}

type NodeInputClient

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

func (*NodeInputClient) ById

func (c *NodeInputClient) ById(id string) (*NodeInput, error)

func (*NodeInputClient) Create

func (c *NodeInputClient) Create(container *NodeInput) (*NodeInput, error)

func (*NodeInputClient) Delete

func (c *NodeInputClient) Delete(container *NodeInput) error

func (*NodeInputClient) List

func (*NodeInputClient) Update

func (c *NodeInputClient) Update(existing *NodeInput, updates interface{}) (*NodeInput, error)

type NodeInputCollection

type NodeInputCollection struct {
	Collection
	Data []NodeInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeInputCollection) Next

type NodeInputOperations

type NodeInputOperations interface {
	List(opts *ListOpts) (*NodeInputCollection, error)
	Create(opts *NodeInput) (*NodeInput, error)
	Update(existing *NodeInput, updates interface{}) (*NodeInput, error)
	ById(id string) (*NodeInput, error)
	Delete(container *NodeInput) error
}

type NodeOperations

type NodeOperations interface {
	List(opts *ListOpts) (*NodeCollection, error)
	Create(opts *Node) (*Node, error)
	Update(existing *Node, updates interface{}) (*Node, error)
	ById(id string) (*Node, error)
	Delete(container *Node) error

	ActionDiskUpdate(*Node, *DiskUpdateInput) (*Node, error)
}

type PVCCreateInput added in v0.6.0

type PVCCreateInput struct {
	Resource `yaml:"-"`

	Namespace string `json:"namespace,omitempty" yaml:"namespace,omitempty"`

	PvcName string `json:"pvcName,omitempty" yaml:"pvc_name,omitempty"`
}

type PVCCreateInputClient added in v0.6.0

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

func (*PVCCreateInputClient) ById added in v0.6.0

func (*PVCCreateInputClient) Create added in v0.6.0

func (c *PVCCreateInputClient) Create(container *PVCCreateInput) (*PVCCreateInput, error)

func (*PVCCreateInputClient) Delete added in v0.6.0

func (c *PVCCreateInputClient) Delete(container *PVCCreateInput) error

func (*PVCCreateInputClient) List added in v0.6.0

func (*PVCCreateInputClient) Update added in v0.6.0

func (c *PVCCreateInputClient) Update(existing *PVCCreateInput, updates interface{}) (*PVCCreateInput, error)

type PVCCreateInputCollection added in v0.6.0

type PVCCreateInputCollection struct {
	Collection
	Data []PVCCreateInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*PVCCreateInputCollection) Next added in v0.6.0

type PVCCreateInputOperations added in v0.6.0

type PVCCreateInputOperations interface {
	List(opts *ListOpts) (*PVCCreateInputCollection, error)
	Create(opts *PVCCreateInput) (*PVCCreateInput, error)
	Update(existing *PVCCreateInput, updates interface{}) (*PVCCreateInput, error)
	ById(id string) (*PVCCreateInput, error)
	Delete(container *PVCCreateInput) error
}

type PVCreateInput added in v0.6.0

type PVCreateInput struct {
	Resource `yaml:"-"`

	PvName string `json:"pvName,omitempty" yaml:"pv_name,omitempty"`
}

type PVCreateInputClient added in v0.6.0

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

func (*PVCreateInputClient) ById added in v0.6.0

func (*PVCreateInputClient) Create added in v0.6.0

func (c *PVCreateInputClient) Create(container *PVCreateInput) (*PVCreateInput, error)

func (*PVCreateInputClient) Delete added in v0.6.0

func (c *PVCreateInputClient) Delete(container *PVCreateInput) error

func (*PVCreateInputClient) List added in v0.6.0

func (*PVCreateInputClient) Update added in v0.6.0

func (c *PVCreateInputClient) Update(existing *PVCreateInput, updates interface{}) (*PVCreateInput, error)

type PVCreateInputCollection added in v0.6.0

type PVCreateInputCollection struct {
	Collection
	Data []PVCreateInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*PVCreateInputCollection) Next added in v0.6.0

type PVCreateInputOperations added in v0.6.0

type PVCreateInputOperations interface {
	List(opts *ListOpts) (*PVCreateInputCollection, error)
	Create(opts *PVCreateInput) (*PVCreateInput, error)
	Update(existing *PVCreateInput, updates interface{}) (*PVCreateInput, error)
	ById(id string) (*PVCreateInput, error)
	Delete(container *PVCreateInput) error
}

type Pagination

type Pagination struct {
	Marker   string `json:"marker,omitempty"`
	First    string `json:"first,omitempty"`
	Previous string `json:"previous,omitempty"`
	Next     string `json:"next,omitempty"`
	Limit    *int64 `json:"limit,omitempty"`
	Total    *int64 `json:"total,omitempty"`
	Partial  bool   `json:"partial,omitempty"`
}

type PurgeStatus added in v0.6.0

type PurgeStatus struct {
	Resource `yaml:"-"`

	Error string `json:"error,omitempty" yaml:"error,omitempty"`

	IsPurging bool `json:"isPurging,omitempty" yaml:"is_purging,omitempty"`

	Progress int64 `json:"progress,omitempty" yaml:"progress,omitempty"`

	Replica string `json:"replica,omitempty" yaml:"replica,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`
}

type PurgeStatusClient added in v0.6.0

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

func (*PurgeStatusClient) ById added in v0.6.0

func (c *PurgeStatusClient) ById(id string) (*PurgeStatus, error)

func (*PurgeStatusClient) Create added in v0.6.0

func (c *PurgeStatusClient) Create(container *PurgeStatus) (*PurgeStatus, error)

func (*PurgeStatusClient) Delete added in v0.6.0

func (c *PurgeStatusClient) Delete(container *PurgeStatus) error

func (*PurgeStatusClient) List added in v0.6.0

func (*PurgeStatusClient) Update added in v0.6.0

func (c *PurgeStatusClient) Update(existing *PurgeStatus, updates interface{}) (*PurgeStatus, error)

type PurgeStatusCollection added in v0.6.0

type PurgeStatusCollection struct {
	Collection
	Data []PurgeStatus `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*PurgeStatusCollection) Next added in v0.6.0

type PurgeStatusOperations added in v0.6.0

type PurgeStatusOperations interface {
	List(opts *ListOpts) (*PurgeStatusCollection, error)
	Create(opts *PurgeStatus) (*PurgeStatus, error)
	Update(existing *PurgeStatus, updates interface{}) (*PurgeStatus, error)
	ById(id string) (*PurgeStatus, error)
	Delete(container *PurgeStatus) error
}

type RancherBaseClient

type RancherBaseClient interface {
	Websocket(string, map[string][]string) (*websocket.Conn, *http.Response, error)
	List(string, *ListOpts, interface{}) error
	Post(string, interface{}, interface{}) error
	GetLink(Resource, string, interface{}) error
	Create(string, interface{}, interface{}) error
	Update(string, *Resource, interface{}, interface{}) error
	ById(string, string, interface{}) error
	Delete(*Resource) error
	Reload(*Resource, interface{}) error
	Action(string, string, *Resource, interface{}, interface{}) error
	GetOpts() *ClientOpts
	GetSchemas() *Schemas
	GetTypes() map[string]Schema
	// contains filtered or unexported methods
}

type RancherBaseClientImpl

type RancherBaseClientImpl struct {
	Opts    *ClientOpts
	Schemas *Schemas
	Types   map[string]Schema
}

func (*RancherBaseClientImpl) Action

func (rancherClient *RancherBaseClientImpl) Action(schemaType string, action string,
	existing *Resource, inputObject, respObject interface{}) error

func (*RancherBaseClientImpl) ById

func (rancherClient *RancherBaseClientImpl) ById(schemaType string, id string, respObject interface{}) error

func (*RancherBaseClientImpl) Create

func (rancherClient *RancherBaseClientImpl) Create(schemaType string, createObj interface{}, respObject interface{}) error

func (*RancherBaseClientImpl) Delete

func (rancherClient *RancherBaseClientImpl) Delete(existing *Resource) error
func (rancherClient *RancherBaseClientImpl) GetLink(resource Resource, link string, respObject interface{}) error

func (*RancherBaseClientImpl) GetOpts

func (rancherClient *RancherBaseClientImpl) GetOpts() *ClientOpts

func (*RancherBaseClientImpl) GetSchemas

func (rancherClient *RancherBaseClientImpl) GetSchemas() *Schemas

func (*RancherBaseClientImpl) GetTypes

func (rancherClient *RancherBaseClientImpl) GetTypes() map[string]Schema

func (*RancherBaseClientImpl) List

func (rancherClient *RancherBaseClientImpl) List(schemaType string, opts *ListOpts, respObject interface{}) error

func (*RancherBaseClientImpl) Post

func (rancherClient *RancherBaseClientImpl) Post(url string, createObj interface{}, respObject interface{}) error

func (*RancherBaseClientImpl) Reload

func (rancherClient *RancherBaseClientImpl) Reload(existing *Resource, output interface{}) error

func (*RancherBaseClientImpl) Update

func (rancherClient *RancherBaseClientImpl) Update(schemaType string, existing *Resource, updates interface{}, respObject interface{}) error

func (*RancherBaseClientImpl) Websocket

func (rancherClient *RancherBaseClientImpl) Websocket(url string, headers map[string][]string) (*websocket.Conn, *http.Response, error)

type RancherClient

func NewRancherClient

func NewRancherClient(opts *ClientOpts) (*RancherClient, error)

type RecurringInput

type RecurringInput struct {
	Resource `yaml:"-"`

	Jobs []RecurringJob `json:"jobs,omitempty" yaml:"jobs,omitempty"`
}

type RecurringInputClient

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

func (*RecurringInputClient) ById

func (*RecurringInputClient) Create

func (c *RecurringInputClient) Create(container *RecurringInput) (*RecurringInput, error)

func (*RecurringInputClient) Delete

func (c *RecurringInputClient) Delete(container *RecurringInput) error

func (*RecurringInputClient) List

func (*RecurringInputClient) Update

func (c *RecurringInputClient) Update(existing *RecurringInput, updates interface{}) (*RecurringInput, error)

type RecurringInputCollection

type RecurringInputCollection struct {
	Collection
	Data []RecurringInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*RecurringInputCollection) Next

type RecurringInputOperations

type RecurringInputOperations interface {
	List(opts *ListOpts) (*RecurringInputCollection, error)
	Create(opts *RecurringInput) (*RecurringInput, error)
	Update(existing *RecurringInput, updates interface{}) (*RecurringInput, error)
	ById(id string) (*RecurringInput, error)
	Delete(container *RecurringInput) error
}

type RecurringJob

type RecurringJob struct {
	Resource `yaml:"-"`

	Cron string `json:"cron,omitempty" yaml:"cron,omitempty"`

	Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Retain int64 `json:"retain,omitempty" yaml:"retain,omitempty"`

	Task string `json:"task,omitempty" yaml:"task,omitempty"`
}

type RecurringJobClient

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

func (*RecurringJobClient) ById

func (c *RecurringJobClient) ById(id string) (*RecurringJob, error)

func (*RecurringJobClient) Create

func (c *RecurringJobClient) Create(container *RecurringJob) (*RecurringJob, error)

func (*RecurringJobClient) Delete

func (c *RecurringJobClient) Delete(container *RecurringJob) error

func (*RecurringJobClient) List

func (*RecurringJobClient) Update

func (c *RecurringJobClient) Update(existing *RecurringJob, updates interface{}) (*RecurringJob, error)

type RecurringJobCollection

type RecurringJobCollection struct {
	Collection
	Data []RecurringJob `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*RecurringJobCollection) Next

type RecurringJobOperations

type RecurringJobOperations interface {
	List(opts *ListOpts) (*RecurringJobCollection, error)
	Create(opts *RecurringJob) (*RecurringJob, error)
	Update(existing *RecurringJob, updates interface{}) (*RecurringJob, error)
	ById(id string) (*RecurringJob, error)
	Delete(container *RecurringJob) error
}

type Replica

type Replica struct {
	Resource `yaml:"-"`

	Address string `json:"address,omitempty" yaml:"address,omitempty"`

	CurrentImage string `json:"currentImage,omitempty" yaml:"current_image,omitempty"`

	DataPath string `json:"dataPath,omitempty" yaml:"data_path,omitempty"`

	DiskID string `json:"diskID,omitempty" yaml:"disk_id,omitempty"`

	EngineImage string `json:"engineImage,omitempty" yaml:"engine_image,omitempty"`

	FailedAt string `json:"failedAt,omitempty" yaml:"failed_at,omitempty"`

	HostId string `json:"hostId,omitempty" yaml:"host_id,omitempty"`

	InstanceManagerName string `json:"instanceManagerName,omitempty" yaml:"instance_manager_name,omitempty"`

	Mode string `json:"mode,omitempty" yaml:"mode,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Running bool `json:"running,omitempty" yaml:"running,omitempty"`
}

type ReplicaClient

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

func (*ReplicaClient) ById

func (c *ReplicaClient) ById(id string) (*Replica, error)

func (*ReplicaClient) Create

func (c *ReplicaClient) Create(container *Replica) (*Replica, error)

func (*ReplicaClient) Delete

func (c *ReplicaClient) Delete(container *Replica) error

func (*ReplicaClient) List

func (c *ReplicaClient) List(opts *ListOpts) (*ReplicaCollection, error)

func (*ReplicaClient) Update

func (c *ReplicaClient) Update(existing *Replica, updates interface{}) (*Replica, error)

type ReplicaCollection

type ReplicaCollection struct {
	Collection
	Data []Replica `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplicaCollection) Next

func (cc *ReplicaCollection) Next() (*ReplicaCollection, error)

type ReplicaOperations

type ReplicaOperations interface {
	List(opts *ListOpts) (*ReplicaCollection, error)
	Create(opts *Replica) (*Replica, error)
	Update(existing *Replica, updates interface{}) (*Replica, error)
	ById(id string) (*Replica, error)
	Delete(container *Replica) error
}

type ReplicaRemoveInput

type ReplicaRemoveInput struct {
	Resource `yaml:"-"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`
}

type ReplicaRemoveInputClient

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

func (*ReplicaRemoveInputClient) ById

func (*ReplicaRemoveInputClient) Create

func (*ReplicaRemoveInputClient) Delete

func (c *ReplicaRemoveInputClient) Delete(container *ReplicaRemoveInput) error

func (*ReplicaRemoveInputClient) List

func (*ReplicaRemoveInputClient) Update

func (c *ReplicaRemoveInputClient) Update(existing *ReplicaRemoveInput, updates interface{}) (*ReplicaRemoveInput, error)

type ReplicaRemoveInputCollection

type ReplicaRemoveInputCollection struct {
	Collection
	Data []ReplicaRemoveInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplicaRemoveInputCollection) Next

type ReplicaRemoveInputOperations

type ReplicaRemoveInputOperations interface {
	List(opts *ListOpts) (*ReplicaRemoveInputCollection, error)
	Create(opts *ReplicaRemoveInput) (*ReplicaRemoveInput, error)
	Update(existing *ReplicaRemoveInput, updates interface{}) (*ReplicaRemoveInput, error)
	ById(id string) (*ReplicaRemoveInput, error)
	Delete(container *ReplicaRemoveInput) error
}

type Resource

type Resource struct {
	Id      string            `json:"id,omitempty"`
	Type    string            `json:"type,omitempty"`
	Links   map[string]string `json:"links"`
	Actions map[string]string `json:"actions"`
}

type ResourceCollection

type ResourceCollection struct {
	Collection
	Data []Resource `json:"data,omitempty"`
}

type RestoreStatus added in v0.6.0

type RestoreStatus struct {
	Resource `yaml:"-"`

	BackupURL string `json:"backupURL,omitempty" yaml:"backup_url,omitempty"`

	Error string `json:"error,omitempty" yaml:"error,omitempty"`

	Filename string `json:"filename,omitempty" yaml:"filename,omitempty"`

	IsRestoring bool `json:"isRestoring,omitempty" yaml:"is_restoring,omitempty"`

	LastRestored string `json:"lastRestored,omitempty" yaml:"last_restored,omitempty"`

	Progress int64 `json:"progress,omitempty" yaml:"progress,omitempty"`

	Replica string `json:"replica,omitempty" yaml:"replica,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`
}

type RestoreStatusClient added in v0.6.0

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

func (*RestoreStatusClient) ById added in v0.6.0

func (*RestoreStatusClient) Create added in v0.6.0

func (c *RestoreStatusClient) Create(container *RestoreStatus) (*RestoreStatus, error)

func (*RestoreStatusClient) Delete added in v0.6.0

func (c *RestoreStatusClient) Delete(container *RestoreStatus) error

func (*RestoreStatusClient) List added in v0.6.0

func (*RestoreStatusClient) Update added in v0.6.0

func (c *RestoreStatusClient) Update(existing *RestoreStatus, updates interface{}) (*RestoreStatus, error)

type RestoreStatusCollection added in v0.6.0

type RestoreStatusCollection struct {
	Collection
	Data []RestoreStatus `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*RestoreStatusCollection) Next added in v0.6.0

type RestoreStatusOperations added in v0.6.0

type RestoreStatusOperations interface {
	List(opts *ListOpts) (*RestoreStatusCollection, error)
	Create(opts *RestoreStatus) (*RestoreStatus, error)
	Update(existing *RestoreStatus, updates interface{}) (*RestoreStatus, error)
	ById(id string) (*RestoreStatus, error)
	Delete(container *RestoreStatus) error
}

type SalvageInput

type SalvageInput struct {
	Resource `yaml:"-"`

	Names []string `json:"names,omitempty" yaml:"names,omitempty"`
}

type SalvageInputClient

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

func (*SalvageInputClient) ById

func (c *SalvageInputClient) ById(id string) (*SalvageInput, error)

func (*SalvageInputClient) Create

func (c *SalvageInputClient) Create(container *SalvageInput) (*SalvageInput, error)

func (*SalvageInputClient) Delete

func (c *SalvageInputClient) Delete(container *SalvageInput) error

func (*SalvageInputClient) List

func (*SalvageInputClient) Update

func (c *SalvageInputClient) Update(existing *SalvageInput, updates interface{}) (*SalvageInput, error)

type SalvageInputCollection

type SalvageInputCollection struct {
	Collection
	Data []SalvageInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SalvageInputCollection) Next

type SalvageInputOperations

type SalvageInputOperations interface {
	List(opts *ListOpts) (*SalvageInputCollection, error)
	Create(opts *SalvageInput) (*SalvageInput, error)
	Update(existing *SalvageInput, updates interface{}) (*SalvageInput, error)
	ById(id string) (*SalvageInput, error)
	Delete(container *SalvageInput) error
}

type Schema

type Schema struct {
	Resource
	PluralName        string            `json:"pluralName,omitempty"`
	ResourceMethods   []string          `json:"resourceMethods,omitempty"`
	ResourceFields    map[string]Field  `json:"resourceFields,omitempty"`
	ResourceActions   map[string]Action `json:"resourceActions,omitempty"`
	CollectionMethods []string          `json:"collectionMethods,omitempty"`
	CollectionFields  map[string]Field  `json:"collectionFields,omitempty"`
	CollectionActions map[string]Action `json:"collectionActions,omitempty"`
	CollectionFilters map[string]Filter `json:"collectionFilters,omitempty"`
	IncludeableLinks  []string          `json:"includeableLinks,omitempty"`
}

func (*Schema) CheckField

func (s *Schema) CheckField(name string) (Field, bool)

func (*Schema) Field

func (s *Schema) Field(name string) Field

type Schemas

type Schemas struct {
	Collection
	Data []Schema `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*Schemas) AddType

func (s *Schemas) AddType(schemaName string, obj interface{}) *Schema

func (*Schemas) CheckSchema

func (s *Schemas) CheckSchema(name string) (Schema, bool)

func (*Schemas) Schema

func (s *Schemas) Schema(name string) Schema

type Setting

type Setting struct {
	Resource `yaml:"-"`

	Definition SettingDefinition `json:"definition,omitempty" yaml:"definition,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Timestamp string `json:"timestamp,omitempty" yaml:"timestamp,omitempty"`

	Value string `json:"value,omitempty" yaml:"value,omitempty"`
}

type SettingClient

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

func (*SettingClient) ById

func (c *SettingClient) ById(id string) (*Setting, error)

func (*SettingClient) Create

func (c *SettingClient) Create(container *Setting) (*Setting, error)

func (*SettingClient) Delete

func (c *SettingClient) Delete(container *Setting) error

func (*SettingClient) List

func (c *SettingClient) List(opts *ListOpts) (*SettingCollection, error)

func (*SettingClient) Update

func (c *SettingClient) Update(existing *Setting, updates interface{}) (*Setting, error)

type SettingCollection

type SettingCollection struct {
	Collection
	Data []Setting `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SettingCollection) Next

func (cc *SettingCollection) Next() (*SettingCollection, error)

type SettingDefinition

type SettingDefinition struct {
	Resource `yaml:"-"`

	Category string `json:"category,omitempty" yaml:"category,omitempty"`

	Default string `json:"default,omitempty" yaml:"default,omitempty"`

	Description string `json:"description,omitempty" yaml:"description,omitempty"`

	DisplayName string `json:"displayName,omitempty" yaml:"display_name,omitempty"`

	ReadOnly bool `json:"readOnly,omitempty" yaml:"read_only,omitempty"`

	Required bool `json:"required,omitempty" yaml:"required,omitempty"`
}

type SettingDefinitionClient

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

func (*SettingDefinitionClient) ById

func (*SettingDefinitionClient) Create

func (*SettingDefinitionClient) Delete

func (c *SettingDefinitionClient) Delete(container *SettingDefinition) error

func (*SettingDefinitionClient) List

func (*SettingDefinitionClient) Update

func (c *SettingDefinitionClient) Update(existing *SettingDefinition, updates interface{}) (*SettingDefinition, error)

type SettingDefinitionCollection

type SettingDefinitionCollection struct {
	Collection
	Data []SettingDefinition `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SettingDefinitionCollection) Next

type SettingDefinitionOperations

type SettingDefinitionOperations interface {
	List(opts *ListOpts) (*SettingDefinitionCollection, error)
	Create(opts *SettingDefinition) (*SettingDefinition, error)
	Update(existing *SettingDefinition, updates interface{}) (*SettingDefinition, error)
	ById(id string) (*SettingDefinition, error)
	Delete(container *SettingDefinition) error
}

type SettingOperations

type SettingOperations interface {
	List(opts *ListOpts) (*SettingCollection, error)
	Create(opts *Setting) (*Setting, error)
	Update(existing *Setting, updates interface{}) (*Setting, error)
	ById(id string) (*Setting, error)
	Delete(container *Setting) error
}

type Snapshot

type Snapshot struct {
	Resource `yaml:"-"`

	Children map[string]string `json:"children,omitempty" yaml:"children,omitempty"`

	Created string `json:"created,omitempty" yaml:"created,omitempty"`

	Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	Parent string `json:"parent,omitempty" yaml:"parent,omitempty"`

	Removed bool `json:"removed,omitempty" yaml:"removed,omitempty"`

	Size string `json:"size,omitempty" yaml:"size,omitempty"`

	Usercreated bool `json:"usercreated,omitempty" yaml:"usercreated,omitempty"`
}

type SnapshotClient

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

func (*SnapshotClient) ById

func (c *SnapshotClient) ById(id string) (*Snapshot, error)

func (*SnapshotClient) Create

func (c *SnapshotClient) Create(container *Snapshot) (*Snapshot, error)

func (*SnapshotClient) Delete

func (c *SnapshotClient) Delete(container *Snapshot) error

func (*SnapshotClient) List

func (c *SnapshotClient) List(opts *ListOpts) (*SnapshotCollection, error)

func (*SnapshotClient) Update

func (c *SnapshotClient) Update(existing *Snapshot, updates interface{}) (*Snapshot, error)

type SnapshotCollection

type SnapshotCollection struct {
	Collection
	Data []Snapshot `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SnapshotCollection) Next

type SnapshotInput

type SnapshotInput struct {
	Resource `yaml:"-"`

	Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`
}

type SnapshotInputClient

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

func (*SnapshotInputClient) ById

func (*SnapshotInputClient) Create

func (c *SnapshotInputClient) Create(container *SnapshotInput) (*SnapshotInput, error)

func (*SnapshotInputClient) Delete

func (c *SnapshotInputClient) Delete(container *SnapshotInput) error

func (*SnapshotInputClient) List

func (*SnapshotInputClient) Update

func (c *SnapshotInputClient) Update(existing *SnapshotInput, updates interface{}) (*SnapshotInput, error)

type SnapshotInputCollection

type SnapshotInputCollection struct {
	Collection
	Data []SnapshotInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SnapshotInputCollection) Next

type SnapshotInputOperations

type SnapshotInputOperations interface {
	List(opts *ListOpts) (*SnapshotInputCollection, error)
	Create(opts *SnapshotInput) (*SnapshotInput, error)
	Update(existing *SnapshotInput, updates interface{}) (*SnapshotInput, error)
	ById(id string) (*SnapshotInput, error)
	Delete(container *SnapshotInput) error
}

type SnapshotOperations

type SnapshotOperations interface {
	List(opts *ListOpts) (*SnapshotCollection, error)
	Create(opts *Snapshot) (*Snapshot, error)
	Update(existing *Snapshot, updates interface{}) (*Snapshot, error)
	ById(id string) (*Snapshot, error)
	Delete(container *Snapshot) error
}

type Sort

type Sort struct {
	Name    string `json:"name,omitempty"`
	Order   string `json:"order,omitempty"`
	Reverse string `json:"reverse,omitempty"`
}

type SupportBundle added in v0.6.0

type SupportBundle struct {
	Resource `yaml:"-"`

	ErrorMessage string `json:"errorMessage,omitempty" yaml:"error_message,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	NodeID string `json:"nodeID,omitempty" yaml:"node_id,omitempty"`

	ProgressPercentage int64 `json:"progressPercentage,omitempty" yaml:"progress_percentage,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`
}

type SupportBundleClient added in v0.6.0

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

func (*SupportBundleClient) ById added in v0.6.0

func (*SupportBundleClient) Create added in v0.6.0

func (c *SupportBundleClient) Create(container *SupportBundle) (*SupportBundle, error)

func (*SupportBundleClient) Delete added in v0.6.0

func (c *SupportBundleClient) Delete(container *SupportBundle) error

func (*SupportBundleClient) List added in v0.6.0

func (*SupportBundleClient) Update added in v0.6.0

func (c *SupportBundleClient) Update(existing *SupportBundle, updates interface{}) (*SupportBundle, error)

type SupportBundleCollection added in v0.6.0

type SupportBundleCollection struct {
	Collection
	Data []SupportBundle `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SupportBundleCollection) Next added in v0.6.0

type SupportBundleInitateInput added in v0.6.0

type SupportBundleInitateInput struct {
	Resource `yaml:"-"`

	Description string `json:"description,omitempty" yaml:"description,omitempty"`

	IssueURL string `json:"issueURL,omitempty" yaml:"issue_url,omitempty"`
}

type SupportBundleInitateInputClient added in v0.6.0

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

func (*SupportBundleInitateInputClient) ById added in v0.6.0

func (*SupportBundleInitateInputClient) Create added in v0.6.0

func (*SupportBundleInitateInputClient) Delete added in v0.6.0

func (*SupportBundleInitateInputClient) List added in v0.6.0

func (*SupportBundleInitateInputClient) Update added in v0.6.0

func (c *SupportBundleInitateInputClient) Update(existing *SupportBundleInitateInput, updates interface{}) (*SupportBundleInitateInput, error)

type SupportBundleInitateInputCollection added in v0.6.0

type SupportBundleInitateInputCollection struct {
	Collection
	Data []SupportBundleInitateInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*SupportBundleInitateInputCollection) Next added in v0.6.0

type SupportBundleInitateInputOperations added in v0.6.0

type SupportBundleInitateInputOperations interface {
	List(opts *ListOpts) (*SupportBundleInitateInputCollection, error)
	Create(opts *SupportBundleInitateInput) (*SupportBundleInitateInput, error)
	Update(existing *SupportBundleInitateInput, updates interface{}) (*SupportBundleInitateInput, error)
	ById(id string) (*SupportBundleInitateInput, error)
	Delete(container *SupportBundleInitateInput) error
}

type SupportBundleOperations added in v0.6.0

type SupportBundleOperations interface {
	List(opts *ListOpts) (*SupportBundleCollection, error)
	Create(opts *SupportBundle) (*SupportBundle, error)
	Update(existing *SupportBundle, updates interface{}) (*SupportBundle, error)
	ById(id string) (*SupportBundle, error)
	Delete(container *SupportBundle) error
}

type Tag added in v0.6.0

type Tag struct {
	Resource `yaml:"-"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	TagType string `json:"tagType,omitempty" yaml:"tag_type,omitempty"`
}

type TagClient added in v0.6.0

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

func (*TagClient) ById added in v0.6.0

func (c *TagClient) ById(id string) (*Tag, error)

func (*TagClient) Create added in v0.6.0

func (c *TagClient) Create(container *Tag) (*Tag, error)

func (*TagClient) Delete added in v0.6.0

func (c *TagClient) Delete(container *Tag) error

func (*TagClient) List added in v0.6.0

func (c *TagClient) List(opts *ListOpts) (*TagCollection, error)

func (*TagClient) Update added in v0.6.0

func (c *TagClient) Update(existing *Tag, updates interface{}) (*Tag, error)

type TagCollection added in v0.6.0

type TagCollection struct {
	Collection
	Data []Tag `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*TagCollection) Next added in v0.6.0

func (cc *TagCollection) Next() (*TagCollection, error)

type TagOperations added in v0.6.0

type TagOperations interface {
	List(opts *ListOpts) (*TagCollection, error)
	Create(opts *Tag) (*Tag, error)
	Update(existing *Tag, updates interface{}) (*Tag, error)
	ById(id string) (*Tag, error)
	Delete(container *Tag) error
}

type UpdateReplicaCountInput added in v0.6.0

type UpdateReplicaCountInput struct {
	Resource `yaml:"-"`

	ReplicaCount int64 `json:"replicaCount,omitempty" yaml:"replica_count,omitempty"`
}

type UpdateReplicaCountInputClient added in v0.6.0

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

func (*UpdateReplicaCountInputClient) ById added in v0.6.0

func (*UpdateReplicaCountInputClient) Create added in v0.6.0

func (*UpdateReplicaCountInputClient) Delete added in v0.6.0

func (*UpdateReplicaCountInputClient) List added in v0.6.0

func (*UpdateReplicaCountInputClient) Update added in v0.6.0

func (c *UpdateReplicaCountInputClient) Update(existing *UpdateReplicaCountInput, updates interface{}) (*UpdateReplicaCountInput, error)

type UpdateReplicaCountInputCollection added in v0.6.0

type UpdateReplicaCountInputCollection struct {
	Collection
	Data []UpdateReplicaCountInput `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateReplicaCountInputCollection) Next added in v0.6.0

type UpdateReplicaCountInputOperations added in v0.6.0

type UpdateReplicaCountInputOperations interface {
	List(opts *ListOpts) (*UpdateReplicaCountInputCollection, error)
	Create(opts *UpdateReplicaCountInput) (*UpdateReplicaCountInput, error)
	Update(existing *UpdateReplicaCountInput, updates interface{}) (*UpdateReplicaCountInput, error)
	ById(id string) (*UpdateReplicaCountInput, error)
	Delete(container *UpdateReplicaCountInput) error
}

type Volume

type Volume struct {
	Resource `yaml:"-"`

	BackupStatus []BackupStatus `json:"backupStatus,omitempty" yaml:"backup_status,omitempty"`

	BaseImage string `json:"baseImage,omitempty" yaml:"base_image,omitempty"`

	Conditions map[string]interface{} `json:"conditions,omitempty" yaml:"conditions,omitempty"`

	Controllers []Controller `json:"controllers,omitempty" yaml:"controllers,omitempty"`

	Created string `json:"created,omitempty" yaml:"created,omitempty"`

	CurrentImage string `json:"currentImage,omitempty" yaml:"current_image,omitempty"`

	DisableFrontend bool `json:"disableFrontend,omitempty" yaml:"disable_frontend,omitempty"`

	DiskSelector []string `json:"diskSelector,omitempty" yaml:"disk_selector,omitempty"`

	EngineImage string `json:"engineImage,omitempty" yaml:"engine_image,omitempty"`

	FromBackup string `json:"fromBackup,omitempty" yaml:"from_backup,omitempty"`

	Frontend string `json:"frontend,omitempty" yaml:"frontend,omitempty"`

	InitialRestorationRequired bool `json:"initialRestorationRequired,omitempty" yaml:"initial_restoration_required,omitempty"`

	KubernetesStatus KubernetesStatus `json:"kubernetesStatus,omitempty" yaml:"kubernetes_status,omitempty"`

	LastBackup string `json:"lastBackup,omitempty" yaml:"last_backup,omitempty"`

	LastBackupAt string `json:"lastBackupAt,omitempty" yaml:"last_backup_at,omitempty"`

	MigrationNodeID string `json:"migrationNodeID,omitempty" yaml:"migration_node_id,omitempty"`

	Name string `json:"name,omitempty" yaml:"name,omitempty"`

	NodeSelector []string `json:"nodeSelector,omitempty" yaml:"node_selector,omitempty"`

	NumberOfReplicas int64 `json:"numberOfReplicas,omitempty" yaml:"number_of_replicas,omitempty"`

	PurgeStatus []PurgeStatus `json:"purgeStatus,omitempty" yaml:"purge_status,omitempty"`

	RecurringJobs []RecurringJob `json:"recurringJobs,omitempty" yaml:"recurring_jobs,omitempty"`

	Replicas []Replica `json:"replicas,omitempty" yaml:"replicas,omitempty"`

	RestoreStatus []RestoreStatus `json:"restoreStatus,omitempty" yaml:"restore_status,omitempty"`

	Robustness string `json:"robustness,omitempty" yaml:"robustness,omitempty"`

	Size string `json:"size,omitempty" yaml:"size,omitempty"`

	StaleReplicaTimeout int64 `json:"staleReplicaTimeout,omitempty" yaml:"stale_replica_timeout,omitempty"`

	Standby bool `json:"standby,omitempty" yaml:"standby,omitempty"`

	State string `json:"state,omitempty" yaml:"state,omitempty"`

	Timestamp string `json:"timestamp,omitempty" yaml:"timestamp,omitempty"`
}

type VolumeClient

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

func (*VolumeClient) ActionAttach

func (c *VolumeClient) ActionAttach(resource *Volume, input *AttachInput) (*Volume, error)

func (*VolumeClient) ActionDetach

func (c *VolumeClient) ActionDetach(resource *Volume) (*Volume, error)

func (*VolumeClient) ActionReplicaRemove

func (c *VolumeClient) ActionReplicaRemove(resource *Volume, input *ReplicaRemoveInput) (*Volume, error)

func (*VolumeClient) ActionSalvage

func (c *VolumeClient) ActionSalvage(resource *Volume, input *SalvageInput) (*Volume, error)

func (*VolumeClient) ActionSnapshotCreate

func (c *VolumeClient) ActionSnapshotCreate(resource *Volume, input *SnapshotInput) (*Snapshot, error)

func (*VolumeClient) ActionSnapshotDelete

func (c *VolumeClient) ActionSnapshotDelete(resource *Volume, input *SnapshotInput) (*Snapshot, error)

func (*VolumeClient) ActionSnapshotGet

func (c *VolumeClient) ActionSnapshotGet(resource *Volume, input *SnapshotInput) (*Snapshot, error)

func (*VolumeClient) ActionSnapshotRevert

func (c *VolumeClient) ActionSnapshotRevert(resource *Volume, input *SnapshotInput) (*Snapshot, error)

func (*VolumeClient) ById

func (c *VolumeClient) ById(id string) (*Volume, error)

func (*VolumeClient) Create

func (c *VolumeClient) Create(container *Volume) (*Volume, error)

func (*VolumeClient) Delete

func (c *VolumeClient) Delete(container *Volume) error

func (*VolumeClient) List

func (c *VolumeClient) List(opts *ListOpts) (*VolumeCollection, error)

func (*VolumeClient) Update

func (c *VolumeClient) Update(existing *Volume, updates interface{}) (*Volume, error)

type VolumeCollection

type VolumeCollection struct {
	Collection
	Data []Volume `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*VolumeCollection) Next

func (cc *VolumeCollection) Next() (*VolumeCollection, error)

type VolumeCondition

type VolumeCondition struct {
	Resource `yaml:"-"`

	LastProbeTime string `json:"lastProbeTime,omitempty" yaml:"last_probe_time,omitempty"`

	LastTransitionTime string `json:"lastTransitionTime,omitempty" yaml:"last_transition_time,omitempty"`

	Message string `json:"message,omitempty" yaml:"message,omitempty"`

	Reason string `json:"reason,omitempty" yaml:"reason,omitempty"`

	Status string `json:"status,omitempty" yaml:"status,omitempty"`
}

type VolumeConditionClient

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

func (*VolumeConditionClient) ById

func (*VolumeConditionClient) Create

func (c *VolumeConditionClient) Create(container *VolumeCondition) (*VolumeCondition, error)

func (*VolumeConditionClient) Delete

func (c *VolumeConditionClient) Delete(container *VolumeCondition) error

func (*VolumeConditionClient) List

func (*VolumeConditionClient) Update

func (c *VolumeConditionClient) Update(existing *VolumeCondition, updates interface{}) (*VolumeCondition, error)

type VolumeConditionCollection

type VolumeConditionCollection struct {
	Collection
	Data []VolumeCondition `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*VolumeConditionCollection) Next

type VolumeConditionOperations

type VolumeConditionOperations interface {
	List(opts *ListOpts) (*VolumeConditionCollection, error)
	Create(opts *VolumeCondition) (*VolumeCondition, error)
	Update(existing *VolumeCondition, updates interface{}) (*VolumeCondition, error)
	ById(id string) (*VolumeCondition, error)
	Delete(container *VolumeCondition) error
}

type VolumeOperations

type VolumeOperations interface {
	List(opts *ListOpts) (*VolumeCollection, error)
	Create(opts *Volume) (*Volume, error)
	Update(existing *Volume, updates interface{}) (*Volume, error)
	ById(id string) (*Volume, error)
	Delete(container *Volume) error

	ActionAttach(*Volume, *AttachInput) (*Volume, error)

	ActionDetach(*Volume) (*Volume, error)

	ActionReplicaRemove(*Volume, *ReplicaRemoveInput) (*Volume, error)

	ActionSalvage(*Volume, *SalvageInput) (*Volume, error)

	ActionSnapshotCreate(*Volume, *SnapshotInput) (*Snapshot, error)

	ActionSnapshotDelete(*Volume, *SnapshotInput) (*Snapshot, error)

	ActionSnapshotGet(*Volume, *SnapshotInput) (*Snapshot, error)

	ActionSnapshotRevert(*Volume, *SnapshotInput) (*Snapshot, error)
}

type WorkloadStatus added in v0.6.0

type WorkloadStatus struct {
	Resource `yaml:"-"`

	PodName string `json:"podName,omitempty" yaml:"pod_name,omitempty"`

	PodStatus string `json:"podStatus,omitempty" yaml:"pod_status,omitempty"`

	WorkloadName string `json:"workloadName,omitempty" yaml:"workload_name,omitempty"`

	WorkloadType string `json:"workloadType,omitempty" yaml:"workload_type,omitempty"`
}

type WorkloadStatusClient added in v0.6.0

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

func (*WorkloadStatusClient) ById added in v0.6.0

func (*WorkloadStatusClient) Create added in v0.6.0

func (c *WorkloadStatusClient) Create(container *WorkloadStatus) (*WorkloadStatus, error)

func (*WorkloadStatusClient) Delete added in v0.6.0

func (c *WorkloadStatusClient) Delete(container *WorkloadStatus) error

func (*WorkloadStatusClient) List added in v0.6.0

func (*WorkloadStatusClient) Update added in v0.6.0

func (c *WorkloadStatusClient) Update(existing *WorkloadStatus, updates interface{}) (*WorkloadStatus, error)

type WorkloadStatusCollection added in v0.6.0

type WorkloadStatusCollection struct {
	Collection
	Data []WorkloadStatus `json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*WorkloadStatusCollection) Next added in v0.6.0

type WorkloadStatusOperations added in v0.6.0

type WorkloadStatusOperations interface {
	List(opts *ListOpts) (*WorkloadStatusCollection, error)
	Create(opts *WorkloadStatus) (*WorkloadStatus, error)
	Update(existing *WorkloadStatus, updates interface{}) (*WorkloadStatus, error)
	ById(id string) (*WorkloadStatus, error)
	Delete(container *WorkloadStatus) error
}

Jump to

Keyboard shortcuts

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