package rds //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" ) // PreCheckCreateOrder invokes the rds.PreCheckCreateOrder API synchronously // api document: https://help.aliyun.com/api/rds/precheckcreateorder.html func (client *Client) PreCheckCreateOrder(request *PreCheckCreateOrderRequest) (response *PreCheckCreateOrderResponse, err error) { response = CreatePreCheckCreateOrderResponse() err = client.DoAction(request, response) return } // PreCheckCreateOrderWithChan invokes the rds.PreCheckCreateOrder API asynchronously // api document: https://help.aliyun.com/api/rds/precheckcreateorder.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) PreCheckCreateOrderWithChan(request *PreCheckCreateOrderRequest) (<-chan *PreCheckCreateOrderResponse, <-chan error) { responseChan := make(chan *PreCheckCreateOrderResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.PreCheckCreateOrder(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // PreCheckCreateOrderWithCallback invokes the rds.PreCheckCreateOrder API asynchronously // api document: https://help.aliyun.com/api/rds/precheckcreateorder.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) PreCheckCreateOrderWithCallback(request *PreCheckCreateOrderRequest, callback func(response *PreCheckCreateOrderResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *PreCheckCreateOrderResponse var err error defer close(result) response, err = client.PreCheckCreateOrder(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // PreCheckCreateOrderRequest is the request struct for api PreCheckCreateOrder type PreCheckCreateOrderRequest struct { *requests.RpcRequest ConnectionMode string `position:"Query" name:"ConnectionMode"` ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"` DBInstanceStorage requests.Integer `position:"Query" name:"DBInstanceStorage"` NodeType string `position:"Query" name:"NodeType"` SystemDBCharset string `position:"Query" name:"SystemDBCharset"` ClientToken string `position:"Query" name:"ClientToken"` CountryCode string `position:"Query" name:"CountryCode"` ZoneIdSlave1 string `position:"Query" name:"ZoneIdSlave1"` ZoneIdSlave2 string `position:"Query" name:"ZoneIdSlave2"` EngineVersion string `position:"Query" name:"EngineVersion"` CurrencyCode string `position:"Query" name:"CurrencyCode"` ResourceGroupId string `position:"Query" name:"ResourceGroupId"` Engine string `position:"Query" name:"Engine"` DBInstanceId string `position:"Query" name:"DBInstanceId"` DBInstanceDescription string `position:"Query" name:"DBInstanceDescription"` DBInstanceStorageType string `position:"Query" name:"DBInstanceStorageType"` BusinessInfo string `position:"Query" name:"BusinessInfo"` DBInstanceNetType string `position:"Query" name:"DBInstanceNetType"` AgentId string `position:"Query" name:"AgentId"` RestoreTime string `position:"Query" name:"RestoreTime"` Quantity requests.Integer `position:"Query" name:"Quantity"` AutoPay requests.Boolean `position:"Query" name:"AutoPay"` ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"` Resource string `position:"Query" name:"Resource"` BackupId string `position:"Query" name:"BackupId"` OwnerAccount string `position:"Query" name:"OwnerAccount"` CommodityCode string `position:"Query" name:"CommodityCode"` EncryptionKey string `position:"Query" name:"EncryptionKey"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` UsedTime string `position:"Query" name:"UsedTime"` DBInstanceClass string `position:"Query" name:"DBInstanceClass"` SecurityIPList string `position:"Query" name:"SecurityIPList"` VSwitchId string `position:"Query" name:"VSwitchId"` PrivateIpAddress string `position:"Query" name:"PrivateIpAddress"` InstanceUsedType requests.Integer `position:"Query" name:"InstanceUsedType"` AutoRenew string `position:"Query" name:"AutoRenew"` PromotionCode string `position:"Query" name:"PromotionCode"` RoleARN string `position:"Query" name:"RoleARN"` VPCId string `position:"Query" name:"VPCId"` ZoneId string `position:"Query" name:"ZoneId"` TimeType string `position:"Query" name:"TimeType"` Category string `position:"Query" name:"Category"` PayType string `position:"Query" name:"PayType"` InstanceNetworkType string `position:"Query" name:"InstanceNetworkType"` } // PreCheckCreateOrderResponse is the response struct for api PreCheckCreateOrder type PreCheckCreateOrderResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` PreCheckResult bool `json:"PreCheckResult" xml:"PreCheckResult"` Failures FailuresInPreCheckCreateOrder `json:"Failures" xml:"Failures"` } // CreatePreCheckCreateOrderRequest creates a request to invoke PreCheckCreateOrder API func CreatePreCheckCreateOrderRequest() (request *PreCheckCreateOrderRequest) { request = &PreCheckCreateOrderRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Rds", "2014-08-15", "PreCheckCreateOrder", "rds", "openAPI") return } // CreatePreCheckCreateOrderResponse creates a response to parse from PreCheckCreateOrder response func CreatePreCheckCreateOrderResponse() (response *PreCheckCreateOrderResponse) { response = &PreCheckCreateOrderResponse{ BaseResponse: &responses.BaseResponse{}, } return }