@alicloud/cloudapi20160714 2.2.0 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/cloudapi20160714",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -11775,6 +11775,7 @@ export class SetDomainRequest extends $tea.Model {
11775
11775
  domainName?: string;
11776
11776
  groupId?: string;
11777
11777
  isForce?: boolean;
11778
+ isHttpRedirectToHttps?: boolean;
11778
11779
  static names(): { [key: string]: string } {
11779
11780
  return {
11780
11781
  bindStageName: 'BindStageName',
@@ -11782,6 +11783,7 @@ export class SetDomainRequest extends $tea.Model {
11782
11783
  domainName: 'DomainName',
11783
11784
  groupId: 'GroupId',
11784
11785
  isForce: 'IsForce',
11786
+ isHttpRedirectToHttps: 'IsHttpRedirectToHttps',
11785
11787
  };
11786
11788
  }
11787
11789
 
@@ -11792,6 +11794,7 @@ export class SetDomainRequest extends $tea.Model {
11792
11794
  domainName: 'string',
11793
11795
  groupId: 'string',
11794
11796
  isForce: 'boolean',
11797
+ isHttpRedirectToHttps: 'boolean',
11795
11798
  };
11796
11799
  }
11797
11800
 
@@ -25742,6 +25745,10 @@ export default class Client extends OpenApi {
25742
25745
  query["IsForce"] = request.isForce;
25743
25746
  }
25744
25747
 
25748
+ if (!Util.isUnset(request.isHttpRedirectToHttps)) {
25749
+ query["IsHttpRedirectToHttps"] = request.isHttpRedirectToHttps;
25750
+ }
25751
+
25745
25752
  let req = new $OpenApi.OpenApiRequest({
25746
25753
  query: OpenApiUtil.query(query),
25747
25754
  });