Alibaba Cloud ECI(Elastic Container Instance) is a service that allow you run containers without having to manage servers or clusters. This commit add ECI sdk for virtual kubelet. Signed-off-by: xianwei.zw <xianwei.zw@alibaba-inc.com> Signed-off-by: shidao.ytt <shidao.ytt@alibaba-inc.com>
138 lines
6.1 KiB
Go
138 lines
6.1 KiB
Go
package eci
|
|
|
|
//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"
|
|
)
|
|
|
|
// CreateContainerGroup invokes the eci.CreateContainerGroup API synchronously
|
|
// api document: https://help.aliyun.com/api/eci/createcontainergroup.html
|
|
func (client *Client) CreateContainerGroup(request *CreateContainerGroupRequest) (response *CreateContainerGroupResponse, err error) {
|
|
response = CreateCreateContainerGroupResponse()
|
|
err = client.DoAction(request, response)
|
|
return
|
|
}
|
|
|
|
// CreateContainerGroupWithChan invokes the eci.CreateContainerGroup API asynchronously
|
|
// api document: https://help.aliyun.com/api/eci/createcontainergroup.html
|
|
// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
func (client *Client) CreateContainerGroupWithChan(request *CreateContainerGroupRequest) (<-chan *CreateContainerGroupResponse, <-chan error) {
|
|
responseChan := make(chan *CreateContainerGroupResponse, 1)
|
|
errChan := make(chan error, 1)
|
|
err := client.AddAsyncTask(func() {
|
|
defer close(responseChan)
|
|
defer close(errChan)
|
|
response, err := client.CreateContainerGroup(request)
|
|
if err != nil {
|
|
errChan <- err
|
|
} else {
|
|
responseChan <- response
|
|
}
|
|
})
|
|
if err != nil {
|
|
errChan <- err
|
|
close(responseChan)
|
|
close(errChan)
|
|
}
|
|
return responseChan, errChan
|
|
}
|
|
|
|
// CreateContainerGroupWithCallback invokes the eci.CreateContainerGroup API asynchronously
|
|
// api document: https://help.aliyun.com/api/eci/createcontainergroup.html
|
|
// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
func (client *Client) CreateContainerGroupWithCallback(request *CreateContainerGroupRequest, callback func(response *CreateContainerGroupResponse, err error)) <-chan int {
|
|
result := make(chan int, 1)
|
|
err := client.AddAsyncTask(func() {
|
|
var response *CreateContainerGroupResponse
|
|
var err error
|
|
defer close(result)
|
|
response, err = client.CreateContainerGroup(request)
|
|
callback(response, err)
|
|
result <- 1
|
|
})
|
|
if err != nil {
|
|
defer close(result)
|
|
callback(nil, err)
|
|
result <- 0
|
|
}
|
|
return result
|
|
}
|
|
|
|
// CreateContainerGroupRequest is the request struct for api CreateContainerGroup
|
|
type CreateContainerGroupRequest struct {
|
|
*requests.RpcRequest
|
|
Containers []CreateContainer `position:"Query" name:"Container" type:"Repeated"`
|
|
ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
|
|
SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
|
|
ImageRegistryCredentials []ImageRegistryCredential `position:"Query" name:"ImageRegistryCredential" type:"Repeated"`
|
|
Tags []Tag `position:"Query" name:"Tag" type:"Repeated"`
|
|
ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
|
|
RestartPolicy string `position:"Query" name:"RestartPolicy"`
|
|
OwnerAccount string `position:"Query" name:"OwnerAccount"`
|
|
OwnerId requests.Integer `position:"Query" name:"OwnerId"`
|
|
VSwitchId string `position:"Query" name:"VSwitchId"`
|
|
Volumes []Volume `position:"Query" name:"Volume" type:"Repeated"`
|
|
ContainerGroupName string `position:"Query" name:"ContainerGroupName"`
|
|
ZoneId string `position:"Query" name:"ZoneId"`
|
|
}
|
|
|
|
type CreateContainer struct {
|
|
Name string `position:"Query" name:"Name"`
|
|
Image string `position:"Query" name:"Image"`
|
|
Memory requests.Float `position:"Query" name:"Memory"`
|
|
Cpu requests.Float `position:"Query" name:"Cpu"`
|
|
WorkingDir string `position:"Query" name:"WorkingDir"`
|
|
ImagePullPolicy string `position:"Query" name:"ImagePullPolicy"`
|
|
Commands []string `position:"Query" name:"Command" type:"Repeated"`
|
|
Args []string `position:"Query" name:"Arg" type:"Repeated"`
|
|
VolumeMounts []VolumeMount `position:"Query" name:"VolumeMount" type:"Repeated"`
|
|
Ports []ContainerPort `position:"Query" name:"Port" type:"Repeated"`
|
|
EnvironmentVars []EnvironmentVar `position:"Query" name:"EnvironmentVar" type:"Repeated"`
|
|
}
|
|
|
|
// CreateContainerGroupImageRegistryCredential is a repeated param struct in CreateContainerGroupRequest
|
|
type ImageRegistryCredential struct {
|
|
Server string `name:"Server"`
|
|
UserName string `name:"UserName"`
|
|
Password string `name:"Password"`
|
|
}
|
|
|
|
// CreateContainerGroupResponse is the response struct for api CreateContainerGroup
|
|
type CreateContainerGroupResponse struct {
|
|
*responses.BaseResponse
|
|
RequestId string `json:"RequestId" xml:"RequestId"`
|
|
ContainerGroupId string `json:"ContainerGroupId" xml:"ContainerGroupId"`
|
|
}
|
|
|
|
// CreateCreateContainerGroupRequest creates a request to invoke CreateContainerGroup API
|
|
func CreateCreateContainerGroupRequest() (request *CreateContainerGroupRequest) {
|
|
request = &CreateContainerGroupRequest{
|
|
RpcRequest: &requests.RpcRequest{},
|
|
}
|
|
request.InitWithApiInfo("Eci", "2018-08-08", "CreateContainerGroup", "eci", "openAPI")
|
|
return
|
|
}
|
|
|
|
// CreateCreateContainerGroupResponse creates a response to parse from CreateContainerGroup response
|
|
func CreateCreateContainerGroupResponse() (response *CreateContainerGroupResponse) {
|
|
response = &CreateContainerGroupResponse{
|
|
BaseResponse: &responses.BaseResponse{},
|
|
}
|
|
return
|
|
}
|