| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- 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"
- )
- func (client *Client) CreateClusterV2(request *CreateClusterV2Request) (response *CreateClusterV2Response, err error) {
- response = CreateCreateClusterV2Response()
- err = client.DoAction(request, response)
- return
- }
- 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)
- responseChan <- response
- errChan <- err
- })
- if err != nil {
- errChan <- err
- close(responseChan)
- close(errChan)
- }
- return responseChan, errChan
- }
- 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
- }
- type CreateClusterV2Request struct {
- *requests.RpcRequest
- SecurityGroupName string `position:"Query" name:"SecurityGroupName"`
- SshEnable string `position:"Query" name:"SshEnable"`
- ZoneId string `position:"Query" name:"ZoneId"`
- IsOpenPublicIp string `position:"Query" name:"IsOpenPublicIp"`
- InstanceGeneration string `position:"Query" name:"InstanceGeneration"`
- OptionSoftWareList *[]string `position:"Query" name:"OptionSoftWareList" type:"Repeated"`
- UseLocalMetaDb string `position:"Query" name:"UseLocalMetaDb"`
- NetType string `position:"Query" name:"NetType"`
- Name string `position:"Query" name:"Name"`
- ResourceOwnerId string `position:"Query" name:"ResourceOwnerId"`
- AutoRenew string `position:"Query" name:"AutoRenew"`
- HighAvailabilityEnable string `position:"Query" name:"HighAvailabilityEnable"`
- BootstrapAction *[]CreateClusterV2BootstrapAction `position:"Query" name:"BootstrapAction" type:"Repeated"`
- VSwitchId string `position:"Query" name:"VSwitchId"`
- HostGroup *[]CreateClusterV2HostGroup `position:"Query" name:"HostGroup" type:"Repeated"`
- SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
- MasterPwd string `position:"Query" name:"MasterPwd"`
- Period string `position:"Query" name:"Period"`
- LogPath string `position:"Query" name:"LogPath"`
- IoOptimized string `position:"Query" name:"IoOptimized"`
- RelatedClusterId string `position:"Query" name:"RelatedClusterId"`
- ClusterType string `position:"Query" name:"ClusterType"`
- EasEnable string `position:"Query" name:"EasEnable"`
- UserDefinedEmrEcsRole string `position:"Query" name:"UserDefinedEmrEcsRole"`
- EmrVer string `position:"Query" name:"EmrVer"`
- Configurations string `position:"Query" name:"Configurations"`
- ChargeType string `position:"Query" name:"ChargeType"`
- VpcId string `position:"Query" name:"VpcId"`
- }
- type CreateClusterV2BootstrapAction struct {
- Name string `name:"Name"`
- Path string `name:"Path"`
- Arg string `name:"Arg"`
- }
- type CreateClusterV2HostGroup struct {
- HostGroupId string `name:"HostGroupId"`
- HostGroupName string `name:"HostGroupName"`
- HostGroupType string `name:"HostGroupType"`
- ClusterId string `name:"ClusterId"`
- Comment string `name:"Comment"`
- CreateType string `name:"CreateType"`
- ChargeType string `name:"ChargeType"`
- Period string `name:"Period"`
- NodeCount string `name:"NodeCount"`
- InstanceType string `name:"InstanceType"`
- DiskType string `name:"DiskType"`
- DiskCapacity string `name:"DiskCapacity"`
- DiskCount string `name:"DiskCount"`
- SysDiskCapacity string `name:"SysDiskCapacity"`
- AutoRenew string `name:"AutoRenew"`
- VSwitchId string `name:"VSwitchId"`
- }
- 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"`
- }
- func CreateCreateClusterV2Request() (request *CreateClusterV2Request) {
- request = &CreateClusterV2Request{
- RpcRequest: &requests.RpcRequest{},
- }
- request.InitWithApiInfo("Emr", "2016-04-08", "CreateClusterV2", "", "")
- return
- }
- func CreateCreateClusterV2Response() (response *CreateClusterV2Response) {
- response = &CreateClusterV2Response{
- BaseResponse: &responses.BaseResponse{},
- }
- return
- }
|