|
|
@@ -0,0 +1,114 @@
|
|
|
+package snsuapi
|
|
|
+
|
|
|
+//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"
|
|
|
+)
|
|
|
+
|
|
|
+// BandStartSpeedUp invokes the snsuapi.BandStartSpeedUp API synchronously
|
|
|
+// api document: https://help.aliyun.com/api/snsuapi/bandstartspeedup.html
|
|
|
+func (client *Client) BandStartSpeedUp(request *BandStartSpeedUpRequest) (response *BandStartSpeedUpResponse, err error) {
|
|
|
+ response = CreateBandStartSpeedUpResponse()
|
|
|
+ err = client.DoAction(request, response)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// BandStartSpeedUpWithChan invokes the snsuapi.BandStartSpeedUp API asynchronously
|
|
|
+// api document: https://help.aliyun.com/api/snsuapi/bandstartspeedup.html
|
|
|
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
|
+func (client *Client) BandStartSpeedUpWithChan(request *BandStartSpeedUpRequest) (<-chan *BandStartSpeedUpResponse, <-chan error) {
|
|
|
+ responseChan := make(chan *BandStartSpeedUpResponse, 1)
|
|
|
+ errChan := make(chan error, 1)
|
|
|
+ err := client.AddAsyncTask(func() {
|
|
|
+ defer close(responseChan)
|
|
|
+ defer close(errChan)
|
|
|
+ response, err := client.BandStartSpeedUp(request)
|
|
|
+ if err != nil {
|
|
|
+ errChan <- err
|
|
|
+ } else {
|
|
|
+ responseChan <- response
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if err != nil {
|
|
|
+ errChan <- err
|
|
|
+ close(responseChan)
|
|
|
+ close(errChan)
|
|
|
+ }
|
|
|
+ return responseChan, errChan
|
|
|
+}
|
|
|
+
|
|
|
+// BandStartSpeedUpWithCallback invokes the snsuapi.BandStartSpeedUp API asynchronously
|
|
|
+// api document: https://help.aliyun.com/api/snsuapi/bandstartspeedup.html
|
|
|
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
|
|
|
+func (client *Client) BandStartSpeedUpWithCallback(request *BandStartSpeedUpRequest, callback func(response *BandStartSpeedUpResponse, err error)) <-chan int {
|
|
|
+ result := make(chan int, 1)
|
|
|
+ err := client.AddAsyncTask(func() {
|
|
|
+ var response *BandStartSpeedUpResponse
|
|
|
+ var err error
|
|
|
+ defer close(result)
|
|
|
+ response, err = client.BandStartSpeedUp(request)
|
|
|
+ callback(response, err)
|
|
|
+ result <- 1
|
|
|
+ })
|
|
|
+ if err != nil {
|
|
|
+ defer close(result)
|
|
|
+ callback(nil, err)
|
|
|
+ result <- 0
|
|
|
+ }
|
|
|
+ return result
|
|
|
+}
|
|
|
+
|
|
|
+// BandStartSpeedUpRequest is the request struct for api BandStartSpeedUp
|
|
|
+type BandStartSpeedUpRequest struct {
|
|
|
+ *requests.RpcRequest
|
|
|
+ IpAddress string `position:"Query" name:"IpAddress"`
|
|
|
+ ResourceOwnerId requests.Integer `position:"Query" name:"ResourceOwnerId"`
|
|
|
+ ResourceOwnerAccount string `position:"Query" name:"ResourceOwnerAccount"`
|
|
|
+ Port requests.Integer `position:"Query" name:"Port"`
|
|
|
+ BandId requests.Integer `position:"Query" name:"BandId"`
|
|
|
+ OwnerId requests.Integer `position:"Query" name:"OwnerId"`
|
|
|
+ TargetBandwidth requests.Integer `position:"Query" name:"TargetBandwidth"`
|
|
|
+ BandScene string `position:"Query" name:"BandScene"`
|
|
|
+ Direction string `position:"Query" name:"Direction"`
|
|
|
+}
|
|
|
+
|
|
|
+// BandStartSpeedUpResponse is the response struct for api BandStartSpeedUp
|
|
|
+type BandStartSpeedUpResponse struct {
|
|
|
+ *responses.BaseResponse
|
|
|
+ RequestId string `json:"RequestId" xml:"RequestId"`
|
|
|
+ ResultCode string `json:"ResultCode" xml:"ResultCode"`
|
|
|
+ ResultMessage string `json:"ResultMessage" xml:"ResultMessage"`
|
|
|
+ ResultModule bool `json:"ResultModule" xml:"ResultModule"`
|
|
|
+}
|
|
|
+
|
|
|
+// CreateBandStartSpeedUpRequest creates a request to invoke BandStartSpeedUp API
|
|
|
+func CreateBandStartSpeedUpRequest() (request *BandStartSpeedUpRequest) {
|
|
|
+ request = &BandStartSpeedUpRequest{
|
|
|
+ RpcRequest: &requests.RpcRequest{},
|
|
|
+ }
|
|
|
+ request.InitWithApiInfo("Snsuapi", "2018-07-09", "BandStartSpeedUp", "", "")
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// CreateBandStartSpeedUpResponse creates a response to parse from BandStartSpeedUp response
|
|
|
+func CreateBandStartSpeedUpResponse() (response *BandStartSpeedUpResponse) {
|
|
|
+ response = &BandStartSpeedUpResponse{
|
|
|
+ BaseResponse: &responses.BaseResponse{},
|
|
|
+ }
|
|
|
+ return
|
|
|
+}
|