@@ -3139,7 +3139,8 @@ proto.com.docker.api.protos.containers.v1.RunRequest.toObject = function(include
3139
3139
commandList : ( f = jspb . Message . getRepeatedField ( msg , 9 ) ) == null ? undefined : f ,
3140
3140
environmentList : ( f = jspb . Message . getRepeatedField ( msg , 10 ) ) == null ? undefined : f ,
3141
3141
autoRemove : jspb . Message . getBooleanFieldWithDefault ( msg , 11 , false ) ,
3142
- healthcheck : ( f = msg . getHealthcheck ( ) ) && proto . com . docker . api . protos . containers . v1 . Healthcheck . toObject ( includeInstance , f )
3142
+ healthcheck : ( f = msg . getHealthcheck ( ) ) && proto . com . docker . api . protos . containers . v1 . Healthcheck . toObject ( includeInstance , f ) ,
3143
+ platform : jspb . Message . getFieldWithDefault ( msg , 13 , "" )
3143
3144
} ;
3144
3145
3145
3146
if ( includeInstance ) {
@@ -3228,6 +3229,10 @@ proto.com.docker.api.protos.containers.v1.RunRequest.deserializeBinaryFromReader
3228
3229
reader . readMessage ( value , proto . com . docker . api . protos . containers . v1 . Healthcheck . deserializeBinaryFromReader ) ;
3229
3230
msg . setHealthcheck ( value ) ;
3230
3231
break ;
3232
+ case 13 :
3233
+ var value = /** @type {string } */ ( reader . readString ( ) ) ;
3234
+ msg . setPlatform ( value ) ;
3235
+ break ;
3231
3236
default :
3232
3237
reader . skipField ( ) ;
3233
3238
break ;
@@ -3340,6 +3345,13 @@ proto.com.docker.api.protos.containers.v1.RunRequest.serializeBinaryToWriter = f
3340
3345
proto . com . docker . api . protos . containers . v1 . Healthcheck . serializeBinaryToWriter
3341
3346
) ;
3342
3347
}
3348
+ f = message . getPlatform ( ) ;
3349
+ if ( f . length > 0 ) {
3350
+ writer . writeString (
3351
+ 13 ,
3352
+ f
3353
+ ) ;
3354
+ }
3343
3355
} ;
3344
3356
3345
3357
@@ -3659,6 +3671,24 @@ proto.com.docker.api.protos.containers.v1.RunRequest.prototype.hasHealthcheck =
3659
3671
} ;
3660
3672
3661
3673
3674
+ /**
3675
+ * optional string platform = 13;
3676
+ * @return {string }
3677
+ */
3678
+ proto . com . docker . api . protos . containers . v1 . RunRequest . prototype . getPlatform = function ( ) {
3679
+ return /** @type {string } */ ( jspb . Message . getFieldWithDefault ( this , 13 , "" ) ) ;
3680
+ } ;
3681
+
3682
+
3683
+ /**
3684
+ * @param {string } value
3685
+ * @return {!proto.com.docker.api.protos.containers.v1.RunRequest } returns this
3686
+ */
3687
+ proto . com . docker . api . protos . containers . v1 . RunRequest . prototype . setPlatform = function ( value ) {
3688
+ return jspb . Message . setProto3StringField ( this , 13 , value ) ;
3689
+ } ;
3690
+
3691
+
3662
3692
3663
3693
3664
3694
0 commit comments