|
|
@@ -0,0 +1,145 @@
|
|
|
+package dds
|
|
|
+
|
|
|
+//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"
|
|
|
+)
|
|
|
+
|
|
|
+// CreateShardingDBInstance invokes the dds.CreateShardingDBInstance API synchronously
|
|
|
+// api document: https://help.aliyun.com/api/dds/createshardingdbinstance.html
|
|
|
+func (client *Client) CreateShardingDBInstance(request *CreateShardingDBInstanceRequest) (response *CreateShardingDBInstanceResponse, err error) {
|
|
|
+ response = CreateCreateShardingDBInstanceResponse()
|
|
|
+ err = client.DoAction(request, response)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceWithChan invokes the dds.CreateShardingDBInstance API asynchronously
|
|
|
+// api document: https://help.aliyun.com/api/dds/createshardingdbinstance.html
|
|
|
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
|
+func (client *Client) CreateShardingDBInstanceWithChan(request *CreateShardingDBInstanceRequest) (<-chan *CreateShardingDBInstanceResponse, <-chan error) {
|
|
|
+ responseChan := make(chan *CreateShardingDBInstanceResponse, 1)
|
|
|
+ errChan := make(chan error, 1)
|
|
|
+ err := client.AddAsyncTask(func() {
|
|
|
+ defer close(responseChan)
|
|
|
+ defer close(errChan)
|
|
|
+ response, err := client.CreateShardingDBInstance(request)
|
|
|
+ if err != nil {
|
|
|
+ errChan <- err
|
|
|
+ } else {
|
|
|
+ responseChan <- response
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if err != nil {
|
|
|
+ errChan <- err
|
|
|
+ close(responseChan)
|
|
|
+ close(errChan)
|
|
|
+ }
|
|
|
+ return responseChan, errChan
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceWithCallback invokes the dds.CreateShardingDBInstance API asynchronously
|
|
|
+// api document: https://help.aliyun.com/api/dds/createshardingdbinstance.html
|
|
|
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
|
+func (client *Client) CreateShardingDBInstanceWithCallback(request *CreateShardingDBInstanceRequest, callback func(response *CreateShardingDBInstanceResponse, err error)) <-chan int {
|
|
|
+ result := make(chan int, 1)
|
|
|
+ err := client.AddAsyncTask(func() {
|
|
|
+ var response *CreateShardingDBInstanceResponse
|
|
|
+ var err error
|
|
|
+ defer close(result)
|
|
|
+ response, err = client.CreateShardingDBInstance(request)
|
|
|
+ callback(response, err)
|
|
|
+ result <- 1
|
|
|
+ })
|
|
|
+ if err != nil {
|
|
|
+ defer close(result)
|
|
|
+ callback(nil, err)
|
|
|
+ result <- 0
|
|
|
+ }
|
|
|
+ return result
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceRequest is the request struct for api CreateShardingDBInstance
|
|
|
+type CreateShardingDBInstanceRequest struct {
|
|
|
+ *requests.RpcRequest
|
|
|
+ ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
|
|
|
+ ClientToken string `position:"Query" name:"ClientToken"`
|
|
|
+ EngineVersion string `position:"Query" name:"EngineVersion"`
|
|
|
+ NetworkType string `position:"Query" name:"NetworkType"`
|
|
|
+ ReplicaSet *[]CreateShardingDBInstanceReplicaSet `position:"Query" name:"ReplicaSet" type:"Repeated"`
|
|
|
+ StorageEngine string `position:"Query" name:"StorageEngine"`
|
|
|
+ SecurityToken string `position:"Query" name:"SecurityToken"`
|
|
|
+ Engine string `position:"Query" name:"Engine"`
|
|
|
+ DBInstanceDescription string `position:"Query" name:"DBInstanceDescription"`
|
|
|
+ Period requests.Integer `position:"Query" name:"Period"`
|
|
|
+ RestoreTime string `position:"Query" name:"RestoreTime"`
|
|
|
+ ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
|
|
|
+ SrcDBInstanceId string `position:"Query" name:"SrcDBInstanceId"`
|
|
|
+ OwnerAccount string `position:"Query" name:"OwnerAccount"`
|
|
|
+ ConfigServer *[]CreateShardingDBInstanceConfigServer `position:"Query" name:"ConfigServer" type:"Repeated"`
|
|
|
+ OwnerId requests.Integer `position:"Query" name:"OwnerId"`
|
|
|
+ Mongos *[]CreateShardingDBInstanceMongos `position:"Query" name:"Mongos" type:"Repeated"`
|
|
|
+ SecurityIPList string `position:"Query" name:"SecurityIPList"`
|
|
|
+ VSwitchId string `position:"Query" name:"VSwitchId"`
|
|
|
+ AccountPassword string `position:"Query" name:"AccountPassword"`
|
|
|
+ AutoRenew string `position:"Query" name:"AutoRenew"`
|
|
|
+ VpcId string `position:"Query" name:"VpcId"`
|
|
|
+ ZoneId string `position:"Query" name:"ZoneId"`
|
|
|
+ ChargeType string `position:"Query" name:"ChargeType"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceReplicaSet is a repeated param struct in CreateShardingDBInstanceRequest
|
|
|
+type CreateShardingDBInstanceReplicaSet struct {
|
|
|
+ Storage string `name:"Storage"`
|
|
|
+ Class string `name:"Class"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceConfigServer is a repeated param struct in CreateShardingDBInstanceRequest
|
|
|
+type CreateShardingDBInstanceConfigServer struct {
|
|
|
+ Storage string `name:"Storage"`
|
|
|
+ Class string `name:"Class"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceMongos is a repeated param struct in CreateShardingDBInstanceRequest
|
|
|
+type CreateShardingDBInstanceMongos struct {
|
|
|
+ Class string `name:"Class"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateShardingDBInstanceResponse is the response struct for api CreateShardingDBInstance
|
|
|
+type CreateShardingDBInstanceResponse struct {
|
|
|
+ *responses.BaseResponse
|
|
|
+ RequestId string `json:"RequestId" xml:"RequestId"`
|
|
|
+ OrderId string `json:"OrderId" xml:"OrderId"`
|
|
|
+ DBInstanceId string `json:"DBInstanceId" xml:"DBInstanceId"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateCreateShardingDBInstanceRequest creates a request to invoke CreateShardingDBInstance API
|
|
|
+func CreateCreateShardingDBInstanceRequest() (request *CreateShardingDBInstanceRequest) {
|
|
|
+ request = &CreateShardingDBInstanceRequest{
|
|
|
+ RpcRequest: &requests.RpcRequest{},
|
|
|
+ }
|
|
|
+ request.InitWithApiInfo("Dds", "2015-12-01", "CreateShardingDBInstance", "dds", "openAPI")
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// CreateCreateShardingDBInstanceResponse creates a response to parse from CreateShardingDBInstance response
|
|
|
+func CreateCreateShardingDBInstanceResponse() (response *CreateShardingDBInstanceResponse) {
|
|
|
+ response = &CreateShardingDBInstanceResponse{
|
|
|
+ BaseResponse: &responses.BaseResponse{},
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|