package edas //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" ) // DeployK8sApplication invokes the edas.DeployK8sApplication API synchronously // api document: https://help.aliyun.com/api/edas/deployk8sapplication.html func (client *Client) DeployK8sApplication(request *DeployK8sApplicationRequest) (response *DeployK8sApplicationResponse, err error) { response = CreateDeployK8sApplicationResponse() err = client.DoAction(request, response) return } // DeployK8sApplicationWithChan invokes the edas.DeployK8sApplication API asynchronously // api document: https://help.aliyun.com/api/edas/deployk8sapplication.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DeployK8sApplicationWithChan(request *DeployK8sApplicationRequest) (<-chan *DeployK8sApplicationResponse, <-chan error) { responseChan := make(chan *DeployK8sApplicationResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.DeployK8sApplication(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // DeployK8sApplicationWithCallback invokes the edas.DeployK8sApplication API asynchronously // api document: https://help.aliyun.com/api/edas/deployk8sapplication.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DeployK8sApplicationWithCallback(request *DeployK8sApplicationRequest, callback func(response *DeployK8sApplicationResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *DeployK8sApplicationResponse var err error defer close(result) response, err = client.DeployK8sApplication(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // DeployK8sApplicationRequest is the request struct for api DeployK8sApplication type DeployK8sApplicationRequest struct { *requests.RoaRequest MemoryRequest requests.Integer `position:"Query" name:"MemoryRequest"` NasId string `position:"Query" name:"NasId"` Image string `position:"Query" name:"Image"` PreStop string `position:"Query" name:"PreStop"` MountDescs string `position:"Query" name:"MountDescs"` Readiness string `position:"Query" name:"Readiness"` Replicas requests.Integer `position:"Query" name:"Replicas"` BatchWaitTime requests.Integer `position:"Query" name:"BatchWaitTime"` Liveness string `position:"Query" name:"Liveness"` CpuRequest requests.Integer `position:"Query" name:"CpuRequest"` Envs string `position:"Query" name:"Envs"` CpuLimit requests.Integer `position:"Query" name:"CpuLimit"` LocalVolume string `position:"Query" name:"LocalVolume"` Command string `position:"Query" name:"Command"` StorageType string `position:"Query" name:"StorageType"` Args string `position:"Query" name:"Args"` AppId string `position:"Query" name:"AppId"` MemoryLimit requests.Integer `position:"Query" name:"MemoryLimit"` ImageTag string `position:"Query" name:"ImageTag"` PostStart string `position:"Query" name:"PostStart"` } // DeployK8sApplicationResponse is the response struct for api DeployK8sApplication type DeployK8sApplicationResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` Code int `json:"Code" xml:"Code"` Message string `json:"Message" xml:"Message"` ChangeOrderId string `json:"ChangeOrderId" xml:"ChangeOrderId"` } // CreateDeployK8sApplicationRequest creates a request to invoke DeployK8sApplication API func CreateDeployK8sApplicationRequest() (request *DeployK8sApplicationRequest) { request = &DeployK8sApplicationRequest{ RoaRequest: &requests.RoaRequest{}, } request.InitWithApiInfo("Edas", "2017-08-01", "DeployK8sApplication", "/pop/v5/k8s/acs/k8s_apps", "edas", "openAPI") request.Method = requests.POST return } // CreateDeployK8sApplicationResponse creates a response to parse from DeployK8sApplication response func CreateDeployK8sApplicationResponse() (response *DeployK8sApplicationResponse) { response = &DeployK8sApplicationResponse{ BaseResponse: &responses.BaseResponse{}, } return }