Browse Source

Modify QueryBill, add SubOrderId in item of response.

sdk-team 6 years ago
parent
commit
c260ba3e1e

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-11-26 Version: v1.60.267
+- Modify QueryBill, add SubOrderId in item of response.
+
 2019-11-26 Version: v1.60.266
 2019-11-26 Version: v1.60.266
 - Generated 2015-12-01 for `Dds`.
 - Generated 2015-12-01 for `Dds`.
 
 

+ 114 - 0
services/bssopenapi/query_ri_utilization_detail.go

@@ -0,0 +1,114 @@
+package bssopenapi
+
+//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"
+)
+
+// QueryRIUtilizationDetail invokes the bssopenapi.QueryRIUtilizationDetail API synchronously
+// api document: https://help.aliyun.com/api/bssopenapi/queryriutilizationdetail.html
+func (client *Client) QueryRIUtilizationDetail(request *QueryRIUtilizationDetailRequest) (response *QueryRIUtilizationDetailResponse, err error) {
+	response = CreateQueryRIUtilizationDetailResponse()
+	err = client.DoAction(request, response)
+	return
+}
+
+// QueryRIUtilizationDetailWithChan invokes the bssopenapi.QueryRIUtilizationDetail API asynchronously
+// api document: https://help.aliyun.com/api/bssopenapi/queryriutilizationdetail.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) QueryRIUtilizationDetailWithChan(request *QueryRIUtilizationDetailRequest) (<-chan *QueryRIUtilizationDetailResponse, <-chan error) {
+	responseChan := make(chan *QueryRIUtilizationDetailResponse, 1)
+	errChan := make(chan error, 1)
+	err := client.AddAsyncTask(func() {
+		defer close(responseChan)
+		defer close(errChan)
+		response, err := client.QueryRIUtilizationDetail(request)
+		if err != nil {
+			errChan <- err
+		} else {
+			responseChan <- response
+		}
+	})
+	if err != nil {
+		errChan <- err
+		close(responseChan)
+		close(errChan)
+	}
+	return responseChan, errChan
+}
+
+// QueryRIUtilizationDetailWithCallback invokes the bssopenapi.QueryRIUtilizationDetail API asynchronously
+// api document: https://help.aliyun.com/api/bssopenapi/queryriutilizationdetail.html
+// asynchronous document: https://help.aliyun.com/document_detail/66220.html
+func (client *Client) QueryRIUtilizationDetailWithCallback(request *QueryRIUtilizationDetailRequest, callback func(response *QueryRIUtilizationDetailResponse, err error)) <-chan int {
+	result := make(chan int, 1)
+	err := client.AddAsyncTask(func() {
+		var response *QueryRIUtilizationDetailResponse
+		var err error
+		defer close(result)
+		response, err = client.QueryRIUtilizationDetail(request)
+		callback(response, err)
+		result <- 1
+	})
+	if err != nil {
+		defer close(result)
+		callback(nil, err)
+		result <- 0
+	}
+	return result
+}
+
+// QueryRIUtilizationDetailRequest is the request struct for api QueryRIUtilizationDetail
+type QueryRIUtilizationDetailRequest struct {
+	*requests.RpcRequest
+	DeductedInstanceId string           `position:"Query" name:"DeductedInstanceId"`
+	InstanceSpec       string           `position:"Query" name:"InstanceSpec"`
+	EndTime            string           `position:"Query" name:"EndTime"`
+	RIInstanceId       string           `position:"Query" name:"RIInstanceId"`
+	StartTime          string           `position:"Query" name:"StartTime"`
+	PageNum            requests.Integer `position:"Query" name:"PageNum"`
+	PageSize           requests.Integer `position:"Query" name:"PageSize"`
+	RICommodityCode    string           `position:"Query" name:"RICommodityCode"`
+}
+
+// QueryRIUtilizationDetailResponse is the response struct for api QueryRIUtilizationDetail
+type QueryRIUtilizationDetailResponse struct {
+	*responses.BaseResponse
+	RequestId string                         `json:"RequestId" xml:"RequestId"`
+	Success   bool                           `json:"Success" xml:"Success"`
+	Code      string                         `json:"Code" xml:"Code"`
+	Message   string                         `json:"Message" xml:"Message"`
+	Data      DataInQueryRIUtilizationDetail `json:"Data" xml:"Data"`
+}
+
+// CreateQueryRIUtilizationDetailRequest creates a request to invoke QueryRIUtilizationDetail API
+func CreateQueryRIUtilizationDetailRequest() (request *QueryRIUtilizationDetailRequest) {
+	request = &QueryRIUtilizationDetailRequest{
+		RpcRequest: &requests.RpcRequest{},
+	}
+	request.InitWithApiInfo("BssOpenApi", "2017-12-14", "QueryRIUtilizationDetail", "", "")
+	return
+}
+
+// CreateQueryRIUtilizationDetailResponse creates a response to parse from QueryRIUtilizationDetail response
+func CreateQueryRIUtilizationDetailResponse() (response *QueryRIUtilizationDetailResponse) {
+	response = &QueryRIUtilizationDetailResponse{
+		BaseResponse: &responses.BaseResponse{},
+	}
+	return
+}

+ 24 - 0
services/bssopenapi/struct_data_in_query_ri_utilization_detail.go

@@ -0,0 +1,24 @@
+package bssopenapi
+
+//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.
+
+// DataInQueryRIUtilizationDetail is a nested struct in bssopenapi response
+type DataInQueryRIUtilizationDetail struct {
+	PageNum    int64      `json:"PageNum" xml:"PageNum"`
+	PageSize   int64      `json:"PageSize" xml:"PageSize"`
+	TotalCount int64      `json:"TotalCount" xml:"TotalCount"`
+	DetailList DetailList `json:"DetailList" xml:"DetailList"`
+}

+ 21 - 0
services/bssopenapi/struct_detail_list.go

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

+ 27 - 0
services/bssopenapi/struct_detail_list_item.go

@@ -0,0 +1,27 @@
+package bssopenapi
+
+//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.
+
+// DetailListItem is a nested struct in bssopenapi response
+type DetailListItem struct {
+	RIInstanceId          string `json:"RIInstanceId" xml:"RIInstanceId"`
+	InstanceSpec          string `json:"InstanceSpec" xml:"InstanceSpec"`
+	DeductedInstanceId    string `json:"DeductedInstanceId" xml:"DeductedInstanceId"`
+	DeductedCommodityCode string `json:"DeductedCommodityCode" xml:"DeductedCommodityCode"`
+	DeductDate            string `json:"DeductDate" xml:"DeductDate"`
+	DeductHours           string `json:"DeductHours" xml:"DeductHours"`
+	DeductedProductDetail string `json:"DeductedProductDetail" xml:"DeductedProductDetail"`
+}

+ 1 - 0
services/bssopenapi/struct_item.go

@@ -57,6 +57,7 @@ type Item struct {
 	LinkedCustomerOrderID       string  `json:"LinkedCustomerOrderID" xml:"LinkedCustomerOrderID"`
 	LinkedCustomerOrderID       string  `json:"LinkedCustomerOrderID" xml:"LinkedCustomerOrderID"`
 	CostUnit                    string  `json:"CostUnit" xml:"CostUnit"`
 	CostUnit                    string  `json:"CostUnit" xml:"CostUnit"`
 	AfterTaxAmount              float64 `json:"AfterTaxAmount" xml:"AfterTaxAmount"`
 	AfterTaxAmount              float64 `json:"AfterTaxAmount" xml:"AfterTaxAmount"`
+	SubOrderId                  string  `json:"SubOrderId" xml:"SubOrderId"`
 	ResourceGroup               string  `json:"ResourceGroup" xml:"ResourceGroup"`
 	ResourceGroup               string  `json:"ResourceGroup" xml:"ResourceGroup"`
 	SubscribeTime               string  `json:"SubscribeTime" xml:"SubscribeTime"`
 	SubscribeTime               string  `json:"SubscribeTime" xml:"SubscribeTime"`
 	BillingType                 string  `json:"BillingType" xml:"BillingType"`
 	BillingType                 string  `json:"BillingType" xml:"BillingType"`