@alicloud/cloudapi20160714 2.1.3 → 2.1.4
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 +2 -0
- package/dist/client.js +7 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +10 -0
package/dist/client.d.ts
CHANGED
|
@@ -6246,6 +6246,7 @@ export declare class SetVpcAccessRequest extends $tea.Model {
|
|
|
6246
6246
|
port?: number;
|
|
6247
6247
|
securityToken?: string;
|
|
6248
6248
|
vpcId?: string;
|
|
6249
|
+
vpcTargetHostName?: string;
|
|
6249
6250
|
static names(): {
|
|
6250
6251
|
[key: string]: string;
|
|
6251
6252
|
};
|
|
@@ -9571,6 +9572,7 @@ export declare class DescribeVpcAccessesResponseBodyVpcAccessAttributesVpcAccess
|
|
|
9571
9572
|
regionId?: string;
|
|
9572
9573
|
vpcAccessId?: string;
|
|
9573
9574
|
vpcId?: string;
|
|
9575
|
+
vpcTargetHostName?: string;
|
|
9574
9576
|
static names(): {
|
|
9575
9577
|
[key: string]: string;
|
|
9576
9578
|
};
|
package/dist/client.js
CHANGED
|
@@ -8677,6 +8677,7 @@ class SetVpcAccessRequest extends $tea.Model {
|
|
|
8677
8677
|
port: 'Port',
|
|
8678
8678
|
securityToken: 'SecurityToken',
|
|
8679
8679
|
vpcId: 'VpcId',
|
|
8680
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
8680
8681
|
};
|
|
8681
8682
|
}
|
|
8682
8683
|
static types() {
|
|
@@ -8687,6 +8688,7 @@ class SetVpcAccessRequest extends $tea.Model {
|
|
|
8687
8688
|
port: 'number',
|
|
8688
8689
|
securityToken: 'string',
|
|
8689
8690
|
vpcId: 'string',
|
|
8691
|
+
vpcTargetHostName: 'string',
|
|
8690
8692
|
};
|
|
8691
8693
|
}
|
|
8692
8694
|
}
|
|
@@ -13513,6 +13515,7 @@ class DescribeVpcAccessesResponseBodyVpcAccessAttributesVpcAccessAttribute exten
|
|
|
13513
13515
|
regionId: 'RegionId',
|
|
13514
13516
|
vpcAccessId: 'VpcAccessId',
|
|
13515
13517
|
vpcId: 'VpcId',
|
|
13518
|
+
vpcTargetHostName: 'VpcTargetHostName',
|
|
13516
13519
|
};
|
|
13517
13520
|
}
|
|
13518
13521
|
static types() {
|
|
@@ -13525,6 +13528,7 @@ class DescribeVpcAccessesResponseBodyVpcAccessAttributesVpcAccessAttribute exten
|
|
|
13525
13528
|
regionId: 'string',
|
|
13526
13529
|
vpcAccessId: 'string',
|
|
13527
13530
|
vpcId: 'string',
|
|
13531
|
+
vpcTargetHostName: 'string',
|
|
13528
13532
|
};
|
|
13529
13533
|
}
|
|
13530
13534
|
}
|
|
@@ -19231,6 +19235,9 @@ class Client extends openapi_client_1.default {
|
|
|
19231
19235
|
if (!tea_util_1.default.isUnset(request.vpcId)) {
|
|
19232
19236
|
query["VpcId"] = request.vpcId;
|
|
19233
19237
|
}
|
|
19238
|
+
if (!tea_util_1.default.isUnset(request.vpcTargetHostName)) {
|
|
19239
|
+
query["VpcTargetHostName"] = request.vpcTargetHostName;
|
|
19240
|
+
}
|
|
19234
19241
|
let req = new $OpenApi.OpenApiRequest({
|
|
19235
19242
|
query: openapi_util_1.default.query(query),
|
|
19236
19243
|
});
|