| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package ehpc
- //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"
- )
- // CreateHybridCluster invokes the ehpc.CreateHybridCluster API synchronously
- // api document: https://help.aliyun.com/api/ehpc/createhybridcluster.html
- func (client *Client) CreateHybridCluster(request *CreateHybridClusterRequest) (response *CreateHybridClusterResponse, err error) {
- response = CreateCreateHybridClusterResponse()
- err = client.DoAction(request, response)
- return
- }
- // CreateHybridClusterWithChan invokes the ehpc.CreateHybridCluster API asynchronously
- // api document: https://help.aliyun.com/api/ehpc/createhybridcluster.html
- // asynchronous document: https://help.aliyun.com/document_detail/66220.html
- func (client *Client) CreateHybridClusterWithChan(request *CreateHybridClusterRequest) (<-chan *CreateHybridClusterResponse, <-chan error) {
- responseChan := make(chan *CreateHybridClusterResponse, 1)
- errChan := make(chan error, 1)
- err := client.AddAsyncTask(func() {
- defer close(responseChan)
- defer close(errChan)
- response, err := client.CreateHybridCluster(request)
- if err != nil {
- errChan <- err
- } else {
- responseChan <- response
- }
- })
- if err != nil {
- errChan <- err
- close(responseChan)
- close(errChan)
- }
- return responseChan, errChan
- }
- // CreateHybridClusterWithCallback invokes the ehpc.CreateHybridCluster API asynchronously
- // api document: https://help.aliyun.com/api/ehpc/createhybridcluster.html
- // asynchronous document: https://help.aliyun.com/document_detail/66220.html
- func (client *Client) CreateHybridClusterWithCallback(request *CreateHybridClusterRequest, callback func(response *CreateHybridClusterResponse, err error)) <-chan int {
- result := make(chan int, 1)
- err := client.AddAsyncTask(func() {
- var response *CreateHybridClusterResponse
- var err error
- defer close(result)
- response, err = client.CreateHybridCluster(request)
- callback(response, err)
- result <- 1
- })
- if err != nil {
- defer close(result)
- callback(nil, err)
- result <- 0
- }
- return result
- }
- // CreateHybridClusterRequest is the request struct for api CreateHybridCluster
- type CreateHybridClusterRequest struct {
- *requests.RpcRequest
- EhpcVersion string `position:"Query" name:"EhpcVersion"`
- SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
- Description string `position:"Query" name:"Description"`
- KeyPairName string `position:"Query" name:"KeyPairName"`
- SecurityGroupName string `position:"Query" name:"SecurityGroupName"`
- EcsOrderComputeInstanceType string `position:"Query" name:"EcsOrder.Compute.InstanceType"`
- OnPremiseVolumeRemotePath string `position:"Query" name:"OnPremiseVolumeRemotePath"`
- JobQueue string `position:"Query" name:"JobQueue"`
- VolumeType string `position:"Query" name:"VolumeType"`
- Password string `position:"Query" name:"Password"`
- OnPremiseVolumeMountPoint string `position:"Query" name:"OnPremiseVolumeMountPoint"`
- OnPremiseVolumeProtocol string `position:"Query" name:"OnPremiseVolumeProtocol"`
- VolumeProtocol string `position:"Query" name:"VolumeProtocol"`
- OnPremiseVolumeLocalPath string `position:"Query" name:"OnPremiseVolumeLocalPath"`
- ClientVersion string `position:"Query" name:"ClientVersion"`
- OsTag string `position:"Query" name:"OsTag"`
- RemoteDirectory string `position:"Query" name:"RemoteDirectory"`
- PostInstallScript *[]CreateHybridClusterPostInstallScript `position:"Query" name:"PostInstallScript" type:"Repeated"`
- VSwitchId string `position:"Query" name:"VSwitchId"`
- Nodes string `position:"Query" name:"Nodes"`
- Application *[]CreateHybridClusterApplication `position:"Query" name:"Application" type:"Repeated"`
- Domain string `position:"Query" name:"Domain"`
- VpcId string `position:"Query" name:"VpcId"`
- Name string `position:"Query" name:"Name"`
- VolumeId string `position:"Query" name:"VolumeId"`
- VolumeMountpoint string `position:"Query" name:"VolumeMountpoint"`
- ZoneId string `position:"Query" name:"ZoneId"`
- Location string `position:"Query" name:"Location"`
- }
- // CreateHybridClusterPostInstallScript is a repeated param struct in CreateHybridClusterRequest
- type CreateHybridClusterPostInstallScript struct {
- Args string `name:"Args"`
- Url string `name:"Url"`
- }
- // CreateHybridClusterApplication is a repeated param struct in CreateHybridClusterRequest
- type CreateHybridClusterApplication struct {
- Tag string `name:"Tag"`
- }
- // CreateHybridClusterResponse is the response struct for api CreateHybridCluster
- type CreateHybridClusterResponse struct {
- *responses.BaseResponse
- RequestId string `json:"RequestId" xml:"RequestId"`
- ClusterId string `json:"ClusterId" xml:"ClusterId"`
- }
- // CreateCreateHybridClusterRequest creates a request to invoke CreateHybridCluster API
- func CreateCreateHybridClusterRequest() (request *CreateHybridClusterRequest) {
- request = &CreateHybridClusterRequest{
- RpcRequest: &requests.RpcRequest{},
- }
- request.InitWithApiInfo("EHPC", "2018-04-12", "CreateHybridCluster", "ehs", "openAPI")
- return
- }
- // CreateCreateHybridClusterResponse creates a response to parse from CreateHybridCluster response
- func CreateCreateHybridClusterResponse() (response *CreateHybridClusterResponse) {
- response = &CreateHybridClusterResponse{
- BaseResponse: &responses.BaseResponse{},
- }
- return
- }
|