Documentation ¶
Index ¶
- Variables
- func ApplyDefaultHostAndPortToAddr(address, defaultAddress string) (string, error)
- type UplinkFlags
- func (cliCfg *UplinkFlags) GetProject(ctx context.Context) (_ *libuplink.Project, err error)
- func (cliCfg *UplinkFlags) GetProjectAndBucket(ctx context.Context, bucketName string) (project *libuplink.Project, bucket *libuplink.Bucket, err error)
- func (cliCfg *UplinkFlags) NewUplink(ctx context.Context) (*libuplink.Uplink, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Error is the class of errors returned by this package Error = errs.Class("uplink") )
View Source
var RootCmd = &cobra.Command{ Use: "uplink", Short: "The Storj client-side CLI", Args: cobra.OnlyValidArgs, PersistentPreRunE: startCPUProfile, PersistentPostRunE: stopAndWriteProfile, }
RootCmd represents the base CLI command when called without any subcommands
Functions ¶
func ApplyDefaultHostAndPortToAddr ¶ added in v0.10.0
ApplyDefaultHostAndPortToAddr applies the default host and/or port if either is missing in the specified address.
Types ¶
type UplinkFlags ¶
type UplinkFlags struct { NonInteractive bool `help:"disable interactive mode" default:"false" setup:"true"` uplink.Config Version version.Config }
UplinkFlags configuration flags
func (*UplinkFlags) GetProject ¶ added in v0.11.0
GetProject returns a *libuplink.Project for interacting with a specific project
func (*UplinkFlags) GetProjectAndBucket ¶ added in v0.11.0
func (cliCfg *UplinkFlags) GetProjectAndBucket(ctx context.Context, bucketName string) (project *libuplink.Project, bucket *libuplink.Bucket, err error)
GetProjectAndBucket returns a *libuplink.Bucket for interacting with a specific project's bucket
Click to show internal directories.
Click to hide internal directories.