@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/dist/client.d.ts +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
package/dist/client.js
CHANGED
|
@@ -9284,6 +9284,7 @@ class SetDomainRequest extends $tea.Model {
|
|
|
9284
9284
|
domainName: 'DomainName',
|
|
9285
9285
|
groupId: 'GroupId',
|
|
9286
9286
|
isForce: 'IsForce',
|
|
9287
|
+
isHttpRedirectToHttps: 'IsHttpRedirectToHttps',
|
|
9287
9288
|
};
|
|
9288
9289
|
}
|
|
9289
9290
|
static types() {
|
|
@@ -9293,6 +9294,7 @@ class SetDomainRequest extends $tea.Model {
|
|
|
9293
9294
|
domainName: 'string',
|
|
9294
9295
|
groupId: 'string',
|
|
9295
9296
|
isForce: 'boolean',
|
|
9297
|
+
isHttpRedirectToHttps: 'boolean',
|
|
9296
9298
|
};
|
|
9297
9299
|
}
|
|
9298
9300
|
}
|
|
@@ -20662,6 +20664,9 @@ class Client extends openapi_client_1.default {
|
|
|
20662
20664
|
if (!tea_util_1.default.isUnset(request.isForce)) {
|
|
20663
20665
|
query["IsForce"] = request.isForce;
|
|
20664
20666
|
}
|
|
20667
|
+
if (!tea_util_1.default.isUnset(request.isHttpRedirectToHttps)) {
|
|
20668
|
+
query["IsHttpRedirectToHttps"] = request.isHttpRedirectToHttps;
|
|
20669
|
+
}
|
|
20665
20670
|
let req = new $OpenApi.OpenApiRequest({
|
|
20666
20671
|
query: openapi_util_1.default.query(query),
|
|
20667
20672
|
});
|