| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package cdn
- //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"
- )
- func (client *Client) DescribeUserDomains(request *DescribeUserDomainsRequest) (response *DescribeUserDomainsResponse, err error) {
- response = CreateDescribeUserDomainsResponse()
- err = client.DoAction(request, response)
- return
- }
- func (client *Client) DescribeUserDomainsWithChan(request *DescribeUserDomainsRequest) (<-chan *DescribeUserDomainsResponse, <-chan error) {
- responseChan := make(chan *DescribeUserDomainsResponse, 1)
- errChan := make(chan error, 1)
- err := client.AddAsyncTask(func() {
- defer close(responseChan)
- defer close(errChan)
- response, err := client.DescribeUserDomains(request)
- responseChan <- response
- errChan <- err
- })
- if err != nil {
- errChan <- err
- close(responseChan)
- close(errChan)
- }
- return responseChan, errChan
- }
- func (client *Client) DescribeUserDomainsWithCallback(request *DescribeUserDomainsRequest, callback func(response *DescribeUserDomainsResponse, err error)) <-chan int {
- result := make(chan int, 1)
- err := client.AddAsyncTask(func() {
- var response *DescribeUserDomainsResponse
- var err error
- defer close(result)
- response, err = client.DescribeUserDomains(request)
- callback(response, err)
- result <- 1
- })
- if err != nil {
- defer close(result)
- callback(nil, err)
- result <- 0
- }
- return result
- }
- type DescribeUserDomainsRequest struct {
- *requests.RpcRequest
- PageSize requests.Integer `position:"Query" name:"PageSize"`
- CheckDomainShow requests.Boolean `position:"Query" name:"CheckDomainShow"`
- DomainName string `position:"Query" name:"DomainName"`
- ResourceGroupId string `position:"Query" name:"ResourceGroupId"`
- PageNumber requests.Integer `position:"Query" name:"PageNumber"`
- DomainSearchType string `position:"Query" name:"DomainSearchType"`
- CdnType string `position:"Query" name:"CdnType"`
- FuncId string `position:"Query" name:"FuncId"`
- OwnerId requests.Integer `position:"Query" name:"OwnerId"`
- SecurityToken string `position:"Query" name:"SecurityToken"`
- Sources string `position:"Query" name:"Sources"`
- DomainStatus string `position:"Query" name:"DomainStatus"`
- FuncFilter string `position:"Query" name:"FuncFilter"`
- }
- type DescribeUserDomainsResponse struct {
- *responses.BaseResponse
- RequestId string `json:"RequestId" xml:"RequestId"`
- PageNumber int `json:"PageNumber" xml:"PageNumber"`
- PageSize int `json:"PageSize" xml:"PageSize"`
- TotalCount int `json:"TotalCount" xml:"TotalCount"`
- Domains struct {
- PageData []struct {
- DomainName string `json:"DomainName" xml:"DomainName"`
- Cname string `json:"Cname" xml:"Cname"`
- CdnType string `json:"CdnType" xml:"CdnType"`
- DomainStatus string `json:"DomainStatus" xml:"DomainStatus"`
- GmtCreated string `json:"GmtCreated" xml:"GmtCreated"`
- GmtModified string `json:"GmtModified" xml:"GmtModified"`
- Description string `json:"Description" xml:"Description"`
- SourceType string `json:"SourceType" xml:"SourceType"`
- SslProtocol string `json:"SslProtocol" xml:"SslProtocol"`
- ResourceGroupId string `json:"ResourceGroupId" xml:"ResourceGroupId"`
- Sandbox string `json:"Sandbox" xml:"Sandbox"`
- Sources struct {
- Source []string `json:"Source" xml:"Source"`
- } `json:"Sources" xml:"Sources"`
- } `json:"PageData" xml:"PageData"`
- } `json:"Domains" xml:"Domains"`
- }
- func CreateDescribeUserDomainsRequest() (request *DescribeUserDomainsRequest) {
- request = &DescribeUserDomainsRequest{
- RpcRequest: &requests.RpcRequest{},
- }
- request.InitWithApiInfo("Cdn", "2014-11-11", "DescribeUserDomains", "", "openAPI")
- request.Method = requests.POST
- return
- }
- func CreateDescribeUserDomainsResponse() (response *DescribeUserDomainsResponse) {
- response = &DescribeUserDomainsResponse{
- BaseResponse: &responses.BaseResponse{},
- }
- return
- }
|