@alicloud/csas20230120 1.11.2 → 1.12.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 +837 -21
- package/dist/client.js +909 -631
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1592 -712
package/dist/client.d.ts
CHANGED
|
@@ -3,6 +3,115 @@
|
|
|
3
3
|
import OpenApi from '@alicloud/openapi-core';
|
|
4
4
|
import { $OpenApiUtil } from '@alicloud/openapi-core';
|
|
5
5
|
import * as $dara from '@darabonba/typescript';
|
|
6
|
+
export declare class PAL7ConfigBypassConfigUrlBypassRules extends $dara.Model {
|
|
7
|
+
froms?: string[];
|
|
8
|
+
paths?: string[];
|
|
9
|
+
static names(): {
|
|
10
|
+
[key: string]: string;
|
|
11
|
+
};
|
|
12
|
+
static types(): {
|
|
13
|
+
[key: string]: any;
|
|
14
|
+
};
|
|
15
|
+
validate(): void;
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
export declare class PAL7ConfigBypassConfig extends $dara.Model {
|
|
21
|
+
appBypassFroms?: string[];
|
|
22
|
+
mode?: string;
|
|
23
|
+
urlBypassRules?: PAL7ConfigBypassConfigUrlBypassRules[];
|
|
24
|
+
static names(): {
|
|
25
|
+
[key: string]: string;
|
|
26
|
+
};
|
|
27
|
+
static types(): {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
30
|
+
validate(): void;
|
|
31
|
+
constructor(map?: {
|
|
32
|
+
[key: string]: any;
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
export declare class PAL7ConfigDnsConfig extends $dara.Model {
|
|
36
|
+
dnsServers?: string[];
|
|
37
|
+
static names(): {
|
|
38
|
+
[key: string]: string;
|
|
39
|
+
};
|
|
40
|
+
static types(): {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
};
|
|
43
|
+
validate(): void;
|
|
44
|
+
constructor(map?: {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
export declare class PAL7ConfigJsHookConfig extends $dara.Model {
|
|
49
|
+
mode?: string;
|
|
50
|
+
replaceRules?: PAL7ConfigReplaceRule[];
|
|
51
|
+
static names(): {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
static types(): {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
validate(): void;
|
|
58
|
+
constructor(map?: {
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
export declare class PAL7ConfigRequestHeaderRewriteConfig extends $dara.Model {
|
|
63
|
+
ops?: PAL7ConfigRewriteOp[];
|
|
64
|
+
static names(): {
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
};
|
|
67
|
+
static types(): {
|
|
68
|
+
[key: string]: any;
|
|
69
|
+
};
|
|
70
|
+
validate(): void;
|
|
71
|
+
constructor(map?: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
export declare class PAL7ConfigRequestQueryRewriteConfig extends $dara.Model {
|
|
76
|
+
ops?: PAL7ConfigRewriteOp[];
|
|
77
|
+
static names(): {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
static types(): {
|
|
81
|
+
[key: string]: any;
|
|
82
|
+
};
|
|
83
|
+
validate(): void;
|
|
84
|
+
constructor(map?: {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
export declare class PAL7ConfigResponseHeaderRewriteConfig extends $dara.Model {
|
|
89
|
+
ops?: PAL7ConfigRewriteOp[];
|
|
90
|
+
static names(): {
|
|
91
|
+
[key: string]: string;
|
|
92
|
+
};
|
|
93
|
+
static types(): {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
};
|
|
96
|
+
validate(): void;
|
|
97
|
+
constructor(map?: {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
});
|
|
100
|
+
}
|
|
101
|
+
export declare class PAL7ConfigResponseRewriteConfig extends $dara.Model {
|
|
102
|
+
mode?: string;
|
|
103
|
+
replaceRules?: PAL7ConfigReplaceRule[];
|
|
104
|
+
static names(): {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
|
+
static types(): {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
};
|
|
110
|
+
validate(): void;
|
|
111
|
+
constructor(map?: {
|
|
112
|
+
[key: string]: any;
|
|
113
|
+
});
|
|
114
|
+
}
|
|
6
115
|
export declare class CreateApprovalProcessRequestMatchSchemas extends $dara.Model {
|
|
7
116
|
/**
|
|
8
117
|
* @example
|
|
@@ -254,6 +363,34 @@ export declare class CreatePrivateAccessApplicationRequestPortRanges extends $da
|
|
|
254
363
|
[key: string]: any;
|
|
255
364
|
});
|
|
256
365
|
}
|
|
366
|
+
export declare class CreatePrivateAccessApplicationShrinkRequestPortRanges extends $dara.Model {
|
|
367
|
+
/**
|
|
368
|
+
* @remarks
|
|
369
|
+
* This parameter is required.
|
|
370
|
+
*
|
|
371
|
+
* @example
|
|
372
|
+
* 80
|
|
373
|
+
*/
|
|
374
|
+
begin?: number;
|
|
375
|
+
/**
|
|
376
|
+
* @remarks
|
|
377
|
+
* This parameter is required.
|
|
378
|
+
*
|
|
379
|
+
* @example
|
|
380
|
+
* 81
|
|
381
|
+
*/
|
|
382
|
+
end?: number;
|
|
383
|
+
static names(): {
|
|
384
|
+
[key: string]: string;
|
|
385
|
+
};
|
|
386
|
+
static types(): {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
};
|
|
389
|
+
validate(): void;
|
|
390
|
+
constructor(map?: {
|
|
391
|
+
[key: string]: any;
|
|
392
|
+
});
|
|
393
|
+
}
|
|
257
394
|
export declare class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $dara.Model {
|
|
258
395
|
/**
|
|
259
396
|
* @example
|
|
@@ -1449,6 +1586,7 @@ export declare class GetPrivateAccessApplicationResponseBodyApplication extends
|
|
|
1449
1586
|
*/
|
|
1450
1587
|
createTime?: string;
|
|
1451
1588
|
description?: string;
|
|
1589
|
+
l7Config?: PAL7Config;
|
|
1452
1590
|
l7ProxyDomainAutomatic?: string;
|
|
1453
1591
|
l7ProxyDomainCustom?: string;
|
|
1454
1592
|
/**
|
|
@@ -2736,6 +2874,131 @@ export declare class ListConnectorsResponseBodyConnectors extends $dara.Model {
|
|
|
2736
2874
|
[key: string]: any;
|
|
2737
2875
|
});
|
|
2738
2876
|
}
|
|
2877
|
+
export declare class ListDynamicDisposalProcessesResponseBodyDisposalProcessesDeviceBasicInfo extends $dara.Model {
|
|
2878
|
+
cpu?: string;
|
|
2879
|
+
devTag?: string;
|
|
2880
|
+
devType?: string;
|
|
2881
|
+
disk?: string;
|
|
2882
|
+
hostname?: string;
|
|
2883
|
+
mac?: string;
|
|
2884
|
+
memory?: string;
|
|
2885
|
+
osVersion?: string;
|
|
2886
|
+
static names(): {
|
|
2887
|
+
[key: string]: string;
|
|
2888
|
+
};
|
|
2889
|
+
static types(): {
|
|
2890
|
+
[key: string]: any;
|
|
2891
|
+
};
|
|
2892
|
+
validate(): void;
|
|
2893
|
+
constructor(map?: {
|
|
2894
|
+
[key: string]: any;
|
|
2895
|
+
});
|
|
2896
|
+
}
|
|
2897
|
+
export declare class ListDynamicDisposalProcessesResponseBodyDisposalProcessesDeviceStatusInfo extends $dara.Model {
|
|
2898
|
+
appVersion?: string;
|
|
2899
|
+
department?: string;
|
|
2900
|
+
dlpStatus?: string;
|
|
2901
|
+
internetIp?: string;
|
|
2902
|
+
laStatus?: string;
|
|
2903
|
+
loginStatus?: string;
|
|
2904
|
+
nacStatus?: string;
|
|
2905
|
+
privateIp?: string;
|
|
2906
|
+
saseUserId?: string;
|
|
2907
|
+
username?: string;
|
|
2908
|
+
workshop?: string;
|
|
2909
|
+
ztnaStatus?: string;
|
|
2910
|
+
static names(): {
|
|
2911
|
+
[key: string]: string;
|
|
2912
|
+
};
|
|
2913
|
+
static types(): {
|
|
2914
|
+
[key: string]: any;
|
|
2915
|
+
};
|
|
2916
|
+
validate(): void;
|
|
2917
|
+
constructor(map?: {
|
|
2918
|
+
[key: string]: any;
|
|
2919
|
+
});
|
|
2920
|
+
}
|
|
2921
|
+
export declare class ListDynamicDisposalProcessesResponseBodyDisposalProcesses extends $dara.Model {
|
|
2922
|
+
department?: string;
|
|
2923
|
+
/**
|
|
2924
|
+
* @example
|
|
2925
|
+
* FD7554AD-4CDE-6359-6B49-4FE950606C2C
|
|
2926
|
+
*/
|
|
2927
|
+
devTag?: string;
|
|
2928
|
+
deviceBasicInfo?: ListDynamicDisposalProcessesResponseBodyDisposalProcessesDeviceBasicInfo;
|
|
2929
|
+
deviceStatusInfo?: ListDynamicDisposalProcessesResponseBodyDisposalProcessesDeviceStatusInfo;
|
|
2930
|
+
disposalActions?: string[];
|
|
2931
|
+
/**
|
|
2932
|
+
* @example
|
|
2933
|
+
* dp-xxxxxxxx
|
|
2934
|
+
*/
|
|
2935
|
+
disposalProcessId?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* @example
|
|
2938
|
+
* 1743059249
|
|
2939
|
+
*/
|
|
2940
|
+
disposalTime?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
* @example
|
|
2943
|
+
* dynamic-policy-xxxxxxxx
|
|
2944
|
+
*/
|
|
2945
|
+
dynamicPolicyId?: string;
|
|
2946
|
+
dynamicPolicyName?: string;
|
|
2947
|
+
/**
|
|
2948
|
+
* @example
|
|
2949
|
+
* WANGCHENCHENNBB
|
|
2950
|
+
*/
|
|
2951
|
+
hostname?: string;
|
|
2952
|
+
/**
|
|
2953
|
+
* @example
|
|
2954
|
+
* auto
|
|
2955
|
+
*/
|
|
2956
|
+
recoveryType?: string;
|
|
2957
|
+
/**
|
|
2958
|
+
* @example
|
|
2959
|
+
* {
|
|
2960
|
+
* "Combinator": "OR",
|
|
2961
|
+
* "Rules": [
|
|
2962
|
+
* {
|
|
2963
|
+
* "Operator": "version_gt",
|
|
2964
|
+
* "Values": [
|
|
2965
|
+
* "1"
|
|
2966
|
+
* ],
|
|
2967
|
+
* "RuleType": "device_info",
|
|
2968
|
+
* "Id": "1",
|
|
2969
|
+
* "RuleSubType": "basic_info",
|
|
2970
|
+
* "Name": "app_version"
|
|
2971
|
+
* }
|
|
2972
|
+
* ]
|
|
2973
|
+
* }
|
|
2974
|
+
*/
|
|
2975
|
+
ruleContent?: any;
|
|
2976
|
+
/**
|
|
2977
|
+
* @example
|
|
2978
|
+
* asdqwedg-xzczvzdaf-asfafs
|
|
2979
|
+
*/
|
|
2980
|
+
saseUserId?: string;
|
|
2981
|
+
/**
|
|
2982
|
+
* @example
|
|
2983
|
+
* disposal
|
|
2984
|
+
*/
|
|
2985
|
+
status?: string;
|
|
2986
|
+
/**
|
|
2987
|
+
* @example
|
|
2988
|
+
* xiaoming
|
|
2989
|
+
*/
|
|
2990
|
+
userName?: string;
|
|
2991
|
+
static names(): {
|
|
2992
|
+
[key: string]: string;
|
|
2993
|
+
};
|
|
2994
|
+
static types(): {
|
|
2995
|
+
[key: string]: any;
|
|
2996
|
+
};
|
|
2997
|
+
validate(): void;
|
|
2998
|
+
constructor(map?: {
|
|
2999
|
+
[key: string]: any;
|
|
3000
|
+
});
|
|
3001
|
+
}
|
|
2739
3002
|
export declare class ListDynamicRoutesResponseBodyDynamicRoutes extends $dara.Model {
|
|
2740
3003
|
applicationIds?: string[];
|
|
2741
3004
|
/**
|
|
@@ -3496,20 +3759,49 @@ export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBodyDyn
|
|
|
3496
3759
|
}
|
|
3497
3760
|
export declare class ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes extends $dara.Model {
|
|
3498
3761
|
/**
|
|
3762
|
+
* @remarks
|
|
3763
|
+
* The ID of the identity provider (IdP) for the user group. If the value of UserGroupType is **department**, this parameter is returned.
|
|
3764
|
+
*
|
|
3499
3765
|
* @example
|
|
3500
3766
|
* 12
|
|
3501
3767
|
*/
|
|
3502
3768
|
idpId?: number;
|
|
3503
3769
|
/**
|
|
3770
|
+
* @remarks
|
|
3771
|
+
* The logical operator for the user group. Valid values:
|
|
3772
|
+
*
|
|
3773
|
+
* * **Equal**
|
|
3774
|
+
* * **Unequal**
|
|
3775
|
+
*
|
|
3504
3776
|
* @example
|
|
3505
3777
|
* Equal
|
|
3506
3778
|
*/
|
|
3507
3779
|
relation?: string;
|
|
3508
3780
|
/**
|
|
3781
|
+
* @remarks
|
|
3782
|
+
* The type of the user group, which is the key of the attribute. Valid values:
|
|
3783
|
+
*
|
|
3784
|
+
* * **username**
|
|
3785
|
+
* * **department**
|
|
3786
|
+
* * **email**
|
|
3787
|
+
* * **telephone**
|
|
3788
|
+
*
|
|
3509
3789
|
* @example
|
|
3510
3790
|
* department
|
|
3511
3791
|
*/
|
|
3512
3792
|
userGroupType?: string;
|
|
3793
|
+
/**
|
|
3794
|
+
* @remarks
|
|
3795
|
+
* The value of the attribute.
|
|
3796
|
+
*
|
|
3797
|
+
* * If the value of UserGroupType is **username**, the value of this parameter is a username. The value must be 1 to 128 characters in length and can contain letters, digits, hyphens (-), underscores (_), and periods (.).
|
|
3798
|
+
* * If the value of UserGroupType is **department**, the value of this parameter is a department. Examples: OU=Department 1, OU=SASE DingTalk.
|
|
3799
|
+
* * If the value of UserGroupType is **email**, the value of this parameter is an email address. Example: username@example.com.
|
|
3800
|
+
* * If the value of UserGroupType is **telephone**, the value of this parameter is a mobile phone number. Example: 13900001234.
|
|
3801
|
+
*
|
|
3802
|
+
* @example
|
|
3803
|
+
* OU=Department 1, OU=SASE DingTalk
|
|
3804
|
+
*/
|
|
3513
3805
|
value?: string;
|
|
3514
3806
|
static names(): {
|
|
3515
3807
|
[key: string]: string;
|
|
@@ -3523,50 +3815,133 @@ export declare class ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttrib
|
|
|
3523
3815
|
});
|
|
3524
3816
|
}
|
|
3525
3817
|
export declare class ListPrivateAccessPolicesResponseBodyPolices extends $dara.Model {
|
|
3818
|
+
/**
|
|
3819
|
+
* @remarks
|
|
3820
|
+
* The IDs of the applications that are specified in the private access policy. If the value of ApplicationType is **Application**, this parameter is returned.
|
|
3821
|
+
*/
|
|
3526
3822
|
applicationIds?: string[];
|
|
3527
3823
|
/**
|
|
3824
|
+
* @remarks
|
|
3825
|
+
* The application type of the private access policy. Valid values:
|
|
3826
|
+
*
|
|
3827
|
+
* * **Application**
|
|
3828
|
+
* * **Tag**
|
|
3829
|
+
*
|
|
3528
3830
|
* @example
|
|
3529
3831
|
* Application
|
|
3530
3832
|
*/
|
|
3531
3833
|
applicationType?: string;
|
|
3532
3834
|
/**
|
|
3835
|
+
* @remarks
|
|
3836
|
+
* The creation time of the private access policy.
|
|
3837
|
+
*
|
|
3533
3838
|
* @example
|
|
3534
3839
|
* 2022-07-10 15:50:23
|
|
3535
3840
|
*/
|
|
3536
3841
|
createTime?: string;
|
|
3842
|
+
/**
|
|
3843
|
+
* @remarks
|
|
3844
|
+
* The attributes of the custom user group. The attributes of the custom user group are evaluated by using a logical OR. If an attribute is matched, the policy takes effect.
|
|
3845
|
+
*/
|
|
3537
3846
|
customUserAttributes?: ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes[];
|
|
3847
|
+
/**
|
|
3848
|
+
* @remarks
|
|
3849
|
+
* The description of the private access policy.
|
|
3850
|
+
*
|
|
3851
|
+
* @example
|
|
3852
|
+
* a private access policy
|
|
3853
|
+
*/
|
|
3538
3854
|
description?: string;
|
|
3855
|
+
/**
|
|
3856
|
+
* @remarks
|
|
3857
|
+
* The action that is performed when the security baseline is not met. Valid values:
|
|
3858
|
+
*
|
|
3859
|
+
* * **Block**
|
|
3860
|
+
* * **Observe**
|
|
3861
|
+
*
|
|
3862
|
+
* @example
|
|
3863
|
+
* Block
|
|
3864
|
+
*/
|
|
3539
3865
|
deviceAttributeAction?: string;
|
|
3866
|
+
/**
|
|
3867
|
+
* @remarks
|
|
3868
|
+
* The ID of the security baseline.
|
|
3869
|
+
*
|
|
3870
|
+
* @example
|
|
3871
|
+
* dag-d3f64e8bdd4a****
|
|
3872
|
+
*/
|
|
3540
3873
|
deviceAttributeId?: string;
|
|
3541
3874
|
/**
|
|
3875
|
+
* @remarks
|
|
3876
|
+
* The name of the private access policy.
|
|
3877
|
+
*
|
|
3542
3878
|
* @example
|
|
3543
3879
|
* private_access_policy_name
|
|
3544
3880
|
*/
|
|
3545
3881
|
name?: string;
|
|
3546
3882
|
/**
|
|
3883
|
+
* @remarks
|
|
3884
|
+
* The action in the private access policy. Valid values:
|
|
3885
|
+
*
|
|
3886
|
+
* * **Block**
|
|
3887
|
+
* * **Allow**
|
|
3888
|
+
*
|
|
3547
3889
|
* @example
|
|
3548
3890
|
* Allow
|
|
3549
3891
|
*/
|
|
3550
3892
|
policyAction?: string;
|
|
3551
3893
|
/**
|
|
3894
|
+
* @remarks
|
|
3895
|
+
* The ID of the private access policy.
|
|
3896
|
+
*
|
|
3552
3897
|
* @example
|
|
3553
3898
|
* pa-policy-63b2f1844b86****
|
|
3554
3899
|
*/
|
|
3555
3900
|
policyId?: string;
|
|
3556
3901
|
/**
|
|
3902
|
+
* @remarks
|
|
3903
|
+
* The priority of the private access policy. The value 1 indicates the highest priority.
|
|
3904
|
+
*
|
|
3557
3905
|
* @example
|
|
3558
3906
|
* 1
|
|
3559
3907
|
*/
|
|
3560
3908
|
priority?: number;
|
|
3561
3909
|
/**
|
|
3910
|
+
* @remarks
|
|
3911
|
+
* The status of the private access policy. Valid values:
|
|
3912
|
+
*
|
|
3913
|
+
* * **Enabled**
|
|
3914
|
+
* * **Disabled**
|
|
3915
|
+
*
|
|
3562
3916
|
* @example
|
|
3563
3917
|
* Enabled
|
|
3564
3918
|
*/
|
|
3565
3919
|
status?: string;
|
|
3920
|
+
/**
|
|
3921
|
+
* @remarks
|
|
3922
|
+
* The IDs of the tags that are specified in the private access policy. If the value of ApplicationType is **Tag**, this parameter is returned.
|
|
3923
|
+
*/
|
|
3566
3924
|
tagIds?: string[];
|
|
3925
|
+
/**
|
|
3926
|
+
* @remarks
|
|
3927
|
+
* The ID of the trigger template.
|
|
3928
|
+
*
|
|
3929
|
+
* @example
|
|
3930
|
+
* dag-d3f64e8bdd4a****
|
|
3931
|
+
*/
|
|
3567
3932
|
triggerTemplateId?: string;
|
|
3933
|
+
/**
|
|
3934
|
+
* @remarks
|
|
3935
|
+
* The IDs of user groups in the private access policy. If the value of UserGroupMode is **Normal**, this parameter is returned.
|
|
3936
|
+
*/
|
|
3568
3937
|
userGroupIds?: string[];
|
|
3569
3938
|
/**
|
|
3939
|
+
* @remarks
|
|
3940
|
+
* The type of the user group in the private access policy. Valid values:
|
|
3941
|
+
*
|
|
3942
|
+
* * **Normal**: regular user group.
|
|
3943
|
+
* * **Custom**: custom user group.
|
|
3944
|
+
*
|
|
3570
3945
|
* @example
|
|
3571
3946
|
* Normal
|
|
3572
3947
|
*/
|
|
@@ -5253,6 +5628,28 @@ export declare class UpdatePrivateAccessApplicationRequestPortRanges extends $da
|
|
|
5253
5628
|
[key: string]: any;
|
|
5254
5629
|
});
|
|
5255
5630
|
}
|
|
5631
|
+
export declare class UpdatePrivateAccessApplicationShrinkRequestPortRanges extends $dara.Model {
|
|
5632
|
+
/**
|
|
5633
|
+
* @example
|
|
5634
|
+
* 80
|
|
5635
|
+
*/
|
|
5636
|
+
begin?: number;
|
|
5637
|
+
/**
|
|
5638
|
+
* @example
|
|
5639
|
+
* 81
|
|
5640
|
+
*/
|
|
5641
|
+
end?: number;
|
|
5642
|
+
static names(): {
|
|
5643
|
+
[key: string]: string;
|
|
5644
|
+
};
|
|
5645
|
+
static types(): {
|
|
5646
|
+
[key: string]: any;
|
|
5647
|
+
};
|
|
5648
|
+
validate(): void;
|
|
5649
|
+
constructor(map?: {
|
|
5650
|
+
[key: string]: any;
|
|
5651
|
+
});
|
|
5652
|
+
}
|
|
5256
5653
|
export declare class UpdatePrivateAccessPolicyRequestCustomUserAttributes extends $dara.Model {
|
|
5257
5654
|
/**
|
|
5258
5655
|
* @example
|
|
@@ -5844,11 +6241,15 @@ export declare class DisposalContent extends $dara.Model {
|
|
|
5844
6241
|
* true
|
|
5845
6242
|
*/
|
|
5846
6243
|
alertContent?: string;
|
|
6244
|
+
alertContentEn?: string;
|
|
5847
6245
|
/**
|
|
5848
6246
|
* **if can be null:**
|
|
5849
6247
|
* true
|
|
5850
6248
|
*/
|
|
5851
6249
|
alertTitle?: string;
|
|
6250
|
+
alertTitleEn?: string;
|
|
6251
|
+
noticeContent?: string;
|
|
6252
|
+
noticeContentEn?: string;
|
|
5852
6253
|
/**
|
|
5853
6254
|
* @remarks
|
|
5854
6255
|
* This parameter is required.
|
|
@@ -5869,6 +6270,74 @@ export declare class DisposalContent extends $dara.Model {
|
|
|
5869
6270
|
[key: string]: any;
|
|
5870
6271
|
});
|
|
5871
6272
|
}
|
|
6273
|
+
export declare class PAL7Config extends $dara.Model {
|
|
6274
|
+
bypassConfig?: PAL7ConfigBypassConfig;
|
|
6275
|
+
certId?: string;
|
|
6276
|
+
dnsConfig?: PAL7ConfigDnsConfig;
|
|
6277
|
+
jsHookConfig?: PAL7ConfigJsHookConfig;
|
|
6278
|
+
/**
|
|
6279
|
+
* @example
|
|
6280
|
+
* 逗号分隔的枚举值:automatic,custom
|
|
6281
|
+
*/
|
|
6282
|
+
proxyDomainTypes?: Buffer;
|
|
6283
|
+
requestHeaderRewriteConfig?: PAL7ConfigRequestHeaderRewriteConfig;
|
|
6284
|
+
requestQueryRewriteConfig?: PAL7ConfigRequestQueryRewriteConfig;
|
|
6285
|
+
responseHeaderRewriteConfig?: PAL7ConfigResponseHeaderRewriteConfig;
|
|
6286
|
+
responseRewriteConfig?: PAL7ConfigResponseRewriteConfig;
|
|
6287
|
+
static names(): {
|
|
6288
|
+
[key: string]: string;
|
|
6289
|
+
};
|
|
6290
|
+
static types(): {
|
|
6291
|
+
[key: string]: any;
|
|
6292
|
+
};
|
|
6293
|
+
validate(): void;
|
|
6294
|
+
constructor(map?: {
|
|
6295
|
+
[key: string]: any;
|
|
6296
|
+
});
|
|
6297
|
+
}
|
|
6298
|
+
export declare class PAL7ConfigReplaceRule extends $dara.Model {
|
|
6299
|
+
/**
|
|
6300
|
+
* @example
|
|
6301
|
+
* aaa
|
|
6302
|
+
*/
|
|
6303
|
+
from?: string;
|
|
6304
|
+
/**
|
|
6305
|
+
* @example
|
|
6306
|
+
* bbb
|
|
6307
|
+
*/
|
|
6308
|
+
to?: string;
|
|
6309
|
+
static names(): {
|
|
6310
|
+
[key: string]: string;
|
|
6311
|
+
};
|
|
6312
|
+
static types(): {
|
|
6313
|
+
[key: string]: any;
|
|
6314
|
+
};
|
|
6315
|
+
validate(): void;
|
|
6316
|
+
constructor(map?: {
|
|
6317
|
+
[key: string]: any;
|
|
6318
|
+
});
|
|
6319
|
+
}
|
|
6320
|
+
export declare class PAL7ConfigRewriteOp extends $dara.Model {
|
|
6321
|
+
key?: string;
|
|
6322
|
+
oldValue?: string;
|
|
6323
|
+
/**
|
|
6324
|
+
* @example
|
|
6325
|
+
* add,set,delete,replace
|
|
6326
|
+
*/
|
|
6327
|
+
op?: string;
|
|
6328
|
+
value?: string;
|
|
6329
|
+
valueVariable?: string;
|
|
6330
|
+
static names(): {
|
|
6331
|
+
[key: string]: string;
|
|
6332
|
+
};
|
|
6333
|
+
static types(): {
|
|
6334
|
+
[key: string]: any;
|
|
6335
|
+
};
|
|
6336
|
+
validate(): void;
|
|
6337
|
+
constructor(map?: {
|
|
6338
|
+
[key: string]: any;
|
|
6339
|
+
});
|
|
6340
|
+
}
|
|
5872
6341
|
export declare class RecoveryContent extends $dara.Model {
|
|
5873
6342
|
authReportInterval?: AuthReportInterval;
|
|
5874
6343
|
/**
|
|
@@ -5898,24 +6367,77 @@ export declare class Rule extends $dara.Model {
|
|
|
5898
6367
|
* **if can be null:**
|
|
5899
6368
|
* true
|
|
5900
6369
|
*/
|
|
5901
|
-
name?: string;
|
|
6370
|
+
name?: string;
|
|
6371
|
+
/**
|
|
6372
|
+
* **if can be null:**
|
|
6373
|
+
* true
|
|
6374
|
+
*/
|
|
6375
|
+
operator?: string;
|
|
6376
|
+
/**
|
|
6377
|
+
* **if can be null:**
|
|
6378
|
+
* true
|
|
6379
|
+
*/
|
|
6380
|
+
ruleSubType?: string;
|
|
6381
|
+
/**
|
|
6382
|
+
* **if can be null:**
|
|
6383
|
+
* true
|
|
6384
|
+
*/
|
|
6385
|
+
ruleType?: string;
|
|
6386
|
+
rules?: Rule[];
|
|
6387
|
+
values?: string[];
|
|
6388
|
+
static names(): {
|
|
6389
|
+
[key: string]: string;
|
|
6390
|
+
};
|
|
6391
|
+
static types(): {
|
|
6392
|
+
[key: string]: any;
|
|
6393
|
+
};
|
|
6394
|
+
validate(): void;
|
|
6395
|
+
constructor(map?: {
|
|
6396
|
+
[key: string]: any;
|
|
6397
|
+
});
|
|
6398
|
+
}
|
|
6399
|
+
export declare class UserCertificate extends $dara.Model {
|
|
6400
|
+
/**
|
|
6401
|
+
* @example
|
|
6402
|
+
* cert-aabbccdd
|
|
6403
|
+
*/
|
|
6404
|
+
certId?: string;
|
|
6405
|
+
/**
|
|
6406
|
+
* @example
|
|
6407
|
+
* 用于测试
|
|
6408
|
+
*/
|
|
6409
|
+
certificate?: string;
|
|
6410
|
+
/**
|
|
6411
|
+
* @example
|
|
6412
|
+
* xxxx
|
|
6413
|
+
*/
|
|
6414
|
+
description?: string;
|
|
6415
|
+
dnsNames?: string[];
|
|
6416
|
+
/**
|
|
6417
|
+
* @example
|
|
6418
|
+
* 1734492686
|
|
6419
|
+
*/
|
|
6420
|
+
expTimeUnix?: number;
|
|
6421
|
+
/**
|
|
6422
|
+
* @example
|
|
6423
|
+
* 1734523812
|
|
6424
|
+
*/
|
|
6425
|
+
gmtCreateUnix?: number;
|
|
5902
6426
|
/**
|
|
5903
|
-
*
|
|
5904
|
-
*
|
|
6427
|
+
* @example
|
|
6428
|
+
* 1734523812
|
|
5905
6429
|
*/
|
|
5906
|
-
|
|
6430
|
+
gmtModifiedUnix?: number;
|
|
5907
6431
|
/**
|
|
5908
|
-
*
|
|
5909
|
-
*
|
|
6432
|
+
* @example
|
|
6433
|
+
* 证书1
|
|
5910
6434
|
*/
|
|
5911
|
-
|
|
6435
|
+
name?: string;
|
|
5912
6436
|
/**
|
|
5913
|
-
*
|
|
5914
|
-
*
|
|
6437
|
+
* @example
|
|
6438
|
+
* xxxx
|
|
5915
6439
|
*/
|
|
5916
|
-
|
|
5917
|
-
rules?: Rule[];
|
|
5918
|
-
values?: string[];
|
|
6440
|
+
privateKey?: string;
|
|
5919
6441
|
static names(): {
|
|
5920
6442
|
[key: string]: string;
|
|
5921
6443
|
};
|
|
@@ -6438,6 +6960,7 @@ export declare class CreatePrivateAccessApplicationRequest extends $dara.Model {
|
|
|
6438
6960
|
addresses?: string[];
|
|
6439
6961
|
browserAccessStatus?: string;
|
|
6440
6962
|
description?: string;
|
|
6963
|
+
l7Config?: PAL7Config;
|
|
6441
6964
|
l7ProxyDomainAutomaticPrefix?: string;
|
|
6442
6965
|
l7ProxyDomainCustom?: string;
|
|
6443
6966
|
/**
|
|
@@ -6481,6 +7004,58 @@ export declare class CreatePrivateAccessApplicationRequest extends $dara.Model {
|
|
|
6481
7004
|
[key: string]: any;
|
|
6482
7005
|
});
|
|
6483
7006
|
}
|
|
7007
|
+
export declare class CreatePrivateAccessApplicationShrinkRequest extends $dara.Model {
|
|
7008
|
+
/**
|
|
7009
|
+
* @remarks
|
|
7010
|
+
* This parameter is required.
|
|
7011
|
+
*/
|
|
7012
|
+
addresses?: string[];
|
|
7013
|
+
browserAccessStatus?: string;
|
|
7014
|
+
description?: string;
|
|
7015
|
+
l7ConfigShrink?: string;
|
|
7016
|
+
l7ProxyDomainAutomaticPrefix?: string;
|
|
7017
|
+
l7ProxyDomainCustom?: string;
|
|
7018
|
+
/**
|
|
7019
|
+
* @remarks
|
|
7020
|
+
* This parameter is required.
|
|
7021
|
+
*
|
|
7022
|
+
* @example
|
|
7023
|
+
* private_access_application_name
|
|
7024
|
+
*/
|
|
7025
|
+
name?: string;
|
|
7026
|
+
/**
|
|
7027
|
+
* @remarks
|
|
7028
|
+
* This parameter is required.
|
|
7029
|
+
*/
|
|
7030
|
+
portRanges?: CreatePrivateAccessApplicationShrinkRequestPortRanges[];
|
|
7031
|
+
/**
|
|
7032
|
+
* @remarks
|
|
7033
|
+
* This parameter is required.
|
|
7034
|
+
*
|
|
7035
|
+
* @example
|
|
7036
|
+
* All
|
|
7037
|
+
*/
|
|
7038
|
+
protocol?: string;
|
|
7039
|
+
/**
|
|
7040
|
+
* @remarks
|
|
7041
|
+
* This parameter is required.
|
|
7042
|
+
*
|
|
7043
|
+
* @example
|
|
7044
|
+
* Enabled
|
|
7045
|
+
*/
|
|
7046
|
+
status?: string;
|
|
7047
|
+
tagIds?: string[];
|
|
7048
|
+
static names(): {
|
|
7049
|
+
[key: string]: string;
|
|
7050
|
+
};
|
|
7051
|
+
static types(): {
|
|
7052
|
+
[key: string]: any;
|
|
7053
|
+
};
|
|
7054
|
+
validate(): void;
|
|
7055
|
+
constructor(map?: {
|
|
7056
|
+
[key: string]: any;
|
|
7057
|
+
});
|
|
7058
|
+
}
|
|
6484
7059
|
export declare class CreatePrivateAccessApplicationResponseBody extends $dara.Model {
|
|
6485
7060
|
/**
|
|
6486
7061
|
* @example
|
|
@@ -9676,6 +10251,110 @@ export declare class ListConnectorsResponse extends $dara.Model {
|
|
|
9676
10251
|
[key: string]: any;
|
|
9677
10252
|
});
|
|
9678
10253
|
}
|
|
10254
|
+
export declare class ListDynamicDisposalProcessesRequest extends $dara.Model {
|
|
10255
|
+
/**
|
|
10256
|
+
* @remarks
|
|
10257
|
+
* This parameter is required.
|
|
10258
|
+
*
|
|
10259
|
+
* @example
|
|
10260
|
+
* 1
|
|
10261
|
+
*/
|
|
10262
|
+
currentPage?: number;
|
|
10263
|
+
devTag?: string;
|
|
10264
|
+
/**
|
|
10265
|
+
* @example
|
|
10266
|
+
* none
|
|
10267
|
+
*/
|
|
10268
|
+
disposalAction?: string;
|
|
10269
|
+
/**
|
|
10270
|
+
* @example
|
|
10271
|
+
* dp-xxxxxxxx
|
|
10272
|
+
*/
|
|
10273
|
+
disposalProcessId?: string;
|
|
10274
|
+
/**
|
|
10275
|
+
* @example
|
|
10276
|
+
* 1743143296
|
|
10277
|
+
*/
|
|
10278
|
+
endTime?: number;
|
|
10279
|
+
/**
|
|
10280
|
+
* @remarks
|
|
10281
|
+
* This parameter is required.
|
|
10282
|
+
*
|
|
10283
|
+
* @example
|
|
10284
|
+
* 10
|
|
10285
|
+
*/
|
|
10286
|
+
pageSize?: number;
|
|
10287
|
+
/**
|
|
10288
|
+
* @example
|
|
10289
|
+
* auto
|
|
10290
|
+
*/
|
|
10291
|
+
recoveryType?: string;
|
|
10292
|
+
/**
|
|
10293
|
+
* @example
|
|
10294
|
+
* 1743143296
|
|
10295
|
+
*/
|
|
10296
|
+
startTime?: number;
|
|
10297
|
+
/**
|
|
10298
|
+
* @example
|
|
10299
|
+
* disposal
|
|
10300
|
+
*/
|
|
10301
|
+
status?: string;
|
|
10302
|
+
/**
|
|
10303
|
+
* @example
|
|
10304
|
+
* xiaoming
|
|
10305
|
+
*/
|
|
10306
|
+
userName?: string;
|
|
10307
|
+
static names(): {
|
|
10308
|
+
[key: string]: string;
|
|
10309
|
+
};
|
|
10310
|
+
static types(): {
|
|
10311
|
+
[key: string]: any;
|
|
10312
|
+
};
|
|
10313
|
+
validate(): void;
|
|
10314
|
+
constructor(map?: {
|
|
10315
|
+
[key: string]: any;
|
|
10316
|
+
});
|
|
10317
|
+
}
|
|
10318
|
+
export declare class ListDynamicDisposalProcessesResponseBody extends $dara.Model {
|
|
10319
|
+
disposalProcesses?: ListDynamicDisposalProcessesResponseBodyDisposalProcesses[];
|
|
10320
|
+
/**
|
|
10321
|
+
* @example
|
|
10322
|
+
* BE4FB974-11BC-5453-9BE1-1606A73EACA6
|
|
10323
|
+
*/
|
|
10324
|
+
requestId?: string;
|
|
10325
|
+
/**
|
|
10326
|
+
* @example
|
|
10327
|
+
* 1
|
|
10328
|
+
*/
|
|
10329
|
+
totalNum?: number;
|
|
10330
|
+
static names(): {
|
|
10331
|
+
[key: string]: string;
|
|
10332
|
+
};
|
|
10333
|
+
static types(): {
|
|
10334
|
+
[key: string]: any;
|
|
10335
|
+
};
|
|
10336
|
+
validate(): void;
|
|
10337
|
+
constructor(map?: {
|
|
10338
|
+
[key: string]: any;
|
|
10339
|
+
});
|
|
10340
|
+
}
|
|
10341
|
+
export declare class ListDynamicDisposalProcessesResponse extends $dara.Model {
|
|
10342
|
+
headers?: {
|
|
10343
|
+
[key: string]: string;
|
|
10344
|
+
};
|
|
10345
|
+
statusCode?: number;
|
|
10346
|
+
body?: ListDynamicDisposalProcessesResponseBody;
|
|
10347
|
+
static names(): {
|
|
10348
|
+
[key: string]: string;
|
|
10349
|
+
};
|
|
10350
|
+
static types(): {
|
|
10351
|
+
[key: string]: any;
|
|
10352
|
+
};
|
|
10353
|
+
validate(): void;
|
|
10354
|
+
constructor(map?: {
|
|
10355
|
+
[key: string]: any;
|
|
10356
|
+
});
|
|
10357
|
+
}
|
|
9679
10358
|
export declare class ListDynamicRouteRegionsResponseBody extends $dara.Model {
|
|
9680
10359
|
regions?: string[];
|
|
9681
10360
|
/**
|
|
@@ -10499,13 +11178,28 @@ export declare class ListPrivateAccessApplicationsForDynamicRouteResponse extend
|
|
|
10499
11178
|
}
|
|
10500
11179
|
export declare class ListPrivateAccessPolicesRequest extends $dara.Model {
|
|
10501
11180
|
/**
|
|
11181
|
+
* @remarks
|
|
11182
|
+
* The ID of the office application. Either the ID or tag of the office application is used for queries. You can obtain the value by calling the following operations:
|
|
11183
|
+
*
|
|
11184
|
+
* * [ListPrivateAccessApplications](~~ListPrivateAccessApplications~~): queries office applications.
|
|
11185
|
+
* * [CreatePrivateAccessApplication](~~CreatePrivateAccessApplication~~): creates an office application.
|
|
11186
|
+
*
|
|
10502
11187
|
* @example
|
|
10503
11188
|
* pa-application-e12860ef6c48****
|
|
10504
11189
|
*/
|
|
10505
11190
|
applicationId?: string;
|
|
11191
|
+
/**
|
|
11192
|
+
* @remarks
|
|
11193
|
+
* The name of the office application.
|
|
11194
|
+
*
|
|
11195
|
+
* @example
|
|
11196
|
+
* Office
|
|
11197
|
+
*/
|
|
10506
11198
|
applicationName?: string;
|
|
10507
11199
|
/**
|
|
10508
11200
|
* @remarks
|
|
11201
|
+
* The page number. Valid values: 1 to 10000.
|
|
11202
|
+
*
|
|
10509
11203
|
* This parameter is required.
|
|
10510
11204
|
*
|
|
10511
11205
|
* @example
|
|
@@ -10513,12 +11207,17 @@ export declare class ListPrivateAccessPolicesRequest extends $dara.Model {
|
|
|
10513
11207
|
*/
|
|
10514
11208
|
currentPage?: number;
|
|
10515
11209
|
/**
|
|
11210
|
+
* @remarks
|
|
11211
|
+
* The name of the private access policy. The value must be 1 to 128 characters in length and can contain letters, digits, hyphens (-), underscores (_), and periods (.).
|
|
11212
|
+
*
|
|
10516
11213
|
* @example
|
|
10517
11214
|
* private_access_policy_name
|
|
10518
11215
|
*/
|
|
10519
11216
|
name?: string;
|
|
10520
11217
|
/**
|
|
10521
11218
|
* @remarks
|
|
11219
|
+
* The number of entries per page. Valid values: 1 to 1000.
|
|
11220
|
+
*
|
|
10522
11221
|
* This parameter is required.
|
|
10523
11222
|
*
|
|
10524
11223
|
* @example
|
|
@@ -10526,27 +11225,57 @@ export declare class ListPrivateAccessPolicesRequest extends $dara.Model {
|
|
|
10526
11225
|
*/
|
|
10527
11226
|
pageSize?: number;
|
|
10528
11227
|
/**
|
|
11228
|
+
* @remarks
|
|
11229
|
+
* The action in the private access policy. Valid values:
|
|
11230
|
+
*
|
|
11231
|
+
* * **Block**
|
|
11232
|
+
* * **Allow**
|
|
11233
|
+
*
|
|
10529
11234
|
* @example
|
|
10530
11235
|
* Allow
|
|
10531
11236
|
*/
|
|
10532
11237
|
policyAction?: string;
|
|
11238
|
+
/**
|
|
11239
|
+
* @remarks
|
|
11240
|
+
* The IDs of the private access policies. You can enter up to 100 IDs.
|
|
11241
|
+
*/
|
|
10533
11242
|
policyIds?: string[];
|
|
10534
11243
|
/**
|
|
11244
|
+
* @remarks
|
|
11245
|
+
* The status of the private access policy. Valid values:
|
|
11246
|
+
*
|
|
11247
|
+
* * **Enabled**
|
|
11248
|
+
* * **Disabled**
|
|
11249
|
+
*
|
|
10535
11250
|
* @example
|
|
10536
11251
|
* Enabled
|
|
10537
11252
|
*/
|
|
10538
11253
|
status?: string;
|
|
10539
11254
|
/**
|
|
11255
|
+
* @remarks
|
|
11256
|
+
* The ID of the tag for the office application. Either the ID or tag of the office application is used for queries. You can obtain the value by calling the following operations:
|
|
11257
|
+
*
|
|
11258
|
+
* * [ListPrivateAccessTags](~~ListPrivateAccessTags~~): queries tags for office applications.
|
|
11259
|
+
* * [CreatePrivateAccessTag](~~CreatePrivateAccessTag~~): creates a tag for office applications.
|
|
11260
|
+
*
|
|
10540
11261
|
* @example
|
|
10541
11262
|
* tag-c0cb77857a99****
|
|
10542
11263
|
*/
|
|
10543
11264
|
tagId?: string;
|
|
11265
|
+
/**
|
|
11266
|
+
* @remarks
|
|
11267
|
+
* The name of the tag.
|
|
11268
|
+
*
|
|
11269
|
+
* @example
|
|
11270
|
+
* Cloud service
|
|
11271
|
+
*/
|
|
10544
11272
|
tagName?: string;
|
|
10545
11273
|
/**
|
|
10546
11274
|
* @remarks
|
|
10547
|
-
*
|
|
10548
|
-
*
|
|
10549
|
-
*
|
|
11275
|
+
* The ID of the user group. You can obtain the value by calling the following operations:
|
|
11276
|
+
*
|
|
11277
|
+
* * [ListUserGroups](~~ListUserGroups~~): queries user groups.
|
|
11278
|
+
* * [CreateUserGroup](~~CreateUserGroup~~): creates a user group.
|
|
10550
11279
|
*
|
|
10551
11280
|
* @example
|
|
10552
11281
|
* usergroup-6f1ef2fc56b6****
|
|
@@ -10564,13 +11293,23 @@ export declare class ListPrivateAccessPolicesRequest extends $dara.Model {
|
|
|
10564
11293
|
});
|
|
10565
11294
|
}
|
|
10566
11295
|
export declare class ListPrivateAccessPolicesResponseBody extends $dara.Model {
|
|
11296
|
+
/**
|
|
11297
|
+
* @remarks
|
|
11298
|
+
* The private access policies.
|
|
11299
|
+
*/
|
|
10567
11300
|
polices?: ListPrivateAccessPolicesResponseBodyPolices[];
|
|
10568
11301
|
/**
|
|
11302
|
+
* @remarks
|
|
11303
|
+
* The request ID.
|
|
11304
|
+
*
|
|
10569
11305
|
* @example
|
|
10570
11306
|
* 748CFDC7-1EB6-5B8B-9405-DA76ED5BB60D
|
|
10571
11307
|
*/
|
|
10572
11308
|
requestId?: string;
|
|
10573
11309
|
/**
|
|
11310
|
+
* @remarks
|
|
11311
|
+
* The total number of private access policies.
|
|
11312
|
+
*
|
|
10574
11313
|
* @example
|
|
10575
11314
|
* 1
|
|
10576
11315
|
*/
|
|
@@ -12592,8 +13331,12 @@ export declare class UpdatePrivateAccessApplicationRequest extends $dara.Model {
|
|
|
12592
13331
|
* true
|
|
12593
13332
|
*/
|
|
12594
13333
|
description?: string;
|
|
13334
|
+
l7Config?: PAL7Config;
|
|
12595
13335
|
l7ProxyDomainAutomaticPrefix?: string;
|
|
12596
13336
|
l7ProxyDomainCustom?: string;
|
|
13337
|
+
/**
|
|
13338
|
+
* @deprecated
|
|
13339
|
+
*/
|
|
12597
13340
|
l7ProxyDomainPrivate?: string;
|
|
12598
13341
|
/**
|
|
12599
13342
|
* @example
|
|
@@ -12627,6 +13370,60 @@ export declare class UpdatePrivateAccessApplicationRequest extends $dara.Model {
|
|
|
12627
13370
|
[key: string]: any;
|
|
12628
13371
|
});
|
|
12629
13372
|
}
|
|
13373
|
+
export declare class UpdatePrivateAccessApplicationShrinkRequest extends $dara.Model {
|
|
13374
|
+
addresses?: string[];
|
|
13375
|
+
/**
|
|
13376
|
+
* @remarks
|
|
13377
|
+
* This parameter is required.
|
|
13378
|
+
*
|
|
13379
|
+
* @example
|
|
13380
|
+
* pa-application-e12860ef6c48****
|
|
13381
|
+
*/
|
|
13382
|
+
applicationId?: string;
|
|
13383
|
+
/**
|
|
13384
|
+
* **if can be null:**
|
|
13385
|
+
* true
|
|
13386
|
+
*/
|
|
13387
|
+
description?: string;
|
|
13388
|
+
l7ConfigShrink?: string;
|
|
13389
|
+
l7ProxyDomainAutomaticPrefix?: string;
|
|
13390
|
+
l7ProxyDomainCustom?: string;
|
|
13391
|
+
/**
|
|
13392
|
+
* @deprecated
|
|
13393
|
+
*/
|
|
13394
|
+
l7ProxyDomainPrivate?: string;
|
|
13395
|
+
/**
|
|
13396
|
+
* @example
|
|
13397
|
+
* Cover
|
|
13398
|
+
*/
|
|
13399
|
+
modifyType?: string;
|
|
13400
|
+
portRanges?: UpdatePrivateAccessApplicationShrinkRequestPortRanges[];
|
|
13401
|
+
/**
|
|
13402
|
+
* @example
|
|
13403
|
+
* All
|
|
13404
|
+
*/
|
|
13405
|
+
protocol?: string;
|
|
13406
|
+
/**
|
|
13407
|
+
* @example
|
|
13408
|
+
* Enabled
|
|
13409
|
+
*/
|
|
13410
|
+
status?: string;
|
|
13411
|
+
/**
|
|
13412
|
+
* **if can be null:**
|
|
13413
|
+
* true
|
|
13414
|
+
*/
|
|
13415
|
+
tagIds?: string[];
|
|
13416
|
+
static names(): {
|
|
13417
|
+
[key: string]: string;
|
|
13418
|
+
};
|
|
13419
|
+
static types(): {
|
|
13420
|
+
[key: string]: any;
|
|
13421
|
+
};
|
|
13422
|
+
validate(): void;
|
|
13423
|
+
constructor(map?: {
|
|
13424
|
+
[key: string]: any;
|
|
13425
|
+
});
|
|
13426
|
+
}
|
|
12630
13427
|
export declare class UpdatePrivateAccessApplicationResponseBody extends $dara.Model {
|
|
12631
13428
|
/**
|
|
12632
13429
|
* @example
|
|
@@ -13306,11 +14103,11 @@ export default class Client extends OpenApi {
|
|
|
13306
14103
|
/**
|
|
13307
14104
|
* 创建内网访问应用
|
|
13308
14105
|
*
|
|
13309
|
-
* @param
|
|
14106
|
+
* @param tmpReq - CreatePrivateAccessApplicationRequest
|
|
13310
14107
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
13311
14108
|
* @returns CreatePrivateAccessApplicationResponse
|
|
13312
14109
|
*/
|
|
13313
|
-
createPrivateAccessApplicationWithOptions(
|
|
14110
|
+
createPrivateAccessApplicationWithOptions(tmpReq: CreatePrivateAccessApplicationRequest, runtime: $dara.RuntimeOptions): Promise<CreatePrivateAccessApplicationResponse>;
|
|
13314
14111
|
/**
|
|
13315
14112
|
* 创建内网访问应用
|
|
13316
14113
|
*
|
|
@@ -13989,6 +14786,21 @@ export default class Client extends OpenApi {
|
|
|
13989
14786
|
* @returns ListConnectorsResponse
|
|
13990
14787
|
*/
|
|
13991
14788
|
listConnectors(request: ListConnectorsRequest): Promise<ListConnectorsResponse>;
|
|
14789
|
+
/**
|
|
14790
|
+
* 批量查询动态策略处置流程
|
|
14791
|
+
*
|
|
14792
|
+
* @param request - ListDynamicDisposalProcessesRequest
|
|
14793
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
14794
|
+
* @returns ListDynamicDisposalProcessesResponse
|
|
14795
|
+
*/
|
|
14796
|
+
listDynamicDisposalProcessesWithOptions(request: ListDynamicDisposalProcessesRequest, runtime: $dara.RuntimeOptions): Promise<ListDynamicDisposalProcessesResponse>;
|
|
14797
|
+
/**
|
|
14798
|
+
* 批量查询动态策略处置流程
|
|
14799
|
+
*
|
|
14800
|
+
* @param request - ListDynamicDisposalProcessesRequest
|
|
14801
|
+
* @returns ListDynamicDisposalProcessesResponse
|
|
14802
|
+
*/
|
|
14803
|
+
listDynamicDisposalProcesses(request: ListDynamicDisposalProcessesRequest): Promise<ListDynamicDisposalProcessesResponse>;
|
|
13992
14804
|
/**
|
|
13993
14805
|
* 批量查询动态路由的地域
|
|
13994
14806
|
*
|
|
@@ -14168,7 +14980,7 @@ export default class Client extends OpenApi {
|
|
|
14168
14980
|
*/
|
|
14169
14981
|
listPrivateAccessApplicationsForDynamicRoute(request: ListPrivateAccessApplicationsForDynamicRouteRequest): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse>;
|
|
14170
14982
|
/**
|
|
14171
|
-
*
|
|
14983
|
+
* Queries the private access policies within the current Alibaba Cloud account.
|
|
14172
14984
|
*
|
|
14173
14985
|
* @param request - ListPrivateAccessPolicesRequest
|
|
14174
14986
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -14176,7 +14988,7 @@ export default class Client extends OpenApi {
|
|
|
14176
14988
|
*/
|
|
14177
14989
|
listPrivateAccessPolicesWithOptions(request: ListPrivateAccessPolicesRequest, runtime: $dara.RuntimeOptions): Promise<ListPrivateAccessPolicesResponse>;
|
|
14178
14990
|
/**
|
|
14179
|
-
*
|
|
14991
|
+
* Queries the private access policies within the current Alibaba Cloud account.
|
|
14180
14992
|
*
|
|
14181
14993
|
* @param request - ListPrivateAccessPolicesRequest
|
|
14182
14994
|
* @returns ListPrivateAccessPolicesResponse
|
|
@@ -14425,6 +15237,8 @@ export default class Client extends OpenApi {
|
|
|
14425
15237
|
/**
|
|
14426
15238
|
* 吊销用户登录会话
|
|
14427
15239
|
*
|
|
15240
|
+
* @deprecated OpenAPI RevokeUserSession is deprecated
|
|
15241
|
+
*
|
|
14428
15242
|
* @param request - RevokeUserSessionRequest
|
|
14429
15243
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
14430
15244
|
* @returns RevokeUserSessionResponse
|
|
@@ -14433,6 +15247,8 @@ export default class Client extends OpenApi {
|
|
|
14433
15247
|
/**
|
|
14434
15248
|
* 吊销用户登录会话
|
|
14435
15249
|
*
|
|
15250
|
+
* @deprecated OpenAPI RevokeUserSession is deprecated
|
|
15251
|
+
*
|
|
14436
15252
|
* @param request - RevokeUserSessionRequest
|
|
14437
15253
|
* @returns RevokeUserSessionResponse
|
|
14438
15254
|
*/
|
|
@@ -14590,11 +15406,11 @@ export default class Client extends OpenApi {
|
|
|
14590
15406
|
/**
|
|
14591
15407
|
* 修改内网访问应用
|
|
14592
15408
|
*
|
|
14593
|
-
* @param
|
|
15409
|
+
* @param tmpReq - UpdatePrivateAccessApplicationRequest
|
|
14594
15410
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
14595
15411
|
* @returns UpdatePrivateAccessApplicationResponse
|
|
14596
15412
|
*/
|
|
14597
|
-
updatePrivateAccessApplicationWithOptions(
|
|
15413
|
+
updatePrivateAccessApplicationWithOptions(tmpReq: UpdatePrivateAccessApplicationRequest, runtime: $dara.RuntimeOptions): Promise<UpdatePrivateAccessApplicationResponse>;
|
|
14598
15414
|
/**
|
|
14599
15415
|
* 修改内网访问应用
|
|
14600
15416
|
*
|