-
Notifications
You must be signed in to change notification settings - Fork 38
/
poweroff_phost.go
53 lines (40 loc) · 1.39 KB
/
poweroff_phost.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//Code is generated by ucloud code generator, don't modify it by hand, it will cause undefined behaviors.
//go:generate ucloud-gen-go-api UPHost PoweroffPHost
package uphost
import (
"github.com/ucloud/ucloud-sdk-go/ucloud/request"
"github.com/ucloud/ucloud-sdk-go/ucloud/response"
)
// PoweroffPHostRequest is request schema for PoweroffPHost action
type PoweroffPHostRequest struct {
request.CommonBase
// 可用区。参见 [可用区列表](../summary/regionlist.html)
// Zone *string `required:"false"`
// PHost资源ID
PHostId *string `required:"true"`
}
// PoweroffPHostResponse is response schema for PoweroffPHost action
type PoweroffPHostResponse struct {
response.CommonBase
// PHost 的资源ID
PHostId string
}
// NewPoweroffPHostRequest will create request of PoweroffPHost action.
func (c *UPHostClient) NewPoweroffPHostRequest() *PoweroffPHostRequest {
req := &PoweroffPHostRequest{}
// setup request with client config
c.Client.SetupRequest(req)
// setup retryable with default retry policy (retry for non-create action and common error)
req.SetRetryable(true)
return req
}
// PoweroffPHost - 断电物理云主机
func (c *UPHostClient) PoweroffPHost(req *PoweroffPHostRequest) (*PoweroffPHostResponse, error) {
var err error
var res PoweroffPHostResponse
err = c.Client.InvokeAction("PoweroffPHost", req, &res)
if err != nil {
return &res, err
}
return &res, nil
}