| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- //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.
- package eci
- 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
- OwnerId requests.Integer `position:"Query" name:"OwnerId"`
- ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
- ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
- OwnerAccount string `position:"Query" name:"OwnerAccount"`
- RegionId string `position:"Query" name:"RegionId"`
- ZoneId string `position:"Query" name:"ZoneId"`
- SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
- VSwitchId string `position:"Query" name:"VSwitchId"`
- ContainerGroupName string `position:"Query" name:"ContainerGroupName"`
- RestartPolicy string `position:"Query" name:"RestartPolicy"`
- Tag *[]CreateContainerGroupTag `position:"Query" name:"Tag" type:"Repeated"`
- ImageRegistryCredential *[]CreateContainerGroupImageRegistryCredential `position:"Query" name:"ImageRegistryCredential" type:"Repeated"`
- Container *[]CreateContainerGroupContainer `position:"Query" name:"Container" type:"Repeated"`
- Volume *[]CreateContainerGroupVolume `position:"Query" name:"Volume" type:"Repeated"`
- EipInstanceId string `position:"Query" name:"EipInstanceId"`
- InitContainer *[]CreateContainerGroupInitContainer `position:"Query" name:"InitContainer" type:"Repeated"`
- Cpu requests.Float `position:"Query" name:"Cpu"`
- Memory requests.Float `position:"Query" name:"Memory"`
- ResourceGroupId string `position:"Query" name:"ResourceGroupId"`
- DnsPolicy string `position:"Query" name:"DnsPolicy"`
- ClientToken string `position:"Query" name:"ClientToken"`
- HostAliase *[]CreateContainerGroupHostAliase `position:"Query" name:"HostAliase" type:"Repeated"`
- Arn *[]CreateContainerGroupArn `position:"Query" name:"Arn" type:"Repeated"`
- InstanceType string `position:"Query" name:"InstanceType"`
- SlsEnable requests.Boolean `position:"Query" name:"SlsEnable"`
- ImageSnapshotId string `position:"Query" name:"ImageSnapshotId"`
- RamRoleName string `position:"Query" name:"RamRoleName"`
- DnsConfig CreateContainerGroupDnsConfig `position:"Query" name:"DnsConfig" type:"Struct"`
- SecurityContext CreateContainerGroupSecurityContext `position:"Query" name:"SecurityContext" type:"Struct"`
- }
- type CreateContainerGroupTag struct {
- Key string `name:"Key"`
- Value string `name:"Value"`
- }
- type CreateContainerGroupImageRegistryCredential struct {
- Server string `name:"Server"`
- UserName string `name:"UserName"`
- Password string `name:"Password"`
- }
- type CreateContainerGroupContainer struct {
- Image string `name:"Image"`
- Name string `name:"Name"`
- Cpu requests.Float `name:"Cpu"`
- Memory requests.Float `name:"Memory"`
- WorkingDir string `name:"WorkingDir"`
- ImagePullPolicy string `name:"ImagePullPolicy"`
- Command []string `name:"Command" type:"Repeated"`
- Arg []string `name:"Arg" type:"Repeated"`
- VolumeMount *[]CreateContainerGroupVolumeMount `name:"VolumeMount" type:"Repeated"`
- Port *[]CreateContainerGroupPort `name:"Port" type:"Repeated"`
- EnvironmentVar *[]CreateContainerGroupEnvironmentVar `name:"EnvironmentVar" type:"Repeated"`
- Stdin requests.Boolean `name:"Stdin"`
- StdinOnce requests.Boolean `name:"StdinOnce"`
- Tty requests.Boolean `name:"Tty"`
- Gpu requests.Integer `name:"Gpu"`
- ReadinessProbe CreateContainerGroupReadinessProbe `name:"ReadinessProbe" type:"Struct"`
- LivenessProbe CreateContainerGroupLivenessProbe `name:"LivenessProbe" type:"Struct"`
- SecurityContext CreateContainerGroupSecurityContext `name:"SecurityContext" type:"Struct"`
- }
- type CreateContainerGroupVolume struct {
- Name string `name:"Name"`
- Type string `name:"Type"`
- NFSVolume CreateContainerGroupNFSVolume `name:"NFSVolume" type:"Struct"`
- ConfigFileVolume CreateContainerGroupConfigFileVolume `name:"ConfigFileVolume" type:"Struct"`
- EmptyDirVolume CreateContainerGroupEmptyDirVolume `name:"EmptyDirVolume" type:"Struct"`
- DiskVolume CreateContainerGroupDiskVolume `name:"DiskVolume" type:"Struct"`
- }
- type CreateContainerGroupInitContainer struct {
- Name string `name:"Name"`
- Image string `name:"Image"`
- Cpu requests.Float `name:"Cpu"`
- Memory requests.Float `name:"Memory"`
- WorkingDir string `name:"WorkingDir"`
- ImagePullPolicy string `name:"ImagePullPolicy"`
- Command []string `name:"Command" type:"Repeated"`
- Arg []string `name:"Arg" type:"Repeated"`
- VolumeMount *[]CreateContainerGroupVolumeMount `name:"VolumeMount" type:"Repeated"`
- Port *[]CreateContainerGroupPort `name:"Port" type:"Repeated"`
- EnvironmentVar *[]CreateContainerGroupEnvironmentVar `name:"EnvironmentVar" type:"Repeated"`
- Gpu requests.Integer `name:"Gpu"`
- SecurityContext CreateContainerGroupSecurityContext `name:"SecurityContext" type:"Struct"`
- }
- type CreateContainerGroupHostAliase struct {
- Ip string `name:"Ip"`
- Hostname []string `name:"Hostname" type:"Repeated"`
- }
- type CreateContainerGroupArn struct {
- RoleArn string `name:"RoleArn"`
- RoleType string `name:"RoleType"`
- AssumeRoleFor string `name:"AssumeRoleFor"`
- }
- type CreateContainerGroupDnsConfig struct {
- NameServer []string `name:"NameServer" type:"Repeated"`
- Search []string `name:"Search" type:"Repeated"`
- Option *[]CreateContainerGroupOption `name:"Option" type:"Repeated"`
- }
- type CreateContainerGroupSecurityContext struct {
- Sysctl *[]CreateContainerGroupSysctl `name:"Sysctl" type:"Repeated"`
- }
- type CreateContainerGroupVolumeMount struct {
- MountPath string `name:"MountPath"`
- ReadOnly requests.Boolean `name:"ReadOnly"`
- Name string `name:"Name"`
- SubPath string `name:"SubPath"`
- }
- type CreateContainerGroupPort struct {
- Protocol string `name:"Protocol"`
- Port requests.Integer `name:"Port"`
- }
- type CreateContainerGroupEnvironmentVar struct {
- Key string `name:"Key"`
- Value string `name:"Value"`
- FieldRef CreateContainerGroupFieldRef `name:"FieldRef" type:"Struct"`
- }
- type CreateContainerGroupFieldRef struct {
- FieldPath string `name:"FieldPath"`
- }
- type CreateContainerGroupReadinessProbe struct {
- InitialDelaySeconds requests.Integer `name:"InitialDelaySeconds"`
- PeriodSeconds requests.Integer `name:"PeriodSeconds"`
- SuccessThreshold requests.Integer `name:"SuccessThreshold"`
- FailureThreshold requests.Integer `name:"FailureThreshold"`
- TimeoutSeconds requests.Integer `name:"TimeoutSeconds"`
- HttpGet CreateContainerGroupHttpGet `name:"HttpGet"`
- Exec CreateContainerGroupExec `name:"Exec"`
- TcpSocket CreateContainerGroupTcpSocket `name:"TcpSocket"`
- }
- type CreateContainerGroupHttpGet struct {
- Path string `name:"Path"`
- Port requests.Integer `name:"Port"`
- Scheme string `name:"Scheme"`
- }
- type CreateContainerGroupExec struct {
- Command []string `name:"Command" type:"Repeated"`
- }
- type CreateContainerGroupTcpSocket struct {
- Port requests.Integer `name:"Port"`
- }
- type CreateContainerGroupLivenessProbe struct {
- InitialDelaySeconds requests.Integer `name:"InitialDelaySeconds"`
- PeriodSeconds requests.Integer `name:"PeriodSeconds"`
- SuccessThreshold requests.Integer `name:"SuccessThreshold"`
- FailureThreshold requests.Integer `name:"FailureThreshold"`
- TimeoutSeconds requests.Integer `name:"TimeoutSeconds"`
- HttpGet CreateContainerGroupHttpGet `name:"HttpGet"`
- Exec CreateContainerGroupExec `name:"Exec"`
- TcpSocket CreateContainerGroupTcpSocket `name:"TcpSocket"`
- }
- type CreateContainerGroupNFSVolume struct {
- Server string `name:"Server"`
- Path string `name:"Path"`
- ReadOnly requests.Boolean `name:"ReadOnly"`
- }
- type CreateContainerGroupConfigFileVolume struct {
- ConfigFileToPath *[]CreateContainerGroupConfigFileToPath `name:"ConfigFileToPath" type:"Repeated"`
- DefaultModel requests.Integer `name:"DefaultModel"`
- }
- type CreateContainerGroupConfigFileToPath struct {
- Content string `name:"Content"`
- Path string `name:"Path"`
- Mode requests.Integer `name:"Mode"`
- }
- type CreateContainerGroupEmptyDirVolume struct {
- Medium string `name:"Medium"`
- }
- type CreateContainerGroupDiskVolume struct {
- DiskId string `name:"DiskId"`
- FsType string `name:"FsType"`
- }
- type CreateContainerGroupOption struct {
- Name string `name:"Name"`
- Value string `name:"Value"`
- }
- type CreateContainerGroupSysctl struct {
- Name string `name:"Name"`
- Value string `name:"Value"`
- }
- // 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
- }
|