@alicloud/csas20230120 1.0.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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +2320 -0
- package/dist/client.js +4183 -0
- package/dist/client.js.map +1 -0
- package/package.json +32 -0
- package/src/client.ts +5154 -0
package/dist/client.d.ts
ADDED
|
@@ -0,0 +1,2320 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*/
|
|
4
|
+
import * as $Util from '@alicloud/tea-util';
|
|
5
|
+
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
|
+
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
+
export declare class AttachApplication2ConnectorRequest extends $tea.Model {
|
|
8
|
+
applicationIds?: string[];
|
|
9
|
+
connectorId?: string;
|
|
10
|
+
static names(): {
|
|
11
|
+
[key: string]: string;
|
|
12
|
+
};
|
|
13
|
+
static types(): {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
};
|
|
16
|
+
constructor(map?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
});
|
|
19
|
+
}
|
|
20
|
+
export declare class AttachApplication2ConnectorShrinkRequest extends $tea.Model {
|
|
21
|
+
applicationIdsShrink?: string;
|
|
22
|
+
connectorId?: string;
|
|
23
|
+
static names(): {
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
};
|
|
26
|
+
static types(): {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
};
|
|
29
|
+
constructor(map?: {
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
export declare class AttachApplication2ConnectorResponseBody extends $tea.Model {
|
|
34
|
+
requestId?: string;
|
|
35
|
+
static names(): {
|
|
36
|
+
[key: string]: string;
|
|
37
|
+
};
|
|
38
|
+
static types(): {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
};
|
|
41
|
+
constructor(map?: {
|
|
42
|
+
[key: string]: any;
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
export declare class AttachApplication2ConnectorResponse extends $tea.Model {
|
|
46
|
+
headers: {
|
|
47
|
+
[key: string]: string;
|
|
48
|
+
};
|
|
49
|
+
statusCode: number;
|
|
50
|
+
body: AttachApplication2ConnectorResponseBody;
|
|
51
|
+
static names(): {
|
|
52
|
+
[key: string]: string;
|
|
53
|
+
};
|
|
54
|
+
static types(): {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
constructor(map?: {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
export declare class CreatePrivateAccessApplicationRequest extends $tea.Model {
|
|
62
|
+
addresses?: string[];
|
|
63
|
+
description?: string;
|
|
64
|
+
name?: string;
|
|
65
|
+
portRanges?: CreatePrivateAccessApplicationRequestPortRanges[];
|
|
66
|
+
protocol?: string;
|
|
67
|
+
status?: string;
|
|
68
|
+
tagIds?: string[];
|
|
69
|
+
static names(): {
|
|
70
|
+
[key: string]: string;
|
|
71
|
+
};
|
|
72
|
+
static types(): {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
};
|
|
75
|
+
constructor(map?: {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
export declare class CreatePrivateAccessApplicationShrinkRequest extends $tea.Model {
|
|
80
|
+
addressesShrink?: string;
|
|
81
|
+
description?: string;
|
|
82
|
+
name?: string;
|
|
83
|
+
portRangesShrink?: string;
|
|
84
|
+
protocol?: string;
|
|
85
|
+
status?: string;
|
|
86
|
+
tagIdsShrink?: string;
|
|
87
|
+
static names(): {
|
|
88
|
+
[key: string]: string;
|
|
89
|
+
};
|
|
90
|
+
static types(): {
|
|
91
|
+
[key: string]: any;
|
|
92
|
+
};
|
|
93
|
+
constructor(map?: {
|
|
94
|
+
[key: string]: any;
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
export declare class CreatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
98
|
+
applicationId?: string;
|
|
99
|
+
requestId?: string;
|
|
100
|
+
static names(): {
|
|
101
|
+
[key: string]: string;
|
|
102
|
+
};
|
|
103
|
+
static types(): {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
};
|
|
106
|
+
constructor(map?: {
|
|
107
|
+
[key: string]: any;
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
export declare class CreatePrivateAccessApplicationResponse extends $tea.Model {
|
|
111
|
+
headers: {
|
|
112
|
+
[key: string]: string;
|
|
113
|
+
};
|
|
114
|
+
statusCode: number;
|
|
115
|
+
body: CreatePrivateAccessApplicationResponseBody;
|
|
116
|
+
static names(): {
|
|
117
|
+
[key: string]: string;
|
|
118
|
+
};
|
|
119
|
+
static types(): {
|
|
120
|
+
[key: string]: any;
|
|
121
|
+
};
|
|
122
|
+
constructor(map?: {
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
});
|
|
125
|
+
}
|
|
126
|
+
export declare class CreatePrivateAccessPolicyRequest extends $tea.Model {
|
|
127
|
+
applicationIds?: string[];
|
|
128
|
+
applicationType?: string;
|
|
129
|
+
customUserAttributes?: CreatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
130
|
+
description?: string;
|
|
131
|
+
name?: string;
|
|
132
|
+
policyAction?: string;
|
|
133
|
+
priority?: number;
|
|
134
|
+
status?: string;
|
|
135
|
+
tagIds?: string[];
|
|
136
|
+
userGroupIds?: string[];
|
|
137
|
+
userGroupMode?: string;
|
|
138
|
+
static names(): {
|
|
139
|
+
[key: string]: string;
|
|
140
|
+
};
|
|
141
|
+
static types(): {
|
|
142
|
+
[key: string]: any;
|
|
143
|
+
};
|
|
144
|
+
constructor(map?: {
|
|
145
|
+
[key: string]: any;
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
export declare class CreatePrivateAccessPolicyShrinkRequest extends $tea.Model {
|
|
149
|
+
applicationIdsShrink?: string;
|
|
150
|
+
applicationType?: string;
|
|
151
|
+
customUserAttributesShrink?: string;
|
|
152
|
+
description?: string;
|
|
153
|
+
name?: string;
|
|
154
|
+
policyAction?: string;
|
|
155
|
+
priority?: number;
|
|
156
|
+
status?: string;
|
|
157
|
+
tagIdsShrink?: string;
|
|
158
|
+
userGroupIdsShrink?: string;
|
|
159
|
+
userGroupMode?: string;
|
|
160
|
+
static names(): {
|
|
161
|
+
[key: string]: string;
|
|
162
|
+
};
|
|
163
|
+
static types(): {
|
|
164
|
+
[key: string]: any;
|
|
165
|
+
};
|
|
166
|
+
constructor(map?: {
|
|
167
|
+
[key: string]: any;
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
export declare class CreatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
171
|
+
policyId?: string;
|
|
172
|
+
requestId?: string;
|
|
173
|
+
static names(): {
|
|
174
|
+
[key: string]: string;
|
|
175
|
+
};
|
|
176
|
+
static types(): {
|
|
177
|
+
[key: string]: any;
|
|
178
|
+
};
|
|
179
|
+
constructor(map?: {
|
|
180
|
+
[key: string]: any;
|
|
181
|
+
});
|
|
182
|
+
}
|
|
183
|
+
export declare class CreatePrivateAccessPolicyResponse extends $tea.Model {
|
|
184
|
+
headers: {
|
|
185
|
+
[key: string]: string;
|
|
186
|
+
};
|
|
187
|
+
statusCode: number;
|
|
188
|
+
body: CreatePrivateAccessPolicyResponseBody;
|
|
189
|
+
static names(): {
|
|
190
|
+
[key: string]: string;
|
|
191
|
+
};
|
|
192
|
+
static types(): {
|
|
193
|
+
[key: string]: any;
|
|
194
|
+
};
|
|
195
|
+
constructor(map?: {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
});
|
|
198
|
+
}
|
|
199
|
+
export declare class CreatePrivateAccessTagRequest extends $tea.Model {
|
|
200
|
+
description?: string;
|
|
201
|
+
name?: string;
|
|
202
|
+
static names(): {
|
|
203
|
+
[key: string]: string;
|
|
204
|
+
};
|
|
205
|
+
static types(): {
|
|
206
|
+
[key: string]: any;
|
|
207
|
+
};
|
|
208
|
+
constructor(map?: {
|
|
209
|
+
[key: string]: any;
|
|
210
|
+
});
|
|
211
|
+
}
|
|
212
|
+
export declare class CreatePrivateAccessTagResponseBody extends $tea.Model {
|
|
213
|
+
requestId?: string;
|
|
214
|
+
tagId?: string;
|
|
215
|
+
static names(): {
|
|
216
|
+
[key: string]: string;
|
|
217
|
+
};
|
|
218
|
+
static types(): {
|
|
219
|
+
[key: string]: any;
|
|
220
|
+
};
|
|
221
|
+
constructor(map?: {
|
|
222
|
+
[key: string]: any;
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
export declare class CreatePrivateAccessTagResponse extends $tea.Model {
|
|
226
|
+
headers: {
|
|
227
|
+
[key: string]: string;
|
|
228
|
+
};
|
|
229
|
+
statusCode: number;
|
|
230
|
+
body: CreatePrivateAccessTagResponseBody;
|
|
231
|
+
static names(): {
|
|
232
|
+
[key: string]: string;
|
|
233
|
+
};
|
|
234
|
+
static types(): {
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
};
|
|
237
|
+
constructor(map?: {
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
});
|
|
240
|
+
}
|
|
241
|
+
export declare class CreateUserGroupRequest extends $tea.Model {
|
|
242
|
+
attributes?: CreateUserGroupRequestAttributes[];
|
|
243
|
+
description?: string;
|
|
244
|
+
name?: string;
|
|
245
|
+
static names(): {
|
|
246
|
+
[key: string]: string;
|
|
247
|
+
};
|
|
248
|
+
static types(): {
|
|
249
|
+
[key: string]: any;
|
|
250
|
+
};
|
|
251
|
+
constructor(map?: {
|
|
252
|
+
[key: string]: any;
|
|
253
|
+
});
|
|
254
|
+
}
|
|
255
|
+
export declare class CreateUserGroupShrinkRequest extends $tea.Model {
|
|
256
|
+
attributesShrink?: string;
|
|
257
|
+
description?: string;
|
|
258
|
+
name?: string;
|
|
259
|
+
static names(): {
|
|
260
|
+
[key: string]: string;
|
|
261
|
+
};
|
|
262
|
+
static types(): {
|
|
263
|
+
[key: string]: any;
|
|
264
|
+
};
|
|
265
|
+
constructor(map?: {
|
|
266
|
+
[key: string]: any;
|
|
267
|
+
});
|
|
268
|
+
}
|
|
269
|
+
export declare class CreateUserGroupResponseBody extends $tea.Model {
|
|
270
|
+
requestId?: string;
|
|
271
|
+
userGroupId?: string;
|
|
272
|
+
static names(): {
|
|
273
|
+
[key: string]: string;
|
|
274
|
+
};
|
|
275
|
+
static types(): {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
};
|
|
278
|
+
constructor(map?: {
|
|
279
|
+
[key: string]: any;
|
|
280
|
+
});
|
|
281
|
+
}
|
|
282
|
+
export declare class CreateUserGroupResponse extends $tea.Model {
|
|
283
|
+
headers: {
|
|
284
|
+
[key: string]: string;
|
|
285
|
+
};
|
|
286
|
+
statusCode: number;
|
|
287
|
+
body: CreateUserGroupResponseBody;
|
|
288
|
+
static names(): {
|
|
289
|
+
[key: string]: string;
|
|
290
|
+
};
|
|
291
|
+
static types(): {
|
|
292
|
+
[key: string]: any;
|
|
293
|
+
};
|
|
294
|
+
constructor(map?: {
|
|
295
|
+
[key: string]: any;
|
|
296
|
+
});
|
|
297
|
+
}
|
|
298
|
+
export declare class DeletePrivateAccessApplicationRequest extends $tea.Model {
|
|
299
|
+
applicationId?: string;
|
|
300
|
+
static names(): {
|
|
301
|
+
[key: string]: string;
|
|
302
|
+
};
|
|
303
|
+
static types(): {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
};
|
|
306
|
+
constructor(map?: {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
export declare class DeletePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
311
|
+
requestId?: string;
|
|
312
|
+
static names(): {
|
|
313
|
+
[key: string]: string;
|
|
314
|
+
};
|
|
315
|
+
static types(): {
|
|
316
|
+
[key: string]: any;
|
|
317
|
+
};
|
|
318
|
+
constructor(map?: {
|
|
319
|
+
[key: string]: any;
|
|
320
|
+
});
|
|
321
|
+
}
|
|
322
|
+
export declare class DeletePrivateAccessApplicationResponse extends $tea.Model {
|
|
323
|
+
headers: {
|
|
324
|
+
[key: string]: string;
|
|
325
|
+
};
|
|
326
|
+
statusCode: number;
|
|
327
|
+
body: DeletePrivateAccessApplicationResponseBody;
|
|
328
|
+
static names(): {
|
|
329
|
+
[key: string]: string;
|
|
330
|
+
};
|
|
331
|
+
static types(): {
|
|
332
|
+
[key: string]: any;
|
|
333
|
+
};
|
|
334
|
+
constructor(map?: {
|
|
335
|
+
[key: string]: any;
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
export declare class DeletePrivateAccessPolicyRequest extends $tea.Model {
|
|
339
|
+
policyId?: string;
|
|
340
|
+
static names(): {
|
|
341
|
+
[key: string]: string;
|
|
342
|
+
};
|
|
343
|
+
static types(): {
|
|
344
|
+
[key: string]: any;
|
|
345
|
+
};
|
|
346
|
+
constructor(map?: {
|
|
347
|
+
[key: string]: any;
|
|
348
|
+
});
|
|
349
|
+
}
|
|
350
|
+
export declare class DeletePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
351
|
+
requestId?: string;
|
|
352
|
+
static names(): {
|
|
353
|
+
[key: string]: string;
|
|
354
|
+
};
|
|
355
|
+
static types(): {
|
|
356
|
+
[key: string]: any;
|
|
357
|
+
};
|
|
358
|
+
constructor(map?: {
|
|
359
|
+
[key: string]: any;
|
|
360
|
+
});
|
|
361
|
+
}
|
|
362
|
+
export declare class DeletePrivateAccessPolicyResponse extends $tea.Model {
|
|
363
|
+
headers: {
|
|
364
|
+
[key: string]: string;
|
|
365
|
+
};
|
|
366
|
+
statusCode: number;
|
|
367
|
+
body: DeletePrivateAccessPolicyResponseBody;
|
|
368
|
+
static names(): {
|
|
369
|
+
[key: string]: string;
|
|
370
|
+
};
|
|
371
|
+
static types(): {
|
|
372
|
+
[key: string]: any;
|
|
373
|
+
};
|
|
374
|
+
constructor(map?: {
|
|
375
|
+
[key: string]: any;
|
|
376
|
+
});
|
|
377
|
+
}
|
|
378
|
+
export declare class DeletePrivateAccessTagRequest extends $tea.Model {
|
|
379
|
+
tagId?: string;
|
|
380
|
+
static names(): {
|
|
381
|
+
[key: string]: string;
|
|
382
|
+
};
|
|
383
|
+
static types(): {
|
|
384
|
+
[key: string]: any;
|
|
385
|
+
};
|
|
386
|
+
constructor(map?: {
|
|
387
|
+
[key: string]: any;
|
|
388
|
+
});
|
|
389
|
+
}
|
|
390
|
+
export declare class DeletePrivateAccessTagResponseBody extends $tea.Model {
|
|
391
|
+
requestId?: string;
|
|
392
|
+
static names(): {
|
|
393
|
+
[key: string]: string;
|
|
394
|
+
};
|
|
395
|
+
static types(): {
|
|
396
|
+
[key: string]: any;
|
|
397
|
+
};
|
|
398
|
+
constructor(map?: {
|
|
399
|
+
[key: string]: any;
|
|
400
|
+
});
|
|
401
|
+
}
|
|
402
|
+
export declare class DeletePrivateAccessTagResponse extends $tea.Model {
|
|
403
|
+
headers: {
|
|
404
|
+
[key: string]: string;
|
|
405
|
+
};
|
|
406
|
+
statusCode: number;
|
|
407
|
+
body: DeletePrivateAccessTagResponseBody;
|
|
408
|
+
static names(): {
|
|
409
|
+
[key: string]: string;
|
|
410
|
+
};
|
|
411
|
+
static types(): {
|
|
412
|
+
[key: string]: any;
|
|
413
|
+
};
|
|
414
|
+
constructor(map?: {
|
|
415
|
+
[key: string]: any;
|
|
416
|
+
});
|
|
417
|
+
}
|
|
418
|
+
export declare class DeleteUserGroupRequest extends $tea.Model {
|
|
419
|
+
userGroupId?: string;
|
|
420
|
+
static names(): {
|
|
421
|
+
[key: string]: string;
|
|
422
|
+
};
|
|
423
|
+
static types(): {
|
|
424
|
+
[key: string]: any;
|
|
425
|
+
};
|
|
426
|
+
constructor(map?: {
|
|
427
|
+
[key: string]: any;
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
export declare class DeleteUserGroupResponseBody extends $tea.Model {
|
|
431
|
+
requestId?: string;
|
|
432
|
+
static names(): {
|
|
433
|
+
[key: string]: string;
|
|
434
|
+
};
|
|
435
|
+
static types(): {
|
|
436
|
+
[key: string]: any;
|
|
437
|
+
};
|
|
438
|
+
constructor(map?: {
|
|
439
|
+
[key: string]: any;
|
|
440
|
+
});
|
|
441
|
+
}
|
|
442
|
+
export declare class DeleteUserGroupResponse extends $tea.Model {
|
|
443
|
+
headers: {
|
|
444
|
+
[key: string]: string;
|
|
445
|
+
};
|
|
446
|
+
statusCode: number;
|
|
447
|
+
body: DeleteUserGroupResponseBody;
|
|
448
|
+
static names(): {
|
|
449
|
+
[key: string]: string;
|
|
450
|
+
};
|
|
451
|
+
static types(): {
|
|
452
|
+
[key: string]: any;
|
|
453
|
+
};
|
|
454
|
+
constructor(map?: {
|
|
455
|
+
[key: string]: any;
|
|
456
|
+
});
|
|
457
|
+
}
|
|
458
|
+
export declare class DetachApplication2ConnectorRequest extends $tea.Model {
|
|
459
|
+
applicationIds?: string[];
|
|
460
|
+
connectorId?: string;
|
|
461
|
+
static names(): {
|
|
462
|
+
[key: string]: string;
|
|
463
|
+
};
|
|
464
|
+
static types(): {
|
|
465
|
+
[key: string]: any;
|
|
466
|
+
};
|
|
467
|
+
constructor(map?: {
|
|
468
|
+
[key: string]: any;
|
|
469
|
+
});
|
|
470
|
+
}
|
|
471
|
+
export declare class DetachApplication2ConnectorShrinkRequest extends $tea.Model {
|
|
472
|
+
applicationIdsShrink?: string;
|
|
473
|
+
connectorId?: string;
|
|
474
|
+
static names(): {
|
|
475
|
+
[key: string]: string;
|
|
476
|
+
};
|
|
477
|
+
static types(): {
|
|
478
|
+
[key: string]: any;
|
|
479
|
+
};
|
|
480
|
+
constructor(map?: {
|
|
481
|
+
[key: string]: any;
|
|
482
|
+
});
|
|
483
|
+
}
|
|
484
|
+
export declare class DetachApplication2ConnectorResponseBody extends $tea.Model {
|
|
485
|
+
requestId?: string;
|
|
486
|
+
static names(): {
|
|
487
|
+
[key: string]: string;
|
|
488
|
+
};
|
|
489
|
+
static types(): {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
};
|
|
492
|
+
constructor(map?: {
|
|
493
|
+
[key: string]: any;
|
|
494
|
+
});
|
|
495
|
+
}
|
|
496
|
+
export declare class DetachApplication2ConnectorResponse extends $tea.Model {
|
|
497
|
+
headers: {
|
|
498
|
+
[key: string]: string;
|
|
499
|
+
};
|
|
500
|
+
statusCode: number;
|
|
501
|
+
body: DetachApplication2ConnectorResponseBody;
|
|
502
|
+
static names(): {
|
|
503
|
+
[key: string]: string;
|
|
504
|
+
};
|
|
505
|
+
static types(): {
|
|
506
|
+
[key: string]: any;
|
|
507
|
+
};
|
|
508
|
+
constructor(map?: {
|
|
509
|
+
[key: string]: any;
|
|
510
|
+
});
|
|
511
|
+
}
|
|
512
|
+
export declare class GetPrivateAccessApplicationRequest extends $tea.Model {
|
|
513
|
+
applicationId?: string;
|
|
514
|
+
static names(): {
|
|
515
|
+
[key: string]: string;
|
|
516
|
+
};
|
|
517
|
+
static types(): {
|
|
518
|
+
[key: string]: any;
|
|
519
|
+
};
|
|
520
|
+
constructor(map?: {
|
|
521
|
+
[key: string]: any;
|
|
522
|
+
});
|
|
523
|
+
}
|
|
524
|
+
export declare class GetPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
525
|
+
application?: GetPrivateAccessApplicationResponseBodyApplication;
|
|
526
|
+
requestId?: string;
|
|
527
|
+
static names(): {
|
|
528
|
+
[key: string]: string;
|
|
529
|
+
};
|
|
530
|
+
static types(): {
|
|
531
|
+
[key: string]: any;
|
|
532
|
+
};
|
|
533
|
+
constructor(map?: {
|
|
534
|
+
[key: string]: any;
|
|
535
|
+
});
|
|
536
|
+
}
|
|
537
|
+
export declare class GetPrivateAccessApplicationResponse extends $tea.Model {
|
|
538
|
+
headers: {
|
|
539
|
+
[key: string]: string;
|
|
540
|
+
};
|
|
541
|
+
statusCode: number;
|
|
542
|
+
body: GetPrivateAccessApplicationResponseBody;
|
|
543
|
+
static names(): {
|
|
544
|
+
[key: string]: string;
|
|
545
|
+
};
|
|
546
|
+
static types(): {
|
|
547
|
+
[key: string]: any;
|
|
548
|
+
};
|
|
549
|
+
constructor(map?: {
|
|
550
|
+
[key: string]: any;
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
export declare class GetPrivateAccessPolicyRequest extends $tea.Model {
|
|
554
|
+
policyId?: string;
|
|
555
|
+
static names(): {
|
|
556
|
+
[key: string]: string;
|
|
557
|
+
};
|
|
558
|
+
static types(): {
|
|
559
|
+
[key: string]: any;
|
|
560
|
+
};
|
|
561
|
+
constructor(map?: {
|
|
562
|
+
[key: string]: any;
|
|
563
|
+
});
|
|
564
|
+
}
|
|
565
|
+
export declare class GetPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
566
|
+
policy?: GetPrivateAccessPolicyResponseBodyPolicy;
|
|
567
|
+
requestId?: string;
|
|
568
|
+
static names(): {
|
|
569
|
+
[key: string]: string;
|
|
570
|
+
};
|
|
571
|
+
static types(): {
|
|
572
|
+
[key: string]: any;
|
|
573
|
+
};
|
|
574
|
+
constructor(map?: {
|
|
575
|
+
[key: string]: any;
|
|
576
|
+
});
|
|
577
|
+
}
|
|
578
|
+
export declare class GetPrivateAccessPolicyResponse extends $tea.Model {
|
|
579
|
+
headers: {
|
|
580
|
+
[key: string]: string;
|
|
581
|
+
};
|
|
582
|
+
statusCode: number;
|
|
583
|
+
body: GetPrivateAccessPolicyResponseBody;
|
|
584
|
+
static names(): {
|
|
585
|
+
[key: string]: string;
|
|
586
|
+
};
|
|
587
|
+
static types(): {
|
|
588
|
+
[key: string]: any;
|
|
589
|
+
};
|
|
590
|
+
constructor(map?: {
|
|
591
|
+
[key: string]: any;
|
|
592
|
+
});
|
|
593
|
+
}
|
|
594
|
+
export declare class GetUserGroupRequest extends $tea.Model {
|
|
595
|
+
userGroupId?: string;
|
|
596
|
+
static names(): {
|
|
597
|
+
[key: string]: string;
|
|
598
|
+
};
|
|
599
|
+
static types(): {
|
|
600
|
+
[key: string]: any;
|
|
601
|
+
};
|
|
602
|
+
constructor(map?: {
|
|
603
|
+
[key: string]: any;
|
|
604
|
+
});
|
|
605
|
+
}
|
|
606
|
+
export declare class GetUserGroupResponseBody extends $tea.Model {
|
|
607
|
+
requestId?: string;
|
|
608
|
+
userGroup?: GetUserGroupResponseBodyUserGroup;
|
|
609
|
+
static names(): {
|
|
610
|
+
[key: string]: string;
|
|
611
|
+
};
|
|
612
|
+
static types(): {
|
|
613
|
+
[key: string]: any;
|
|
614
|
+
};
|
|
615
|
+
constructor(map?: {
|
|
616
|
+
[key: string]: any;
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
export declare class GetUserGroupResponse extends $tea.Model {
|
|
620
|
+
headers: {
|
|
621
|
+
[key: string]: string;
|
|
622
|
+
};
|
|
623
|
+
statusCode: number;
|
|
624
|
+
body: GetUserGroupResponseBody;
|
|
625
|
+
static names(): {
|
|
626
|
+
[key: string]: string;
|
|
627
|
+
};
|
|
628
|
+
static types(): {
|
|
629
|
+
[key: string]: any;
|
|
630
|
+
};
|
|
631
|
+
constructor(map?: {
|
|
632
|
+
[key: string]: any;
|
|
633
|
+
});
|
|
634
|
+
}
|
|
635
|
+
export declare class ListApplicationsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
636
|
+
policyIds?: string[];
|
|
637
|
+
static names(): {
|
|
638
|
+
[key: string]: string;
|
|
639
|
+
};
|
|
640
|
+
static types(): {
|
|
641
|
+
[key: string]: any;
|
|
642
|
+
};
|
|
643
|
+
constructor(map?: {
|
|
644
|
+
[key: string]: any;
|
|
645
|
+
});
|
|
646
|
+
}
|
|
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
|
+
export declare class ListApplicationsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
660
|
+
polices?: ListApplicationsForPrivateAccessPolicyResponseBodyPolices[];
|
|
661
|
+
requestId?: string;
|
|
662
|
+
static names(): {
|
|
663
|
+
[key: string]: string;
|
|
664
|
+
};
|
|
665
|
+
static types(): {
|
|
666
|
+
[key: string]: any;
|
|
667
|
+
};
|
|
668
|
+
constructor(map?: {
|
|
669
|
+
[key: string]: any;
|
|
670
|
+
});
|
|
671
|
+
}
|
|
672
|
+
export declare class ListApplicationsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
673
|
+
headers: {
|
|
674
|
+
[key: string]: string;
|
|
675
|
+
};
|
|
676
|
+
statusCode: number;
|
|
677
|
+
body: ListApplicationsForPrivateAccessPolicyResponseBody;
|
|
678
|
+
static names(): {
|
|
679
|
+
[key: string]: string;
|
|
680
|
+
};
|
|
681
|
+
static types(): {
|
|
682
|
+
[key: string]: any;
|
|
683
|
+
};
|
|
684
|
+
constructor(map?: {
|
|
685
|
+
[key: string]: any;
|
|
686
|
+
});
|
|
687
|
+
}
|
|
688
|
+
export declare class ListApplicationsForPrivateAccessTagRequest extends $tea.Model {
|
|
689
|
+
tagIds?: string[];
|
|
690
|
+
static names(): {
|
|
691
|
+
[key: string]: string;
|
|
692
|
+
};
|
|
693
|
+
static types(): {
|
|
694
|
+
[key: string]: any;
|
|
695
|
+
};
|
|
696
|
+
constructor(map?: {
|
|
697
|
+
[key: string]: any;
|
|
698
|
+
});
|
|
699
|
+
}
|
|
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
|
+
export declare class ListApplicationsForPrivateAccessTagResponseBody extends $tea.Model {
|
|
713
|
+
requestId?: string;
|
|
714
|
+
tags?: ListApplicationsForPrivateAccessTagResponseBodyTags[];
|
|
715
|
+
static names(): {
|
|
716
|
+
[key: string]: string;
|
|
717
|
+
};
|
|
718
|
+
static types(): {
|
|
719
|
+
[key: string]: any;
|
|
720
|
+
};
|
|
721
|
+
constructor(map?: {
|
|
722
|
+
[key: string]: any;
|
|
723
|
+
});
|
|
724
|
+
}
|
|
725
|
+
export declare class ListApplicationsForPrivateAccessTagResponse extends $tea.Model {
|
|
726
|
+
headers: {
|
|
727
|
+
[key: string]: string;
|
|
728
|
+
};
|
|
729
|
+
statusCode: number;
|
|
730
|
+
body: ListApplicationsForPrivateAccessTagResponseBody;
|
|
731
|
+
static names(): {
|
|
732
|
+
[key: string]: string;
|
|
733
|
+
};
|
|
734
|
+
static types(): {
|
|
735
|
+
[key: string]: any;
|
|
736
|
+
};
|
|
737
|
+
constructor(map?: {
|
|
738
|
+
[key: string]: any;
|
|
739
|
+
});
|
|
740
|
+
}
|
|
741
|
+
export declare class ListConnectorsRequest extends $tea.Model {
|
|
742
|
+
connectorIds?: string[];
|
|
743
|
+
currentPage?: number;
|
|
744
|
+
name?: string;
|
|
745
|
+
pageSize?: number;
|
|
746
|
+
static names(): {
|
|
747
|
+
[key: string]: string;
|
|
748
|
+
};
|
|
749
|
+
static types(): {
|
|
750
|
+
[key: string]: any;
|
|
751
|
+
};
|
|
752
|
+
constructor(map?: {
|
|
753
|
+
[key: string]: any;
|
|
754
|
+
});
|
|
755
|
+
}
|
|
756
|
+
export declare class ListConnectorsShrinkRequest extends $tea.Model {
|
|
757
|
+
connectorIdsShrink?: string;
|
|
758
|
+
currentPage?: number;
|
|
759
|
+
name?: string;
|
|
760
|
+
pageSize?: number;
|
|
761
|
+
static names(): {
|
|
762
|
+
[key: string]: string;
|
|
763
|
+
};
|
|
764
|
+
static types(): {
|
|
765
|
+
[key: string]: any;
|
|
766
|
+
};
|
|
767
|
+
constructor(map?: {
|
|
768
|
+
[key: string]: any;
|
|
769
|
+
});
|
|
770
|
+
}
|
|
771
|
+
export declare class ListConnectorsResponseBody extends $tea.Model {
|
|
772
|
+
connectors?: ListConnectorsResponseBodyConnectors[];
|
|
773
|
+
requestId?: string;
|
|
774
|
+
totalNum?: number;
|
|
775
|
+
static names(): {
|
|
776
|
+
[key: string]: string;
|
|
777
|
+
};
|
|
778
|
+
static types(): {
|
|
779
|
+
[key: string]: any;
|
|
780
|
+
};
|
|
781
|
+
constructor(map?: {
|
|
782
|
+
[key: string]: any;
|
|
783
|
+
});
|
|
784
|
+
}
|
|
785
|
+
export declare class ListConnectorsResponse extends $tea.Model {
|
|
786
|
+
headers: {
|
|
787
|
+
[key: string]: string;
|
|
788
|
+
};
|
|
789
|
+
statusCode: number;
|
|
790
|
+
body: ListConnectorsResponseBody;
|
|
791
|
+
static names(): {
|
|
792
|
+
[key: string]: string;
|
|
793
|
+
};
|
|
794
|
+
static types(): {
|
|
795
|
+
[key: string]: any;
|
|
796
|
+
};
|
|
797
|
+
constructor(map?: {
|
|
798
|
+
[key: string]: any;
|
|
799
|
+
});
|
|
800
|
+
}
|
|
801
|
+
export declare class ListPolicesForPrivateAccessApplicationRequest extends $tea.Model {
|
|
802
|
+
applicationIds?: string[];
|
|
803
|
+
static names(): {
|
|
804
|
+
[key: string]: string;
|
|
805
|
+
};
|
|
806
|
+
static types(): {
|
|
807
|
+
[key: string]: any;
|
|
808
|
+
};
|
|
809
|
+
constructor(map?: {
|
|
810
|
+
[key: string]: any;
|
|
811
|
+
});
|
|
812
|
+
}
|
|
813
|
+
export declare class ListPolicesForPrivateAccessApplicationShrinkRequest extends $tea.Model {
|
|
814
|
+
applicationIdsShrink?: string;
|
|
815
|
+
static names(): {
|
|
816
|
+
[key: string]: string;
|
|
817
|
+
};
|
|
818
|
+
static types(): {
|
|
819
|
+
[key: string]: any;
|
|
820
|
+
};
|
|
821
|
+
constructor(map?: {
|
|
822
|
+
[key: string]: any;
|
|
823
|
+
});
|
|
824
|
+
}
|
|
825
|
+
export declare class ListPolicesForPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
826
|
+
applications?: ListPolicesForPrivateAccessApplicationResponseBodyApplications[];
|
|
827
|
+
requestId?: string;
|
|
828
|
+
static names(): {
|
|
829
|
+
[key: string]: string;
|
|
830
|
+
};
|
|
831
|
+
static types(): {
|
|
832
|
+
[key: string]: any;
|
|
833
|
+
};
|
|
834
|
+
constructor(map?: {
|
|
835
|
+
[key: string]: any;
|
|
836
|
+
});
|
|
837
|
+
}
|
|
838
|
+
export declare class ListPolicesForPrivateAccessApplicationResponse extends $tea.Model {
|
|
839
|
+
headers: {
|
|
840
|
+
[key: string]: string;
|
|
841
|
+
};
|
|
842
|
+
statusCode: number;
|
|
843
|
+
body: ListPolicesForPrivateAccessApplicationResponseBody;
|
|
844
|
+
static names(): {
|
|
845
|
+
[key: string]: string;
|
|
846
|
+
};
|
|
847
|
+
static types(): {
|
|
848
|
+
[key: string]: any;
|
|
849
|
+
};
|
|
850
|
+
constructor(map?: {
|
|
851
|
+
[key: string]: any;
|
|
852
|
+
});
|
|
853
|
+
}
|
|
854
|
+
export declare class ListPolicesForPrivateAccessTagRequest extends $tea.Model {
|
|
855
|
+
tagIds?: string[];
|
|
856
|
+
static names(): {
|
|
857
|
+
[key: string]: string;
|
|
858
|
+
};
|
|
859
|
+
static types(): {
|
|
860
|
+
[key: string]: any;
|
|
861
|
+
};
|
|
862
|
+
constructor(map?: {
|
|
863
|
+
[key: string]: any;
|
|
864
|
+
});
|
|
865
|
+
}
|
|
866
|
+
export declare class ListPolicesForPrivateAccessTagShrinkRequest extends $tea.Model {
|
|
867
|
+
tagIdsShrink?: string;
|
|
868
|
+
static names(): {
|
|
869
|
+
[key: string]: string;
|
|
870
|
+
};
|
|
871
|
+
static types(): {
|
|
872
|
+
[key: string]: any;
|
|
873
|
+
};
|
|
874
|
+
constructor(map?: {
|
|
875
|
+
[key: string]: any;
|
|
876
|
+
});
|
|
877
|
+
}
|
|
878
|
+
export declare class ListPolicesForPrivateAccessTagResponseBody extends $tea.Model {
|
|
879
|
+
requestId?: string;
|
|
880
|
+
tags?: ListPolicesForPrivateAccessTagResponseBodyTags[];
|
|
881
|
+
static names(): {
|
|
882
|
+
[key: string]: string;
|
|
883
|
+
};
|
|
884
|
+
static types(): {
|
|
885
|
+
[key: string]: any;
|
|
886
|
+
};
|
|
887
|
+
constructor(map?: {
|
|
888
|
+
[key: string]: any;
|
|
889
|
+
});
|
|
890
|
+
}
|
|
891
|
+
export declare class ListPolicesForPrivateAccessTagResponse extends $tea.Model {
|
|
892
|
+
headers: {
|
|
893
|
+
[key: string]: string;
|
|
894
|
+
};
|
|
895
|
+
statusCode: number;
|
|
896
|
+
body: ListPolicesForPrivateAccessTagResponseBody;
|
|
897
|
+
static names(): {
|
|
898
|
+
[key: string]: string;
|
|
899
|
+
};
|
|
900
|
+
static types(): {
|
|
901
|
+
[key: string]: any;
|
|
902
|
+
};
|
|
903
|
+
constructor(map?: {
|
|
904
|
+
[key: string]: any;
|
|
905
|
+
});
|
|
906
|
+
}
|
|
907
|
+
export declare class ListPolicesForUserGroupRequest extends $tea.Model {
|
|
908
|
+
userGroupIds?: string[];
|
|
909
|
+
static names(): {
|
|
910
|
+
[key: string]: string;
|
|
911
|
+
};
|
|
912
|
+
static types(): {
|
|
913
|
+
[key: string]: any;
|
|
914
|
+
};
|
|
915
|
+
constructor(map?: {
|
|
916
|
+
[key: string]: any;
|
|
917
|
+
});
|
|
918
|
+
}
|
|
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
|
+
export declare class ListPolicesForUserGroupResponseBody extends $tea.Model {
|
|
932
|
+
requestId?: string;
|
|
933
|
+
userGroups?: ListPolicesForUserGroupResponseBodyUserGroups[];
|
|
934
|
+
static names(): {
|
|
935
|
+
[key: string]: string;
|
|
936
|
+
};
|
|
937
|
+
static types(): {
|
|
938
|
+
[key: string]: any;
|
|
939
|
+
};
|
|
940
|
+
constructor(map?: {
|
|
941
|
+
[key: string]: any;
|
|
942
|
+
});
|
|
943
|
+
}
|
|
944
|
+
export declare class ListPolicesForUserGroupResponse extends $tea.Model {
|
|
945
|
+
headers: {
|
|
946
|
+
[key: string]: string;
|
|
947
|
+
};
|
|
948
|
+
statusCode: number;
|
|
949
|
+
body: ListPolicesForUserGroupResponseBody;
|
|
950
|
+
static names(): {
|
|
951
|
+
[key: string]: string;
|
|
952
|
+
};
|
|
953
|
+
static types(): {
|
|
954
|
+
[key: string]: any;
|
|
955
|
+
};
|
|
956
|
+
constructor(map?: {
|
|
957
|
+
[key: string]: any;
|
|
958
|
+
});
|
|
959
|
+
}
|
|
960
|
+
export declare class ListPrivateAccessApplicationsRequest extends $tea.Model {
|
|
961
|
+
address?: string;
|
|
962
|
+
applicationIds?: string[];
|
|
963
|
+
currentPage?: number;
|
|
964
|
+
name?: string;
|
|
965
|
+
pageSize?: number;
|
|
966
|
+
policyId?: string;
|
|
967
|
+
status?: string;
|
|
968
|
+
tagId?: string;
|
|
969
|
+
static names(): {
|
|
970
|
+
[key: string]: string;
|
|
971
|
+
};
|
|
972
|
+
static types(): {
|
|
973
|
+
[key: string]: any;
|
|
974
|
+
};
|
|
975
|
+
constructor(map?: {
|
|
976
|
+
[key: string]: any;
|
|
977
|
+
});
|
|
978
|
+
}
|
|
979
|
+
export declare class ListPrivateAccessApplicationsShrinkRequest extends $tea.Model {
|
|
980
|
+
address?: string;
|
|
981
|
+
applicationIdsShrink?: string;
|
|
982
|
+
currentPage?: number;
|
|
983
|
+
name?: string;
|
|
984
|
+
pageSize?: number;
|
|
985
|
+
policyId?: string;
|
|
986
|
+
status?: string;
|
|
987
|
+
tagId?: string;
|
|
988
|
+
static names(): {
|
|
989
|
+
[key: string]: string;
|
|
990
|
+
};
|
|
991
|
+
static types(): {
|
|
992
|
+
[key: string]: any;
|
|
993
|
+
};
|
|
994
|
+
constructor(map?: {
|
|
995
|
+
[key: string]: any;
|
|
996
|
+
});
|
|
997
|
+
}
|
|
998
|
+
export declare class ListPrivateAccessApplicationsResponseBody extends $tea.Model {
|
|
999
|
+
applications?: ListPrivateAccessApplicationsResponseBodyApplications[];
|
|
1000
|
+
requestId?: string;
|
|
1001
|
+
totalNum?: number;
|
|
1002
|
+
static names(): {
|
|
1003
|
+
[key: string]: string;
|
|
1004
|
+
};
|
|
1005
|
+
static types(): {
|
|
1006
|
+
[key: string]: any;
|
|
1007
|
+
};
|
|
1008
|
+
constructor(map?: {
|
|
1009
|
+
[key: string]: any;
|
|
1010
|
+
});
|
|
1011
|
+
}
|
|
1012
|
+
export declare class ListPrivateAccessApplicationsResponse extends $tea.Model {
|
|
1013
|
+
headers: {
|
|
1014
|
+
[key: string]: string;
|
|
1015
|
+
};
|
|
1016
|
+
statusCode: number;
|
|
1017
|
+
body: ListPrivateAccessApplicationsResponseBody;
|
|
1018
|
+
static names(): {
|
|
1019
|
+
[key: string]: string;
|
|
1020
|
+
};
|
|
1021
|
+
static types(): {
|
|
1022
|
+
[key: string]: any;
|
|
1023
|
+
};
|
|
1024
|
+
constructor(map?: {
|
|
1025
|
+
[key: string]: any;
|
|
1026
|
+
});
|
|
1027
|
+
}
|
|
1028
|
+
export declare class ListPrivateAccessPolicesRequest extends $tea.Model {
|
|
1029
|
+
applicationId?: string;
|
|
1030
|
+
currentPage?: number;
|
|
1031
|
+
name?: string;
|
|
1032
|
+
pageSize?: number;
|
|
1033
|
+
policyAction?: string;
|
|
1034
|
+
policyIds?: string[];
|
|
1035
|
+
status?: string;
|
|
1036
|
+
tagId?: string;
|
|
1037
|
+
userGroupId?: string;
|
|
1038
|
+
static names(): {
|
|
1039
|
+
[key: string]: string;
|
|
1040
|
+
};
|
|
1041
|
+
static types(): {
|
|
1042
|
+
[key: string]: any;
|
|
1043
|
+
};
|
|
1044
|
+
constructor(map?: {
|
|
1045
|
+
[key: string]: any;
|
|
1046
|
+
});
|
|
1047
|
+
}
|
|
1048
|
+
export declare class ListPrivateAccessPolicesShrinkRequest extends $tea.Model {
|
|
1049
|
+
applicationId?: string;
|
|
1050
|
+
currentPage?: number;
|
|
1051
|
+
name?: string;
|
|
1052
|
+
pageSize?: number;
|
|
1053
|
+
policyAction?: string;
|
|
1054
|
+
policyIdsShrink?: string;
|
|
1055
|
+
status?: string;
|
|
1056
|
+
tagId?: string;
|
|
1057
|
+
userGroupId?: string;
|
|
1058
|
+
static names(): {
|
|
1059
|
+
[key: string]: string;
|
|
1060
|
+
};
|
|
1061
|
+
static types(): {
|
|
1062
|
+
[key: string]: any;
|
|
1063
|
+
};
|
|
1064
|
+
constructor(map?: {
|
|
1065
|
+
[key: string]: any;
|
|
1066
|
+
});
|
|
1067
|
+
}
|
|
1068
|
+
export declare class ListPrivateAccessPolicesResponseBody extends $tea.Model {
|
|
1069
|
+
polices?: ListPrivateAccessPolicesResponseBodyPolices[];
|
|
1070
|
+
requestId?: string;
|
|
1071
|
+
totalNum?: number;
|
|
1072
|
+
static names(): {
|
|
1073
|
+
[key: string]: string;
|
|
1074
|
+
};
|
|
1075
|
+
static types(): {
|
|
1076
|
+
[key: string]: any;
|
|
1077
|
+
};
|
|
1078
|
+
constructor(map?: {
|
|
1079
|
+
[key: string]: any;
|
|
1080
|
+
});
|
|
1081
|
+
}
|
|
1082
|
+
export declare class ListPrivateAccessPolicesResponse extends $tea.Model {
|
|
1083
|
+
headers: {
|
|
1084
|
+
[key: string]: string;
|
|
1085
|
+
};
|
|
1086
|
+
statusCode: number;
|
|
1087
|
+
body: ListPrivateAccessPolicesResponseBody;
|
|
1088
|
+
static names(): {
|
|
1089
|
+
[key: string]: string;
|
|
1090
|
+
};
|
|
1091
|
+
static types(): {
|
|
1092
|
+
[key: string]: any;
|
|
1093
|
+
};
|
|
1094
|
+
constructor(map?: {
|
|
1095
|
+
[key: string]: any;
|
|
1096
|
+
});
|
|
1097
|
+
}
|
|
1098
|
+
export declare class ListPrivateAccessTagsRequest extends $tea.Model {
|
|
1099
|
+
applicationId?: string;
|
|
1100
|
+
currentPage?: number;
|
|
1101
|
+
name?: string;
|
|
1102
|
+
pageSize?: number;
|
|
1103
|
+
policyId?: string;
|
|
1104
|
+
tagIds?: string[];
|
|
1105
|
+
static names(): {
|
|
1106
|
+
[key: string]: string;
|
|
1107
|
+
};
|
|
1108
|
+
static types(): {
|
|
1109
|
+
[key: string]: any;
|
|
1110
|
+
};
|
|
1111
|
+
constructor(map?: {
|
|
1112
|
+
[key: string]: any;
|
|
1113
|
+
});
|
|
1114
|
+
}
|
|
1115
|
+
export declare class ListPrivateAccessTagsShrinkRequest extends $tea.Model {
|
|
1116
|
+
applicationId?: string;
|
|
1117
|
+
currentPage?: number;
|
|
1118
|
+
name?: string;
|
|
1119
|
+
pageSize?: number;
|
|
1120
|
+
policyId?: string;
|
|
1121
|
+
tagIdsShrink?: string;
|
|
1122
|
+
static names(): {
|
|
1123
|
+
[key: string]: string;
|
|
1124
|
+
};
|
|
1125
|
+
static types(): {
|
|
1126
|
+
[key: string]: any;
|
|
1127
|
+
};
|
|
1128
|
+
constructor(map?: {
|
|
1129
|
+
[key: string]: any;
|
|
1130
|
+
});
|
|
1131
|
+
}
|
|
1132
|
+
export declare class ListPrivateAccessTagsResponseBody extends $tea.Model {
|
|
1133
|
+
requestId?: string;
|
|
1134
|
+
tags?: ListPrivateAccessTagsResponseBodyTags[];
|
|
1135
|
+
totalNum?: number;
|
|
1136
|
+
static names(): {
|
|
1137
|
+
[key: string]: string;
|
|
1138
|
+
};
|
|
1139
|
+
static types(): {
|
|
1140
|
+
[key: string]: any;
|
|
1141
|
+
};
|
|
1142
|
+
constructor(map?: {
|
|
1143
|
+
[key: string]: any;
|
|
1144
|
+
});
|
|
1145
|
+
}
|
|
1146
|
+
export declare class ListPrivateAccessTagsResponse extends $tea.Model {
|
|
1147
|
+
headers: {
|
|
1148
|
+
[key: string]: string;
|
|
1149
|
+
};
|
|
1150
|
+
statusCode: number;
|
|
1151
|
+
body: ListPrivateAccessTagsResponseBody;
|
|
1152
|
+
static names(): {
|
|
1153
|
+
[key: string]: string;
|
|
1154
|
+
};
|
|
1155
|
+
static types(): {
|
|
1156
|
+
[key: string]: any;
|
|
1157
|
+
};
|
|
1158
|
+
constructor(map?: {
|
|
1159
|
+
[key: string]: any;
|
|
1160
|
+
});
|
|
1161
|
+
}
|
|
1162
|
+
export declare class ListTagsForPrivateAccessApplicationRequest extends $tea.Model {
|
|
1163
|
+
applicationIds?: string[];
|
|
1164
|
+
static names(): {
|
|
1165
|
+
[key: string]: string;
|
|
1166
|
+
};
|
|
1167
|
+
static types(): {
|
|
1168
|
+
[key: string]: any;
|
|
1169
|
+
};
|
|
1170
|
+
constructor(map?: {
|
|
1171
|
+
[key: string]: any;
|
|
1172
|
+
});
|
|
1173
|
+
}
|
|
1174
|
+
export declare class ListTagsForPrivateAccessApplicationShrinkRequest extends $tea.Model {
|
|
1175
|
+
applicationIdsShrink?: string;
|
|
1176
|
+
static names(): {
|
|
1177
|
+
[key: string]: string;
|
|
1178
|
+
};
|
|
1179
|
+
static types(): {
|
|
1180
|
+
[key: string]: any;
|
|
1181
|
+
};
|
|
1182
|
+
constructor(map?: {
|
|
1183
|
+
[key: string]: any;
|
|
1184
|
+
});
|
|
1185
|
+
}
|
|
1186
|
+
export declare class ListTagsForPrivateAccessApplicationResponseBody extends $tea.Model {
|
|
1187
|
+
applications?: ListTagsForPrivateAccessApplicationResponseBodyApplications[];
|
|
1188
|
+
requestId?: string;
|
|
1189
|
+
static names(): {
|
|
1190
|
+
[key: string]: string;
|
|
1191
|
+
};
|
|
1192
|
+
static types(): {
|
|
1193
|
+
[key: string]: any;
|
|
1194
|
+
};
|
|
1195
|
+
constructor(map?: {
|
|
1196
|
+
[key: string]: any;
|
|
1197
|
+
});
|
|
1198
|
+
}
|
|
1199
|
+
export declare class ListTagsForPrivateAccessApplicationResponse extends $tea.Model {
|
|
1200
|
+
headers: {
|
|
1201
|
+
[key: string]: string;
|
|
1202
|
+
};
|
|
1203
|
+
statusCode: number;
|
|
1204
|
+
body: ListTagsForPrivateAccessApplicationResponseBody;
|
|
1205
|
+
static names(): {
|
|
1206
|
+
[key: string]: string;
|
|
1207
|
+
};
|
|
1208
|
+
static types(): {
|
|
1209
|
+
[key: string]: any;
|
|
1210
|
+
};
|
|
1211
|
+
constructor(map?: {
|
|
1212
|
+
[key: string]: any;
|
|
1213
|
+
});
|
|
1214
|
+
}
|
|
1215
|
+
export declare class ListTagsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
1216
|
+
policyIds?: string[];
|
|
1217
|
+
static names(): {
|
|
1218
|
+
[key: string]: string;
|
|
1219
|
+
};
|
|
1220
|
+
static types(): {
|
|
1221
|
+
[key: string]: any;
|
|
1222
|
+
};
|
|
1223
|
+
constructor(map?: {
|
|
1224
|
+
[key: string]: any;
|
|
1225
|
+
});
|
|
1226
|
+
}
|
|
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
|
+
export declare class ListTagsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1240
|
+
polices?: ListTagsForPrivateAccessPolicyResponseBodyPolices[];
|
|
1241
|
+
requestId?: string;
|
|
1242
|
+
static names(): {
|
|
1243
|
+
[key: string]: string;
|
|
1244
|
+
};
|
|
1245
|
+
static types(): {
|
|
1246
|
+
[key: string]: any;
|
|
1247
|
+
};
|
|
1248
|
+
constructor(map?: {
|
|
1249
|
+
[key: string]: any;
|
|
1250
|
+
});
|
|
1251
|
+
}
|
|
1252
|
+
export declare class ListTagsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1253
|
+
headers: {
|
|
1254
|
+
[key: string]: string;
|
|
1255
|
+
};
|
|
1256
|
+
statusCode: number;
|
|
1257
|
+
body: ListTagsForPrivateAccessPolicyResponseBody;
|
|
1258
|
+
static names(): {
|
|
1259
|
+
[key: string]: string;
|
|
1260
|
+
};
|
|
1261
|
+
static types(): {
|
|
1262
|
+
[key: string]: any;
|
|
1263
|
+
};
|
|
1264
|
+
constructor(map?: {
|
|
1265
|
+
[key: string]: any;
|
|
1266
|
+
});
|
|
1267
|
+
}
|
|
1268
|
+
export declare class ListUserGroupsRequest extends $tea.Model {
|
|
1269
|
+
attributeValue?: string;
|
|
1270
|
+
currentPage?: number;
|
|
1271
|
+
name?: string;
|
|
1272
|
+
PAPolicyId?: string;
|
|
1273
|
+
pageSize?: number;
|
|
1274
|
+
userGroupIds?: string[];
|
|
1275
|
+
static names(): {
|
|
1276
|
+
[key: string]: string;
|
|
1277
|
+
};
|
|
1278
|
+
static types(): {
|
|
1279
|
+
[key: string]: any;
|
|
1280
|
+
};
|
|
1281
|
+
constructor(map?: {
|
|
1282
|
+
[key: string]: any;
|
|
1283
|
+
});
|
|
1284
|
+
}
|
|
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
|
+
export declare class ListUserGroupsResponseBody extends $tea.Model {
|
|
1303
|
+
requestId?: string;
|
|
1304
|
+
totalNum?: number;
|
|
1305
|
+
userGroups?: ListUserGroupsResponseBodyUserGroups[];
|
|
1306
|
+
static names(): {
|
|
1307
|
+
[key: string]: string;
|
|
1308
|
+
};
|
|
1309
|
+
static types(): {
|
|
1310
|
+
[key: string]: any;
|
|
1311
|
+
};
|
|
1312
|
+
constructor(map?: {
|
|
1313
|
+
[key: string]: any;
|
|
1314
|
+
});
|
|
1315
|
+
}
|
|
1316
|
+
export declare class ListUserGroupsResponse extends $tea.Model {
|
|
1317
|
+
headers: {
|
|
1318
|
+
[key: string]: string;
|
|
1319
|
+
};
|
|
1320
|
+
statusCode: number;
|
|
1321
|
+
body: ListUserGroupsResponseBody;
|
|
1322
|
+
static names(): {
|
|
1323
|
+
[key: string]: string;
|
|
1324
|
+
};
|
|
1325
|
+
static types(): {
|
|
1326
|
+
[key: string]: any;
|
|
1327
|
+
};
|
|
1328
|
+
constructor(map?: {
|
|
1329
|
+
[key: string]: any;
|
|
1330
|
+
});
|
|
1331
|
+
}
|
|
1332
|
+
export declare class ListUserGroupsForPrivateAccessPolicyRequest extends $tea.Model {
|
|
1333
|
+
policyIds?: string[];
|
|
1334
|
+
static names(): {
|
|
1335
|
+
[key: string]: string;
|
|
1336
|
+
};
|
|
1337
|
+
static types(): {
|
|
1338
|
+
[key: string]: any;
|
|
1339
|
+
};
|
|
1340
|
+
constructor(map?: {
|
|
1341
|
+
[key: string]: any;
|
|
1342
|
+
});
|
|
1343
|
+
}
|
|
1344
|
+
export declare class ListUserGroupsForPrivateAccessPolicyShrinkRequest extends $tea.Model {
|
|
1345
|
+
policyIdsShrink?: string;
|
|
1346
|
+
static names(): {
|
|
1347
|
+
[key: string]: string;
|
|
1348
|
+
};
|
|
1349
|
+
static types(): {
|
|
1350
|
+
[key: string]: any;
|
|
1351
|
+
};
|
|
1352
|
+
constructor(map?: {
|
|
1353
|
+
[key: string]: any;
|
|
1354
|
+
});
|
|
1355
|
+
}
|
|
1356
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1357
|
+
polices?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolices[];
|
|
1358
|
+
requestId?: string;
|
|
1359
|
+
static names(): {
|
|
1360
|
+
[key: string]: string;
|
|
1361
|
+
};
|
|
1362
|
+
static types(): {
|
|
1363
|
+
[key: string]: any;
|
|
1364
|
+
};
|
|
1365
|
+
constructor(map?: {
|
|
1366
|
+
[key: string]: any;
|
|
1367
|
+
});
|
|
1368
|
+
}
|
|
1369
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponse extends $tea.Model {
|
|
1370
|
+
headers: {
|
|
1371
|
+
[key: string]: string;
|
|
1372
|
+
};
|
|
1373
|
+
statusCode: number;
|
|
1374
|
+
body: ListUserGroupsForPrivateAccessPolicyResponseBody;
|
|
1375
|
+
static names(): {
|
|
1376
|
+
[key: string]: string;
|
|
1377
|
+
};
|
|
1378
|
+
static types(): {
|
|
1379
|
+
[key: string]: any;
|
|
1380
|
+
};
|
|
1381
|
+
constructor(map?: {
|
|
1382
|
+
[key: string]: any;
|
|
1383
|
+
});
|
|
1384
|
+
}
|
|
1385
|
+
export declare class UpdatePrivateAccessApplicationRequest extends $tea.Model {
|
|
1386
|
+
addresses?: string[];
|
|
1387
|
+
applicationId?: string;
|
|
1388
|
+
description?: string;
|
|
1389
|
+
modifyType?: string;
|
|
1390
|
+
portRanges?: UpdatePrivateAccessApplicationRequestPortRanges[];
|
|
1391
|
+
protocol?: string;
|
|
1392
|
+
status?: string;
|
|
1393
|
+
tagIds?: string[];
|
|
1394
|
+
static names(): {
|
|
1395
|
+
[key: string]: string;
|
|
1396
|
+
};
|
|
1397
|
+
static types(): {
|
|
1398
|
+
[key: string]: any;
|
|
1399
|
+
};
|
|
1400
|
+
constructor(map?: {
|
|
1401
|
+
[key: string]: any;
|
|
1402
|
+
});
|
|
1403
|
+
}
|
|
1404
|
+
export declare class UpdatePrivateAccessApplicationShrinkRequest extends $tea.Model {
|
|
1405
|
+
addressesShrink?: string;
|
|
1406
|
+
applicationId?: string;
|
|
1407
|
+
description?: string;
|
|
1408
|
+
modifyType?: string;
|
|
1409
|
+
portRangesShrink?: string;
|
|
1410
|
+
protocol?: string;
|
|
1411
|
+
status?: string;
|
|
1412
|
+
tagIdsShrink?: string;
|
|
1413
|
+
static names(): {
|
|
1414
|
+
[key: string]: string;
|
|
1415
|
+
};
|
|
1416
|
+
static types(): {
|
|
1417
|
+
[key: string]: any;
|
|
1418
|
+
};
|
|
1419
|
+
constructor(map?: {
|
|
1420
|
+
[key: string]: any;
|
|
1421
|
+
});
|
|
1422
|
+
}
|
|
1423
|
+
export declare class UpdatePrivateAccessApplicationResponseBody extends $tea.Model {
|
|
1424
|
+
requestId?: string;
|
|
1425
|
+
static names(): {
|
|
1426
|
+
[key: string]: string;
|
|
1427
|
+
};
|
|
1428
|
+
static types(): {
|
|
1429
|
+
[key: string]: any;
|
|
1430
|
+
};
|
|
1431
|
+
constructor(map?: {
|
|
1432
|
+
[key: string]: any;
|
|
1433
|
+
});
|
|
1434
|
+
}
|
|
1435
|
+
export declare class UpdatePrivateAccessApplicationResponse extends $tea.Model {
|
|
1436
|
+
headers: {
|
|
1437
|
+
[key: string]: string;
|
|
1438
|
+
};
|
|
1439
|
+
statusCode: number;
|
|
1440
|
+
body: UpdatePrivateAccessApplicationResponseBody;
|
|
1441
|
+
static names(): {
|
|
1442
|
+
[key: string]: string;
|
|
1443
|
+
};
|
|
1444
|
+
static types(): {
|
|
1445
|
+
[key: string]: any;
|
|
1446
|
+
};
|
|
1447
|
+
constructor(map?: {
|
|
1448
|
+
[key: string]: any;
|
|
1449
|
+
});
|
|
1450
|
+
}
|
|
1451
|
+
export declare class UpdatePrivateAccessPolicyRequest extends $tea.Model {
|
|
1452
|
+
applicationIds?: string[];
|
|
1453
|
+
applicationType?: string;
|
|
1454
|
+
customUserAttributes?: UpdatePrivateAccessPolicyRequestCustomUserAttributes[];
|
|
1455
|
+
description?: string;
|
|
1456
|
+
modifyType?: string;
|
|
1457
|
+
policyAction?: string;
|
|
1458
|
+
policyId?: string;
|
|
1459
|
+
priority?: number;
|
|
1460
|
+
status?: string;
|
|
1461
|
+
tagIds?: string[];
|
|
1462
|
+
userGroupIds?: string[];
|
|
1463
|
+
userGroupMode?: string;
|
|
1464
|
+
static names(): {
|
|
1465
|
+
[key: string]: string;
|
|
1466
|
+
};
|
|
1467
|
+
static types(): {
|
|
1468
|
+
[key: string]: any;
|
|
1469
|
+
};
|
|
1470
|
+
constructor(map?: {
|
|
1471
|
+
[key: string]: any;
|
|
1472
|
+
});
|
|
1473
|
+
}
|
|
1474
|
+
export declare class UpdatePrivateAccessPolicyShrinkRequest extends $tea.Model {
|
|
1475
|
+
applicationIdsShrink?: string;
|
|
1476
|
+
applicationType?: string;
|
|
1477
|
+
customUserAttributesShrink?: string;
|
|
1478
|
+
description?: string;
|
|
1479
|
+
modifyType?: string;
|
|
1480
|
+
policyAction?: string;
|
|
1481
|
+
policyId?: string;
|
|
1482
|
+
priority?: number;
|
|
1483
|
+
status?: string;
|
|
1484
|
+
tagIdsShrink?: string;
|
|
1485
|
+
userGroupIdsShrink?: string;
|
|
1486
|
+
userGroupMode?: string;
|
|
1487
|
+
static names(): {
|
|
1488
|
+
[key: string]: string;
|
|
1489
|
+
};
|
|
1490
|
+
static types(): {
|
|
1491
|
+
[key: string]: any;
|
|
1492
|
+
};
|
|
1493
|
+
constructor(map?: {
|
|
1494
|
+
[key: string]: any;
|
|
1495
|
+
});
|
|
1496
|
+
}
|
|
1497
|
+
export declare class UpdatePrivateAccessPolicyResponseBody extends $tea.Model {
|
|
1498
|
+
requestId?: string;
|
|
1499
|
+
static names(): {
|
|
1500
|
+
[key: string]: string;
|
|
1501
|
+
};
|
|
1502
|
+
static types(): {
|
|
1503
|
+
[key: string]: any;
|
|
1504
|
+
};
|
|
1505
|
+
constructor(map?: {
|
|
1506
|
+
[key: string]: any;
|
|
1507
|
+
});
|
|
1508
|
+
}
|
|
1509
|
+
export declare class UpdatePrivateAccessPolicyResponse extends $tea.Model {
|
|
1510
|
+
headers: {
|
|
1511
|
+
[key: string]: string;
|
|
1512
|
+
};
|
|
1513
|
+
statusCode: number;
|
|
1514
|
+
body: UpdatePrivateAccessPolicyResponseBody;
|
|
1515
|
+
static names(): {
|
|
1516
|
+
[key: string]: string;
|
|
1517
|
+
};
|
|
1518
|
+
static types(): {
|
|
1519
|
+
[key: string]: any;
|
|
1520
|
+
};
|
|
1521
|
+
constructor(map?: {
|
|
1522
|
+
[key: string]: any;
|
|
1523
|
+
});
|
|
1524
|
+
}
|
|
1525
|
+
export declare class UpdateUserGroupRequest extends $tea.Model {
|
|
1526
|
+
attributes?: UpdateUserGroupRequestAttributes[];
|
|
1527
|
+
description?: string;
|
|
1528
|
+
modifyType?: string;
|
|
1529
|
+
userGroupId?: string;
|
|
1530
|
+
static names(): {
|
|
1531
|
+
[key: string]: string;
|
|
1532
|
+
};
|
|
1533
|
+
static types(): {
|
|
1534
|
+
[key: string]: any;
|
|
1535
|
+
};
|
|
1536
|
+
constructor(map?: {
|
|
1537
|
+
[key: string]: any;
|
|
1538
|
+
});
|
|
1539
|
+
}
|
|
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
|
+
export declare class UpdateUserGroupResponseBody extends $tea.Model {
|
|
1556
|
+
requestId?: string;
|
|
1557
|
+
static names(): {
|
|
1558
|
+
[key: string]: string;
|
|
1559
|
+
};
|
|
1560
|
+
static types(): {
|
|
1561
|
+
[key: string]: any;
|
|
1562
|
+
};
|
|
1563
|
+
constructor(map?: {
|
|
1564
|
+
[key: string]: any;
|
|
1565
|
+
});
|
|
1566
|
+
}
|
|
1567
|
+
export declare class UpdateUserGroupResponse extends $tea.Model {
|
|
1568
|
+
headers: {
|
|
1569
|
+
[key: string]: string;
|
|
1570
|
+
};
|
|
1571
|
+
statusCode: number;
|
|
1572
|
+
body: UpdateUserGroupResponseBody;
|
|
1573
|
+
static names(): {
|
|
1574
|
+
[key: string]: string;
|
|
1575
|
+
};
|
|
1576
|
+
static types(): {
|
|
1577
|
+
[key: string]: any;
|
|
1578
|
+
};
|
|
1579
|
+
constructor(map?: {
|
|
1580
|
+
[key: string]: any;
|
|
1581
|
+
});
|
|
1582
|
+
}
|
|
1583
|
+
export declare class CreatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
1584
|
+
begin?: number;
|
|
1585
|
+
end?: number;
|
|
1586
|
+
static names(): {
|
|
1587
|
+
[key: string]: string;
|
|
1588
|
+
};
|
|
1589
|
+
static types(): {
|
|
1590
|
+
[key: string]: any;
|
|
1591
|
+
};
|
|
1592
|
+
constructor(map?: {
|
|
1593
|
+
[key: string]: any;
|
|
1594
|
+
});
|
|
1595
|
+
}
|
|
1596
|
+
export declare class CreatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.Model {
|
|
1597
|
+
idpId?: number;
|
|
1598
|
+
relation?: string;
|
|
1599
|
+
userGroupType?: string;
|
|
1600
|
+
value?: string;
|
|
1601
|
+
static names(): {
|
|
1602
|
+
[key: string]: string;
|
|
1603
|
+
};
|
|
1604
|
+
static types(): {
|
|
1605
|
+
[key: string]: any;
|
|
1606
|
+
};
|
|
1607
|
+
constructor(map?: {
|
|
1608
|
+
[key: string]: any;
|
|
1609
|
+
});
|
|
1610
|
+
}
|
|
1611
|
+
export declare class CreateUserGroupRequestAttributes extends $tea.Model {
|
|
1612
|
+
idpId?: number;
|
|
1613
|
+
relation?: string;
|
|
1614
|
+
userGroupType?: string;
|
|
1615
|
+
value?: string;
|
|
1616
|
+
static names(): {
|
|
1617
|
+
[key: string]: string;
|
|
1618
|
+
};
|
|
1619
|
+
static types(): {
|
|
1620
|
+
[key: string]: any;
|
|
1621
|
+
};
|
|
1622
|
+
constructor(map?: {
|
|
1623
|
+
[key: string]: any;
|
|
1624
|
+
});
|
|
1625
|
+
}
|
|
1626
|
+
export declare class GetPrivateAccessApplicationResponseBodyApplicationPortRanges extends $tea.Model {
|
|
1627
|
+
begin?: number;
|
|
1628
|
+
end?: number;
|
|
1629
|
+
static names(): {
|
|
1630
|
+
[key: string]: string;
|
|
1631
|
+
};
|
|
1632
|
+
static types(): {
|
|
1633
|
+
[key: string]: any;
|
|
1634
|
+
};
|
|
1635
|
+
constructor(map?: {
|
|
1636
|
+
[key: string]: any;
|
|
1637
|
+
});
|
|
1638
|
+
}
|
|
1639
|
+
export declare class GetPrivateAccessApplicationResponseBodyApplication extends $tea.Model {
|
|
1640
|
+
addresses?: string[];
|
|
1641
|
+
applicationId?: string;
|
|
1642
|
+
createTime?: string;
|
|
1643
|
+
description?: string;
|
|
1644
|
+
name?: string;
|
|
1645
|
+
policyIds?: string[];
|
|
1646
|
+
portRanges?: GetPrivateAccessApplicationResponseBodyApplicationPortRanges[];
|
|
1647
|
+
protocol?: string;
|
|
1648
|
+
status?: string;
|
|
1649
|
+
tagIds?: string[];
|
|
1650
|
+
static names(): {
|
|
1651
|
+
[key: string]: string;
|
|
1652
|
+
};
|
|
1653
|
+
static types(): {
|
|
1654
|
+
[key: string]: any;
|
|
1655
|
+
};
|
|
1656
|
+
constructor(map?: {
|
|
1657
|
+
[key: string]: any;
|
|
1658
|
+
});
|
|
1659
|
+
}
|
|
1660
|
+
export declare class GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes extends $tea.Model {
|
|
1661
|
+
idpId?: number;
|
|
1662
|
+
relation?: string;
|
|
1663
|
+
userGroupType?: string;
|
|
1664
|
+
value?: string;
|
|
1665
|
+
static names(): {
|
|
1666
|
+
[key: string]: string;
|
|
1667
|
+
};
|
|
1668
|
+
static types(): {
|
|
1669
|
+
[key: string]: any;
|
|
1670
|
+
};
|
|
1671
|
+
constructor(map?: {
|
|
1672
|
+
[key: string]: any;
|
|
1673
|
+
});
|
|
1674
|
+
}
|
|
1675
|
+
export declare class GetPrivateAccessPolicyResponseBodyPolicy extends $tea.Model {
|
|
1676
|
+
applicationIds?: string[];
|
|
1677
|
+
applicationType?: string;
|
|
1678
|
+
createTime?: string;
|
|
1679
|
+
customUserAttributes?: GetPrivateAccessPolicyResponseBodyPolicyCustomUserAttributes[];
|
|
1680
|
+
description?: string;
|
|
1681
|
+
name?: string;
|
|
1682
|
+
policyAction?: string;
|
|
1683
|
+
policyId?: string;
|
|
1684
|
+
priority?: number;
|
|
1685
|
+
status?: string;
|
|
1686
|
+
tagIds?: string[];
|
|
1687
|
+
userGroupIds?: string[];
|
|
1688
|
+
userGroupMode?: string;
|
|
1689
|
+
static names(): {
|
|
1690
|
+
[key: string]: string;
|
|
1691
|
+
};
|
|
1692
|
+
static types(): {
|
|
1693
|
+
[key: string]: any;
|
|
1694
|
+
};
|
|
1695
|
+
constructor(map?: {
|
|
1696
|
+
[key: string]: any;
|
|
1697
|
+
});
|
|
1698
|
+
}
|
|
1699
|
+
export declare class GetUserGroupResponseBodyUserGroupAttributes extends $tea.Model {
|
|
1700
|
+
idpId?: number;
|
|
1701
|
+
relation?: string;
|
|
1702
|
+
userGroupType?: string;
|
|
1703
|
+
value?: string;
|
|
1704
|
+
static names(): {
|
|
1705
|
+
[key: string]: string;
|
|
1706
|
+
};
|
|
1707
|
+
static types(): {
|
|
1708
|
+
[key: string]: any;
|
|
1709
|
+
};
|
|
1710
|
+
constructor(map?: {
|
|
1711
|
+
[key: string]: any;
|
|
1712
|
+
});
|
|
1713
|
+
}
|
|
1714
|
+
export declare class GetUserGroupResponseBodyUserGroup extends $tea.Model {
|
|
1715
|
+
attributes?: GetUserGroupResponseBodyUserGroupAttributes[];
|
|
1716
|
+
createTime?: string;
|
|
1717
|
+
description?: string;
|
|
1718
|
+
name?: string;
|
|
1719
|
+
userGroupId?: string;
|
|
1720
|
+
static names(): {
|
|
1721
|
+
[key: string]: string;
|
|
1722
|
+
};
|
|
1723
|
+
static types(): {
|
|
1724
|
+
[key: string]: any;
|
|
1725
|
+
};
|
|
1726
|
+
constructor(map?: {
|
|
1727
|
+
[key: string]: any;
|
|
1728
|
+
});
|
|
1729
|
+
}
|
|
1730
|
+
export declare class ListApplicationsForPrivateAccessPolicyResponseBodyPolicesApplicationsPortRanges extends $tea.Model {
|
|
1731
|
+
begin?: number;
|
|
1732
|
+
end?: number;
|
|
1733
|
+
static names(): {
|
|
1734
|
+
[key: string]: string;
|
|
1735
|
+
};
|
|
1736
|
+
static types(): {
|
|
1737
|
+
[key: string]: any;
|
|
1738
|
+
};
|
|
1739
|
+
constructor(map?: {
|
|
1740
|
+
[key: string]: any;
|
|
1741
|
+
});
|
|
1742
|
+
}
|
|
1743
|
+
export declare class ListApplicationsForPrivateAccessPolicyResponseBodyPolicesApplications extends $tea.Model {
|
|
1744
|
+
addresses?: string[];
|
|
1745
|
+
applicationId?: string;
|
|
1746
|
+
createTime?: string;
|
|
1747
|
+
description?: string;
|
|
1748
|
+
name?: string;
|
|
1749
|
+
portRanges?: ListApplicationsForPrivateAccessPolicyResponseBodyPolicesApplicationsPortRanges[];
|
|
1750
|
+
protocol?: string;
|
|
1751
|
+
status?: string;
|
|
1752
|
+
static names(): {
|
|
1753
|
+
[key: string]: string;
|
|
1754
|
+
};
|
|
1755
|
+
static types(): {
|
|
1756
|
+
[key: string]: any;
|
|
1757
|
+
};
|
|
1758
|
+
constructor(map?: {
|
|
1759
|
+
[key: string]: any;
|
|
1760
|
+
});
|
|
1761
|
+
}
|
|
1762
|
+
export declare class ListApplicationsForPrivateAccessPolicyResponseBodyPolices extends $tea.Model {
|
|
1763
|
+
applications?: ListApplicationsForPrivateAccessPolicyResponseBodyPolicesApplications[];
|
|
1764
|
+
policyId?: string;
|
|
1765
|
+
static names(): {
|
|
1766
|
+
[key: string]: string;
|
|
1767
|
+
};
|
|
1768
|
+
static types(): {
|
|
1769
|
+
[key: string]: any;
|
|
1770
|
+
};
|
|
1771
|
+
constructor(map?: {
|
|
1772
|
+
[key: string]: any;
|
|
1773
|
+
});
|
|
1774
|
+
}
|
|
1775
|
+
export declare class ListApplicationsForPrivateAccessTagResponseBodyTagsApplicationsPortRanges extends $tea.Model {
|
|
1776
|
+
begin?: number;
|
|
1777
|
+
end?: number;
|
|
1778
|
+
static names(): {
|
|
1779
|
+
[key: string]: string;
|
|
1780
|
+
};
|
|
1781
|
+
static types(): {
|
|
1782
|
+
[key: string]: any;
|
|
1783
|
+
};
|
|
1784
|
+
constructor(map?: {
|
|
1785
|
+
[key: string]: any;
|
|
1786
|
+
});
|
|
1787
|
+
}
|
|
1788
|
+
export declare class ListApplicationsForPrivateAccessTagResponseBodyTagsApplications extends $tea.Model {
|
|
1789
|
+
addresses?: string[];
|
|
1790
|
+
applicationId?: string;
|
|
1791
|
+
createTime?: string;
|
|
1792
|
+
description?: string;
|
|
1793
|
+
name?: string;
|
|
1794
|
+
portRanges?: ListApplicationsForPrivateAccessTagResponseBodyTagsApplicationsPortRanges[];
|
|
1795
|
+
protocol?: string;
|
|
1796
|
+
status?: string;
|
|
1797
|
+
static names(): {
|
|
1798
|
+
[key: string]: string;
|
|
1799
|
+
};
|
|
1800
|
+
static types(): {
|
|
1801
|
+
[key: string]: any;
|
|
1802
|
+
};
|
|
1803
|
+
constructor(map?: {
|
|
1804
|
+
[key: string]: any;
|
|
1805
|
+
});
|
|
1806
|
+
}
|
|
1807
|
+
export declare class ListApplicationsForPrivateAccessTagResponseBodyTags extends $tea.Model {
|
|
1808
|
+
applications?: ListApplicationsForPrivateAccessTagResponseBodyTagsApplications[];
|
|
1809
|
+
tagId?: string;
|
|
1810
|
+
static names(): {
|
|
1811
|
+
[key: string]: string;
|
|
1812
|
+
};
|
|
1813
|
+
static types(): {
|
|
1814
|
+
[key: string]: any;
|
|
1815
|
+
};
|
|
1816
|
+
constructor(map?: {
|
|
1817
|
+
[key: string]: any;
|
|
1818
|
+
});
|
|
1819
|
+
}
|
|
1820
|
+
export declare class ListConnectorsResponseBodyConnectorsApplications extends $tea.Model {
|
|
1821
|
+
applicationId?: string;
|
|
1822
|
+
applicationName?: string;
|
|
1823
|
+
static names(): {
|
|
1824
|
+
[key: string]: string;
|
|
1825
|
+
};
|
|
1826
|
+
static types(): {
|
|
1827
|
+
[key: string]: any;
|
|
1828
|
+
};
|
|
1829
|
+
constructor(map?: {
|
|
1830
|
+
[key: string]: any;
|
|
1831
|
+
});
|
|
1832
|
+
}
|
|
1833
|
+
export declare class ListConnectorsResponseBodyConnectorsUpgradeTime extends $tea.Model {
|
|
1834
|
+
end?: string;
|
|
1835
|
+
start?: string;
|
|
1836
|
+
static names(): {
|
|
1837
|
+
[key: string]: string;
|
|
1838
|
+
};
|
|
1839
|
+
static types(): {
|
|
1840
|
+
[key: string]: any;
|
|
1841
|
+
};
|
|
1842
|
+
constructor(map?: {
|
|
1843
|
+
[key: string]: any;
|
|
1844
|
+
});
|
|
1845
|
+
}
|
|
1846
|
+
export declare class ListConnectorsResponseBodyConnectors extends $tea.Model {
|
|
1847
|
+
applications?: ListConnectorsResponseBodyConnectorsApplications[];
|
|
1848
|
+
connectorId?: string;
|
|
1849
|
+
createTime?: string;
|
|
1850
|
+
name?: string;
|
|
1851
|
+
regionId?: string;
|
|
1852
|
+
status?: string;
|
|
1853
|
+
switchStatus?: string;
|
|
1854
|
+
upgradeTime?: ListConnectorsResponseBodyConnectorsUpgradeTime;
|
|
1855
|
+
static names(): {
|
|
1856
|
+
[key: string]: string;
|
|
1857
|
+
};
|
|
1858
|
+
static types(): {
|
|
1859
|
+
[key: string]: any;
|
|
1860
|
+
};
|
|
1861
|
+
constructor(map?: {
|
|
1862
|
+
[key: string]: any;
|
|
1863
|
+
});
|
|
1864
|
+
}
|
|
1865
|
+
export declare class ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPoliciesCustomUserAttributes extends $tea.Model {
|
|
1866
|
+
idpId?: number;
|
|
1867
|
+
relation?: string;
|
|
1868
|
+
userGroupType?: string;
|
|
1869
|
+
value?: string;
|
|
1870
|
+
static names(): {
|
|
1871
|
+
[key: string]: string;
|
|
1872
|
+
};
|
|
1873
|
+
static types(): {
|
|
1874
|
+
[key: string]: any;
|
|
1875
|
+
};
|
|
1876
|
+
constructor(map?: {
|
|
1877
|
+
[key: string]: any;
|
|
1878
|
+
});
|
|
1879
|
+
}
|
|
1880
|
+
export declare class ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPolicies extends $tea.Model {
|
|
1881
|
+
applicationType?: string;
|
|
1882
|
+
createTime?: string;
|
|
1883
|
+
customUserAttributes?: ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPoliciesCustomUserAttributes[];
|
|
1884
|
+
description?: string;
|
|
1885
|
+
name?: string;
|
|
1886
|
+
policyAction?: string;
|
|
1887
|
+
policyId?: string;
|
|
1888
|
+
priority?: number;
|
|
1889
|
+
status?: string;
|
|
1890
|
+
userGroupType?: string;
|
|
1891
|
+
static names(): {
|
|
1892
|
+
[key: string]: string;
|
|
1893
|
+
};
|
|
1894
|
+
static types(): {
|
|
1895
|
+
[key: string]: any;
|
|
1896
|
+
};
|
|
1897
|
+
constructor(map?: {
|
|
1898
|
+
[key: string]: any;
|
|
1899
|
+
});
|
|
1900
|
+
}
|
|
1901
|
+
export declare class ListPolicesForPrivateAccessApplicationResponseBodyApplications extends $tea.Model {
|
|
1902
|
+
applicationId?: string;
|
|
1903
|
+
policies?: ListPolicesForPrivateAccessApplicationResponseBodyApplicationsPolicies[];
|
|
1904
|
+
static names(): {
|
|
1905
|
+
[key: string]: string;
|
|
1906
|
+
};
|
|
1907
|
+
static types(): {
|
|
1908
|
+
[key: string]: any;
|
|
1909
|
+
};
|
|
1910
|
+
constructor(map?: {
|
|
1911
|
+
[key: string]: any;
|
|
1912
|
+
});
|
|
1913
|
+
}
|
|
1914
|
+
export declare class ListPolicesForPrivateAccessTagResponseBodyTagsPolicesCustomUserAttributes extends $tea.Model {
|
|
1915
|
+
idpId?: number;
|
|
1916
|
+
relation?: string;
|
|
1917
|
+
userGroupType?: string;
|
|
1918
|
+
value?: string;
|
|
1919
|
+
static names(): {
|
|
1920
|
+
[key: string]: string;
|
|
1921
|
+
};
|
|
1922
|
+
static types(): {
|
|
1923
|
+
[key: string]: any;
|
|
1924
|
+
};
|
|
1925
|
+
constructor(map?: {
|
|
1926
|
+
[key: string]: any;
|
|
1927
|
+
});
|
|
1928
|
+
}
|
|
1929
|
+
export declare class ListPolicesForPrivateAccessTagResponseBodyTagsPolices extends $tea.Model {
|
|
1930
|
+
applicationType?: string;
|
|
1931
|
+
createTime?: string;
|
|
1932
|
+
customUserAttributes?: ListPolicesForPrivateAccessTagResponseBodyTagsPolicesCustomUserAttributes[];
|
|
1933
|
+
description?: string;
|
|
1934
|
+
name?: string;
|
|
1935
|
+
policyAction?: string;
|
|
1936
|
+
policyId?: string;
|
|
1937
|
+
priority?: number;
|
|
1938
|
+
status?: string;
|
|
1939
|
+
userGroupType?: string;
|
|
1940
|
+
static names(): {
|
|
1941
|
+
[key: string]: string;
|
|
1942
|
+
};
|
|
1943
|
+
static types(): {
|
|
1944
|
+
[key: string]: any;
|
|
1945
|
+
};
|
|
1946
|
+
constructor(map?: {
|
|
1947
|
+
[key: string]: any;
|
|
1948
|
+
});
|
|
1949
|
+
}
|
|
1950
|
+
export declare class ListPolicesForPrivateAccessTagResponseBodyTags extends $tea.Model {
|
|
1951
|
+
polices?: ListPolicesForPrivateAccessTagResponseBodyTagsPolices[];
|
|
1952
|
+
tagId?: string;
|
|
1953
|
+
static names(): {
|
|
1954
|
+
[key: string]: string;
|
|
1955
|
+
};
|
|
1956
|
+
static types(): {
|
|
1957
|
+
[key: string]: any;
|
|
1958
|
+
};
|
|
1959
|
+
constructor(map?: {
|
|
1960
|
+
[key: string]: any;
|
|
1961
|
+
});
|
|
1962
|
+
}
|
|
1963
|
+
export declare class ListPolicesForUserGroupResponseBodyUserGroupsPolices extends $tea.Model {
|
|
1964
|
+
name?: string;
|
|
1965
|
+
policyId?: string;
|
|
1966
|
+
policyType?: string;
|
|
1967
|
+
static names(): {
|
|
1968
|
+
[key: string]: string;
|
|
1969
|
+
};
|
|
1970
|
+
static types(): {
|
|
1971
|
+
[key: string]: any;
|
|
1972
|
+
};
|
|
1973
|
+
constructor(map?: {
|
|
1974
|
+
[key: string]: any;
|
|
1975
|
+
});
|
|
1976
|
+
}
|
|
1977
|
+
export declare class ListPolicesForUserGroupResponseBodyUserGroups extends $tea.Model {
|
|
1978
|
+
polices?: ListPolicesForUserGroupResponseBodyUserGroupsPolices[];
|
|
1979
|
+
userGroupId?: string;
|
|
1980
|
+
static names(): {
|
|
1981
|
+
[key: string]: string;
|
|
1982
|
+
};
|
|
1983
|
+
static types(): {
|
|
1984
|
+
[key: string]: any;
|
|
1985
|
+
};
|
|
1986
|
+
constructor(map?: {
|
|
1987
|
+
[key: string]: any;
|
|
1988
|
+
});
|
|
1989
|
+
}
|
|
1990
|
+
export declare class ListPrivateAccessApplicationsResponseBodyApplicationsPortRanges extends $tea.Model {
|
|
1991
|
+
begin?: number;
|
|
1992
|
+
end?: number;
|
|
1993
|
+
static names(): {
|
|
1994
|
+
[key: string]: string;
|
|
1995
|
+
};
|
|
1996
|
+
static types(): {
|
|
1997
|
+
[key: string]: any;
|
|
1998
|
+
};
|
|
1999
|
+
constructor(map?: {
|
|
2000
|
+
[key: string]: any;
|
|
2001
|
+
});
|
|
2002
|
+
}
|
|
2003
|
+
export declare class ListPrivateAccessApplicationsResponseBodyApplications extends $tea.Model {
|
|
2004
|
+
addresses?: string[];
|
|
2005
|
+
applicationId?: string;
|
|
2006
|
+
createTime?: string;
|
|
2007
|
+
description?: string;
|
|
2008
|
+
name?: string;
|
|
2009
|
+
policyIds?: string[];
|
|
2010
|
+
portRanges?: ListPrivateAccessApplicationsResponseBodyApplicationsPortRanges[];
|
|
2011
|
+
protocol?: string;
|
|
2012
|
+
status?: string;
|
|
2013
|
+
tagIds?: string[];
|
|
2014
|
+
static names(): {
|
|
2015
|
+
[key: string]: string;
|
|
2016
|
+
};
|
|
2017
|
+
static types(): {
|
|
2018
|
+
[key: string]: any;
|
|
2019
|
+
};
|
|
2020
|
+
constructor(map?: {
|
|
2021
|
+
[key: string]: any;
|
|
2022
|
+
});
|
|
2023
|
+
}
|
|
2024
|
+
export declare class ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes extends $tea.Model {
|
|
2025
|
+
idpId?: number;
|
|
2026
|
+
relation?: string;
|
|
2027
|
+
userGroupType?: string;
|
|
2028
|
+
value?: string;
|
|
2029
|
+
static names(): {
|
|
2030
|
+
[key: string]: string;
|
|
2031
|
+
};
|
|
2032
|
+
static types(): {
|
|
2033
|
+
[key: string]: any;
|
|
2034
|
+
};
|
|
2035
|
+
constructor(map?: {
|
|
2036
|
+
[key: string]: any;
|
|
2037
|
+
});
|
|
2038
|
+
}
|
|
2039
|
+
export declare class ListPrivateAccessPolicesResponseBodyPolices extends $tea.Model {
|
|
2040
|
+
applicationIds?: string[];
|
|
2041
|
+
applicationType?: string;
|
|
2042
|
+
createTime?: string;
|
|
2043
|
+
customUserAttributes?: ListPrivateAccessPolicesResponseBodyPolicesCustomUserAttributes[];
|
|
2044
|
+
description?: string;
|
|
2045
|
+
name?: string;
|
|
2046
|
+
policyAction?: string;
|
|
2047
|
+
policyId?: string;
|
|
2048
|
+
priority?: number;
|
|
2049
|
+
status?: string;
|
|
2050
|
+
tagIds?: string[];
|
|
2051
|
+
userGroupIds?: string[];
|
|
2052
|
+
userGroupMode?: string;
|
|
2053
|
+
static names(): {
|
|
2054
|
+
[key: string]: string;
|
|
2055
|
+
};
|
|
2056
|
+
static types(): {
|
|
2057
|
+
[key: string]: any;
|
|
2058
|
+
};
|
|
2059
|
+
constructor(map?: {
|
|
2060
|
+
[key: string]: any;
|
|
2061
|
+
});
|
|
2062
|
+
}
|
|
2063
|
+
export declare class ListPrivateAccessTagsResponseBodyTags extends $tea.Model {
|
|
2064
|
+
applicationIds?: string[];
|
|
2065
|
+
createTime?: string;
|
|
2066
|
+
description?: string;
|
|
2067
|
+
name?: string;
|
|
2068
|
+
policyIds?: string[];
|
|
2069
|
+
tagId?: string;
|
|
2070
|
+
tagType?: string;
|
|
2071
|
+
static names(): {
|
|
2072
|
+
[key: string]: string;
|
|
2073
|
+
};
|
|
2074
|
+
static types(): {
|
|
2075
|
+
[key: string]: any;
|
|
2076
|
+
};
|
|
2077
|
+
constructor(map?: {
|
|
2078
|
+
[key: string]: any;
|
|
2079
|
+
});
|
|
2080
|
+
}
|
|
2081
|
+
export declare class ListTagsForPrivateAccessApplicationResponseBodyApplicationsTags extends $tea.Model {
|
|
2082
|
+
createTime?: string;
|
|
2083
|
+
description?: string;
|
|
2084
|
+
name?: string;
|
|
2085
|
+
tagId?: string;
|
|
2086
|
+
tagType?: string;
|
|
2087
|
+
static names(): {
|
|
2088
|
+
[key: string]: string;
|
|
2089
|
+
};
|
|
2090
|
+
static types(): {
|
|
2091
|
+
[key: string]: any;
|
|
2092
|
+
};
|
|
2093
|
+
constructor(map?: {
|
|
2094
|
+
[key: string]: any;
|
|
2095
|
+
});
|
|
2096
|
+
}
|
|
2097
|
+
export declare class ListTagsForPrivateAccessApplicationResponseBodyApplications extends $tea.Model {
|
|
2098
|
+
applicationId?: string;
|
|
2099
|
+
tags?: ListTagsForPrivateAccessApplicationResponseBodyApplicationsTags[];
|
|
2100
|
+
static names(): {
|
|
2101
|
+
[key: string]: string;
|
|
2102
|
+
};
|
|
2103
|
+
static types(): {
|
|
2104
|
+
[key: string]: any;
|
|
2105
|
+
};
|
|
2106
|
+
constructor(map?: {
|
|
2107
|
+
[key: string]: any;
|
|
2108
|
+
});
|
|
2109
|
+
}
|
|
2110
|
+
export declare class ListTagsForPrivateAccessPolicyResponseBodyPolicesTags extends $tea.Model {
|
|
2111
|
+
createTime?: string;
|
|
2112
|
+
description?: string;
|
|
2113
|
+
name?: string;
|
|
2114
|
+
tagId?: string;
|
|
2115
|
+
tagType?: string;
|
|
2116
|
+
static names(): {
|
|
2117
|
+
[key: string]: string;
|
|
2118
|
+
};
|
|
2119
|
+
static types(): {
|
|
2120
|
+
[key: string]: any;
|
|
2121
|
+
};
|
|
2122
|
+
constructor(map?: {
|
|
2123
|
+
[key: string]: any;
|
|
2124
|
+
});
|
|
2125
|
+
}
|
|
2126
|
+
export declare class ListTagsForPrivateAccessPolicyResponseBodyPolices extends $tea.Model {
|
|
2127
|
+
policyId?: string;
|
|
2128
|
+
tags?: ListTagsForPrivateAccessPolicyResponseBodyPolicesTags[];
|
|
2129
|
+
static names(): {
|
|
2130
|
+
[key: string]: string;
|
|
2131
|
+
};
|
|
2132
|
+
static types(): {
|
|
2133
|
+
[key: string]: any;
|
|
2134
|
+
};
|
|
2135
|
+
constructor(map?: {
|
|
2136
|
+
[key: string]: any;
|
|
2137
|
+
});
|
|
2138
|
+
}
|
|
2139
|
+
export declare class ListUserGroupsResponseBodyUserGroupsAttributes extends $tea.Model {
|
|
2140
|
+
idpId?: number;
|
|
2141
|
+
relation?: string;
|
|
2142
|
+
userGroupType?: string;
|
|
2143
|
+
value?: string;
|
|
2144
|
+
static names(): {
|
|
2145
|
+
[key: string]: string;
|
|
2146
|
+
};
|
|
2147
|
+
static types(): {
|
|
2148
|
+
[key: string]: any;
|
|
2149
|
+
};
|
|
2150
|
+
constructor(map?: {
|
|
2151
|
+
[key: string]: any;
|
|
2152
|
+
});
|
|
2153
|
+
}
|
|
2154
|
+
export declare class ListUserGroupsResponseBodyUserGroups extends $tea.Model {
|
|
2155
|
+
attributes?: ListUserGroupsResponseBodyUserGroupsAttributes[];
|
|
2156
|
+
createTime?: string;
|
|
2157
|
+
description?: string;
|
|
2158
|
+
name?: string;
|
|
2159
|
+
userGroupId?: string;
|
|
2160
|
+
static names(): {
|
|
2161
|
+
[key: string]: string;
|
|
2162
|
+
};
|
|
2163
|
+
static types(): {
|
|
2164
|
+
[key: string]: any;
|
|
2165
|
+
};
|
|
2166
|
+
constructor(map?: {
|
|
2167
|
+
[key: string]: any;
|
|
2168
|
+
});
|
|
2169
|
+
}
|
|
2170
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponseBodyPolicesUserGroupsAttributes extends $tea.Model {
|
|
2171
|
+
idpId?: number;
|
|
2172
|
+
relation?: string;
|
|
2173
|
+
userGroupType?: string;
|
|
2174
|
+
value?: string;
|
|
2175
|
+
static names(): {
|
|
2176
|
+
[key: string]: string;
|
|
2177
|
+
};
|
|
2178
|
+
static types(): {
|
|
2179
|
+
[key: string]: any;
|
|
2180
|
+
};
|
|
2181
|
+
constructor(map?: {
|
|
2182
|
+
[key: string]: any;
|
|
2183
|
+
});
|
|
2184
|
+
}
|
|
2185
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponseBodyPolicesUserGroups extends $tea.Model {
|
|
2186
|
+
attributes?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolicesUserGroupsAttributes[];
|
|
2187
|
+
createTime?: string;
|
|
2188
|
+
description?: string;
|
|
2189
|
+
name?: string;
|
|
2190
|
+
userGroupId?: string;
|
|
2191
|
+
static names(): {
|
|
2192
|
+
[key: string]: string;
|
|
2193
|
+
};
|
|
2194
|
+
static types(): {
|
|
2195
|
+
[key: string]: any;
|
|
2196
|
+
};
|
|
2197
|
+
constructor(map?: {
|
|
2198
|
+
[key: string]: any;
|
|
2199
|
+
});
|
|
2200
|
+
}
|
|
2201
|
+
export declare class ListUserGroupsForPrivateAccessPolicyResponseBodyPolices extends $tea.Model {
|
|
2202
|
+
policyId?: string;
|
|
2203
|
+
userGroups?: ListUserGroupsForPrivateAccessPolicyResponseBodyPolicesUserGroups[];
|
|
2204
|
+
static names(): {
|
|
2205
|
+
[key: string]: string;
|
|
2206
|
+
};
|
|
2207
|
+
static types(): {
|
|
2208
|
+
[key: string]: any;
|
|
2209
|
+
};
|
|
2210
|
+
constructor(map?: {
|
|
2211
|
+
[key: string]: any;
|
|
2212
|
+
});
|
|
2213
|
+
}
|
|
2214
|
+
export declare class UpdatePrivateAccessApplicationRequestPortRanges extends $tea.Model {
|
|
2215
|
+
begin?: number;
|
|
2216
|
+
end?: number;
|
|
2217
|
+
static names(): {
|
|
2218
|
+
[key: string]: string;
|
|
2219
|
+
};
|
|
2220
|
+
static types(): {
|
|
2221
|
+
[key: string]: any;
|
|
2222
|
+
};
|
|
2223
|
+
constructor(map?: {
|
|
2224
|
+
[key: string]: any;
|
|
2225
|
+
});
|
|
2226
|
+
}
|
|
2227
|
+
export declare class UpdatePrivateAccessPolicyRequestCustomUserAttributes extends $tea.Model {
|
|
2228
|
+
idpId?: number;
|
|
2229
|
+
relation?: string;
|
|
2230
|
+
userGroupType?: string;
|
|
2231
|
+
value?: string;
|
|
2232
|
+
static names(): {
|
|
2233
|
+
[key: string]: string;
|
|
2234
|
+
};
|
|
2235
|
+
static types(): {
|
|
2236
|
+
[key: string]: any;
|
|
2237
|
+
};
|
|
2238
|
+
constructor(map?: {
|
|
2239
|
+
[key: string]: any;
|
|
2240
|
+
});
|
|
2241
|
+
}
|
|
2242
|
+
export declare class UpdateUserGroupRequestAttributes extends $tea.Model {
|
|
2243
|
+
idpId?: number;
|
|
2244
|
+
relation?: string;
|
|
2245
|
+
userGroupType?: string;
|
|
2246
|
+
value?: string;
|
|
2247
|
+
static names(): {
|
|
2248
|
+
[key: string]: string;
|
|
2249
|
+
};
|
|
2250
|
+
static types(): {
|
|
2251
|
+
[key: string]: any;
|
|
2252
|
+
};
|
|
2253
|
+
constructor(map?: {
|
|
2254
|
+
[key: string]: any;
|
|
2255
|
+
});
|
|
2256
|
+
}
|
|
2257
|
+
export default class Client extends OpenApi {
|
|
2258
|
+
constructor(config: $OpenApi.Config);
|
|
2259
|
+
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
2260
|
+
[key: string]: string;
|
|
2261
|
+
}, endpoint: string): string;
|
|
2262
|
+
attachApplication2ConnectorWithOptions(tmpReq: AttachApplication2ConnectorRequest, runtime: $Util.RuntimeOptions): Promise<AttachApplication2ConnectorResponse>;
|
|
2263
|
+
attachApplication2Connector(request: AttachApplication2ConnectorRequest): Promise<AttachApplication2ConnectorResponse>;
|
|
2264
|
+
createPrivateAccessApplicationWithOptions(tmpReq: CreatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessApplicationResponse>;
|
|
2265
|
+
createPrivateAccessApplication(request: CreatePrivateAccessApplicationRequest): Promise<CreatePrivateAccessApplicationResponse>;
|
|
2266
|
+
createPrivateAccessPolicyWithOptions(tmpReq: CreatePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessPolicyResponse>;
|
|
2267
|
+
createPrivateAccessPolicy(request: CreatePrivateAccessPolicyRequest): Promise<CreatePrivateAccessPolicyResponse>;
|
|
2268
|
+
createPrivateAccessTagWithOptions(request: CreatePrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<CreatePrivateAccessTagResponse>;
|
|
2269
|
+
createPrivateAccessTag(request: CreatePrivateAccessTagRequest): Promise<CreatePrivateAccessTagResponse>;
|
|
2270
|
+
createUserGroupWithOptions(tmpReq: CreateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateUserGroupResponse>;
|
|
2271
|
+
createUserGroup(request: CreateUserGroupRequest): Promise<CreateUserGroupResponse>;
|
|
2272
|
+
deletePrivateAccessApplicationWithOptions(request: DeletePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateAccessApplicationResponse>;
|
|
2273
|
+
deletePrivateAccessApplication(request: DeletePrivateAccessApplicationRequest): Promise<DeletePrivateAccessApplicationResponse>;
|
|
2274
|
+
deletePrivateAccessPolicyWithOptions(request: DeletePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateAccessPolicyResponse>;
|
|
2275
|
+
deletePrivateAccessPolicy(request: DeletePrivateAccessPolicyRequest): Promise<DeletePrivateAccessPolicyResponse>;
|
|
2276
|
+
deletePrivateAccessTagWithOptions(request: DeletePrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<DeletePrivateAccessTagResponse>;
|
|
2277
|
+
deletePrivateAccessTag(request: DeletePrivateAccessTagRequest): Promise<DeletePrivateAccessTagResponse>;
|
|
2278
|
+
deleteUserGroupWithOptions(request: DeleteUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteUserGroupResponse>;
|
|
2279
|
+
deleteUserGroup(request: DeleteUserGroupRequest): Promise<DeleteUserGroupResponse>;
|
|
2280
|
+
detachApplication2ConnectorWithOptions(tmpReq: DetachApplication2ConnectorRequest, runtime: $Util.RuntimeOptions): Promise<DetachApplication2ConnectorResponse>;
|
|
2281
|
+
detachApplication2Connector(request: DetachApplication2ConnectorRequest): Promise<DetachApplication2ConnectorResponse>;
|
|
2282
|
+
getPrivateAccessApplicationWithOptions(request: GetPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetPrivateAccessApplicationResponse>;
|
|
2283
|
+
getPrivateAccessApplication(request: GetPrivateAccessApplicationRequest): Promise<GetPrivateAccessApplicationResponse>;
|
|
2284
|
+
getPrivateAccessPolicyWithOptions(request: GetPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetPrivateAccessPolicyResponse>;
|
|
2285
|
+
getPrivateAccessPolicy(request: GetPrivateAccessPolicyRequest): Promise<GetPrivateAccessPolicyResponse>;
|
|
2286
|
+
getUserGroupWithOptions(request: GetUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetUserGroupResponse>;
|
|
2287
|
+
getUserGroup(request: GetUserGroupRequest): Promise<GetUserGroupResponse>;
|
|
2288
|
+
listApplicationsForPrivateAccessPolicyWithOptions(tmpReq: ListApplicationsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForPrivateAccessPolicyResponse>;
|
|
2289
|
+
listApplicationsForPrivateAccessPolicy(request: ListApplicationsForPrivateAccessPolicyRequest): Promise<ListApplicationsForPrivateAccessPolicyResponse>;
|
|
2290
|
+
listApplicationsForPrivateAccessTagWithOptions(tmpReq: ListApplicationsForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForPrivateAccessTagResponse>;
|
|
2291
|
+
listApplicationsForPrivateAccessTag(request: ListApplicationsForPrivateAccessTagRequest): Promise<ListApplicationsForPrivateAccessTagResponse>;
|
|
2292
|
+
listConnectorsWithOptions(tmpReq: ListConnectorsRequest, runtime: $Util.RuntimeOptions): Promise<ListConnectorsResponse>;
|
|
2293
|
+
listConnectors(request: ListConnectorsRequest): Promise<ListConnectorsResponse>;
|
|
2294
|
+
listPolicesForPrivateAccessApplicationWithOptions(tmpReq: ListPolicesForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessApplicationResponse>;
|
|
2295
|
+
listPolicesForPrivateAccessApplication(request: ListPolicesForPrivateAccessApplicationRequest): Promise<ListPolicesForPrivateAccessApplicationResponse>;
|
|
2296
|
+
listPolicesForPrivateAccessTagWithOptions(tmpReq: ListPolicesForPrivateAccessTagRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
2297
|
+
listPolicesForPrivateAccessTag(request: ListPolicesForPrivateAccessTagRequest): Promise<ListPolicesForPrivateAccessTagResponse>;
|
|
2298
|
+
listPolicesForUserGroupWithOptions(tmpReq: ListPolicesForUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListPolicesForUserGroupResponse>;
|
|
2299
|
+
listPolicesForUserGroup(request: ListPolicesForUserGroupRequest): Promise<ListPolicesForUserGroupResponse>;
|
|
2300
|
+
listPrivateAccessApplicationsWithOptions(tmpReq: ListPrivateAccessApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessApplicationsResponse>;
|
|
2301
|
+
listPrivateAccessApplications(request: ListPrivateAccessApplicationsRequest): Promise<ListPrivateAccessApplicationsResponse>;
|
|
2302
|
+
listPrivateAccessPolicesWithOptions(tmpReq: ListPrivateAccessPolicesRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessPolicesResponse>;
|
|
2303
|
+
listPrivateAccessPolices(request: ListPrivateAccessPolicesRequest): Promise<ListPrivateAccessPolicesResponse>;
|
|
2304
|
+
listPrivateAccessTagsWithOptions(tmpReq: ListPrivateAccessTagsRequest, runtime: $Util.RuntimeOptions): Promise<ListPrivateAccessTagsResponse>;
|
|
2305
|
+
listPrivateAccessTags(request: ListPrivateAccessTagsRequest): Promise<ListPrivateAccessTagsResponse>;
|
|
2306
|
+
listTagsForPrivateAccessApplicationWithOptions(tmpReq: ListTagsForPrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessApplicationResponse>;
|
|
2307
|
+
listTagsForPrivateAccessApplication(request: ListTagsForPrivateAccessApplicationRequest): Promise<ListTagsForPrivateAccessApplicationResponse>;
|
|
2308
|
+
listTagsForPrivateAccessPolicyWithOptions(tmpReq: ListTagsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListTagsForPrivateAccessPolicyResponse>;
|
|
2309
|
+
listTagsForPrivateAccessPolicy(request: ListTagsForPrivateAccessPolicyRequest): Promise<ListTagsForPrivateAccessPolicyResponse>;
|
|
2310
|
+
listUserGroupsWithOptions(tmpReq: ListUserGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsResponse>;
|
|
2311
|
+
listUserGroups(request: ListUserGroupsRequest): Promise<ListUserGroupsResponse>;
|
|
2312
|
+
listUserGroupsForPrivateAccessPolicyWithOptions(tmpReq: ListUserGroupsForPrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ListUserGroupsForPrivateAccessPolicyResponse>;
|
|
2313
|
+
listUserGroupsForPrivateAccessPolicy(request: ListUserGroupsForPrivateAccessPolicyRequest): Promise<ListUserGroupsForPrivateAccessPolicyResponse>;
|
|
2314
|
+
updatePrivateAccessApplicationWithOptions(tmpReq: UpdatePrivateAccessApplicationRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessApplicationResponse>;
|
|
2315
|
+
updatePrivateAccessApplication(request: UpdatePrivateAccessApplicationRequest): Promise<UpdatePrivateAccessApplicationResponse>;
|
|
2316
|
+
updatePrivateAccessPolicyWithOptions(tmpReq: UpdatePrivateAccessPolicyRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateAccessPolicyResponse>;
|
|
2317
|
+
updatePrivateAccessPolicy(request: UpdatePrivateAccessPolicyRequest): Promise<UpdatePrivateAccessPolicyResponse>;
|
|
2318
|
+
updateUserGroupWithOptions(tmpReq: UpdateUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserGroupResponse>;
|
|
2319
|
+
updateUserGroup(request: UpdateUserGroupRequest): Promise<UpdateUserGroupResponse>;
|
|
2320
|
+
}
|