@alicloud/ga20191120 1.0.16 → 1.0.17
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 +198 -21
- package/dist/client.js +388 -34
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +480 -46
package/dist/client.d.ts
CHANGED
|
@@ -3479,6 +3479,7 @@ export declare class GetBasicAccelerateIpEndpointRelationRequest extends $tea.Mo
|
|
|
3479
3479
|
}
|
|
3480
3480
|
export declare class GetBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
|
|
3481
3481
|
accelerateIpId?: string;
|
|
3482
|
+
acceleratorId?: string;
|
|
3482
3483
|
endpointAddress?: string;
|
|
3483
3484
|
endpointId?: string;
|
|
3484
3485
|
endpointName?: string;
|
|
@@ -5155,6 +5156,54 @@ export declare class ListSystemSecurityPoliciesResponse extends $tea.Model {
|
|
|
5155
5156
|
[key: string]: any;
|
|
5156
5157
|
});
|
|
5157
5158
|
}
|
|
5159
|
+
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
5160
|
+
clientToken?: string;
|
|
5161
|
+
nextToken?: string;
|
|
5162
|
+
regionId?: string;
|
|
5163
|
+
resourceId?: string[];
|
|
5164
|
+
resourceType?: string;
|
|
5165
|
+
tag?: ListTagResourcesRequestTag[];
|
|
5166
|
+
static names(): {
|
|
5167
|
+
[key: string]: string;
|
|
5168
|
+
};
|
|
5169
|
+
static types(): {
|
|
5170
|
+
[key: string]: any;
|
|
5171
|
+
};
|
|
5172
|
+
constructor(map?: {
|
|
5173
|
+
[key: string]: any;
|
|
5174
|
+
});
|
|
5175
|
+
}
|
|
5176
|
+
export declare class ListTagResourcesResponseBody extends $tea.Model {
|
|
5177
|
+
nextToken?: string;
|
|
5178
|
+
requestId?: string;
|
|
5179
|
+
tagResources?: ListTagResourcesResponseBodyTagResources;
|
|
5180
|
+
totalCount?: number;
|
|
5181
|
+
static names(): {
|
|
5182
|
+
[key: string]: string;
|
|
5183
|
+
};
|
|
5184
|
+
static types(): {
|
|
5185
|
+
[key: string]: any;
|
|
5186
|
+
};
|
|
5187
|
+
constructor(map?: {
|
|
5188
|
+
[key: string]: any;
|
|
5189
|
+
});
|
|
5190
|
+
}
|
|
5191
|
+
export declare class ListTagResourcesResponse extends $tea.Model {
|
|
5192
|
+
headers: {
|
|
5193
|
+
[key: string]: string;
|
|
5194
|
+
};
|
|
5195
|
+
statusCode: number;
|
|
5196
|
+
body: ListTagResourcesResponseBody;
|
|
5197
|
+
static names(): {
|
|
5198
|
+
[key: string]: string;
|
|
5199
|
+
};
|
|
5200
|
+
static types(): {
|
|
5201
|
+
[key: string]: any;
|
|
5202
|
+
};
|
|
5203
|
+
constructor(map?: {
|
|
5204
|
+
[key: string]: any;
|
|
5205
|
+
});
|
|
5206
|
+
}
|
|
5158
5207
|
export declare class RemoveEntriesFromAclRequest extends $tea.Model {
|
|
5159
5208
|
aclEntries?: RemoveEntriesFromAclRequestAclEntries[];
|
|
5160
5209
|
aclId?: string;
|
|
@@ -5243,6 +5292,95 @@ export declare class ReplaceBandwidthPackageResponse extends $tea.Model {
|
|
|
5243
5292
|
[key: string]: any;
|
|
5244
5293
|
});
|
|
5245
5294
|
}
|
|
5295
|
+
export declare class TagResourcesRequest extends $tea.Model {
|
|
5296
|
+
clientToken?: string;
|
|
5297
|
+
regionId?: string;
|
|
5298
|
+
resourceId?: string[];
|
|
5299
|
+
resourceType?: string;
|
|
5300
|
+
tag?: TagResourcesRequestTag[];
|
|
5301
|
+
static names(): {
|
|
5302
|
+
[key: string]: string;
|
|
5303
|
+
};
|
|
5304
|
+
static types(): {
|
|
5305
|
+
[key: string]: any;
|
|
5306
|
+
};
|
|
5307
|
+
constructor(map?: {
|
|
5308
|
+
[key: string]: any;
|
|
5309
|
+
});
|
|
5310
|
+
}
|
|
5311
|
+
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
5312
|
+
requestId?: string;
|
|
5313
|
+
static names(): {
|
|
5314
|
+
[key: string]: string;
|
|
5315
|
+
};
|
|
5316
|
+
static types(): {
|
|
5317
|
+
[key: string]: any;
|
|
5318
|
+
};
|
|
5319
|
+
constructor(map?: {
|
|
5320
|
+
[key: string]: any;
|
|
5321
|
+
});
|
|
5322
|
+
}
|
|
5323
|
+
export declare class TagResourcesResponse extends $tea.Model {
|
|
5324
|
+
headers: {
|
|
5325
|
+
[key: string]: string;
|
|
5326
|
+
};
|
|
5327
|
+
statusCode: number;
|
|
5328
|
+
body: TagResourcesResponseBody;
|
|
5329
|
+
static names(): {
|
|
5330
|
+
[key: string]: string;
|
|
5331
|
+
};
|
|
5332
|
+
static types(): {
|
|
5333
|
+
[key: string]: any;
|
|
5334
|
+
};
|
|
5335
|
+
constructor(map?: {
|
|
5336
|
+
[key: string]: any;
|
|
5337
|
+
});
|
|
5338
|
+
}
|
|
5339
|
+
export declare class UntagResourcesRequest extends $tea.Model {
|
|
5340
|
+
all?: boolean;
|
|
5341
|
+
clientToken?: string;
|
|
5342
|
+
regionId?: string;
|
|
5343
|
+
resourceId?: string[];
|
|
5344
|
+
resourceType?: string;
|
|
5345
|
+
tagKey?: string[];
|
|
5346
|
+
static names(): {
|
|
5347
|
+
[key: string]: string;
|
|
5348
|
+
};
|
|
5349
|
+
static types(): {
|
|
5350
|
+
[key: string]: any;
|
|
5351
|
+
};
|
|
5352
|
+
constructor(map?: {
|
|
5353
|
+
[key: string]: any;
|
|
5354
|
+
});
|
|
5355
|
+
}
|
|
5356
|
+
export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
5357
|
+
requestId?: string;
|
|
5358
|
+
static names(): {
|
|
5359
|
+
[key: string]: string;
|
|
5360
|
+
};
|
|
5361
|
+
static types(): {
|
|
5362
|
+
[key: string]: any;
|
|
5363
|
+
};
|
|
5364
|
+
constructor(map?: {
|
|
5365
|
+
[key: string]: any;
|
|
5366
|
+
});
|
|
5367
|
+
}
|
|
5368
|
+
export declare class UntagResourcesResponse extends $tea.Model {
|
|
5369
|
+
headers: {
|
|
5370
|
+
[key: string]: string;
|
|
5371
|
+
};
|
|
5372
|
+
statusCode: number;
|
|
5373
|
+
body: UntagResourcesResponseBody;
|
|
5374
|
+
static names(): {
|
|
5375
|
+
[key: string]: string;
|
|
5376
|
+
};
|
|
5377
|
+
static types(): {
|
|
5378
|
+
[key: string]: any;
|
|
5379
|
+
};
|
|
5380
|
+
constructor(map?: {
|
|
5381
|
+
[key: string]: any;
|
|
5382
|
+
});
|
|
5383
|
+
}
|
|
5246
5384
|
export declare class UpdateAcceleratorRequest extends $tea.Model {
|
|
5247
5385
|
acceleratorId?: string;
|
|
5248
5386
|
autoPay?: boolean;
|
|
@@ -7617,6 +7755,7 @@ export declare class ListBandwidthackagesResponseBodyBandwidthPackages extends $
|
|
|
7617
7755
|
}
|
|
7618
7756
|
export declare class ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations extends $tea.Model {
|
|
7619
7757
|
accelerateIpId?: string;
|
|
7758
|
+
acceleratorId?: string;
|
|
7620
7759
|
endpointAddress?: string;
|
|
7621
7760
|
endpointId?: string;
|
|
7622
7761
|
endpointName?: string;
|
|
@@ -7636,31 +7775,10 @@ export declare class ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerat
|
|
|
7636
7775
|
[key: string]: any;
|
|
7637
7776
|
});
|
|
7638
7777
|
}
|
|
7639
|
-
export declare class ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint extends $tea.Model {
|
|
7640
|
-
endPointId?: string;
|
|
7641
|
-
endpointAddress?: string;
|
|
7642
|
-
endpointGroupId?: string;
|
|
7643
|
-
endpointSubAddress?: string;
|
|
7644
|
-
endpointSubAddressType?: string;
|
|
7645
|
-
endpointType?: string;
|
|
7646
|
-
endpointZoneId?: string;
|
|
7647
|
-
name?: string;
|
|
7648
|
-
state?: string;
|
|
7649
|
-
static names(): {
|
|
7650
|
-
[key: string]: string;
|
|
7651
|
-
};
|
|
7652
|
-
static types(): {
|
|
7653
|
-
[key: string]: any;
|
|
7654
|
-
};
|
|
7655
|
-
constructor(map?: {
|
|
7656
|
-
[key: string]: any;
|
|
7657
|
-
});
|
|
7658
|
-
}
|
|
7659
7778
|
export declare class ListBasicAccelerateIpsResponseBodyAccelerateIps extends $tea.Model {
|
|
7660
7779
|
accelerateIpAddress?: string;
|
|
7661
7780
|
accelerateIpId?: string;
|
|
7662
7781
|
acceleratorId?: string;
|
|
7663
|
-
endpoint?: ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint;
|
|
7664
7782
|
ipSetId?: string;
|
|
7665
7783
|
state?: string;
|
|
7666
7784
|
static names(): {
|
|
@@ -8270,6 +8388,46 @@ export declare class ListSystemSecurityPoliciesResponseBodySecurityPolicies exte
|
|
|
8270
8388
|
[key: string]: any;
|
|
8271
8389
|
});
|
|
8272
8390
|
}
|
|
8391
|
+
export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
8392
|
+
key?: string;
|
|
8393
|
+
value?: string;
|
|
8394
|
+
static names(): {
|
|
8395
|
+
[key: string]: string;
|
|
8396
|
+
};
|
|
8397
|
+
static types(): {
|
|
8398
|
+
[key: string]: any;
|
|
8399
|
+
};
|
|
8400
|
+
constructor(map?: {
|
|
8401
|
+
[key: string]: any;
|
|
8402
|
+
});
|
|
8403
|
+
}
|
|
8404
|
+
export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
|
|
8405
|
+
resourceId?: string;
|
|
8406
|
+
resourceType?: string;
|
|
8407
|
+
tagKey?: string;
|
|
8408
|
+
tagValue?: string;
|
|
8409
|
+
static names(): {
|
|
8410
|
+
[key: string]: string;
|
|
8411
|
+
};
|
|
8412
|
+
static types(): {
|
|
8413
|
+
[key: string]: any;
|
|
8414
|
+
};
|
|
8415
|
+
constructor(map?: {
|
|
8416
|
+
[key: string]: any;
|
|
8417
|
+
});
|
|
8418
|
+
}
|
|
8419
|
+
export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model {
|
|
8420
|
+
tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[];
|
|
8421
|
+
static names(): {
|
|
8422
|
+
[key: string]: string;
|
|
8423
|
+
};
|
|
8424
|
+
static types(): {
|
|
8425
|
+
[key: string]: any;
|
|
8426
|
+
};
|
|
8427
|
+
constructor(map?: {
|
|
8428
|
+
[key: string]: any;
|
|
8429
|
+
});
|
|
8430
|
+
}
|
|
8273
8431
|
export declare class RemoveEntriesFromAclRequestAclEntries extends $tea.Model {
|
|
8274
8432
|
entry?: string;
|
|
8275
8433
|
static names(): {
|
|
@@ -8282,6 +8440,19 @@ export declare class RemoveEntriesFromAclRequestAclEntries extends $tea.Model {
|
|
|
8282
8440
|
[key: string]: any;
|
|
8283
8441
|
});
|
|
8284
8442
|
}
|
|
8443
|
+
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
8444
|
+
key?: string;
|
|
8445
|
+
value?: string;
|
|
8446
|
+
static names(): {
|
|
8447
|
+
[key: string]: string;
|
|
8448
|
+
};
|
|
8449
|
+
static types(): {
|
|
8450
|
+
[key: string]: any;
|
|
8451
|
+
};
|
|
8452
|
+
constructor(map?: {
|
|
8453
|
+
[key: string]: any;
|
|
8454
|
+
});
|
|
8455
|
+
}
|
|
8285
8456
|
export declare class UpdateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations extends $tea.Model {
|
|
8286
8457
|
destinationId?: string;
|
|
8287
8458
|
fromPort?: number;
|
|
@@ -8842,10 +9013,16 @@ export default class Client extends OpenApi {
|
|
|
8842
9013
|
listSpareIps(request: ListSpareIpsRequest): Promise<ListSpareIpsResponse>;
|
|
8843
9014
|
listSystemSecurityPoliciesWithOptions(request: ListSystemSecurityPoliciesRequest, runtime: $Util.RuntimeOptions): Promise<ListSystemSecurityPoliciesResponse>;
|
|
8844
9015
|
listSystemSecurityPolicies(request: ListSystemSecurityPoliciesRequest): Promise<ListSystemSecurityPoliciesResponse>;
|
|
9016
|
+
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
9017
|
+
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
8845
9018
|
removeEntriesFromAclWithOptions(request: RemoveEntriesFromAclRequest, runtime: $Util.RuntimeOptions): Promise<RemoveEntriesFromAclResponse>;
|
|
8846
9019
|
removeEntriesFromAcl(request: RemoveEntriesFromAclRequest): Promise<RemoveEntriesFromAclResponse>;
|
|
8847
9020
|
replaceBandwidthPackageWithOptions(request: ReplaceBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<ReplaceBandwidthPackageResponse>;
|
|
8848
9021
|
replaceBandwidthPackage(request: ReplaceBandwidthPackageRequest): Promise<ReplaceBandwidthPackageResponse>;
|
|
9022
|
+
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
9023
|
+
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
9024
|
+
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
9025
|
+
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
8849
9026
|
updateAcceleratorWithOptions(request: UpdateAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorResponse>;
|
|
8850
9027
|
updateAccelerator(request: UpdateAcceleratorRequest): Promise<UpdateAcceleratorResponse>;
|
|
8851
9028
|
updateAcceleratorAutoRenewAttributeWithOptions(request: UpdateAcceleratorAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAcceleratorAutoRenewAttributeResponse>;
|