@alicloud/polardb20170801 7.6.0 → 7.7.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 +19 -4
- package/dist/client.js +46 -4
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeApplicationAttributeResponseBody.d.ts +75 -110
- package/dist/models/DescribeApplicationAttributeResponseBody.js +2 -0
- package/dist/models/DescribeApplicationAttributeResponseBody.js.map +1 -1
- package/dist/models/RestartPolarClawGatewayRequest.d.ts +26 -0
- package/dist/models/RestartPolarClawGatewayRequest.js +60 -0
- package/dist/models/RestartPolarClawGatewayRequest.js.map +1 -0
- package/dist/models/RestartPolarClawGatewayResponse.d.ts +19 -0
- package/dist/models/RestartPolarClawGatewayResponse.js +69 -0
- package/dist/models/RestartPolarClawGatewayResponse.js.map +1 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.d.ts +73 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.js +80 -0
- package/dist/models/RestartPolarClawGatewayResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +3 -0
- package/dist/models/model.js +8 -2
- package/dist/models/model.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +50 -4
- package/src/models/DescribeApplicationAttributeResponseBody.ts +77 -110
- package/src/models/RestartPolarClawGatewayRequest.ts +41 -0
- package/src/models/RestartPolarClawGatewayResponse.ts +40 -0
- package/src/models/RestartPolarClawGatewayResponseBody.ts +108 -0
- package/src/models/model.ts +3 -0
|
@@ -5,7 +5,7 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class DescribeApplicationAttributeResponseBodyComponentsSecurityGroups extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
-
* The network type.
|
|
8
|
+
* The network type. Valid values:
|
|
9
9
|
*
|
|
10
10
|
* - vpc
|
|
11
11
|
*
|
|
@@ -23,7 +23,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityGroups ex
|
|
|
23
23
|
regionId?: string;
|
|
24
24
|
/**
|
|
25
25
|
* @remarks
|
|
26
|
-
* The security group
|
|
26
|
+
* The ID of the security group.
|
|
27
27
|
*
|
|
28
28
|
* @example
|
|
29
29
|
* sg-*******************
|
|
@@ -31,7 +31,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityGroups ex
|
|
|
31
31
|
securityGroupId?: string;
|
|
32
32
|
/**
|
|
33
33
|
* @remarks
|
|
34
|
-
* The security group
|
|
34
|
+
* The name of the security group.
|
|
35
35
|
*
|
|
36
36
|
* @example
|
|
37
37
|
* MyGroupName
|
|
@@ -67,7 +67,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityGroups ex
|
|
|
67
67
|
export class DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays extends $dara.Model {
|
|
68
68
|
/**
|
|
69
69
|
* @remarks
|
|
70
|
-
* The name of the IP address group.
|
|
70
|
+
* The name of the IP address group. Default value: `default`.
|
|
71
71
|
*
|
|
72
72
|
* @example
|
|
73
73
|
* default
|
|
@@ -83,7 +83,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays
|
|
|
83
83
|
securityIPArrayTag?: string;
|
|
84
84
|
/**
|
|
85
85
|
* @remarks
|
|
86
|
-
* The
|
|
86
|
+
* The IP addresses in the whitelist, separated by commas (,).
|
|
87
87
|
*
|
|
88
88
|
* @example
|
|
89
89
|
* 127.0.0.1
|
|
@@ -91,7 +91,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays
|
|
|
91
91
|
securityIPList?: string;
|
|
92
92
|
/**
|
|
93
93
|
* @remarks
|
|
94
|
-
* The network type of the whitelisted IP addresses.
|
|
94
|
+
* The network type of the whitelisted IP addresses. Default value: `mix`.
|
|
95
95
|
*
|
|
96
96
|
* @example
|
|
97
97
|
* mix
|
|
@@ -99,7 +99,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays
|
|
|
99
99
|
securityIPNetType?: string;
|
|
100
100
|
/**
|
|
101
101
|
* @remarks
|
|
102
|
-
* The IP address
|
|
102
|
+
* The type of the IP address.
|
|
103
103
|
*
|
|
104
104
|
* @example
|
|
105
105
|
* ipv4
|
|
@@ -137,12 +137,12 @@ export class DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays
|
|
|
137
137
|
export class DescribeApplicationAttributeResponseBodyComponentsTopology extends $dara.Model {
|
|
138
138
|
/**
|
|
139
139
|
* @remarks
|
|
140
|
-
* The IDs or component types
|
|
140
|
+
* The list of child node IDs or child node component types in the topology of the current application subcomponent.
|
|
141
141
|
*/
|
|
142
142
|
children?: string[];
|
|
143
143
|
/**
|
|
144
144
|
* @remarks
|
|
145
|
-
* The topology layer of the
|
|
145
|
+
* The topology layer of the current application subcomponent.
|
|
146
146
|
*
|
|
147
147
|
* @example
|
|
148
148
|
* 0
|
|
@@ -150,7 +150,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsTopology extends
|
|
|
150
150
|
layer?: string;
|
|
151
151
|
/**
|
|
152
152
|
* @remarks
|
|
153
|
-
* The IDs or component types
|
|
153
|
+
* The list of parent node IDs or parent node component types in the topology of the current application subcomponent.
|
|
154
154
|
*/
|
|
155
155
|
parents?: string[];
|
|
156
156
|
static names(): { [key: string]: string } {
|
|
@@ -187,7 +187,7 @@ export class DescribeApplicationAttributeResponseBodyComponentsTopology extends
|
|
|
187
187
|
export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Model {
|
|
188
188
|
/**
|
|
189
189
|
* @remarks
|
|
190
|
-
* The
|
|
190
|
+
* The specification of the application subcomponent.
|
|
191
191
|
*
|
|
192
192
|
* @example
|
|
193
193
|
* polar.app.g2.medium
|
|
@@ -195,7 +195,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
195
195
|
componentClass?: string;
|
|
196
196
|
/**
|
|
197
197
|
* @remarks
|
|
198
|
-
* The description of the
|
|
198
|
+
* The specification description of the application subcomponent.
|
|
199
199
|
*
|
|
200
200
|
* @example
|
|
201
201
|
* 2C4GB
|
|
@@ -203,7 +203,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
203
203
|
componentClassDescription?: string;
|
|
204
204
|
/**
|
|
205
205
|
* @remarks
|
|
206
|
-
* The
|
|
206
|
+
* The subcomponent ID.
|
|
207
207
|
*
|
|
208
208
|
* @example
|
|
209
209
|
* pac-*******************
|
|
@@ -211,7 +211,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
211
211
|
componentId?: string;
|
|
212
212
|
/**
|
|
213
213
|
* @remarks
|
|
214
|
-
* The maximum number of replicas
|
|
214
|
+
* The maximum number of replicas of the application subcomponent.
|
|
215
215
|
*
|
|
216
216
|
* @example
|
|
217
217
|
* 1
|
|
@@ -219,7 +219,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
219
219
|
componentMaxReplica?: number;
|
|
220
220
|
/**
|
|
221
221
|
* @remarks
|
|
222
|
-
* The number of replicas of the
|
|
222
|
+
* The number of replicas of the application subcomponent.
|
|
223
223
|
*
|
|
224
224
|
* @example
|
|
225
225
|
* 1
|
|
@@ -227,7 +227,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
227
227
|
componentReplica?: number;
|
|
228
228
|
/**
|
|
229
229
|
* @remarks
|
|
230
|
-
* The group name of the
|
|
230
|
+
* The group name of the application subcomponent replicas.
|
|
231
231
|
*
|
|
232
232
|
* @example
|
|
233
233
|
* default
|
|
@@ -235,7 +235,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
235
235
|
componentReplicaGroupName?: string;
|
|
236
236
|
/**
|
|
237
237
|
* @remarks
|
|
238
|
-
* The type of the
|
|
238
|
+
* The type of the application subcomponent.
|
|
239
239
|
*
|
|
240
240
|
* @example
|
|
241
241
|
* gateway
|
|
@@ -243,21 +243,21 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
243
243
|
componentType?: string;
|
|
244
244
|
/**
|
|
245
245
|
* @remarks
|
|
246
|
-
* The
|
|
246
|
+
* The list of security groups at the subcomponent level.
|
|
247
247
|
*
|
|
248
|
-
*
|
|
248
|
+
* If the security groups at the subcomponent level are the same as those at the application level, this response element is omitted.
|
|
249
249
|
*/
|
|
250
250
|
securityGroups?: DescribeApplicationAttributeResponseBodyComponentsSecurityGroups[];
|
|
251
251
|
/**
|
|
252
252
|
* @remarks
|
|
253
|
-
* The
|
|
253
|
+
* The list of whitelists at the subcomponent level.
|
|
254
254
|
*
|
|
255
|
-
*
|
|
255
|
+
* If the whitelists at the subcomponent level are the same as those at the application level, this response element is omitted.
|
|
256
256
|
*/
|
|
257
257
|
securityIPArrays?: DescribeApplicationAttributeResponseBodyComponentsSecurityIPArrays[];
|
|
258
258
|
/**
|
|
259
259
|
* @remarks
|
|
260
|
-
* The component status.
|
|
260
|
+
* The component status. Valid values are the same as the application status.
|
|
261
261
|
*
|
|
262
262
|
* @example
|
|
263
263
|
* Activated
|
|
@@ -265,7 +265,7 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
265
265
|
status?: string;
|
|
266
266
|
/**
|
|
267
267
|
* @remarks
|
|
268
|
-
* The topology of the
|
|
268
|
+
* The topology information of the application subcomponent.
|
|
269
269
|
*/
|
|
270
270
|
topology?: DescribeApplicationAttributeResponseBodyComponentsTopology;
|
|
271
271
|
static names(): { [key: string]: string } {
|
|
@@ -321,12 +321,13 @@ export class DescribeApplicationAttributeResponseBodyComponents extends $dara.Mo
|
|
|
321
321
|
export class DescribeApplicationAttributeResponseBodyEndpoints extends $dara.Model {
|
|
322
322
|
/**
|
|
323
323
|
* @remarks
|
|
324
|
-
* The endpoint
|
|
324
|
+
* The description of the endpoint.
|
|
325
325
|
*
|
|
326
326
|
* @example
|
|
327
327
|
* myendpoint
|
|
328
328
|
*/
|
|
329
329
|
description?: string;
|
|
330
|
+
domain?: string;
|
|
330
331
|
/**
|
|
331
332
|
* @remarks
|
|
332
333
|
* The endpoint ID.
|
|
@@ -346,10 +347,8 @@ export class DescribeApplicationAttributeResponseBodyEndpoints extends $dara.Mod
|
|
|
346
347
|
/**
|
|
347
348
|
* @remarks
|
|
348
349
|
* The endpoint type. Valid values:
|
|
349
|
-
*
|
|
350
|
-
* -
|
|
351
|
-
*
|
|
352
|
-
* - Public: a public endpoint
|
|
350
|
+
* - Private: VPC endpoint.
|
|
351
|
+
* - Public: public endpoint.
|
|
353
352
|
*
|
|
354
353
|
* @example
|
|
355
354
|
* Private
|
|
@@ -374,6 +373,7 @@ export class DescribeApplicationAttributeResponseBodyEndpoints extends $dara.Mod
|
|
|
374
373
|
static names(): { [key: string]: string } {
|
|
375
374
|
return {
|
|
376
375
|
description: 'Description',
|
|
376
|
+
domain: 'Domain',
|
|
377
377
|
endpointId: 'EndpointId',
|
|
378
378
|
IP: 'IP',
|
|
379
379
|
netType: 'NetType',
|
|
@@ -385,6 +385,7 @@ export class DescribeApplicationAttributeResponseBodyEndpoints extends $dara.Mod
|
|
|
385
385
|
static types(): { [key: string]: any } {
|
|
386
386
|
return {
|
|
387
387
|
description: 'string',
|
|
388
|
+
domain: 'string',
|
|
388
389
|
endpointId: 'string',
|
|
389
390
|
IP: 'string',
|
|
390
391
|
netType: 'string',
|
|
@@ -413,23 +414,20 @@ export class DescribeApplicationAttributeResponseBodyMemApplicationAttribute ext
|
|
|
413
414
|
dbName?: string;
|
|
414
415
|
/**
|
|
415
416
|
* @remarks
|
|
416
|
-
* The
|
|
417
|
+
* The embedder model name.
|
|
417
418
|
*
|
|
418
419
|
* @example
|
|
419
420
|
* text-embedding-v4
|
|
420
421
|
*/
|
|
421
422
|
embedderModelName?: string;
|
|
422
423
|
/**
|
|
423
|
-
* @remarks
|
|
424
|
-
* The name of the graph LLM model.
|
|
425
|
-
*
|
|
426
424
|
* @example
|
|
427
425
|
* qwen3-max
|
|
428
426
|
*/
|
|
429
427
|
graphLlmModelName?: string;
|
|
430
428
|
/**
|
|
431
429
|
* @remarks
|
|
432
|
-
* The
|
|
430
|
+
* The LLM model name.
|
|
433
431
|
*
|
|
434
432
|
* @example
|
|
435
433
|
* qwen3-max
|
|
@@ -437,7 +435,7 @@ export class DescribeApplicationAttributeResponseBodyMemApplicationAttribute ext
|
|
|
437
435
|
llmModelName?: string;
|
|
438
436
|
/**
|
|
439
437
|
* @remarks
|
|
440
|
-
* The project name
|
|
438
|
+
* The project name, which corresponds to the schema that stores project data in the database.
|
|
441
439
|
*
|
|
442
440
|
* @example
|
|
443
441
|
* test-project-name
|
|
@@ -445,7 +443,7 @@ export class DescribeApplicationAttributeResponseBodyMemApplicationAttribute ext
|
|
|
445
443
|
projectName?: string;
|
|
446
444
|
/**
|
|
447
445
|
* @remarks
|
|
448
|
-
* The
|
|
446
|
+
* The reranker model name.
|
|
449
447
|
*
|
|
450
448
|
* @example
|
|
451
449
|
* qwen3-rerank
|
|
@@ -501,10 +499,6 @@ export class DescribeApplicationAttributeResponseBodyPolarClawSaaSApplicationAtt
|
|
|
501
499
|
* http://8.xxx.xxx.xxx.xxx/xxx
|
|
502
500
|
*/
|
|
503
501
|
authCallbackURL?: string;
|
|
504
|
-
/**
|
|
505
|
-
* @remarks
|
|
506
|
-
* The enabled authentication providers.
|
|
507
|
-
*/
|
|
508
502
|
authProviders?: string[];
|
|
509
503
|
/**
|
|
510
504
|
* @remarks
|
|
@@ -545,7 +539,7 @@ export class DescribeApplicationAttributeResponseBodyPolarClawSaaSApplicationAtt
|
|
|
545
539
|
export class DescribeApplicationAttributeResponseBodySecurityGroups extends $dara.Model {
|
|
546
540
|
/**
|
|
547
541
|
* @remarks
|
|
548
|
-
* The network type.
|
|
542
|
+
* The network type. Valid values:
|
|
549
543
|
*
|
|
550
544
|
* - vpc
|
|
551
545
|
*
|
|
@@ -563,7 +557,7 @@ export class DescribeApplicationAttributeResponseBodySecurityGroups extends $dar
|
|
|
563
557
|
regionId?: string;
|
|
564
558
|
/**
|
|
565
559
|
* @remarks
|
|
566
|
-
* The security group
|
|
560
|
+
* The ID of the security group.
|
|
567
561
|
*
|
|
568
562
|
* @example
|
|
569
563
|
* sg-**************
|
|
@@ -571,7 +565,7 @@ export class DescribeApplicationAttributeResponseBodySecurityGroups extends $dar
|
|
|
571
565
|
securityGroupId?: string;
|
|
572
566
|
/**
|
|
573
567
|
* @remarks
|
|
574
|
-
* The security group
|
|
568
|
+
* The name of the security group.
|
|
575
569
|
*
|
|
576
570
|
* @example
|
|
577
571
|
* MyGroupName
|
|
@@ -607,7 +601,7 @@ export class DescribeApplicationAttributeResponseBodySecurityGroups extends $dar
|
|
|
607
601
|
export class DescribeApplicationAttributeResponseBodySecurityIPArrays extends $dara.Model {
|
|
608
602
|
/**
|
|
609
603
|
* @remarks
|
|
610
|
-
* The name of the IP address group.
|
|
604
|
+
* The name of the IP address group. Default value: `default`.
|
|
611
605
|
*
|
|
612
606
|
* @example
|
|
613
607
|
* default
|
|
@@ -623,7 +617,7 @@ export class DescribeApplicationAttributeResponseBodySecurityIPArrays extends $d
|
|
|
623
617
|
securityIPArrayTag?: string;
|
|
624
618
|
/**
|
|
625
619
|
* @remarks
|
|
626
|
-
* The
|
|
620
|
+
* The IP addresses in the whitelist, separated by commas (,).
|
|
627
621
|
*
|
|
628
622
|
* @example
|
|
629
623
|
* 127.0.0.1
|
|
@@ -631,7 +625,7 @@ export class DescribeApplicationAttributeResponseBodySecurityIPArrays extends $d
|
|
|
631
625
|
securityIPList?: string;
|
|
632
626
|
/**
|
|
633
627
|
* @remarks
|
|
634
|
-
* The network type of the whitelisted IP addresses.
|
|
628
|
+
* The network type of the whitelisted IP addresses. Default value: `mix`.
|
|
635
629
|
*
|
|
636
630
|
* @example
|
|
637
631
|
* mix
|
|
@@ -639,7 +633,7 @@ export class DescribeApplicationAttributeResponseBodySecurityIPArrays extends $d
|
|
|
639
633
|
securityIPNetType?: string;
|
|
640
634
|
/**
|
|
641
635
|
* @remarks
|
|
642
|
-
* The IP address
|
|
636
|
+
* The type of the IP address.
|
|
643
637
|
*
|
|
644
638
|
* @example
|
|
645
639
|
* ipv4
|
|
@@ -693,7 +687,7 @@ export class DescribeApplicationAttributeResponseBodyStorages extends $dara.Mode
|
|
|
693
687
|
storageInstanceId?: string;
|
|
694
688
|
/**
|
|
695
689
|
* @remarks
|
|
696
|
-
* The storage performance level.
|
|
690
|
+
* The storage performance level (PL).
|
|
697
691
|
*
|
|
698
692
|
* @example
|
|
699
693
|
* PL0
|
|
@@ -753,22 +747,17 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
753
747
|
applicationType?: string;
|
|
754
748
|
/**
|
|
755
749
|
* @remarks
|
|
756
|
-
* The CPU architecture.
|
|
757
|
-
*
|
|
750
|
+
* The CPU architecture. Valid values:
|
|
758
751
|
* - `x86`
|
|
759
752
|
*
|
|
760
753
|
* @example
|
|
761
754
|
* x86
|
|
762
755
|
*/
|
|
763
756
|
architecture?: string;
|
|
764
|
-
/**
|
|
765
|
-
* @remarks
|
|
766
|
-
* Indicates whether SNAT can be disabled.
|
|
767
|
-
*/
|
|
768
757
|
canDisableSnat?: boolean;
|
|
769
758
|
/**
|
|
770
759
|
* @remarks
|
|
771
|
-
* The
|
|
760
|
+
* The list of subcomponents.
|
|
772
761
|
*/
|
|
773
762
|
components?: DescribeApplicationAttributeResponseBodyComponents[];
|
|
774
763
|
/**
|
|
@@ -781,7 +770,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
781
770
|
creationTime?: string;
|
|
782
771
|
/**
|
|
783
772
|
* @remarks
|
|
784
|
-
* The ID of the PolarDB instance
|
|
773
|
+
* The instance ID of the PolarDB instance on which the application depends.
|
|
785
774
|
*
|
|
786
775
|
* @example
|
|
787
776
|
* pc-**************
|
|
@@ -789,7 +778,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
789
778
|
DBClusterId?: string;
|
|
790
779
|
/**
|
|
791
780
|
* @remarks
|
|
792
|
-
* The application
|
|
781
|
+
* The description of the application.
|
|
793
782
|
*
|
|
794
783
|
* @example
|
|
795
784
|
* myapp
|
|
@@ -797,14 +786,14 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
797
786
|
description?: string;
|
|
798
787
|
/**
|
|
799
788
|
* @remarks
|
|
800
|
-
* The
|
|
789
|
+
* The list of endpoints of the application.
|
|
801
790
|
*/
|
|
802
791
|
endpoints?: DescribeApplicationAttributeResponseBodyEndpoints[];
|
|
803
792
|
/**
|
|
804
793
|
* @remarks
|
|
805
794
|
* The expiration time.
|
|
806
795
|
*
|
|
807
|
-
* This
|
|
796
|
+
* This value is empty when the billing method is Postpaid.
|
|
808
797
|
*
|
|
809
798
|
* @example
|
|
810
799
|
* 2025-06-25T09:37:10Z
|
|
@@ -820,7 +809,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
820
809
|
expired?: boolean;
|
|
821
810
|
/**
|
|
822
811
|
* @remarks
|
|
823
|
-
* Indicates whether the
|
|
812
|
+
* Indicates whether the current version is the latest version.
|
|
824
813
|
*
|
|
825
814
|
* @example
|
|
826
815
|
* true
|
|
@@ -838,9 +827,8 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
838
827
|
* @remarks
|
|
839
828
|
* The lock mode. Valid values:
|
|
840
829
|
*
|
|
841
|
-
* - Unlock:
|
|
842
|
-
*
|
|
843
|
-
* - Lock: The application is locked.
|
|
830
|
+
* - Unlock: Not locked.
|
|
831
|
+
* - Lock: Locked.
|
|
844
832
|
*
|
|
845
833
|
* @example
|
|
846
834
|
* Unlock
|
|
@@ -848,7 +836,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
848
836
|
lockMode?: string;
|
|
849
837
|
/**
|
|
850
838
|
* @remarks
|
|
851
|
-
* The
|
|
839
|
+
* The end time of the maintenance window.
|
|
852
840
|
*
|
|
853
841
|
* @example
|
|
854
842
|
* 19:00Z
|
|
@@ -856,7 +844,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
856
844
|
maintainEndTime?: string;
|
|
857
845
|
/**
|
|
858
846
|
* @remarks
|
|
859
|
-
* The
|
|
847
|
+
* The start time of the maintenance window.
|
|
860
848
|
*
|
|
861
849
|
* @example
|
|
862
850
|
* 18:00Z
|
|
@@ -864,7 +852,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
864
852
|
maintainStartTime?: string;
|
|
865
853
|
/**
|
|
866
854
|
* @remarks
|
|
867
|
-
* The
|
|
855
|
+
* The Mem0 application attributes.
|
|
868
856
|
*/
|
|
869
857
|
memApplicationAttribute?: DescribeApplicationAttributeResponseBodyMemApplicationAttribute;
|
|
870
858
|
/**
|
|
@@ -876,9 +864,6 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
876
864
|
*/
|
|
877
865
|
minorVersion?: string;
|
|
878
866
|
/**
|
|
879
|
-
* @remarks
|
|
880
|
-
* The ID of the NAT Gateway.
|
|
881
|
-
*
|
|
882
867
|
* @example
|
|
883
868
|
* pc-xxx
|
|
884
869
|
*/
|
|
@@ -893,12 +878,12 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
893
878
|
payType?: string;
|
|
894
879
|
/**
|
|
895
880
|
* @remarks
|
|
896
|
-
* The
|
|
881
|
+
* The PolarClaw SaaS application attributes.
|
|
897
882
|
*/
|
|
898
883
|
polarClawSaaSApplicationAttribute?: DescribeApplicationAttributeResponseBodyPolarClawSaaSApplicationAttribute;
|
|
899
884
|
/**
|
|
900
885
|
* @remarks
|
|
901
|
-
* The ID of
|
|
886
|
+
* The instance ID of PolarFS cold storage or high-performance edition.
|
|
902
887
|
*
|
|
903
888
|
* @example
|
|
904
889
|
* pfs-**************
|
|
@@ -922,30 +907,25 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
922
907
|
requestId?: string;
|
|
923
908
|
/**
|
|
924
909
|
* @remarks
|
|
925
|
-
* The
|
|
910
|
+
* The list of security groups at the application level.
|
|
926
911
|
*/
|
|
927
912
|
securityGroups?: DescribeApplicationAttributeResponseBodySecurityGroups[];
|
|
928
913
|
/**
|
|
929
914
|
* @remarks
|
|
930
|
-
* The application
|
|
915
|
+
* The list of whitelists at the application level.
|
|
931
916
|
*/
|
|
932
917
|
securityIPArrays?: DescribeApplicationAttributeResponseBodySecurityIPArrays[];
|
|
933
918
|
/**
|
|
934
919
|
* @remarks
|
|
935
|
-
* The
|
|
936
|
-
*
|
|
937
|
-
* -
|
|
938
|
-
*
|
|
939
|
-
* - 3: Stable
|
|
920
|
+
* The serverless type. Valid values:
|
|
921
|
+
* - 2: agile.
|
|
922
|
+
* - 3: steady.
|
|
940
923
|
*
|
|
941
924
|
* @example
|
|
942
925
|
* 2
|
|
943
926
|
*/
|
|
944
927
|
serverlessType?: string;
|
|
945
928
|
/**
|
|
946
|
-
* @remarks
|
|
947
|
-
* The SNAT status.
|
|
948
|
-
*
|
|
949
929
|
* @example
|
|
950
930
|
* off
|
|
951
931
|
*/
|
|
@@ -954,33 +934,20 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
954
934
|
* @remarks
|
|
955
935
|
* The application status. Valid values:
|
|
956
936
|
*
|
|
957
|
-
* - Creating:
|
|
958
|
-
*
|
|
959
|
-
* -
|
|
960
|
-
*
|
|
961
|
-
* -
|
|
962
|
-
*
|
|
963
|
-
* -
|
|
964
|
-
*
|
|
965
|
-
* -
|
|
966
|
-
*
|
|
967
|
-
* -
|
|
968
|
-
*
|
|
969
|
-
* -
|
|
970
|
-
*
|
|
971
|
-
* - NetDeleting: The endpoint is being deleted.
|
|
972
|
-
*
|
|
973
|
-
* - NetModifying: The endpoint is being modified.
|
|
974
|
-
*
|
|
975
|
-
* - Restarting: The application is restarting.
|
|
976
|
-
*
|
|
977
|
-
* - Locking: The application is being locked.
|
|
978
|
-
*
|
|
979
|
-
* - Locked: The application is locked.
|
|
980
|
-
*
|
|
981
|
-
* - Unlocking: The application is being unlocked.
|
|
982
|
-
*
|
|
983
|
-
* - Deleting: The application is being deleted.
|
|
937
|
+
* - Creating: Being created.
|
|
938
|
+
* - Activated: Running.
|
|
939
|
+
* - Maintaining: Under maintenance.
|
|
940
|
+
* - ClassChanging: Changing specifications.
|
|
941
|
+
* - Transing: Being migrated.
|
|
942
|
+
* - MinorVersionUpgrading: Minor version being upgraded.
|
|
943
|
+
* - NetCreating: Endpoint being created.
|
|
944
|
+
* - NetDeleting: Endpoint being deleted.
|
|
945
|
+
* - NetModifying: Endpoint being modified.
|
|
946
|
+
* - Restarting: Being restarted.
|
|
947
|
+
* - Locking: Being locked.
|
|
948
|
+
* - Locked: Locked.
|
|
949
|
+
* - Unlocking: Being unlocked.
|
|
950
|
+
* - Deleting: Being deleted.
|
|
984
951
|
*
|
|
985
952
|
* @example
|
|
986
953
|
* Activated
|
|
@@ -988,7 +955,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
988
955
|
status?: string;
|
|
989
956
|
/**
|
|
990
957
|
* @remarks
|
|
991
|
-
* The
|
|
958
|
+
* The storage resource information.
|
|
992
959
|
*/
|
|
993
960
|
storages?: DescribeApplicationAttributeResponseBodyStorages[];
|
|
994
961
|
/**
|
|
@@ -1001,7 +968,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
1001
968
|
upgradeAvailable?: string;
|
|
1002
969
|
/**
|
|
1003
970
|
* @remarks
|
|
1004
|
-
*
|
|
971
|
+
* VPC ID
|
|
1005
972
|
*
|
|
1006
973
|
* @example
|
|
1007
974
|
* vpc-*******************
|
|
@@ -1009,7 +976,7 @@ export class DescribeApplicationAttributeResponseBody extends $dara.Model {
|
|
|
1009
976
|
VPCId?: string;
|
|
1010
977
|
/**
|
|
1011
978
|
* @remarks
|
|
1012
|
-
*
|
|
979
|
+
* VSwitch ID
|
|
1013
980
|
*
|
|
1014
981
|
* @example
|
|
1015
982
|
* vsw-*******************
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class RestartPolarClawGatewayRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* pa-xxx
|
|
12
|
+
*/
|
|
13
|
+
applicationId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @example
|
|
16
|
+
* in-process
|
|
17
|
+
*/
|
|
18
|
+
mode?: string;
|
|
19
|
+
static names(): { [key: string]: string } {
|
|
20
|
+
return {
|
|
21
|
+
applicationId: 'ApplicationId',
|
|
22
|
+
mode: 'Mode',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
static types(): { [key: string]: any } {
|
|
27
|
+
return {
|
|
28
|
+
applicationId: 'string',
|
|
29
|
+
mode: 'string',
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
validate() {
|
|
34
|
+
super.validate();
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
constructor(map?: { [key: string]: any }) {
|
|
38
|
+
super(map);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { RestartPolarClawGatewayResponseBody } from "./RestartPolarClawGatewayResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class RestartPolarClawGatewayResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: RestartPolarClawGatewayResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: RestartPolarClawGatewayResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|