Пример #1
0
// Get returns all the commands allowed for an `orchestration` request.
func Get() []cli.Command {
	return []cli.Command{
		{
			Name:        "build-info",
			Usage:       "Build information.",
			Subcommands: buildinfocommands.Get(),
		},
		{
			Name:        "stack",
			Usage:       "Stack management.",
			Subcommands: stackcommands.Get(),
		},
		{
			Name:        "event",
			Usage:       "Stack event queries.",
			Subcommands: stackeventcommands.Get(),
		},
		{
			Name:        "resource",
			Usage:       "Stack resource queries.",
			Subcommands: stackresourcecommands.Get(),
		},
		{
			Name:        "template",
			Usage:       "Stack template queries.",
			Subcommands: stacktemplatecommands.Get(),
		},
	}
}
Пример #2
0
// Get returns all the commands allowed for a `orchestration` request.
func Get() []cli.Command {
	return []cli.Command{
		{
			Name:        "buildinfo",
			Usage:       "Build information for heat deployment.",
			Subcommands: buildinfocommands.Get(),
		},
		{
			Name:        "stack",
			Usage:       "Stack management.",
			Subcommands: stackcommands.Get(),
		},
	}
}