@antchain/realperson 1.15.32 → 1.16.0
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 +225 -3
- package/dist/client.js +335 -6
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +476 -11
package/src/client.ts
CHANGED
|
@@ -1922,26 +1922,32 @@ export class CheckThreemetaBankcardRequest extends $tea.Model {
|
|
|
1922
1922
|
productInstanceId?: string;
|
|
1923
1923
|
// 外部请求ID,由调用方自行生成并自行保证唯一,以便问题定位。
|
|
1924
1924
|
outerOrderNo: string;
|
|
1925
|
-
//
|
|
1926
|
-
|
|
1927
|
-
// 身份证号
|
|
1928
|
-
certNo: string;
|
|
1925
|
+
// 要素入参模式: 1:银行卡号+姓名+证件号 2:银行卡号+姓名+手机号 3:银行卡号+证件号+手机号,默认为1
|
|
1926
|
+
metaMode?: string;
|
|
1929
1927
|
// 银行卡号
|
|
1930
1928
|
bankCard: string;
|
|
1931
|
-
//
|
|
1932
|
-
|
|
1929
|
+
// 姓名
|
|
1930
|
+
certName?: string;
|
|
1931
|
+
// 身份证号
|
|
1932
|
+
certNo?: string;
|
|
1933
1933
|
// 证件类型: 1:居民身份证(默认值) 2:军官证 3:护照 4:回乡证 5:台胞证 6:警官证 7:士兵证 99:其他
|
|
1934
1934
|
certType?: string;
|
|
1935
|
+
// 手机号码
|
|
1936
|
+
mobile?: string;
|
|
1937
|
+
// 扩展信息,Map的json格式
|
|
1938
|
+
externParam?: string;
|
|
1935
1939
|
static names(): { [key: string]: string } {
|
|
1936
1940
|
return {
|
|
1937
1941
|
authToken: 'auth_token',
|
|
1938
1942
|
productInstanceId: 'product_instance_id',
|
|
1939
1943
|
outerOrderNo: 'outer_order_no',
|
|
1944
|
+
metaMode: 'meta_mode',
|
|
1945
|
+
bankCard: 'bank_card',
|
|
1940
1946
|
certName: 'cert_name',
|
|
1941
1947
|
certNo: 'cert_no',
|
|
1942
|
-
bankCard: 'bank_card',
|
|
1943
|
-
externParam: 'extern_param',
|
|
1944
1948
|
certType: 'cert_type',
|
|
1949
|
+
mobile: 'mobile',
|
|
1950
|
+
externParam: 'extern_param',
|
|
1945
1951
|
};
|
|
1946
1952
|
}
|
|
1947
1953
|
|
|
@@ -1950,11 +1956,13 @@ export class CheckThreemetaBankcardRequest extends $tea.Model {
|
|
|
1950
1956
|
authToken: 'string',
|
|
1951
1957
|
productInstanceId: 'string',
|
|
1952
1958
|
outerOrderNo: 'string',
|
|
1959
|
+
metaMode: 'string',
|
|
1960
|
+
bankCard: 'string',
|
|
1953
1961
|
certName: 'string',
|
|
1954
1962
|
certNo: 'string',
|
|
1955
|
-
bankCard: 'string',
|
|
1956
|
-
externParam: 'string',
|
|
1957
1963
|
certType: 'string',
|
|
1964
|
+
mobile: 'string',
|
|
1965
|
+
externParam: 'string',
|
|
1958
1966
|
};
|
|
1959
1967
|
}
|
|
1960
1968
|
|
|
@@ -3407,6 +3415,368 @@ export class QueryBankLivenessResponse extends $tea.Model {
|
|
|
3407
3415
|
}
|
|
3408
3416
|
}
|
|
3409
3417
|
|
|
3418
|
+
export class CreateConsoleDomainRequest extends $tea.Model {
|
|
3419
|
+
// OAuth模式下的授权token
|
|
3420
|
+
authToken?: string;
|
|
3421
|
+
productInstanceId?: string;
|
|
3422
|
+
// 场景id
|
|
3423
|
+
sceneId: string;
|
|
3424
|
+
// 用于排查问题
|
|
3425
|
+
bizId: string;
|
|
3426
|
+
// 客户填自己需要绑定的小程序名称
|
|
3427
|
+
miniProgramName: string;
|
|
3428
|
+
// 所属平台,微信、支付宝
|
|
3429
|
+
platform: string;
|
|
3430
|
+
// 校验文件的名称
|
|
3431
|
+
checkFileName: string;
|
|
3432
|
+
// 填校验文件里面的内容
|
|
3433
|
+
checkFileBody: string;
|
|
3434
|
+
static names(): { [key: string]: string } {
|
|
3435
|
+
return {
|
|
3436
|
+
authToken: 'auth_token',
|
|
3437
|
+
productInstanceId: 'product_instance_id',
|
|
3438
|
+
sceneId: 'scene_id',
|
|
3439
|
+
bizId: 'biz_id',
|
|
3440
|
+
miniProgramName: 'mini_program_name',
|
|
3441
|
+
platform: 'platform',
|
|
3442
|
+
checkFileName: 'check_file_name',
|
|
3443
|
+
checkFileBody: 'check_file_body',
|
|
3444
|
+
};
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
static types(): { [key: string]: any } {
|
|
3448
|
+
return {
|
|
3449
|
+
authToken: 'string',
|
|
3450
|
+
productInstanceId: 'string',
|
|
3451
|
+
sceneId: 'string',
|
|
3452
|
+
bizId: 'string',
|
|
3453
|
+
miniProgramName: 'string',
|
|
3454
|
+
platform: 'string',
|
|
3455
|
+
checkFileName: 'string',
|
|
3456
|
+
checkFileBody: 'string',
|
|
3457
|
+
};
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
constructor(map?: { [key: string]: any }) {
|
|
3461
|
+
super(map);
|
|
3462
|
+
}
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3465
|
+
export class CreateConsoleDomainResponse extends $tea.Model {
|
|
3466
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
3467
|
+
reqMsgId?: string;
|
|
3468
|
+
// 结果码,一般OK表示调用成功
|
|
3469
|
+
resultCode?: string;
|
|
3470
|
+
// 异常信息的文本描述
|
|
3471
|
+
resultMsg?: string;
|
|
3472
|
+
// 返回绑定的域名
|
|
3473
|
+
domain?: string;
|
|
3474
|
+
static names(): { [key: string]: string } {
|
|
3475
|
+
return {
|
|
3476
|
+
reqMsgId: 'req_msg_id',
|
|
3477
|
+
resultCode: 'result_code',
|
|
3478
|
+
resultMsg: 'result_msg',
|
|
3479
|
+
domain: 'domain',
|
|
3480
|
+
};
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
static types(): { [key: string]: any } {
|
|
3484
|
+
return {
|
|
3485
|
+
reqMsgId: 'string',
|
|
3486
|
+
resultCode: 'string',
|
|
3487
|
+
resultMsg: 'string',
|
|
3488
|
+
domain: 'string',
|
|
3489
|
+
};
|
|
3490
|
+
}
|
|
3491
|
+
|
|
3492
|
+
constructor(map?: { [key: string]: any }) {
|
|
3493
|
+
super(map);
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
export class DeleteConsoleDomainRequest extends $tea.Model {
|
|
3498
|
+
// OAuth模式下的授权token
|
|
3499
|
+
authToken?: string;
|
|
3500
|
+
productInstanceId?: string;
|
|
3501
|
+
// 控制台场景id
|
|
3502
|
+
sceneId: string;
|
|
3503
|
+
static names(): { [key: string]: string } {
|
|
3504
|
+
return {
|
|
3505
|
+
authToken: 'auth_token',
|
|
3506
|
+
productInstanceId: 'product_instance_id',
|
|
3507
|
+
sceneId: 'scene_id',
|
|
3508
|
+
};
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
static types(): { [key: string]: any } {
|
|
3512
|
+
return {
|
|
3513
|
+
authToken: 'string',
|
|
3514
|
+
productInstanceId: 'string',
|
|
3515
|
+
sceneId: 'string',
|
|
3516
|
+
};
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
constructor(map?: { [key: string]: any }) {
|
|
3520
|
+
super(map);
|
|
3521
|
+
}
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
export class DeleteConsoleDomainResponse extends $tea.Model {
|
|
3525
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
3526
|
+
reqMsgId?: string;
|
|
3527
|
+
// 结果码,一般OK表示调用成功
|
|
3528
|
+
resultCode?: string;
|
|
3529
|
+
// 异常信息的文本描述
|
|
3530
|
+
resultMsg?: string;
|
|
3531
|
+
static names(): { [key: string]: string } {
|
|
3532
|
+
return {
|
|
3533
|
+
reqMsgId: 'req_msg_id',
|
|
3534
|
+
resultCode: 'result_code',
|
|
3535
|
+
resultMsg: 'result_msg',
|
|
3536
|
+
};
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
static types(): { [key: string]: any } {
|
|
3540
|
+
return {
|
|
3541
|
+
reqMsgId: 'string',
|
|
3542
|
+
resultCode: 'string',
|
|
3543
|
+
resultMsg: 'string',
|
|
3544
|
+
};
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
constructor(map?: { [key: string]: any }) {
|
|
3548
|
+
super(map);
|
|
3549
|
+
}
|
|
3550
|
+
}
|
|
3551
|
+
|
|
3552
|
+
export class InitCarrierRepairmobileRequest extends $tea.Model {
|
|
3553
|
+
// OAuth模式下的授权token
|
|
3554
|
+
authToken?: string;
|
|
3555
|
+
productInstanceId?: string;
|
|
3556
|
+
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权核查。
|
|
3557
|
+
outerOrderNo: string;
|
|
3558
|
+
// 流程ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,用于流程串联。
|
|
3559
|
+
processId: string;
|
|
3560
|
+
// 运营商类型,取值如下:
|
|
3561
|
+
// CHINA_TELECOM:中国电信
|
|
3562
|
+
// CHINA_MOBILE:中国移动
|
|
3563
|
+
// CHINA_UNICOM:中国联通
|
|
3564
|
+
carrier: string;
|
|
3565
|
+
// 入参加密模式:
|
|
3566
|
+
// "0"(默认值):不加密;
|
|
3567
|
+
// "2":身份证号、曾用手机号字段都需填写SHA256加密后的字符串。
|
|
3568
|
+
// 默认未"0"
|
|
3569
|
+
encryptType?: string;
|
|
3570
|
+
// 失联修复身份证号,使用入参加密模式加密
|
|
3571
|
+
certNo: string;
|
|
3572
|
+
// 曾用手机号码,使用入参加密模式加密
|
|
3573
|
+
mobile?: string;
|
|
3574
|
+
static names(): { [key: string]: string } {
|
|
3575
|
+
return {
|
|
3576
|
+
authToken: 'auth_token',
|
|
3577
|
+
productInstanceId: 'product_instance_id',
|
|
3578
|
+
outerOrderNo: 'outer_order_no',
|
|
3579
|
+
processId: 'process_id',
|
|
3580
|
+
carrier: 'carrier',
|
|
3581
|
+
encryptType: 'encrypt_type',
|
|
3582
|
+
certNo: 'cert_no',
|
|
3583
|
+
mobile: 'mobile',
|
|
3584
|
+
};
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
static types(): { [key: string]: any } {
|
|
3588
|
+
return {
|
|
3589
|
+
authToken: 'string',
|
|
3590
|
+
productInstanceId: 'string',
|
|
3591
|
+
outerOrderNo: 'string',
|
|
3592
|
+
processId: 'string',
|
|
3593
|
+
carrier: 'string',
|
|
3594
|
+
encryptType: 'string',
|
|
3595
|
+
certNo: 'string',
|
|
3596
|
+
mobile: 'string',
|
|
3597
|
+
};
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
constructor(map?: { [key: string]: any }) {
|
|
3601
|
+
super(map);
|
|
3602
|
+
}
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3605
|
+
export class InitCarrierRepairmobileResponse extends $tea.Model {
|
|
3606
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
3607
|
+
reqMsgId?: string;
|
|
3608
|
+
// 结果码,一般OK表示调用成功
|
|
3609
|
+
resultCode?: string;
|
|
3610
|
+
// 异常信息的文本描述
|
|
3611
|
+
resultMsg?: string;
|
|
3612
|
+
// 流程ID,和客户入参的process_id一致
|
|
3613
|
+
processId?: string;
|
|
3614
|
+
static names(): { [key: string]: string } {
|
|
3615
|
+
return {
|
|
3616
|
+
reqMsgId: 'req_msg_id',
|
|
3617
|
+
resultCode: 'result_code',
|
|
3618
|
+
resultMsg: 'result_msg',
|
|
3619
|
+
processId: 'process_id',
|
|
3620
|
+
};
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
static types(): { [key: string]: any } {
|
|
3624
|
+
return {
|
|
3625
|
+
reqMsgId: 'string',
|
|
3626
|
+
resultCode: 'string',
|
|
3627
|
+
resultMsg: 'string',
|
|
3628
|
+
processId: 'string',
|
|
3629
|
+
};
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
constructor(map?: { [key: string]: any }) {
|
|
3633
|
+
super(map);
|
|
3634
|
+
}
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
export class QueryCarrierRepairmobileRequest extends $tea.Model {
|
|
3638
|
+
// OAuth模式下的授权token
|
|
3639
|
+
authToken?: string;
|
|
3640
|
+
productInstanceId?: string;
|
|
3641
|
+
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权核查。
|
|
3642
|
+
outerOrderNo: string;
|
|
3643
|
+
// 失联修复初始化的流程ID
|
|
3644
|
+
processId: string;
|
|
3645
|
+
static names(): { [key: string]: string } {
|
|
3646
|
+
return {
|
|
3647
|
+
authToken: 'auth_token',
|
|
3648
|
+
productInstanceId: 'product_instance_id',
|
|
3649
|
+
outerOrderNo: 'outer_order_no',
|
|
3650
|
+
processId: 'process_id',
|
|
3651
|
+
};
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
static types(): { [key: string]: any } {
|
|
3655
|
+
return {
|
|
3656
|
+
authToken: 'string',
|
|
3657
|
+
productInstanceId: 'string',
|
|
3658
|
+
outerOrderNo: 'string',
|
|
3659
|
+
processId: 'string',
|
|
3660
|
+
};
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
constructor(map?: { [key: string]: any }) {
|
|
3664
|
+
super(map);
|
|
3665
|
+
}
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
export class QueryCarrierRepairmobileResponse extends $tea.Model {
|
|
3669
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
3670
|
+
reqMsgId?: string;
|
|
3671
|
+
// 结果码,一般OK表示调用成功
|
|
3672
|
+
resultCode?: string;
|
|
3673
|
+
// 异常信息的文本描述
|
|
3674
|
+
resultMsg?: string;
|
|
3675
|
+
// 失联人手机号修复数量
|
|
3676
|
+
count?: string;
|
|
3677
|
+
static names(): { [key: string]: string } {
|
|
3678
|
+
return {
|
|
3679
|
+
reqMsgId: 'req_msg_id',
|
|
3680
|
+
resultCode: 'result_code',
|
|
3681
|
+
resultMsg: 'result_msg',
|
|
3682
|
+
count: 'count',
|
|
3683
|
+
};
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
static types(): { [key: string]: any } {
|
|
3687
|
+
return {
|
|
3688
|
+
reqMsgId: 'string',
|
|
3689
|
+
resultCode: 'string',
|
|
3690
|
+
resultMsg: 'string',
|
|
3691
|
+
count: 'string',
|
|
3692
|
+
};
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
constructor(map?: { [key: string]: any }) {
|
|
3696
|
+
super(map);
|
|
3697
|
+
}
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
export class BindCarrierRepairmobileRequest extends $tea.Model {
|
|
3701
|
+
// OAuth模式下的授权token
|
|
3702
|
+
authToken?: string;
|
|
3703
|
+
productInstanceId?: string;
|
|
3704
|
+
// 请求ID,为32位以内的字母数字组合,由调用方自行生成、保证唯一并留存,以便问题定位和授权核查。
|
|
3705
|
+
outerOrderNo: string;
|
|
3706
|
+
// 失联修复初始化的流程ID
|
|
3707
|
+
processId: string;
|
|
3708
|
+
// 身份证号,和失联修复初始化接口身份证号加密方式保持一致
|
|
3709
|
+
certNo: string;
|
|
3710
|
+
// 修复的手机号排序,例如绑定第一个修复手机号填入1
|
|
3711
|
+
mobileNum: string;
|
|
3712
|
+
// 主叫号码
|
|
3713
|
+
mobileA: string;
|
|
3714
|
+
// 主叫类型1-手机号码 2-固话
|
|
3715
|
+
// 默认为1
|
|
3716
|
+
mobileType?: string;
|
|
3717
|
+
static names(): { [key: string]: string } {
|
|
3718
|
+
return {
|
|
3719
|
+
authToken: 'auth_token',
|
|
3720
|
+
productInstanceId: 'product_instance_id',
|
|
3721
|
+
outerOrderNo: 'outer_order_no',
|
|
3722
|
+
processId: 'process_id',
|
|
3723
|
+
certNo: 'cert_no',
|
|
3724
|
+
mobileNum: 'mobile_num',
|
|
3725
|
+
mobileA: 'mobile_a',
|
|
3726
|
+
mobileType: 'mobile_type',
|
|
3727
|
+
};
|
|
3728
|
+
}
|
|
3729
|
+
|
|
3730
|
+
static types(): { [key: string]: any } {
|
|
3731
|
+
return {
|
|
3732
|
+
authToken: 'string',
|
|
3733
|
+
productInstanceId: 'string',
|
|
3734
|
+
outerOrderNo: 'string',
|
|
3735
|
+
processId: 'string',
|
|
3736
|
+
certNo: 'string',
|
|
3737
|
+
mobileNum: 'string',
|
|
3738
|
+
mobileA: 'string',
|
|
3739
|
+
mobileType: 'string',
|
|
3740
|
+
};
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
constructor(map?: { [key: string]: any }) {
|
|
3744
|
+
super(map);
|
|
3745
|
+
}
|
|
3746
|
+
}
|
|
3747
|
+
|
|
3748
|
+
export class BindCarrierRepairmobileResponse extends $tea.Model {
|
|
3749
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
3750
|
+
reqMsgId?: string;
|
|
3751
|
+
// 结果码,一般OK表示调用成功
|
|
3752
|
+
resultCode?: string;
|
|
3753
|
+
// 异常信息的文本描述
|
|
3754
|
+
resultMsg?: string;
|
|
3755
|
+
// 小号(实际拨打返回的虚拟小号)
|
|
3756
|
+
mobileX?: string;
|
|
3757
|
+
static names(): { [key: string]: string } {
|
|
3758
|
+
return {
|
|
3759
|
+
reqMsgId: 'req_msg_id',
|
|
3760
|
+
resultCode: 'result_code',
|
|
3761
|
+
resultMsg: 'result_msg',
|
|
3762
|
+
mobileX: 'mobile_x',
|
|
3763
|
+
};
|
|
3764
|
+
}
|
|
3765
|
+
|
|
3766
|
+
static types(): { [key: string]: any } {
|
|
3767
|
+
return {
|
|
3768
|
+
reqMsgId: 'string',
|
|
3769
|
+
resultCode: 'string',
|
|
3770
|
+
resultMsg: 'string',
|
|
3771
|
+
mobileX: 'string',
|
|
3772
|
+
};
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
constructor(map?: { [key: string]: any }) {
|
|
3776
|
+
super(map);
|
|
3777
|
+
}
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3410
3780
|
export class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
3411
3781
|
// OAuth模式下的授权token
|
|
3412
3782
|
authToken?: string;
|
|
@@ -3608,7 +3978,7 @@ export default class Client {
|
|
|
3608
3978
|
req_msg_id: AntchainUtil.getNonce(),
|
|
3609
3979
|
access_key: this._accessKeyId,
|
|
3610
3980
|
base_sdk_version: "TeaSDK-2.0",
|
|
3611
|
-
sdk_version: "1.
|
|
3981
|
+
sdk_version: "1.16.0",
|
|
3612
3982
|
_prod_code: "REALPERSON",
|
|
3613
3983
|
_prod_channel: "undefined",
|
|
3614
3984
|
};
|
|
@@ -4384,6 +4754,101 @@ export default class Client {
|
|
|
4384
4754
|
return $tea.cast<QueryBankLivenessResponse>(await this.doRequest("1.0", "di.realperson.bank.liveness.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryBankLivenessResponse({}));
|
|
4385
4755
|
}
|
|
4386
4756
|
|
|
4757
|
+
/**
|
|
4758
|
+
* Description: 用于阿里云渠道小程序域名的绑定
|
|
4759
|
+
* Summary: 新增场景与域名映射
|
|
4760
|
+
*/
|
|
4761
|
+
async createConsoleDomain(request: CreateConsoleDomainRequest): Promise<CreateConsoleDomainResponse> {
|
|
4762
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4763
|
+
let headers : {[key: string ]: string} = { };
|
|
4764
|
+
return await this.createConsoleDomainEx(request, headers, runtime);
|
|
4765
|
+
}
|
|
4766
|
+
|
|
4767
|
+
/**
|
|
4768
|
+
* Description: 用于阿里云渠道小程序域名的绑定
|
|
4769
|
+
* Summary: 新增场景与域名映射
|
|
4770
|
+
*/
|
|
4771
|
+
async createConsoleDomainEx(request: CreateConsoleDomainRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateConsoleDomainResponse> {
|
|
4772
|
+
Util.validateModel(request);
|
|
4773
|
+
return $tea.cast<CreateConsoleDomainResponse>(await this.doRequest("1.0", "di.realperson.console.domain.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateConsoleDomainResponse({}));
|
|
4774
|
+
}
|
|
4775
|
+
|
|
4776
|
+
/**
|
|
4777
|
+
* Description: 阿里云控制台删除场景与域名映射
|
|
4778
|
+
* Summary: 删除场景与域名映射
|
|
4779
|
+
*/
|
|
4780
|
+
async deleteConsoleDomain(request: DeleteConsoleDomainRequest): Promise<DeleteConsoleDomainResponse> {
|
|
4781
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4782
|
+
let headers : {[key: string ]: string} = { };
|
|
4783
|
+
return await this.deleteConsoleDomainEx(request, headers, runtime);
|
|
4784
|
+
}
|
|
4785
|
+
|
|
4786
|
+
/**
|
|
4787
|
+
* Description: 阿里云控制台删除场景与域名映射
|
|
4788
|
+
* Summary: 删除场景与域名映射
|
|
4789
|
+
*/
|
|
4790
|
+
async deleteConsoleDomainEx(request: DeleteConsoleDomainRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteConsoleDomainResponse> {
|
|
4791
|
+
Util.validateModel(request);
|
|
4792
|
+
return $tea.cast<DeleteConsoleDomainResponse>(await this.doRequest("1.0", "di.realperson.console.domain.delete", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DeleteConsoleDomainResponse({}));
|
|
4793
|
+
}
|
|
4794
|
+
|
|
4795
|
+
/**
|
|
4796
|
+
* Description: 失联修复初始化
|
|
4797
|
+
* Summary: 失联修复初始化
|
|
4798
|
+
*/
|
|
4799
|
+
async initCarrierRepairmobile(request: InitCarrierRepairmobileRequest): Promise<InitCarrierRepairmobileResponse> {
|
|
4800
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4801
|
+
let headers : {[key: string ]: string} = { };
|
|
4802
|
+
return await this.initCarrierRepairmobileEx(request, headers, runtime);
|
|
4803
|
+
}
|
|
4804
|
+
|
|
4805
|
+
/**
|
|
4806
|
+
* Description: 失联修复初始化
|
|
4807
|
+
* Summary: 失联修复初始化
|
|
4808
|
+
*/
|
|
4809
|
+
async initCarrierRepairmobileEx(request: InitCarrierRepairmobileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<InitCarrierRepairmobileResponse> {
|
|
4810
|
+
Util.validateModel(request);
|
|
4811
|
+
return $tea.cast<InitCarrierRepairmobileResponse>(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.init", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InitCarrierRepairmobileResponse({}));
|
|
4812
|
+
}
|
|
4813
|
+
|
|
4814
|
+
/**
|
|
4815
|
+
* Description: 失联修复查询修复结果
|
|
4816
|
+
* Summary: 失联修复查询修复结果
|
|
4817
|
+
*/
|
|
4818
|
+
async queryCarrierRepairmobile(request: QueryCarrierRepairmobileRequest): Promise<QueryCarrierRepairmobileResponse> {
|
|
4819
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4820
|
+
let headers : {[key: string ]: string} = { };
|
|
4821
|
+
return await this.queryCarrierRepairmobileEx(request, headers, runtime);
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
/**
|
|
4825
|
+
* Description: 失联修复查询修复结果
|
|
4826
|
+
* Summary: 失联修复查询修复结果
|
|
4827
|
+
*/
|
|
4828
|
+
async queryCarrierRepairmobileEx(request: QueryCarrierRepairmobileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryCarrierRepairmobileResponse> {
|
|
4829
|
+
Util.validateModel(request);
|
|
4830
|
+
return $tea.cast<QueryCarrierRepairmobileResponse>(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryCarrierRepairmobileResponse({}));
|
|
4831
|
+
}
|
|
4832
|
+
|
|
4833
|
+
/**
|
|
4834
|
+
* Description: 失联修复小号绑定
|
|
4835
|
+
* Summary: 失联修复小号绑定
|
|
4836
|
+
*/
|
|
4837
|
+
async bindCarrierRepairmobile(request: BindCarrierRepairmobileRequest): Promise<BindCarrierRepairmobileResponse> {
|
|
4838
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
4839
|
+
let headers : {[key: string ]: string} = { };
|
|
4840
|
+
return await this.bindCarrierRepairmobileEx(request, headers, runtime);
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4843
|
+
/**
|
|
4844
|
+
* Description: 失联修复小号绑定
|
|
4845
|
+
* Summary: 失联修复小号绑定
|
|
4846
|
+
*/
|
|
4847
|
+
async bindCarrierRepairmobileEx(request: BindCarrierRepairmobileRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<BindCarrierRepairmobileResponse> {
|
|
4848
|
+
Util.validateModel(request);
|
|
4849
|
+
return $tea.cast<BindCarrierRepairmobileResponse>(await this.doRequest("1.0", "di.realperson.carrier.repairmobile.bind", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BindCarrierRepairmobileResponse({}));
|
|
4850
|
+
}
|
|
4851
|
+
|
|
4387
4852
|
/**
|
|
4388
4853
|
* Description: 创建HTTP PUT提交的文件上传
|
|
4389
4854
|
* Summary: 文件上传创建
|