services/ecs/create_security_group.go (85 lines of code) (raw):
package ecs
//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"
)
// CreateSecurityGroup invokes the ecs.CreateSecurityGroup API synchronously
func (client *Client) CreateSecurityGroup(request *CreateSecurityGroupRequest) (response *CreateSecurityGroupResponse, err error) {
response = CreateCreateSecurityGroupResponse()
err = client.DoAction(request, response)
return
}
// CreateSecurityGroupWithChan invokes the ecs.CreateSecurityGroup API asynchronously
func (client *Client) CreateSecurityGroupWithChan(request *CreateSecurityGroupRequest) (<-chan *CreateSecurityGroupResponse, <-chan error) {
responseChan := make(chan *CreateSecurityGroupResponse, 1)
errChan := make(chan error, 1)
err := client.AddAsyncTask(func() {
defer close(responseChan)
defer close(errChan)
response, err := client.CreateSecurityGroup(request)
if err != nil {
errChan <- err
} else {
responseChan <- response
}
})
if err != nil {
errChan <- err
close(responseChan)
close(errChan)
}
return responseChan, errChan
}
// CreateSecurityGroupWithCallback invokes the ecs.CreateSecurityGroup API asynchronously
func (client *Client) CreateSecurityGroupWithCallback(request *CreateSecurityGroupRequest, callback func(response *CreateSecurityGroupResponse, err error)) <-chan int {
result := make(chan int, 1)
err := client.AddAsyncTask(func() {
var response *CreateSecurityGroupResponse
var err error
defer close(result)
response, err = client.CreateSecurityGroup(request)
callback(response, err)
result <- 1
})
if err != nil {
defer close(result)
callback(nil, err)
result <- 0
}
return result
}
// CreateSecurityGroupRequest is the request struct for api CreateSecurityGroup
type CreateSecurityGroupRequest struct {
*requests.RpcRequest
ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
ClientToken string `position:"Query" name:"ClientToken"`
ServiceManaged requests.Boolean `position:"Query" name:"ServiceManaged"`
Description string `position:"Query" name:"Description"`
SecurityGroupName string `position:"Query" name:"SecurityGroupName"`
ResourceGroupId string `position:"Query" name:"ResourceGroupId"`
Tag *[]CreateSecurityGroupTag `position:"Query" name:"Tag" type:"Repeated"`
ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
OwnerAccount string `position:"Query" name:"OwnerAccount"`
OwnerId requests.Integer `position:"Query" name:"OwnerId"`
SecurityGroupType string `position:"Query" name:"SecurityGroupType"`
VpcId string `position:"Query" name:"VpcId"`
}
// CreateSecurityGroupTag is a repeated param struct in CreateSecurityGroupRequest
type CreateSecurityGroupTag struct {
Value string `name:"Value"`
Key string `name:"Key"`
}
// CreateSecurityGroupResponse is the response struct for api CreateSecurityGroup
type CreateSecurityGroupResponse struct {
*responses.BaseResponse
SecurityGroupId string `json:"SecurityGroupId" xml:"SecurityGroupId"`
RequestId string `json:"RequestId" xml:"RequestId"`
}
// CreateCreateSecurityGroupRequest creates a request to invoke CreateSecurityGroup API
func CreateCreateSecurityGroupRequest() (request *CreateSecurityGroupRequest) {
request = &CreateSecurityGroupRequest{
RpcRequest: &requests.RpcRequest{},
}
request.InitWithApiInfo("Ecs", "2014-05-26", "CreateSecurityGroup", "ecs", "openAPI")
request.Method = requests.POST
return
}
// CreateCreateSecurityGroupResponse creates a response to parse from CreateSecurityGroup response
func CreateCreateSecurityGroupResponse() (response *CreateSecurityGroupResponse) {
response = &CreateSecurityGroupResponse{
BaseResponse: &responses.BaseResponse{},
}
return
}