@alicloud/csas20230120 1.0.0 → 1.1.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 +450 -181
- package/dist/client.js +954 -418
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +1129 -455
package/dist/client.d.ts
CHANGED
|
@@ -58,6 +58,56 @@ export declare class AttachApplication2ConnectorResponse extends $tea.Model {
|
|
|
58
58
|
[key: string]: any;
|
|
59
59
|
});
|
|
60
60
|
}
|
|
61
|
+
export declare class CreateDynamicRouteRequest extends $tea.Model {
|
|
62
|
+
applicationIds?: string[];
|
|
63
|
+
applicationType?: string;
|
|
64
|
+
description?: string;
|
|
65
|
+
dynamicRouteType?: string;
|
|
66
|
+
name?: string;
|
|
67
|
+
nextHop?: string;
|
|
68
|
+
priority?: number;
|
|
69
|
+
regionIds?: string[];
|
|
70
|
+
status?: string;
|
|
71
|
+
tagIds?: string[];
|
|
72
|
+
static names(): {
|
|
73
|
+
[key: string]: string;
|
|
74
|
+
};
|
|
75
|
+
static types(): {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
};
|
|
78
|
+
constructor(map?: {
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
export declare class CreateDynamicRouteResponseBody extends $tea.Model {
|
|
83
|
+
dynamicRouteId?: string;
|
|
84
|
+
requestId?: string;
|
|
85
|
+
static names(): {
|
|
86
|
+
[key: string]: string;
|
|
87
|
+
};
|
|
88
|
+
static types(): {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
};
|
|
91
|
+
constructor(map?: {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
export declare class CreateDynamicRouteResponse extends $tea.Model {
|
|
96
|
+
headers: {
|
|
97
|
+
[key: string]: string;
|
|
98
|
+
};
|
|
99
|
+
statusCode: number;
|
|
100
|
+
body: CreateDynamicRouteResponseBody;
|
|
101
|
+
static names(): {
|
|
102
|
+
[key: string]: string;
|
|
103
|
+
};
|
|
104
|
+
static types(): {
|
|
105
|
+
[key: string]: any;
|
|
106
|
+
};
|
|
107
|
+
constructor(map?: {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
});
|
|
110
|
+
}
|
|
61
111
|
export declare class CreatePrivateAccessApplicationRequest extends $tea.Model {
|
|
62
112
|
addresses?: string[];
|
|
63
113
|
description?: string;
|
|
@@ -252,10 +302,9 @@ export declare class CreateUserGroupRequest extends $tea.Model {
|
|
|
252
302
|
[key: string]: any;
|
|
253
303
|
});
|
|
254
304
|
}
|
|
255
|
-
export declare class
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
name?: string;
|
|
305
|
+
export declare class CreateUserGroupResponseBody extends $tea.Model {
|
|
306
|
+
requestId?: string;
|
|
307
|
+
userGroupId?: string;
|
|
259
308
|
static names(): {
|
|
260
309
|
[key: string]: string;
|
|
261
310
|
};
|
|
@@ -266,9 +315,36 @@ export declare class CreateUserGroupShrinkRequest extends $tea.Model {
|
|
|
266
315
|
[key: string]: any;
|
|
267
316
|
});
|
|
268
317
|
}
|
|
269
|
-
export declare class
|
|
318
|
+
export declare class CreateUserGroupResponse extends $tea.Model {
|
|
319
|
+
headers: {
|
|
320
|
+
[key: string]: string;
|
|
321
|
+
};
|
|
322
|
+
statusCode: number;
|
|
323
|
+
body: CreateUserGroupResponseBody;
|
|
324
|
+
static names(): {
|
|
325
|
+
[key: string]: string;
|
|
326
|
+
};
|
|
327
|
+
static types(): {
|
|
328
|
+
[key: string]: any;
|
|
329
|
+
};
|
|
330
|
+
constructor(map?: {
|
|
331
|
+
[key: string]: any;
|
|
332
|
+
});
|
|
333
|
+
}
|
|
334
|
+
export declare class DeleteDynamicRouteRequest extends $tea.Model {
|
|
335
|
+
dynamicRouteId?: string;
|
|
336
|
+
static names(): {
|
|
337
|
+
[key: string]: string;
|
|
338
|
+
};
|
|
339
|
+
static types(): {
|
|
340
|
+
[key: string]: any;
|
|
341
|
+
};
|
|
342
|
+
constructor(map?: {
|
|
343
|
+
[key: string]: any;
|
|
344
|
+
});
|
|
345
|
+
}
|
|
346
|
+
export declare class DeleteDynamicRouteResponseBody extends $tea.Model {
|
|
270
347
|
requestId?: string;
|
|
271
|
-
userGroupId?: string;
|
|
272
348
|
static names(): {
|
|
273
349
|
[key: string]: string;
|
|
274
350
|
};
|
|
@@ -279,12 +355,12 @@ export declare class CreateUserGroupResponseBody extends $tea.Model {
|
|
|
279
355
|
[key: string]: any;
|
|
280
356
|
});
|
|
281
357
|
}
|
|
282
|
-
export declare class
|
|
358
|
+
export declare class DeleteDynamicRouteResponse extends $tea.Model {
|
|
283
359
|
headers: {
|
|
284
360
|
[key: string]: string;
|
|
285
361
|
};
|
|
286
362
|
statusCode: number;
|
|
287
|
-
body:
|
|
363
|
+
body: DeleteDynamicRouteResponseBody;
|
|
288
364
|
static names(): {
|
|
289
365
|
[key: string]: string;
|
|
290
366
|
};
|
|
@@ -509,6 +585,47 @@ export declare class DetachApplication2ConnectorResponse extends $tea.Model {
|
|
|
509
585
|
[key: string]: any;
|
|
510
586
|
});
|
|
511
587
|
}
|
|
588
|
+
export declare class GetDynamicRouteRequest extends $tea.Model {
|
|
589
|
+
dynamicRouteId?: string;
|
|
590
|
+
static names(): {
|
|
591
|
+
[key: string]: string;
|
|
592
|
+
};
|
|
593
|
+
static types(): {
|
|
594
|
+
[key: string]: any;
|
|
595
|
+
};
|
|
596
|
+
constructor(map?: {
|
|
597
|
+
[key: string]: any;
|
|
598
|
+
});
|
|
599
|
+
}
|
|
600
|
+
export declare class GetDynamicRouteResponseBody extends $tea.Model {
|
|
601
|
+
dynamicRoute?: GetDynamicRouteResponseBodyDynamicRoute;
|
|
602
|
+
requestId?: string;
|
|
603
|
+
static names(): {
|
|
604
|
+
[key: string]: string;
|
|
605
|
+
};
|
|
606
|
+
static types(): {
|
|
607
|
+
[key: string]: any;
|
|
608
|
+
};
|
|
609
|
+
constructor(map?: {
|
|
610
|
+
[key: string]: any;
|
|
611
|
+
});
|
|
612
|
+
}
|
|
613
|
+
export declare class GetDynamicRouteResponse extends $tea.Model {
|
|
614
|
+
headers: {
|
|
615
|
+
[key: string]: string;
|
|
616
|
+
};
|
|
617
|
+
statusCode: number;
|
|
618
|
+
body: GetDynamicRouteResponseBody;
|
|
619
|
+
static names(): {
|
|
620
|
+
[key: string]: string;
|
|
621
|
+
};
|
|
622
|
+
static types(): {
|
|
623
|
+
[key: string]: any;
|
|
624
|
+
};
|
|
625
|
+
constructor(map?: {
|
|
626
|
+
[key: string]: any;
|
|
627
|
+
});
|
|
628
|
+
}
|
|
512
629
|
export declare class GetPrivateAccessApplicationRequest extends $tea.Model {
|
|
513
630
|
applicationId?: string;
|
|
514
631
|
static names(): {
|
|
@@ -644,18 +761,6 @@ export declare class ListApplicationsForPrivateAccessPolicyRequest extends $tea.
|
|
|
644
761
|
[key: string]: any;
|
|
645
762
|
});
|
|
646
763
|
}
|
|
647
|
-
export declare class ListApplicationsForPrivateAccessPolicyShrinkRequest extends $tea.Model {
|
|
648
|
-
policyIdsShrink?: string;
|
|
649
|
-
static names(): {
|
|
650
|
-
[key: string]: string;
|
|
651
|
-
};
|
|
652
|
-
static types(): {
|
|
653
|
-
[key: string]: any;
|
|
654
|
-
};
|
|
655
|
-
constructor(map?: {
|
|
656
|
-
[key: string]: any;
|
|
657
|
-
});
|
|
658
|
-
}
|
|
659
764
|
export declare class ListApplicationsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
660
765
|
polices?: ListApplicationsForPrivateAccessPolicyResponseBodyPolices[];
|
|
661
766
|
requestId?: string;
|
|
@@ -697,18 +802,6 @@ export declare class ListApplicationsForPrivateAccessTagRequest extends $tea.Mod
|
|
|
697
802
|
[key: string]: any;
|
|
698
803
|
});
|
|
699
804
|
}
|
|
700
|
-
export declare class ListApplicationsForPrivateAccessTagShrinkRequest extends $tea.Model {
|
|
701
|
-
tagIdsShrink?: string;
|
|
702
|
-
static names(): {
|
|
703
|
-
[key: string]: string;
|
|
704
|
-
};
|
|
705
|
-
static types(): {
|
|
706
|
-
[key: string]: any;
|
|
707
|
-
};
|
|
708
|
-
constructor(map?: {
|
|
709
|
-
[key: string]: any;
|
|
710
|
-
});
|
|
711
|
-
}
|
|
712
805
|
export declare class ListApplicationsForPrivateAccessTagResponseBody extends $tea.Model {
|
|
713
806
|
requestId?: string;
|
|
714
807
|
tags?: ListApplicationsForPrivateAccessTagResponseBodyTags[];
|
|
@@ -743,6 +836,8 @@ export declare class ListConnectorsRequest extends $tea.Model {
|
|
|
743
836
|
currentPage?: number;
|
|
744
837
|
name?: string;
|
|
745
838
|
pageSize?: number;
|
|
839
|
+
status?: string;
|
|
840
|
+
switchStatus?: string;
|
|
746
841
|
static names(): {
|
|
747
842
|
[key: string]: string;
|
|
748
843
|
};
|
|
@@ -753,11 +848,10 @@ export declare class ListConnectorsRequest extends $tea.Model {
|
|
|
753
848
|
[key: string]: any;
|
|
754
849
|
});
|
|
755
850
|
}
|
|
756
|
-
export declare class
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
pageSize?: number;
|
|
851
|
+
export declare class ListConnectorsResponseBody extends $tea.Model {
|
|
852
|
+
connectors?: ListConnectorsResponseBodyConnectors[];
|
|
853
|
+
requestId?: string;
|
|
854
|
+
totalNum?: number;
|
|
761
855
|
static names(): {
|
|
762
856
|
[key: string]: string;
|
|
763
857
|
};
|
|
@@ -768,8 +862,24 @@ export declare class ListConnectorsShrinkRequest extends $tea.Model {
|
|
|
768
862
|
[key: string]: any;
|
|
769
863
|
});
|
|
770
864
|
}
|
|
771
|
-
export declare class
|
|
772
|
-
|
|
865
|
+
export declare class ListConnectorsResponse extends $tea.Model {
|
|
866
|
+
headers: {
|
|
867
|
+
[key: string]: string;
|
|
868
|
+
};
|
|
869
|
+
statusCode: number;
|
|
870
|
+
body: ListConnectorsResponseBody;
|
|
871
|
+
static names(): {
|
|
872
|
+
[key: string]: string;
|
|
873
|
+
};
|
|
874
|
+
static types(): {
|
|
875
|
+
[key: string]: any;
|
|
876
|
+
};
|
|
877
|
+
constructor(map?: {
|
|
878
|
+
[key: string]: any;
|
|
879
|
+
});
|
|
880
|
+
}
|
|
881
|
+
export declare class ListDynamicRouteRegionsResponseBody extends $tea.Model {
|
|
882
|
+
regions?: string[];
|
|
773
883
|
requestId?: string;
|
|
774
884
|
totalNum?: number;
|
|
775
885
|
static names(): {
|
|
@@ -782,12 +892,12 @@ export declare class ListConnectorsResponseBody extends $tea.Model {
|
|
|
782
892
|
[key: string]: any;
|
|
783
893
|
});
|
|
784
894
|
}
|
|
785
|
-
export declare class
|
|
895
|
+
export declare class ListDynamicRouteRegionsResponse extends $tea.Model {
|
|
786
896
|
headers: {
|
|
787
897
|
[key: string]: string;
|
|
788
898
|
};
|
|
789
899
|
statusCode: number;
|
|
790
|
-
body:
|
|
900
|
+
body: ListDynamicRouteRegionsResponseBody;
|
|
791
901
|
static names(): {
|
|
792
902
|
[key: string]: string;
|
|
793
903
|
};
|
|
@@ -798,8 +908,16 @@ export declare class ListConnectorsResponse extends $tea.Model {
|
|
|
798
908
|
[key: string]: any;
|
|
799
909
|
});
|
|
800
910
|
}
|
|
801
|
-
export declare class
|
|
802
|
-
|
|
911
|
+
export declare class ListDynamicRoutesRequest extends $tea.Model {
|
|
912
|
+
applicationId?: string;
|
|
913
|
+
currentPage?: number;
|
|
914
|
+
dynamicRouteIds?: string[];
|
|
915
|
+
name?: string;
|
|
916
|
+
nextHop?: string;
|
|
917
|
+
pageSize?: number;
|
|
918
|
+
regionIds?: string[];
|
|
919
|
+
status?: string;
|
|
920
|
+
tagId?: string;
|
|
803
921
|
static names(): {
|
|
804
922
|
[key: string]: string;
|
|
805
923
|
};
|
|
@@ -810,8 +928,10 @@ export declare class ListPolicesForPrivateAccessApplicationRequest extends $tea.
|
|
|
810
928
|
[key: string]: any;
|
|
811
929
|
});
|
|
812
930
|
}
|
|
813
|
-
export declare class
|
|
814
|
-
|
|
931
|
+
export declare class ListDynamicRoutesResponseBody extends $tea.Model {
|
|
932
|
+
dynamicRoutes?: ListDynamicRoutesResponseBodyDynamicRoutes[];
|
|
933
|
+
requestId?: string;
|
|
934
|
+
totalNum?: number;
|
|
815
935
|
static names(): {
|
|
816
936
|
[key: string]: string;
|
|
817
937
|
};
|
|
@@ -822,9 +942,12 @@ export declare class ListPolicesForPrivateAccessApplicationShrinkRequest extends
|
|
|
822
942
|
[key: string]: any;
|
|
823
943
|
});
|
|
824
944
|
}
|
|
825
|
-
export declare class
|
|
826
|
-
|
|
827
|
-
|
|
945
|
+
export declare class ListDynamicRoutesResponse extends $tea.Model {
|
|
946
|
+
headers: {
|
|
947
|
+
[key: string]: string;
|
|
948
|
+
};
|
|
949
|
+
statusCode: number;
|
|
950
|
+
body: ListDynamicRoutesResponseBody;
|
|
828
951
|
static names(): {
|
|
829
952
|
[key: string]: string;
|
|
830
953
|
};
|
|
@@ -835,12 +958,21 @@ export declare class ListPolicesForPrivateAccessApplicationResponseBody extends
|
|
|
835
958
|
[key: string]: any;
|
|
836
959
|
});
|
|
837
960
|
}
|
|
838
|
-
export declare class
|
|
839
|
-
|
|
961
|
+
export declare class ListPolicesForPrivateAccessApplicationRequest extends $tea.Model {
|
|
962
|
+
applicationIds?: string[];
|
|
963
|
+
static names(): {
|
|
840
964
|
[key: string]: string;
|
|
841
965
|
};
|
|
842
|
-
|
|
843
|
-
|
|
966
|
+
static types(): {
|
|
967
|
+
[key: string]: any;
|
|
968
|
+
};
|
|
969
|
+
constructor(map?: {
|
|
970
|
+
[key: string]: any;
|
|
971
|
+
});
|
|
972
|
+
}
|
|
973
|
+
export declare class ListPolicesForPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
974
|
+
applications?: ListPolicesForPrivateAccessApplicationResponseBodyApplications[];
|
|
975
|
+
requestId?: string;
|
|
844
976
|
static names(): {
|
|
845
977
|
[key: string]: string;
|
|
846
978
|
};
|
|
@@ -851,8 +983,12 @@ export declare class ListPolicesForPrivateAccessApplicationResponse extends $tea
|
|
|
851
983
|
[key: string]: any;
|
|
852
984
|
});
|
|
853
985
|
}
|
|
854
|
-
export declare class
|
|
855
|
-
|
|
986
|
+
export declare class ListPolicesForPrivateAccessApplicationResponse extends $tea.Model {
|
|
987
|
+
headers: {
|
|
988
|
+
[key: string]: string;
|
|
989
|
+
};
|
|
990
|
+
statusCode: number;
|
|
991
|
+
body: ListPolicesForPrivateAccessApplicationResponseBody;
|
|
856
992
|
static names(): {
|
|
857
993
|
[key: string]: string;
|
|
858
994
|
};
|
|
@@ -863,8 +999,8 @@ export declare class ListPolicesForPrivateAccessTagRequest extends $tea.Model {
|
|
|
863
999
|
[key: string]: any;
|
|
864
1000
|
});
|
|
865
1001
|
}
|
|
866
|
-
export declare class
|
|
867
|
-
|
|
1002
|
+
export declare class ListPolicesForPrivateAccessTagRequest extends $tea.Model {
|
|
1003
|
+
tagIds?: string[];
|
|
868
1004
|
static names(): {
|
|
869
1005
|
[key: string]: string;
|
|
870
1006
|
};
|
|
@@ -916,18 +1052,6 @@ export declare class ListPolicesForUserGroupRequest extends $tea.Model {
|
|
|
916
1052
|
[key: string]: any;
|
|
917
1053
|
});
|
|
918
1054
|
}
|
|
919
|
-
export declare class ListPolicesForUserGroupShrinkRequest extends $tea.Model {
|
|
920
|
-
userGroupIdsShrink?: string;
|
|
921
|
-
static names(): {
|
|
922
|
-
[key: string]: string;
|
|
923
|
-
};
|
|
924
|
-
static types(): {
|
|
925
|
-
[key: string]: any;
|
|
926
|
-
};
|
|
927
|
-
constructor(map?: {
|
|
928
|
-
[key: string]: any;
|
|
929
|
-
});
|
|
930
|
-
}
|
|
931
1055
|
export declare class ListPolicesForUserGroupResponseBody extends $tea.Model {
|
|
932
1056
|
requestId?: string;
|
|
933
1057
|
userGroups?: ListPolicesForUserGroupResponseBodyUserGroups[];
|
|
@@ -976,15 +1100,10 @@ export declare class ListPrivateAccessApplicationsRequest extends $tea.Model {
|
|
|
976
1100
|
[key: string]: any;
|
|
977
1101
|
});
|
|
978
1102
|
}
|
|
979
|
-
export declare class
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
name?: string;
|
|
984
|
-
pageSize?: number;
|
|
985
|
-
policyId?: string;
|
|
986
|
-
status?: string;
|
|
987
|
-
tagId?: string;
|
|
1103
|
+
export declare class ListPrivateAccessApplicationsResponseBody extends $tea.Model {
|
|
1104
|
+
applications?: ListPrivateAccessApplicationsResponseBodyApplications[];
|
|
1105
|
+
requestId?: string;
|
|
1106
|
+
totalNum?: number;
|
|
988
1107
|
static names(): {
|
|
989
1108
|
[key: string]: string;
|
|
990
1109
|
};
|
|
@@ -995,10 +1114,12 @@ export declare class ListPrivateAccessApplicationsShrinkRequest extends $tea.Mod
|
|
|
995
1114
|
[key: string]: any;
|
|
996
1115
|
});
|
|
997
1116
|
}
|
|
998
|
-
export declare class
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1117
|
+
export declare class ListPrivateAccessApplicationsResponse extends $tea.Model {
|
|
1118
|
+
headers: {
|
|
1119
|
+
[key: string]: string;
|
|
1120
|
+
};
|
|
1121
|
+
statusCode: number;
|
|
1122
|
+
body: ListPrivateAccessApplicationsResponseBody;
|
|
1002
1123
|
static names(): {
|
|
1003
1124
|
[key: string]: string;
|
|
1004
1125
|
};
|
|
@@ -1009,12 +1130,21 @@ export declare class ListPrivateAccessApplicationsResponseBody extends $tea.Mode
|
|
|
1009
1130
|
[key: string]: any;
|
|
1010
1131
|
});
|
|
1011
1132
|
}
|
|
1012
|
-
export declare class
|
|
1013
|
-
|
|
1133
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteRequest extends $tea.Model {
|
|
1134
|
+
dynamicRouteIds?: string[];
|
|
1135
|
+
static names(): {
|
|
1014
1136
|
[key: string]: string;
|
|
1015
1137
|
};
|
|
1016
|
-
|
|
1017
|
-
|
|
1138
|
+
static types(): {
|
|
1139
|
+
[key: string]: any;
|
|
1140
|
+
};
|
|
1141
|
+
constructor(map?: {
|
|
1142
|
+
[key: string]: any;
|
|
1143
|
+
});
|
|
1144
|
+
}
|
|
1145
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBody extends $tea.Model {
|
|
1146
|
+
dynamicRoutes?: ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutes[];
|
|
1147
|
+
requestId?: string;
|
|
1018
1148
|
static names(): {
|
|
1019
1149
|
[key: string]: string;
|
|
1020
1150
|
};
|
|
@@ -1025,16 +1155,12 @@ export declare class ListPrivateAccessApplicationsResponse extends $tea.Model {
|
|
|
1025
1155
|
[key: string]: any;
|
|
1026
1156
|
});
|
|
1027
1157
|
}
|
|
1028
|
-
export declare class
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
policyIds?: string[];
|
|
1035
|
-
status?: string;
|
|
1036
|
-
tagId?: string;
|
|
1037
|
-
userGroupId?: string;
|
|
1158
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteResponse extends $tea.Model {
|
|
1159
|
+
headers: {
|
|
1160
|
+
[key: string]: string;
|
|
1161
|
+
};
|
|
1162
|
+
statusCode: number;
|
|
1163
|
+
body: ListPrivateAccessApplicationsForDynamicRouteResponseBody;
|
|
1038
1164
|
static names(): {
|
|
1039
1165
|
[key: string]: string;
|
|
1040
1166
|
};
|
|
@@ -1045,13 +1171,13 @@ export declare class ListPrivateAccessPolicesRequest extends $tea.Model {
|
|
|
1045
1171
|
[key: string]: any;
|
|
1046
1172
|
});
|
|
1047
1173
|
}
|
|
1048
|
-
export declare class
|
|
1174
|
+
export declare class ListPrivateAccessPolicesRequest extends $tea.Model {
|
|
1049
1175
|
applicationId?: string;
|
|
1050
1176
|
currentPage?: number;
|
|
1051
1177
|
name?: string;
|
|
1052
1178
|
pageSize?: number;
|
|
1053
1179
|
policyAction?: string;
|
|
1054
|
-
|
|
1180
|
+
policyIds?: string[];
|
|
1055
1181
|
status?: string;
|
|
1056
1182
|
tagId?: string;
|
|
1057
1183
|
userGroupId?: string;
|
|
@@ -1112,13 +1238,10 @@ export declare class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
|
1112
1238
|
[key: string]: any;
|
|
1113
1239
|
});
|
|
1114
1240
|
}
|
|
1115
|
-
export declare class
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
pageSize?: number;
|
|
1120
|
-
policyId?: string;
|
|
1121
|
-
tagIdsShrink?: string;
|
|
1241
|
+
export declare class ListPrivateAccessTagsResponseBody extends $tea.Model {
|
|
1242
|
+
requestId?: string;
|
|
1243
|
+
tags?: ListPrivateAccessTagsResponseBodyTags[];
|
|
1244
|
+
totalNum?: number;
|
|
1122
1245
|
static names(): {
|
|
1123
1246
|
[key: string]: string;
|
|
1124
1247
|
};
|
|
@@ -1129,10 +1252,12 @@ export declare class ListPrivateAccessTagsShrinkRequest extends $tea.Model {
|
|
|
1129
1252
|
[key: string]: any;
|
|
1130
1253
|
});
|
|
1131
1254
|
}
|
|
1132
|
-
export declare class
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1255
|
+
export declare class ListPrivateAccessTagsResponse extends $tea.Model {
|
|
1256
|
+
headers: {
|
|
1257
|
+
[key: string]: string;
|
|
1258
|
+
};
|
|
1259
|
+
statusCode: number;
|
|
1260
|
+
body: ListPrivateAccessTagsResponseBody;
|
|
1136
1261
|
static names(): {
|
|
1137
1262
|
[key: string]: string;
|
|
1138
1263
|
};
|
|
@@ -1143,12 +1268,21 @@ export declare class ListPrivateAccessTagsResponseBody extends $tea.Model {
|
|
|
1143
1268
|
[key: string]: any;
|
|
1144
1269
|
});
|
|
1145
1270
|
}
|
|
1146
|
-
export declare class
|
|
1147
|
-
|
|
1271
|
+
export declare class ListPrivateAccessTagsForDynamicRouteRequest extends $tea.Model {
|
|
1272
|
+
dynamicRouteIds?: string[];
|
|
1273
|
+
static names(): {
|
|
1148
1274
|
[key: string]: string;
|
|
1149
1275
|
};
|
|
1150
|
-
|
|
1151
|
-
|
|
1276
|
+
static types(): {
|
|
1277
|
+
[key: string]: any;
|
|
1278
|
+
};
|
|
1279
|
+
constructor(map?: {
|
|
1280
|
+
[key: string]: any;
|
|
1281
|
+
});
|
|
1282
|
+
}
|
|
1283
|
+
export declare class ListPrivateAccessTagsForDynamicRouteResponseBody extends $tea.Model {
|
|
1284
|
+
dynamicRoutes?: ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutes[];
|
|
1285
|
+
requestId?: string;
|
|
1152
1286
|
static names(): {
|
|
1153
1287
|
[key: string]: string;
|
|
1154
1288
|
};
|
|
@@ -1159,8 +1293,12 @@ export declare class ListPrivateAccessTagsResponse extends $tea.Model {
|
|
|
1159
1293
|
[key: string]: any;
|
|
1160
1294
|
});
|
|
1161
1295
|
}
|
|
1162
|
-
export declare class
|
|
1163
|
-
|
|
1296
|
+
export declare class ListPrivateAccessTagsForDynamicRouteResponse extends $tea.Model {
|
|
1297
|
+
headers: {
|
|
1298
|
+
[key: string]: string;
|
|
1299
|
+
};
|
|
1300
|
+
statusCode: number;
|
|
1301
|
+
body: ListPrivateAccessTagsForDynamicRouteResponseBody;
|
|
1164
1302
|
static names(): {
|
|
1165
1303
|
[key: string]: string;
|
|
1166
1304
|
};
|
|
@@ -1171,8 +1309,8 @@ export declare class ListTagsForPrivateAccessApplicationRequest extends $tea.Mod
|
|
|
1171
1309
|
[key: string]: any;
|
|
1172
1310
|
});
|
|
1173
1311
|
}
|
|
1174
|
-
export declare class
|
|
1175
|
-
|
|
1312
|
+
export declare class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
1313
|
+
applicationIds?: string[];
|
|
1176
1314
|
static names(): {
|
|
1177
1315
|
[key: string]: string;
|
|
1178
1316
|
};
|
|
@@ -1224,18 +1362,6 @@ export declare class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
|
1224
1362
|
[key: string]: any;
|
|
1225
1363
|
});
|
|
1226
1364
|
}
|
|
1227
|
-
export declare class ListTagsForPrivateAccessPolicyShrinkRequest extends $tea.Model {
|
|
1228
|
-
policyIdsShrink?: string;
|
|
1229
|
-
static names(): {
|
|
1230
|
-
[key: string]: string;
|
|
1231
|
-
};
|
|
1232
|
-
static types(): {
|
|
1233
|
-
[key: string]: any;
|
|
1234
|
-
};
|
|
1235
|
-
constructor(map?: {
|
|
1236
|
-
[key: string]: any;
|
|
1237
|
-
});
|
|
1238
|
-
}
|
|
1239
1365
|
export declare class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1240
1366
|
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
1241
1367
|
requestId?: string;
|
|
@@ -1282,23 +1408,6 @@ export declare class ListUserGroupsRequest extends $tea.Model {
|
|
|
1282
1408
|
[key: string]: any;
|
|
1283
1409
|
});
|
|
1284
1410
|
}
|
|
1285
|
-
export declare class ListUserGroupsShrinkRequest extends $tea.Model {
|
|
1286
|
-
attributeValue?: string;
|
|
1287
|
-
currentPage?: number;
|
|
1288
|
-
name?: string;
|
|
1289
|
-
PAPolicyId?: string;
|
|
1290
|
-
pageSize?: number;
|
|
1291
|
-
userGroupIdsShrink?: string;
|
|
1292
|
-
static names(): {
|
|
1293
|
-
[key: string]: string;
|
|
1294
|
-
};
|
|
1295
|
-
static types(): {
|
|
1296
|
-
[key: string]: any;
|
|
1297
|
-
};
|
|
1298
|
-
constructor(map?: {
|
|
1299
|
-
[key: string]: any;
|
|
1300
|
-
});
|
|
1301
|
-
}
|
|
1302
1411
|
export declare class ListUserGroupsResponseBody extends $tea.Model {
|
|
1303
1412
|
requestId?: string;
|
|
1304
1413
|
totalNum?: number;
|
|
@@ -1341,8 +1450,9 @@ export declare class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Mo
|
|
|
1341
1450
|
[key: string]: any;
|
|
1342
1451
|
});
|
|
1343
1452
|
}
|
|
1344
|
-
export declare class
|
|
1345
|
-
|
|
1453
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1454
|
+
polices?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolices[];
|
|
1455
|
+
requestId?: string;
|
|
1346
1456
|
static names(): {
|
|
1347
1457
|
[key: string]: string;
|
|
1348
1458
|
};
|
|
@@ -1353,8 +1463,46 @@ export declare class ListUserGroupsForPrivateAccessPolicyShrinkRequest extends $
|
|
|
1353
1463
|
[key: string]: any;
|
|
1354
1464
|
});
|
|
1355
1465
|
}
|
|
1356
|
-
export declare class
|
|
1357
|
-
|
|
1466
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1467
|
+
headers: {
|
|
1468
|
+
[key: string]: string;
|
|
1469
|
+
};
|
|
1470
|
+
statusCode: number;
|
|
1471
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
1472
|
+
static names(): {
|
|
1473
|
+
[key: string]: string;
|
|
1474
|
+
};
|
|
1475
|
+
static types(): {
|
|
1476
|
+
[key: string]: any;
|
|
1477
|
+
};
|
|
1478
|
+
constructor(map?: {
|
|
1479
|
+
[key: string]: any;
|
|
1480
|
+
});
|
|
1481
|
+
}
|
|
1482
|
+
export declare class UpdateDynamicRouteRequest extends $tea.Model {
|
|
1483
|
+
applicationIds?: string[];
|
|
1484
|
+
applicationType?: string;
|
|
1485
|
+
description?: string;
|
|
1486
|
+
dynamicRouteId?: string;
|
|
1487
|
+
dynamicRouteType?: string;
|
|
1488
|
+
modifyType?: string;
|
|
1489
|
+
name?: string;
|
|
1490
|
+
nextHop?: string;
|
|
1491
|
+
priority?: number;
|
|
1492
|
+
regionIds?: string[];
|
|
1493
|
+
status?: string;
|
|
1494
|
+
tagIds?: string[];
|
|
1495
|
+
static names(): {
|
|
1496
|
+
[key: string]: string;
|
|
1497
|
+
};
|
|
1498
|
+
static types(): {
|
|
1499
|
+
[key: string]: any;
|
|
1500
|
+
};
|
|
1501
|
+
constructor(map?: {
|
|
1502
|
+
[key: string]: any;
|
|
1503
|
+
});
|
|
1504
|
+
}
|
|
1505
|
+
export declare class UpdateDynamicRouteResponseBody extends $tea.Model {
|
|
1358
1506
|
requestId?: string;
|
|
1359
1507
|
static names(): {
|
|
1360
1508
|
[key: string]: string;
|
|
@@ -1366,12 +1514,12 @@ export declare class ListUserGroupsForPrivateAccessPolicyResponseBody extends $t
|
|
|
1366
1514
|
[key: string]: any;
|
|
1367
1515
|
});
|
|
1368
1516
|
}
|
|
1369
|
-
export declare class
|
|
1517
|
+
export declare class UpdateDynamicRouteResponse extends $tea.Model {
|
|
1370
1518
|
headers: {
|
|
1371
1519
|
[key: string]: string;
|
|
1372
1520
|
};
|
|
1373
1521
|
statusCode: number;
|
|
1374
|
-
body:
|
|
1522
|
+
body: UpdateDynamicRouteResponseBody;
|
|
1375
1523
|
static names(): {
|
|
1376
1524
|
[key: string]: string;
|
|
1377
1525
|
};
|
|
@@ -1537,21 +1685,6 @@ export declare class UpdateUserGroupRequest extends $tea.Model {
|
|
|
1537
1685
|
[key: string]: any;
|
|
1538
1686
|
});
|
|
1539
1687
|
}
|
|
1540
|
-
export declare class UpdateUserGroupShrinkRequest extends $tea.Model {
|
|
1541
|
-
attributesShrink?: string;
|
|
1542
|
-
description?: string;
|
|
1543
|
-
modifyType?: string;
|
|
1544
|
-
userGroupId?: string;
|
|
1545
|
-
static names(): {
|
|
1546
|
-
[key: string]: string;
|
|
1547
|
-
};
|
|
1548
|
-
static types(): {
|
|
1549
|
-
[key: string]: any;
|
|
1550
|
-
};
|
|
1551
|
-
constructor(map?: {
|
|
1552
|
-
[key: string]: any;
|
|
1553
|
-
});
|
|
1554
|
-
}
|
|
1555
1688
|
export declare class UpdateUserGroupResponseBody extends $tea.Model {
|
|
1556
1689
|
requestId?: string;
|
|
1557
1690
|
static names(): {
|
|
@@ -1623,6 +1756,29 @@ export declare class CreateUserGroupRequestAttributes extends $tea.Model {
|
|
|
1623
1756
|
[key: string]: any;
|
|
1624
1757
|
});
|
|
1625
1758
|
}
|
|
1759
|
+
export declare class GetDynamicRouteResponseBodyDynamicRoute extends $tea.Model {
|
|
1760
|
+
applicationIds?: string[];
|
|
1761
|
+
applicationType?: string;
|
|
1762
|
+
createTime?: string;
|
|
1763
|
+
description?: string;
|
|
1764
|
+
dynamicRouteId?: string;
|
|
1765
|
+
dynamicRouteType?: string;
|
|
1766
|
+
name?: string;
|
|
1767
|
+
nextHop?: string;
|
|
1768
|
+
priority?: number;
|
|
1769
|
+
regionIds?: string[];
|
|
1770
|
+
status?: string;
|
|
1771
|
+
tagIds?: string[];
|
|
1772
|
+
static names(): {
|
|
1773
|
+
[key: string]: string;
|
|
1774
|
+
};
|
|
1775
|
+
static types(): {
|
|
1776
|
+
[key: string]: any;
|
|
1777
|
+
};
|
|
1778
|
+
constructor(map?: {
|
|
1779
|
+
[key: string]: any;
|
|
1780
|
+
});
|
|
1781
|
+
}
|
|
1626
1782
|
export declare class GetPrivateAccessApplicationResponseBodyApplicationPortRanges extends $tea.Model {
|
|
1627
1783
|
begin?: number;
|
|
1628
1784
|
end?: number;
|
|
@@ -1862,6 +2018,29 @@ export declare class ListConnectorsResponseBodyConnectors extends $tea.Model {
|
|
|
1862
2018
|
[key: string]: any;
|
|
1863
2019
|
});
|
|
1864
2020
|
}
|
|
2021
|
+
export declare class ListDynamicRoutesResponseBodyDynamicRoutes extends $tea.Model {
|
|
2022
|
+
applicationIds?: string[];
|
|
2023
|
+
applicationType?: string;
|
|
2024
|
+
createTime?: string;
|
|
2025
|
+
description?: string;
|
|
2026
|
+
dynamicRouteId?: string;
|
|
2027
|
+
dynamicRouteType?: string;
|
|
2028
|
+
name?: string;
|
|
2029
|
+
nextHop?: string;
|
|
2030
|
+
priority?: number;
|
|
2031
|
+
regionIds?: string[];
|
|
2032
|
+
status?: string;
|
|
2033
|
+
tagIds?: string[];
|
|
2034
|
+
static names(): {
|
|
2035
|
+
[key: string]: string;
|
|
2036
|
+
};
|
|
2037
|
+
static types(): {
|
|
2038
|
+
[key: string]: any;
|
|
2039
|
+
};
|
|
2040
|
+
constructor(map?: {
|
|
2041
|
+
[key: string]: any;
|
|
2042
|
+
});
|
|
2043
|
+
}
|
|
1865
2044
|
export declare class ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPoliciesCustomUserAttributes extends $tea.Model {
|
|
1866
2045
|
idpId?: number;
|
|
1867
2046
|
relation?: string;
|
|
@@ -2021,6 +2200,51 @@ export declare class ListPrivateAccessApplicationsResponseBodyApplications exten
|
|
|
2021
2200
|
[key: string]: any;
|
|
2022
2201
|
});
|
|
2023
2202
|
}
|
|
2203
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutesApplicationsPortRanges extends $tea.Model {
|
|
2204
|
+
begin?: number;
|
|
2205
|
+
end?: number;
|
|
2206
|
+
static names(): {
|
|
2207
|
+
[key: string]: string;
|
|
2208
|
+
};
|
|
2209
|
+
static types(): {
|
|
2210
|
+
[key: string]: any;
|
|
2211
|
+
};
|
|
2212
|
+
constructor(map?: {
|
|
2213
|
+
[key: string]: any;
|
|
2214
|
+
});
|
|
2215
|
+
}
|
|
2216
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutesApplications extends $tea.Model {
|
|
2217
|
+
addresses?: string[];
|
|
2218
|
+
applicationId?: string;
|
|
2219
|
+
createTime?: string;
|
|
2220
|
+
description?: string;
|
|
2221
|
+
name?: string;
|
|
2222
|
+
portRanges?: ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutesApplicationsPortRanges[];
|
|
2223
|
+
protocol?: string;
|
|
2224
|
+
status?: string;
|
|
2225
|
+
static names(): {
|
|
2226
|
+
[key: string]: string;
|
|
2227
|
+
};
|
|
2228
|
+
static types(): {
|
|
2229
|
+
[key: string]: any;
|
|
2230
|
+
};
|
|
2231
|
+
constructor(map?: {
|
|
2232
|
+
[key: string]: any;
|
|
2233
|
+
});
|
|
2234
|
+
}
|
|
2235
|
+
export declare class ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutes extends $tea.Model {
|
|
2236
|
+
applications?: ListPrivateAccessApplicationsForDynamicRouteResponseBodyDynamicRoutesApplications[];
|
|
2237
|
+
dynamicRouteId?: string;
|
|
2238
|
+
static names(): {
|
|
2239
|
+
[key: string]: string;
|
|
2240
|
+
};
|
|
2241
|
+
static types(): {
|
|
2242
|
+
[key: string]: any;
|
|
2243
|
+
};
|
|
2244
|
+
constructor(map?: {
|
|
2245
|
+
[key: string]: any;
|
|
2246
|
+
});
|
|
2247
|
+
}
|
|
2024
2248
|
export declare class ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes extends $tea.Model {
|
|
2025
2249
|
idpId?: number;
|
|
2026
2250
|
relation?: string;
|
|
@@ -2078,6 +2302,35 @@ export declare class ListPrivateAccessTagsResponseBodyTags extends $tea.Model {
|
|
|
2078
2302
|
[key: string]: any;
|
|
2079
2303
|
});
|
|
2080
2304
|
}
|
|
2305
|
+
export declare class ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutesTags extends $tea.Model {
|
|
2306
|
+
createTime?: string;
|
|
2307
|
+
description?: string;
|
|
2308
|
+
name?: string;
|
|
2309
|
+
tagId?: string;
|
|
2310
|
+
tagType?: string;
|
|
2311
|
+
static names(): {
|
|
2312
|
+
[key: string]: string;
|
|
2313
|
+
};
|
|
2314
|
+
static types(): {
|
|
2315
|
+
[key: string]: any;
|
|
2316
|
+
};
|
|
2317
|
+
constructor(map?: {
|
|
2318
|
+
[key: string]: any;
|
|
2319
|
+
});
|
|
2320
|
+
}
|
|
2321
|
+
export declare class ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutes extends $tea.Model {
|
|
2322
|
+
dynamicRouteId?: string;
|
|
2323
|
+
tags?: ListPrivateAccessTagsForDynamicRouteResponseBodyDynamicRoutesTags[];
|
|
2324
|
+
static names(): {
|
|
2325
|
+
[key: string]: string;
|
|
2326
|
+
};
|
|
2327
|
+
static types(): {
|
|
2328
|
+
[key: string]: any;
|
|
2329
|
+
};
|
|
2330
|
+
constructor(map?: {
|
|
2331
|
+
[key: string]: any;
|
|
2332
|
+
});
|
|
2333
|
+
}
|
|
2081
2334
|
export declare class ListTagsForPrivateAccessApplicationResponseBodyApplicationsTags extends $tea.Model {
|
|
2082
2335
|
createTime?: string;
|
|
2083
2336
|
description?: string;
|
|
@@ -2261,14 +2514,18 @@ export default class Client extends OpenApi {
|
|
|
2261
2514
|
}, endpoint: string): string;
|
|
2262
2515
|
attachApplication2ConnectorWithOptions(tmpReq: AttachApplication2ConnectorRequest, runtime: $Util.RuntimeOptions): Promise<AttachApplication2ConnectorResponse>;
|
|
2263
2516
|
attachApplication2Connector(request: AttachApplication2ConnectorRequest): Promise<AttachApplication2ConnectorResponse>;
|
|
2517
|
+
createDynamicRouteWithOptions(request: CreateDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<CreateDynamicRouteResponse>;
|
|
2518
|
+
createDynamicRoute(request: CreateDynamicRouteRequest): Promise<CreateDynamicRouteResponse>;
|
|
2264
2519
|
createPrivateAccessApplicationWithOptions(tmpReq: CreatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessApplicationResponse>;
|
|
2265
2520
|
createPrivateAccessApplication(request: CreatePrivateAccessApplicationRequest): Promise<CreatePrivateAccessApplicationResponse>;
|
|
2266
2521
|
createPrivateAccessPolicyWithOptions(tmpReq: CreatePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessPolicyResponse>;
|
|
2267
2522
|
createPrivateAccessPolicy(request: CreatePrivateAccessPolicyRequest): Promise<CreatePrivateAccessPolicyResponse>;
|
|
2268
2523
|
createPrivateAccessTagWithOptions(request: CreatePrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessTagResponse>;
|
|
2269
2524
|
createPrivateAccessTag(request: CreatePrivateAccessTagRequest): Promise<CreatePrivateAccessTagResponse>;
|
|
2270
|
-
createUserGroupWithOptions(
|
|
2525
|
+
createUserGroupWithOptions(request: CreateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateUserGroupResponse>;
|
|
2271
2526
|
createUserGroup(request: CreateUserGroupRequest): Promise<CreateUserGroupResponse>;
|
|
2527
|
+
deleteDynamicRouteWithOptions(request: DeleteDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDynamicRouteResponse>;
|
|
2528
|
+
deleteDynamicRoute(request: DeleteDynamicRouteRequest): Promise<DeleteDynamicRouteResponse>;
|
|
2272
2529
|
deletePrivateAccessApplicationWithOptions(request: DeletePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateAccessApplicationResponse>;
|
|
2273
2530
|
deletePrivateAccessApplication(request: DeletePrivateAccessApplicationRequest): Promise<DeletePrivateAccessApplicationResponse>;
|
|
2274
2531
|
deletePrivateAccessPolicyWithOptions(request: DeletePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateAccessPolicyResponse>;
|
|
@@ -2279,42 +2536,54 @@ export default class Client extends OpenApi {
|
|
|
2279
2536
|
deleteUserGroup(request: DeleteUserGroupRequest): Promise<DeleteUserGroupResponse>;
|
|
2280
2537
|
detachApplication2ConnectorWithOptions(tmpReq: DetachApplication2ConnectorRequest, runtime: $Util.RuntimeOptions): Promise<DetachApplication2ConnectorResponse>;
|
|
2281
2538
|
detachApplication2Connector(request: DetachApplication2ConnectorRequest): Promise<DetachApplication2ConnectorResponse>;
|
|
2539
|
+
getDynamicRouteWithOptions(request: GetDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<GetDynamicRouteResponse>;
|
|
2540
|
+
getDynamicRoute(request: GetDynamicRouteRequest): Promise<GetDynamicRouteResponse>;
|
|
2282
2541
|
getPrivateAccessApplicationWithOptions(request: GetPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetPrivateAccessApplicationResponse>;
|
|
2283
2542
|
getPrivateAccessApplication(request: GetPrivateAccessApplicationRequest): Promise<GetPrivateAccessApplicationResponse>;
|
|
2284
2543
|
getPrivateAccessPolicyWithOptions(request: GetPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetPrivateAccessPolicyResponse>;
|
|
2285
2544
|
getPrivateAccessPolicy(request: GetPrivateAccessPolicyRequest): Promise<GetPrivateAccessPolicyResponse>;
|
|
2286
2545
|
getUserGroupWithOptions(request: GetUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetUserGroupResponse>;
|
|
2287
2546
|
getUserGroup(request: GetUserGroupRequest): Promise<GetUserGroupResponse>;
|
|
2288
|
-
listApplicationsForPrivateAccessPolicyWithOptions(
|
|
2547
|
+
listApplicationsForPrivateAccessPolicyWithOptions(request: ListApplicationsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForPrivateAccessPolicyResponse>;
|
|
2289
2548
|
listApplicationsForPrivateAccessPolicy(request: ListApplicationsForPrivateAccessPolicyRequest): Promise<ListApplicationsForPrivateAccessPolicyResponse>;
|
|
2290
|
-
listApplicationsForPrivateAccessTagWithOptions(
|
|
2549
|
+
listApplicationsForPrivateAccessTagWithOptions(request: ListApplicationsForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForPrivateAccessTagResponse>;
|
|
2291
2550
|
listApplicationsForPrivateAccessTag(request: ListApplicationsForPrivateAccessTagRequest): Promise<ListApplicationsForPrivateAccessTagResponse>;
|
|
2292
|
-
listConnectorsWithOptions(
|
|
2551
|
+
listConnectorsWithOptions(request: ListConnectorsRequest, runtime: $Util.RuntimeOptions): Promise<ListConnectorsResponse>;
|
|
2293
2552
|
listConnectors(request: ListConnectorsRequest): Promise<ListConnectorsResponse>;
|
|
2294
|
-
|
|
2553
|
+
listDynamicRouteRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<ListDynamicRouteRegionsResponse>;
|
|
2554
|
+
listDynamicRouteRegions(): Promise<ListDynamicRouteRegionsResponse>;
|
|
2555
|
+
listDynamicRoutesWithOptions(request: ListDynamicRoutesRequest, runtime: $Util.RuntimeOptions): Promise<ListDynamicRoutesResponse>;
|
|
2556
|
+
listDynamicRoutes(request: ListDynamicRoutesRequest): Promise<ListDynamicRoutesResponse>;
|
|
2557
|
+
listPolicesForPrivateAccessApplicationWithOptions(request: ListPolicesForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessApplicationResponse>;
|
|
2295
2558
|
listPolicesForPrivateAccessApplication(request: ListPolicesForPrivateAccessApplicationRequest): Promise<ListPolicesForPrivateAccessApplicationResponse>;
|
|
2296
|
-
listPolicesForPrivateAccessTagWithOptions(
|
|
2559
|
+
listPolicesForPrivateAccessTagWithOptions(request: ListPolicesForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
2297
2560
|
listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
2298
|
-
listPolicesForUserGroupWithOptions(
|
|
2561
|
+
listPolicesForUserGroupWithOptions(request: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse>;
|
|
2299
2562
|
listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse>;
|
|
2300
|
-
listPrivateAccessApplicationsWithOptions(
|
|
2563
|
+
listPrivateAccessApplicationsWithOptions(request: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse>;
|
|
2301
2564
|
listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse>;
|
|
2302
|
-
|
|
2565
|
+
listPrivateAccessApplicationsForDynamicRouteWithOptions(request: ListPrivateAccessApplicationsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse>;
|
|
2566
|
+
listPrivateAccessApplicationsForDynamicRoute(request: ListPrivateAccessApplicationsForDynamicRouteRequest): Promise<ListPrivateAccessApplicationsForDynamicRouteResponse>;
|
|
2567
|
+
listPrivateAccessPolicesWithOptions(request: ListPrivateAccessPolicesRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessPolicesResponse>;
|
|
2303
2568
|
listPrivateAccessPolices(request: ListPrivateAccessPolicesRequest): Promise<ListPrivateAccessPolicesResponse>;
|
|
2304
|
-
listPrivateAccessTagsWithOptions(
|
|
2569
|
+
listPrivateAccessTagsWithOptions(request: ListPrivateAccessTagsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsResponse>;
|
|
2305
2570
|
listPrivateAccessTags(request: ListPrivateAccessTagsRequest): Promise<ListPrivateAccessTagsResponse>;
|
|
2306
|
-
|
|
2571
|
+
listPrivateAccessTagsForDynamicRouteWithOptions(request: ListPrivateAccessTagsForDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsForDynamicRouteResponse>;
|
|
2572
|
+
listPrivateAccessTagsForDynamicRoute(request: ListPrivateAccessTagsForDynamicRouteRequest): Promise<ListPrivateAccessTagsForDynamicRouteResponse>;
|
|
2573
|
+
listTagsForPrivateAccessApplicationWithOptions(request: ListTagsForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessApplicationResponse>;
|
|
2307
2574
|
listTagsForPrivateAccessApplication(request: ListTagsForPrivateAccessApplicationRequest): Promise<ListTagsForPrivateAccessApplicationResponse>;
|
|
2308
|
-
listTagsForPrivateAccessPolicyWithOptions(
|
|
2575
|
+
listTagsForPrivateAccessPolicyWithOptions(request: ListTagsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessPolicyResponse>;
|
|
2309
2576
|
listTagsForPrivateAccessPolicy(request: ListTagsForPrivateAccessPolicyRequest): Promise<ListTagsForPrivateAccessPolicyResponse>;
|
|
2310
|
-
listUserGroupsWithOptions(
|
|
2577
|
+
listUserGroupsWithOptions(request: ListUserGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsResponse>;
|
|
2311
2578
|
listUserGroups(request: ListUserGroupsRequest): Promise<ListUserGroupsResponse>;
|
|
2312
|
-
listUserGroupsForPrivateAccessPolicyWithOptions(
|
|
2579
|
+
listUserGroupsForPrivateAccessPolicyWithOptions(request: ListUserGroupsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsForPrivateAccessPolicyResponse>;
|
|
2313
2580
|
listUserGroupsForPrivateAccessPolicy(request: ListUserGroupsForPrivateAccessPolicyRequest): Promise<ListUserGroupsForPrivateAccessPolicyResponse>;
|
|
2581
|
+
updateDynamicRouteWithOptions(request: UpdateDynamicRouteRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDynamicRouteResponse>;
|
|
2582
|
+
updateDynamicRoute(request: UpdateDynamicRouteRequest): Promise<UpdateDynamicRouteResponse>;
|
|
2314
2583
|
updatePrivateAccessApplicationWithOptions(tmpReq: UpdatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessApplicationResponse>;
|
|
2315
2584
|
updatePrivateAccessApplication(request: UpdatePrivateAccessApplicationRequest): Promise<UpdatePrivateAccessApplicationResponse>;
|
|
2316
2585
|
updatePrivateAccessPolicyWithOptions(tmpReq: UpdatePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessPolicyResponse>;
|
|
2317
2586
|
updatePrivateAccessPolicy(request: UpdatePrivateAccessPolicyRequest): Promise<UpdatePrivateAccessPolicyResponse>;
|
|
2318
|
-
updateUserGroupWithOptions(
|
|
2587
|
+
updateUserGroupWithOptions(request: UpdateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserGroupResponse>;
|
|
2319
2588
|
updateUserGroup(request: UpdateUserGroupRequest): Promise<UpdateUserGroupResponse>;
|
|
2320
2589
|
}
|