Browse Source

HTTPDNS SDK Auto Released By shenshi,Version:1.53.69

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
haowei.yao 6 years ago
parent
commit
7b6ea39f36

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2019-03-20 Version: 1.53.69
+1, Update the Dependency
+
 2019-03-20 Version: 1.53.68
 1, Update Dependency
 

+ 1 - 1
services/httpdns/add_domain.go

@@ -92,7 +92,7 @@ func CreateAddDomainRequest() (request *AddDomainRequest) {
 	request = &AddDomainRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "AddDomain", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "AddDomain", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/delete_domain.go

@@ -92,7 +92,7 @@ func CreateDeleteDomainRequest() (request *DeleteDomainRequest) {
 	request = &DeleteDomainRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "DeleteDomain", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "DeleteDomain", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/describe_domains.go

@@ -96,7 +96,7 @@ func CreateDescribeDomainsRequest() (request *DescribeDomainsRequest) {
 	request = &DescribeDomainsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "DescribeDomains", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "DescribeDomains", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/get_account_info.go

@@ -90,7 +90,7 @@ func CreateGetAccountInfoRequest() (request *GetAccountInfoRequest) {
 	request = &GetAccountInfoRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetAccountInfo", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetAccountInfo", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/get_resolve_count_summary.go

@@ -92,7 +92,7 @@ func CreateGetResolveCountSummaryRequest() (request *GetResolveCountSummaryReque
 	request = &GetResolveCountSummaryRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetResolveCountSummary", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetResolveCountSummary", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/get_resolve_statistics.go

@@ -94,7 +94,7 @@ func CreateGetResolveStatisticsRequest() (request *GetResolveStatisticsRequest)
 	request = &GetResolveStatisticsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetResolveStatistics", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "GetResolveStatistics", "httpdns", "openAPI")
 	return
 }
 

+ 1 - 1
services/httpdns/list_domains.go

@@ -95,7 +95,7 @@ func CreateListDomainsRequest() (request *ListDomainsRequest) {
 	request = &ListDomainsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Httpdns", "2016-02-01", "ListDomains", "", "")
+	request.InitWithApiInfo("Httpdns", "2016-02-01", "ListDomains", "httpdns", "openAPI")
 	return
 }
 

+ 5 - 3
services/httpdns/struct_domain_info.go

@@ -17,7 +17,9 @@ package httpdns
 
 // DomainInfo is a nested struct in httpdns response
 type DomainInfo struct {
-	DomainName    string `json:"DomainName" xml:"DomainName"`
-	Resolved      int    `json:"Resolved" xml:"Resolved"`
-	ResolvedHttps int    `json:"ResolvedHttps" xml:"ResolvedHttps"`
+	DomainName     string `json:"DomainName" xml:"DomainName"`
+	Resolved       int    `json:"Resolved" xml:"Resolved"`
+	ResolvedHttps  int    `json:"ResolvedHttps" xml:"ResolvedHttps"`
+	Resolved6      int    `json:"Resolved6" xml:"Resolved6"`
+	ResolvedHttps6 int    `json:"ResolvedHttps6" xml:"ResolvedHttps6"`
 }

+ 4 - 2
services/httpdns/struct_resolve_summary.go

@@ -17,6 +17,8 @@ package httpdns
 
 // ResolveSummary is a nested struct in httpdns response
 type ResolveSummary struct {
-	Http  int `json:"Http" xml:"Http"`
-	Https int `json:"Https" xml:"Https"`
+	Http   int `json:"Http" xml:"Http"`
+	Https  int `json:"Https" xml:"Https"`
+	Http6  int `json:"Http6" xml:"Http6"`
+	Https6 int `json:"Https6" xml:"Https6"`
 }