22import * as $dara from '@darabonba/typescript' ;
33import { CredentialConfig } from "./CredentialConfig" ;
44import { DynamicMount } from "./DynamicMount" ;
5+ import { ServiceConfig } from "./ServiceConfig" ;
56import { BandwidthLimit } from "./BandwidthLimit" ;
67import { ForwardInfoResponse } from "./ForwardInfoResponse" ;
78
@@ -765,6 +766,7 @@ export class ListInstancesResponseBodyInstancesUserVpc extends $dara.Model {
765766 * The forward information.
766767 */
767768 forwardInfos ?: ForwardInfoResponse [ ] ;
769+ ip ?: string ;
768770 /**
769771 * @remarks
770772 * The security group ID.
@@ -795,6 +797,7 @@ export class ListInstancesResponseBodyInstancesUserVpc extends $dara.Model {
795797 defaultRoute : 'DefaultRoute' ,
796798 extendedCIDRs : 'ExtendedCIDRs' ,
797799 forwardInfos : 'ForwardInfos' ,
800+ ip : 'Ip' ,
798801 securityGroupId : 'SecurityGroupId' ,
799802 vSwitchId : 'VSwitchId' ,
800803 vpcId : 'VpcId' ,
@@ -807,6 +810,7 @@ export class ListInstancesResponseBodyInstancesUserVpc extends $dara.Model {
807810 defaultRoute : 'string' ,
808811 extendedCIDRs : { 'type' : 'array' , 'itemType' : 'string' } ,
809812 forwardInfos : { 'type' : 'array' , 'itemType' : ForwardInfoResponse } ,
813+ ip : 'string' ,
810814 securityGroupId : 'string' ,
811815 vSwitchId : 'string' ,
812816 vpcId : 'string' ,
@@ -1092,6 +1096,7 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
10921096 * resource_group
10931097 */
10941098 resourceName ?: string ;
1099+ serviceConfig ?: ServiceConfig ;
10951100 /**
10961101 * @remarks
10971102 * The instance status.
@@ -1203,6 +1208,7 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
12031208 requestedResource : 'RequestedResource' ,
12041209 resourceId : 'ResourceId' ,
12051210 resourceName : 'ResourceName' ,
1211+ serviceConfig : 'ServiceConfig' ,
12061212 status : 'Status' ,
12071213 tags : 'Tags' ,
12081214 terminalUrl : 'TerminalUrl' ,
@@ -1253,6 +1259,7 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
12531259 requestedResource : ListInstancesResponseBodyInstancesRequestedResource ,
12541260 resourceId : 'string' ,
12551261 resourceName : 'string' ,
1262+ serviceConfig : ServiceConfig ,
12561263 status : 'string' ,
12571264 tags : { 'type' : 'array' , 'itemType' : ListInstancesResponseBodyInstancesTags } ,
12581265 terminalUrl : 'string' ,
@@ -1303,6 +1310,9 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
13031310 if ( this . requestedResource && typeof ( this . requestedResource as any ) . validate === 'function' ) {
13041311 ( this . requestedResource as any ) . validate ( ) ;
13051312 }
1313+ if ( this . serviceConfig && typeof ( this . serviceConfig as any ) . validate === 'function' ) {
1314+ ( this . serviceConfig as any ) . validate ( ) ;
1315+ }
13061316 if ( Array . isArray ( this . tags ) ) {
13071317 $dara . Model . validateArray ( this . tags ) ;
13081318 }
0 commit comments