當前位置: 首頁>>代碼示例>>Golang>>正文


Golang CloudServersProvider.DeleteServerById方法代碼示例

本文整理匯總了Golang中github.com/polvi/coreup/Godeps/_workspace/src/github.com/rackspace/gophercloud.CloudServersProvider.DeleteServerById方法的典型用法代碼示例。如果您正苦於以下問題:Golang CloudServersProvider.DeleteServerById方法的具體用法?Golang CloudServersProvider.DeleteServerById怎麽用?Golang CloudServersProvider.DeleteServerById使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/polvi/coreup/Godeps/_workspace/src/github.com/rackspace/gophercloud.CloudServersProvider的用法示例。


在下文中一共展示了CloudServersProvider.DeleteServerById方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: withServer

func withServer(api gophercloud.CloudServersProvider, f func(string)) {
	id, err := createServer(api, "", "", "", "")
	if err != nil {
		panic(err)
	}

	for {
		s, err := api.ServerById(id)
		if err != nil {
			panic(err)
		}
		if s.Status == "ACTIVE" {
			break
		}
		time.Sleep(10 * time.Second)
	}

	f(id)

	// I've learned that resizing an instance can fail if a delete request
	// comes in prior to its completion.  This ends up leaving the server
	// in an error state, and neither the resize NOR the delete complete.
	// This is a bug in OpenStack, as far as I'm concerned, but thankfully,
	// there's an easy work-around -- just wait for your server to return to
	// active state first!
	waitForServerState(api, id, "ACTIVE")
	err = api.DeleteServerById(id)
	if err != nil {
		panic(err)
	}
}
開發者ID:polvi,項目名稱:coreup,代碼行數:31,代碼來源:09-resize-server.go


注:本文中的github.com/polvi/coreup/Godeps/_workspace/src/github.com/rackspace/gophercloud.CloudServersProvider.DeleteServerById方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。