Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Application ¶
type Application interface { AllUnits() ([]Unit, error) Constraints() (constraints.Value, error) IsPrincipal() bool }
Application defines a subset of the functionality provided by the state.Application type, as required by the application facade. For details on the methods, see the methods on state.Application with the same names.
type BackendState ¶
type BackendState interface { AddCharmMetadata(state.CharmInfo) (state.CharmRefFull, error) Application(string) (Application, error) Charm(curl string) (state.CharmRefFull, error) ControllerTag() names.ControllerTag Machine(string) (Machine, error) ModelConstraints() (constraints.Value, error) }
type Downloader ¶
type Downloader interface {
DownloadAndStore(ctx context.Context, charmURL *charm.URL, requestedOrigin corecharm.Origin, force bool) (corecharm.Origin, error)
}
Downloader defines an API for downloading and storing charms.
type Machine ¶
type Machine interface {
Constraints() (constraints.Value, error)
}
Machine defines a subset of the functionality provided by the state.Machine type, as required by the application facade. For details on the methods, see the methods on state.Machine with the same names.
Click to show internal directories.
Click to hide internal directories.