@@ -8750,6 +8750,10 @@ export class Deployment extends jspb.Message {
87508750 setEmailReminderAfter ( value ?: google_protobuf_duration_pb . Duration ) : Deployment ;
87518751 getGracefulDeploy ( ) : boolean ;
87528752 setGracefulDeploy ( value : boolean ) : Deployment ;
8753+ clearDeploymentNodepoolsList ( ) : void ;
8754+ getDeploymentNodepoolsList ( ) : Array < DeploymentNodepool > ;
8755+ setDeploymentNodepoolsList ( value : Array < DeploymentNodepool > ) : Deployment ;
8756+ addDeploymentNodepools ( value ?: DeploymentNodepool , index ?: number ) : DeploymentNodepool ;
87538757
87548758 serializeBinary ( ) : Uint8Array ;
87558759 toObject ( includeInstance ?: boolean ) : Deployment . AsObject ;
@@ -8779,6 +8783,7 @@ export namespace Deployment {
87798783 specialHandlingList : Array < SpecialHandling . AsObject > ,
87808784 emailReminderAfter ?: google_protobuf_duration_pb . Duration . AsObject ,
87818785 gracefulDeploy : boolean ,
8786+ deploymentNodepoolsList : Array < DeploymentNodepool . AsObject > ,
87828787 }
87838788
87848789 export enum SchedulingChoice {
@@ -8795,6 +8800,41 @@ export namespace Deployment {
87958800
87968801}
87978802
8803+ export class DeploymentNodepool extends jspb . Message {
8804+ getId ( ) : string ;
8805+ setId ( value : string ) : DeploymentNodepool ;
8806+
8807+ hasComputeCluster ( ) : boolean ;
8808+ clearComputeCluster ( ) : void ;
8809+ getComputeCluster ( ) : ComputeCluster | undefined ;
8810+ setComputeCluster ( value ?: ComputeCluster ) : DeploymentNodepool ;
8811+ getPriority ( ) : number ;
8812+ setPriority ( value : number ) : DeploymentNodepool ;
8813+
8814+ hasNodepool ( ) : boolean ;
8815+ clearNodepool ( ) : void ;
8816+ getNodepool ( ) : Nodepool | undefined ;
8817+ setNodepool ( value ?: Nodepool ) : DeploymentNodepool ;
8818+
8819+ serializeBinary ( ) : Uint8Array ;
8820+ toObject ( includeInstance ?: boolean ) : DeploymentNodepool . AsObject ;
8821+ static toObject ( includeInstance : boolean , msg : DeploymentNodepool ) : DeploymentNodepool . AsObject ;
8822+ static extensions : { [ key : number ] : jspb . ExtensionFieldInfo < jspb . Message > } ;
8823+ static extensionsBinary : { [ key : number ] : jspb . ExtensionFieldBinaryInfo < jspb . Message > } ;
8824+ static serializeBinaryToWriter ( message : DeploymentNodepool , writer : jspb . BinaryWriter ) : void ;
8825+ static deserializeBinary ( bytes : Uint8Array ) : DeploymentNodepool ;
8826+ static deserializeBinaryFromReader ( message : DeploymentNodepool , reader : jspb . BinaryReader ) : DeploymentNodepool ;
8827+ }
8828+
8829+ export namespace DeploymentNodepool {
8830+ export type AsObject = {
8831+ id : string ,
8832+ computeCluster ?: ComputeCluster . AsObject ,
8833+ priority : number ,
8834+ nodepool ?: Nodepool . AsObject ,
8835+ }
8836+ }
8837+
87988838export class RunnerSelector extends jspb . Message {
87998839
88008840 hasNodepool ( ) : boolean ;
0 commit comments