Просмотр исходного кода

DDOSCOO SDK Auto Released By yiduo.qyd,Version:1.53.19

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 лет назад
Родитель
Сommit
7dee4980ec

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-03-08 Version: 1.53.19
+1, Publish instance spec describe api.
+
 2019-03-08 Version: 1.53.18
 1, This is an example of release-log.
 2, Please strictly follow this format to edit in English.

+ 105 - 0
services/ddoscoo/describe_instance_specs.go

@@ -0,0 +1,105 @@
+package ddoscoo
+
+//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"
+)
+
+// DescribeInstanceSpecs invokes the ddoscoo.DescribeInstanceSpecs API synchronously
+// api document: https://help.aliyun.com/api/ddoscoo/describeinstancespecs.html
+func (client *Client) DescribeInstanceSpecs(request *DescribeInstanceSpecsRequest) (response *DescribeInstanceSpecsResponse, err error) {
+	response = CreateDescribeInstanceSpecsResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// DescribeInstanceSpecsWithChan invokes the ddoscoo.DescribeInstanceSpecs API asynchronously
+// api document: https://help.aliyun.com/api/ddoscoo/describeinstancespecs.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeInstanceSpecsWithChan(request *DescribeInstanceSpecsRequest) (<-chan *DescribeInstanceSpecsResponse, <-chan error) {
+	responseChan := make(chan *DescribeInstanceSpecsResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.DescribeInstanceSpecs(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// DescribeInstanceSpecsWithCallback invokes the ddoscoo.DescribeInstanceSpecs API asynchronously
+// api document: https://help.aliyun.com/api/ddoscoo/describeinstancespecs.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) DescribeInstanceSpecsWithCallback(request *DescribeInstanceSpecsRequest, callback func(response *DescribeInstanceSpecsResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *DescribeInstanceSpecsResponse
+		var err error
+		defer close(result)
+		response, err = client.DescribeInstanceSpecs(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// DescribeInstanceSpecsRequest is the request struct for api DescribeInstanceSpecs
+type DescribeInstanceSpecsRequest struct {
+	*requests.RpcRequest
+	SourceIp    string `position:"Query" name:"SourceIp"`
+	InstanceIds string `position:"Query" name:"InstanceIds"`
+}
+
+// DescribeInstanceSpecsResponse is the response struct for api DescribeInstanceSpecs
+type DescribeInstanceSpecsResponse struct {
+	*responses.BaseResponse
+	RequestId     string         `json:"RequestId" xml:"RequestId"`
+	InstanceSpecs []InstanceSpec `json:"InstanceSpecs" xml:"InstanceSpecs"`
+}
+
+// CreateDescribeInstanceSpecsRequest creates a request to invoke DescribeInstanceSpecs API
+func CreateDescribeInstanceSpecsRequest() (request *DescribeInstanceSpecsRequest) {
+	request = &DescribeInstanceSpecsRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("ddoscoo", "2017-12-28", "DescribeInstanceSpecs", "ddoscoo", "openAPI")
+	return
+}
+
+// CreateDescribeInstanceSpecsResponse creates a response to parse from DescribeInstanceSpecs response
+func CreateDescribeInstanceSpecsResponse() (response *DescribeInstanceSpecsResponse) {
+	response = &DescribeInstanceSpecsResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 27 - 0
services/ddoscoo/struct_instance_spec.go

@@ -0,0 +1,27 @@
+package ddoscoo
+
+//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.
+
+// InstanceSpec is a nested struct in ddoscoo response
+type InstanceSpec struct {
+	InstanceId       string `json:"InstanceId" xml:"InstanceId"`
+	BaseBandwidth    int    `json:"BaseBandwidth" xml:"BaseBandwidth"`
+	ElasticBandwidth int    `json:"ElasticBandwidth" xml:"ElasticBandwidth"`
+	PortLimit        int    `json:"PortLimit" xml:"PortLimit"`
+	DomainLimit      int    `json:"DomainLimit" xml:"DomainLimit"`
+	BandwidthMbps    int    `json:"BandwidthMbps" xml:"BandwidthMbps"`
+	DefenseCount     int    `json:"DefenseCount" xml:"DefenseCount"`
+}

+ 21 - 0
services/ddoscoo/struct_instance_specs.go

@@ -0,0 +1,21 @@
+package ddoscoo
+
+//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.
+
+// InstanceSpecs is a nested struct in ddoscoo response
+type InstanceSpecs struct {
+	InstanceSpec []InstanceSpec `json:"InstanceSpec" xml:"InstanceSpec"`
+}

+ 21 - 0
services/ddoscoo/struct_instances.go

@@ -0,0 +1,21 @@
+package ddoscoo
+
+//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.
+
+// Instances is a nested struct in ddoscoo response
+type Instances struct {
+	Instance []Instance `json:"Instance" xml:"Instance"`
+}