File tree Expand file tree Collapse file tree 5 files changed +42
-1
lines changed Expand file tree Collapse file tree 5 files changed +42
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @alicloud/paistudio20220112" ,
3- "version" : " 1.2.13 " ,
3+ "version" : " 1.2.14 " ,
44 "description" : " " ,
55 "main" : " dist/client.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -1008,6 +1008,10 @@ export default class Client extends OpenApi {
10081008 query [ "Verbose" ] = request . verbose ;
10091009 }
10101010
1011+ if ( ! $dara . isNull ( request . withNodeMeta ) ) {
1012+ query [ "WithNodeMeta" ] = request . withNodeMeta ;
1013+ }
1014+
10111015 let req = new $OpenApiUtil . OpenApiRequest ( {
10121016 headers : headers ,
10131017 query : OpenApiUtil . query ( query ) ,
Original file line number Diff line number Diff line change 1+ // This file is auto-generated, don't edit it
2+ import * as $dara from '@darabonba/typescript' ;
3+
4+
5+ export class AssignNodeSpec extends $dara . Model {
6+ antiAffinityNodeNames ?: string ;
7+ enableAssignNode ?: boolean ;
8+ nodeNames ?: string ;
9+ static names ( ) : { [ key : string ] : string } {
10+ return {
11+ antiAffinityNodeNames : 'AntiAffinityNodeNames' ,
12+ enableAssignNode : 'EnableAssignNode' ,
13+ nodeNames : 'NodeNames' ,
14+ } ;
15+ }
16+
17+ static types ( ) : { [ key : string ] : any } {
18+ return {
19+ antiAffinityNodeNames : 'string' ,
20+ enableAssignNode : 'boolean' ,
21+ nodeNames : 'string' ,
22+ } ;
23+ }
24+
25+ validate ( ) {
26+ super . validate ( ) ;
27+ }
28+
29+ constructor ( map ?: { [ key : string ] : any } ) {
30+ super ( map ) ;
31+ }
32+ }
33+
Original file line number Diff line number Diff line change @@ -4,15 +4,18 @@ import * as $dara from '@darabonba/typescript';
44
55export class GetQuotaRequest extends $dara . Model {
66 verbose ?: boolean ;
7+ withNodeMeta ?: boolean ;
78 static names ( ) : { [ key : string ] : string } {
89 return {
910 verbose : 'Verbose' ,
11+ withNodeMeta : 'WithNodeMeta' ,
1012 } ;
1113 }
1214
1315 static types ( ) : { [ key : string ] : any } {
1416 return {
1517 verbose : 'boolean' ,
18+ withNodeMeta : 'boolean' ,
1619 } ;
1720 }
1821
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ export { ACS } from './Acs';
6464export { Action } from './Action' ;
6565export { AlgorithmSpec } from './AlgorithmSpec' ;
6666export { AllocateStrategySpec } from './AllocateStrategySpec' ;
67+ export { AssignNodeSpec } from './AssignNodeSpec' ;
6768export { BindingPolicy } from './BindingPolicy' ;
6869export { CacheInfo } from './CacheInfo' ;
6970export { CacheService } from './CacheService' ;
You can’t perform that action at this time.
0 commit comments