Пример #1
0
func init() {
	if gitVersion == "" {
		gitVersion = "unknown"
	}

	cli.Register("version", &version{})
}
Пример #2
0
func init() {
	// Check that git tag in the release builds match the hardcoded version
	if gitVersion != "" && gitVersion[1:] != Version {
		log.Panicf("version mismatch: git=%s vs govc=%s", gitVersion, Version)
	}

	cli.Register("version", &version{})
}
Пример #3
0
func init() {
	spec := NewResourceConfigSpecFlag()
	spec.SetAllocation(func(a *types.ResourceAllocationInfo) {
		a.Shares.Level = types.SharesLevelNormal
		a.ExpandableReservation = types.NewBool(true)
	})

	cli.Register("pool.create", &create{ResourceConfigSpecFlag: spec})
}
Пример #4
0
func init() {
	cli.Register("host.portgroup.remove", &remove{})
}
Пример #5
0
func init() {
	cli.Register("vm.clone", &clone{})
}
Пример #6
0
func init() {
	cli.Register("vm.info", &info{})
}
Пример #7
0
func init() {
	cli.Register("license.assign", &assign{})
}
Пример #8
0
func init() {
	cli.Register("import.spec", &spec{})
}
Пример #9
0
func init() {
	cli.Register("host.disconnect", &disconnect{})
}
Пример #10
0
func init() {
	cli.Register("host.esxcli", &esxcli{})
}
Пример #11
0
func init() {
	cli.Register("device.remove", &remove{})
}
Пример #12
0
func init() {
	cli.Register("datastore.rm", &rm{})
	cli.Alias("datastore.rm", "datastore.delete")
}
Пример #13
0
func init() {
	cli.Register("import.ovf", &ovfx{})
}
Пример #14
0
func init() {
	cli.Register("vm.disk.create", &create{})
}
Пример #15
0
func init() {
	cli.Register("license.list", &list{})
}
Пример #16
0
func init() {
	cli.Register("extension.register", &register{})
}
Пример #17
0
func init() {
	cli.Register("cluster.change", &change{})
}
Пример #18
0
func init() {
	cli.Register("pool.info", &info{})
}
Пример #19
0
func init() {
	cli.Register("host.portgroup.add", &add{})
}
Пример #20
0
func init() {
	cli.Register("datacenter.destroy", &destroy{})
}
Пример #21
0
func init() {
	cli.Register("guest.mkdir", &mkdir{})
}
Пример #22
0
func init() {
	cli.Register("guest.mktemp", &mktemp{})
}
Пример #23
0
Файл: add.go Проект: vmware/vic
func init() {
	cli.Register("device.serial.add", &add{})
}
Пример #24
0
func init() {
	spec := NewResourceConfigSpecFlag()
	cli.Register("pool.change", &change{ResourceConfigSpecFlag: spec})
}
Пример #25
0
func init() {
	cli.Register("device.serial.connect", &connect{})
}
Пример #26
0
func init() {
	cli.Register("fields.set", &set{})
}
Пример #27
0
func init() {
	cli.Register("fields.ls", &ls{})
}
Пример #28
0
func init() {
	cli.Register("host.autostart.configure", &configure{})
}
Пример #29
0
func init() {
	cli.Register("device.cdrom.eject", &eject{})
}
Пример #30
0
func init() {
	cli.Register("firewall.ruleset.find", &find{})
}