-
Notifications
You must be signed in to change notification settings - Fork 271
/
create_cluster_v2.go
229 lines (212 loc) · 11.7 KB
/
create_cluster_v2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package emr
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.
//
// Code generated by Alibaba Cloud SDK Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses"
)
// CreateClusterV2 invokes the emr.CreateClusterV2 API synchronously
func (client *Client) CreateClusterV2(request *CreateClusterV2Request) (response *CreateClusterV2Response, err error) {
response = CreateCreateClusterV2Response()
err = client.DoAction(request, response)
return
}
// CreateClusterV2WithChan invokes the emr.CreateClusterV2 API asynchronously
func (client *Client) CreateClusterV2WithChan(request *CreateClusterV2Request) (<-chan *CreateClusterV2Response, <-chan error) {
responseChan := make(chan *CreateClusterV2Response, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.CreateClusterV2(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// CreateClusterV2WithCallback invokes the emr.CreateClusterV2 API asynchronously
func (client *Client) CreateClusterV2WithCallback(request *CreateClusterV2Request, callback func(response *CreateClusterV2Response, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *CreateClusterV2Response
var err error
defer close(result)
response, err = client.CreateClusterV2(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// CreateClusterV2Request is the request struct for api CreateClusterV2
type CreateClusterV2Request struct {
*requests.RpcRequest
AutoPayOrder requests.Boolean `position:"Query" name:"AutoPayOrder"`
ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
LogPath string `position:"Query" name:"LogPath"`
MasterPwd string `position:"Query" name:"MasterPwd"`
Configurations string `position:"Query" name:"Configurations"`
SshEnable requests.Boolean `position:"Query" name:"SshEnable"`
KeyPairName string `position:"Query" name:"KeyPairName"`
MetaStoreType string `position:"Query" name:"MetaStoreType"`
SecurityGroupName string `position:"Query" name:"SecurityGroupName"`
MachineType string `position:"Query" name:"MachineType"`
ResourceGroupId string `position:"Query" name:"ResourceGroupId"`
HostComponentInfo *[]CreateClusterV2HostComponentInfo `position:"Query" name:"HostComponentInfo" type:"Repeated"`
ClickHouseConf string `position:"Query" name:"ClickHouseConf"`
BootstrapAction *[]CreateClusterV2BootstrapAction `position:"Query" name:"BootstrapAction" type:"Repeated"`
MetaStoreConf string `position:"Query" name:"MetaStoreConf"`
EmrVer string `position:"Query" name:"EmrVer"`
Tag *[]CreateClusterV2Tag `position:"Query" name:"Tag" type:"Repeated"`
AuthorizeContent string `position:"Query" name:"AuthorizeContent"`
IsOpenPublicIp requests.Boolean `position:"Query" name:"IsOpenPublicIp"`
Period requests.Integer `position:"Query" name:"Period"`
InstanceGeneration string `position:"Query" name:"InstanceGeneration"`
VSwitchId string `position:"Query" name:"VSwitchId"`
ClusterType string `position:"Query" name:"ClusterType"`
ExtraAttributes string `position:"Query" name:"ExtraAttributes"`
AutoRenew requests.Boolean `position:"Query" name:"AutoRenew"`
OptionSoftWareList *[]string `position:"Query" name:"OptionSoftWareList" type:"Repeated"`
NetType string `position:"Query" name:"NetType"`
Name string `position:"Query" name:"Name"`
ZoneId string `position:"Query" name:"ZoneId"`
UseCustomHiveMetaDB requests.Boolean `position:"Query" name:"UseCustomHiveMetaDB"`
InitCustomHiveMetaDB requests.Boolean `position:"Query" name:"InitCustomHiveMetaDB"`
ClientToken string `position:"Query" name:"ClientToken"`
IoOptimized requests.Boolean `position:"Query" name:"IoOptimized"`
SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
EasEnable requests.Boolean `position:"Query" name:"EasEnable"`
DepositType string `position:"Query" name:"DepositType"`
DataDiskKMSKeyId string `position:"Query" name:"DataDiskKMSKeyId"`
UseLocalMetaDb requests.Boolean `position:"Query" name:"UseLocalMetaDb"`
UserInfo *[]CreateClusterV2UserInfo `position:"Query" name:"UserInfo" type:"Repeated"`
UserDefinedEmrEcsRole string `position:"Query" name:"UserDefinedEmrEcsRole"`
DataDiskEncrypted requests.Boolean `position:"Query" name:"DataDiskEncrypted"`
WhiteListType string `position:"Query" name:"WhiteListType"`
RelatedClusterId string `position:"Query" name:"RelatedClusterId"`
VpcId string `position:"Query" name:"VpcId"`
PromotionInfo *[]CreateClusterV2PromotionInfo `position:"Query" name:"PromotionInfo" type:"Repeated"`
HostGroup *[]CreateClusterV2HostGroup `position:"Query" name:"HostGroup" type:"Repeated"`
ChargeType string `position:"Query" name:"ChargeType"`
ServiceInfo *[]CreateClusterV2ServiceInfo `position:"Query" name:"ServiceInfo" type:"Repeated"`
Config *[]CreateClusterV2Config `position:"Query" name:"Config" type:"Repeated"`
HighAvailabilityEnable requests.Boolean `position:"Query" name:"HighAvailabilityEnable"`
}
// CreateClusterV2HostComponentInfo is a repeated param struct in CreateClusterV2Request
type CreateClusterV2HostComponentInfo struct {
HostName string `name:"HostName"`
ComponentNameList *[]string `name:"ComponentNameList" type:"Repeated"`
ServiceName string `name:"ServiceName"`
}
// CreateClusterV2BootstrapAction is a repeated param struct in CreateClusterV2Request
type CreateClusterV2BootstrapAction struct {
Path string `name:"Path"`
ExecutionTarget string `name:"ExecutionTarget"`
ExecutionMoment string `name:"ExecutionMoment"`
Arg string `name:"Arg"`
Name string `name:"Name"`
ExecutionFailStrategy string `name:"ExecutionFailStrategy"`
}
// CreateClusterV2Tag is a repeated param struct in CreateClusterV2Request
type CreateClusterV2Tag struct {
Value string `name:"Value"`
Key string `name:"Key"`
}
// CreateClusterV2UserInfo is a repeated param struct in CreateClusterV2Request
type CreateClusterV2UserInfo struct {
Password string `name:"Password"`
UserId string `name:"UserId"`
UserName string `name:"UserName"`
}
// CreateClusterV2PromotionInfo is a repeated param struct in CreateClusterV2Request
type CreateClusterV2PromotionInfo struct {
PromotionOptionCode string `name:"PromotionOptionCode"`
ProductCode string `name:"ProductCode"`
PromotionOptionNo string `name:"PromotionOptionNo"`
}
// CreateClusterV2HostGroup is a repeated param struct in CreateClusterV2Request
type CreateClusterV2HostGroup struct {
Period string `name:"Period"`
SysDiskCapacity string `name:"SysDiskCapacity"`
PrivatePoolOptionsId string `name:"PrivatePoolOptionsId"`
DiskCapacity string `name:"DiskCapacity"`
SysDiskType string `name:"SysDiskType"`
ClusterId string `name:"ClusterId"`
DiskType string `name:"DiskType"`
HostGroupName string `name:"HostGroupName"`
VSwitchId string `name:"VSwitchId"`
DiskCount string `name:"DiskCount"`
AutoRenew string `name:"AutoRenew"`
GpuDriver string `name:"GpuDriver"`
HostGroupId string `name:"HostGroupId"`
NodeCount string `name:"NodeCount"`
InstanceType string `name:"InstanceType"`
Comment string `name:"Comment"`
ChargeType string `name:"ChargeType"`
CreateType string `name:"CreateType"`
HostGroupType string `name:"HostGroupType"`
PrivatePoolOptionsMatchCriteria string `name:"PrivatePoolOptionsMatchCriteria"`
}
// CreateClusterV2ServiceInfo is a repeated param struct in CreateClusterV2Request
type CreateClusterV2ServiceInfo struct {
ServiceVersion string `name:"ServiceVersion"`
ServiceName string `name:"ServiceName"`
}
// CreateClusterV2Config is a repeated param struct in CreateClusterV2Request
type CreateClusterV2Config struct {
ConfigKey string `name:"ConfigKey"`
FileName string `name:"FileName"`
Encrypt string `name:"Encrypt"`
Replace string `name:"Replace"`
ConfigValue string `name:"ConfigValue"`
ServiceName string `name:"ServiceName"`
}
// CreateClusterV2Response is the response struct for api CreateClusterV2
type CreateClusterV2Response struct {
*responses.BaseResponse
RequestId string `json:"RequestId" xml:"RequestId"`
ClusterId string `json:"ClusterId" xml:"ClusterId"`
EmrOrderId string `json:"EmrOrderId" xml:"EmrOrderId"`
MasterOrderId string `json:"MasterOrderId" xml:"MasterOrderId"`
CoreOrderId string `json:"CoreOrderId" xml:"CoreOrderId"`
}
// CreateCreateClusterV2Request creates a request to invoke CreateClusterV2 API
func CreateCreateClusterV2Request() (request *CreateClusterV2Request) {
request = &CreateClusterV2Request{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("Emr", "2016-04-08", "CreateClusterV2", "emr", "openAPI")
request.Method = requests.POST
return
}
// CreateCreateClusterV2Response creates a response to parse from CreateClusterV2 response
func CreateCreateClusterV2Response() (response *CreateClusterV2Response) {
response = &CreateClusterV2Response{
BaseResponse: &responses.BaseResponse{},
}
return
}