clarifai-web-grpc 11.3.0 → 11.3.1
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
11.3.
|
|
1
|
+
11.3.1
|
|
@@ -74832,7 +74832,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
74832
74832
|
userAppId: (f = msg.getUserAppId()) && proto_clarifai_api_resources_pb.UserAppIDSet.toObject(includeInstance, f),
|
|
74833
74833
|
computeClusterId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
74834
74834
|
page: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
74835
|
-
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
74835
|
+
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
74836
|
+
activeUsage: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
74836
74837
|
};
|
|
74837
74838
|
if (includeInstance) {
|
|
74838
74839
|
obj.$jspbMessageInstance = msg;
|
|
@@ -74881,6 +74882,10 @@ proto.clarifai.api.ListNodepoolsRequest.deserializeBinaryFromReader = function (
|
|
|
74881
74882
|
var value = /** @type {number} */ (reader.readUint32());
|
|
74882
74883
|
msg.setPerPage(value);
|
|
74883
74884
|
break;
|
|
74885
|
+
case 5:
|
|
74886
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
74887
|
+
msg.setActiveUsage(value);
|
|
74888
|
+
break;
|
|
74884
74889
|
default:
|
|
74885
74890
|
reader.skipField();
|
|
74886
74891
|
break;
|
|
@@ -74922,6 +74927,10 @@ proto.clarifai.api.ListNodepoolsRequest.serializeBinaryToWriter = function (mess
|
|
|
74922
74927
|
if (f !== 0) {
|
|
74923
74928
|
writer.writeUint32(4, f);
|
|
74924
74929
|
}
|
|
74930
|
+
f = message.getActiveUsage();
|
|
74931
|
+
if (f) {
|
|
74932
|
+
writer.writeBool(5, f);
|
|
74933
|
+
}
|
|
74925
74934
|
};
|
|
74926
74935
|
/**
|
|
74927
74936
|
* optional UserAppIDSet user_app_id = 1;
|
|
@@ -74993,6 +75002,20 @@ proto.clarifai.api.ListNodepoolsRequest.prototype.getPerPage = function () {
|
|
|
74993
75002
|
proto.clarifai.api.ListNodepoolsRequest.prototype.setPerPage = function (value) {
|
|
74994
75003
|
return jspb.Message.setProto3IntField(this, 4, value);
|
|
74995
75004
|
};
|
|
75005
|
+
/**
|
|
75006
|
+
* optional bool active_usage = 5;
|
|
75007
|
+
* @return {boolean}
|
|
75008
|
+
*/
|
|
75009
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.getActiveUsage = function () {
|
|
75010
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
75011
|
+
};
|
|
75012
|
+
/**
|
|
75013
|
+
* @param {boolean} value
|
|
75014
|
+
* @return {!proto.clarifai.api.ListNodepoolsRequest} returns this
|
|
75015
|
+
*/
|
|
75016
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.setActiveUsage = function (value) {
|
|
75017
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
75018
|
+
};
|
|
74996
75019
|
/**
|
|
74997
75020
|
* List of repeated fields within this message type.
|
|
74998
75021
|
* @private {!Array<number>}
|
|
@@ -74832,7 +74832,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
74832
74832
|
userAppId: (f = msg.getUserAppId()) && proto_clarifai_api_resources_pb.UserAppIDSet.toObject(includeInstance, f),
|
|
74833
74833
|
computeClusterId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
74834
74834
|
page: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
74835
|
-
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
74835
|
+
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
74836
|
+
activeUsage: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
74836
74837
|
};
|
|
74837
74838
|
if (includeInstance) {
|
|
74838
74839
|
obj.$jspbMessageInstance = msg;
|
|
@@ -74881,6 +74882,10 @@ proto.clarifai.api.ListNodepoolsRequest.deserializeBinaryFromReader = function (
|
|
|
74881
74882
|
var value = /** @type {number} */ (reader.readUint32());
|
|
74882
74883
|
msg.setPerPage(value);
|
|
74883
74884
|
break;
|
|
74885
|
+
case 5:
|
|
74886
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
74887
|
+
msg.setActiveUsage(value);
|
|
74888
|
+
break;
|
|
74884
74889
|
default:
|
|
74885
74890
|
reader.skipField();
|
|
74886
74891
|
break;
|
|
@@ -74922,6 +74927,10 @@ proto.clarifai.api.ListNodepoolsRequest.serializeBinaryToWriter = function (mess
|
|
|
74922
74927
|
if (f !== 0) {
|
|
74923
74928
|
writer.writeUint32(4, f);
|
|
74924
74929
|
}
|
|
74930
|
+
f = message.getActiveUsage();
|
|
74931
|
+
if (f) {
|
|
74932
|
+
writer.writeBool(5, f);
|
|
74933
|
+
}
|
|
74925
74934
|
};
|
|
74926
74935
|
/**
|
|
74927
74936
|
* optional UserAppIDSet user_app_id = 1;
|
|
@@ -74993,6 +75002,20 @@ proto.clarifai.api.ListNodepoolsRequest.prototype.getPerPage = function () {
|
|
|
74993
75002
|
proto.clarifai.api.ListNodepoolsRequest.prototype.setPerPage = function (value) {
|
|
74994
75003
|
return jspb.Message.setProto3IntField(this, 4, value);
|
|
74995
75004
|
};
|
|
75005
|
+
/**
|
|
75006
|
+
* optional bool active_usage = 5;
|
|
75007
|
+
* @return {boolean}
|
|
75008
|
+
*/
|
|
75009
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.getActiveUsage = function () {
|
|
75010
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
75011
|
+
};
|
|
75012
|
+
/**
|
|
75013
|
+
* @param {boolean} value
|
|
75014
|
+
* @return {!proto.clarifai.api.ListNodepoolsRequest} returns this
|
|
75015
|
+
*/
|
|
75016
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.setActiveUsage = function (value) {
|
|
75017
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
75018
|
+
};
|
|
74996
75019
|
/**
|
|
74997
75020
|
* List of repeated fields within this message type.
|
|
74998
75021
|
* @private {!Array<number>}
|
package/package.json
CHANGED
|
@@ -10733,6 +10733,9 @@ export class ListNodepoolsRequest extends jspb.Message {
|
|
|
10733
10733
|
getPerPage(): number;
|
|
10734
10734
|
setPerPage(value: number): ListNodepoolsRequest;
|
|
10735
10735
|
|
|
10736
|
+
getActiveUsage(): boolean;
|
|
10737
|
+
setActiveUsage(value: boolean): ListNodepoolsRequest;
|
|
10738
|
+
|
|
10736
10739
|
serializeBinary(): Uint8Array;
|
|
10737
10740
|
toObject(includeInstance?: boolean): ListNodepoolsRequest.AsObject;
|
|
10738
10741
|
static toObject(includeInstance: boolean, msg: ListNodepoolsRequest): ListNodepoolsRequest.AsObject;
|
|
@@ -10747,6 +10750,7 @@ export namespace ListNodepoolsRequest {
|
|
|
10747
10750
|
computeClusterId: string,
|
|
10748
10751
|
page: number,
|
|
10749
10752
|
perPage: number,
|
|
10753
|
+
activeUsage: boolean,
|
|
10750
10754
|
}
|
|
10751
10755
|
}
|
|
10752
10756
|
|
|
@@ -92397,7 +92397,8 @@ proto.clarifai.api.ListNodepoolsRequest.toObject = function(includeInstance, msg
|
|
|
92397
92397
|
userAppId: (f = msg.getUserAppId()) && proto_clarifai_api_resources_pb.UserAppIDSet.toObject(includeInstance, f),
|
|
92398
92398
|
computeClusterId: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
92399
92399
|
page: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
92400
|
-
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0)
|
|
92400
|
+
perPage: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
|
92401
|
+
activeUsage: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
92401
92402
|
};
|
|
92402
92403
|
|
|
92403
92404
|
if (includeInstance) {
|
|
@@ -92451,6 +92452,10 @@ proto.clarifai.api.ListNodepoolsRequest.deserializeBinaryFromReader = function(m
|
|
|
92451
92452
|
var value = /** @type {number} */ (reader.readUint32());
|
|
92452
92453
|
msg.setPerPage(value);
|
|
92453
92454
|
break;
|
|
92455
|
+
case 5:
|
|
92456
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
92457
|
+
msg.setActiveUsage(value);
|
|
92458
|
+
break;
|
|
92454
92459
|
default:
|
|
92455
92460
|
reader.skipField();
|
|
92456
92461
|
break;
|
|
@@ -92509,6 +92514,13 @@ proto.clarifai.api.ListNodepoolsRequest.serializeBinaryToWriter = function(messa
|
|
|
92509
92514
|
f
|
|
92510
92515
|
);
|
|
92511
92516
|
}
|
|
92517
|
+
f = message.getActiveUsage();
|
|
92518
|
+
if (f) {
|
|
92519
|
+
writer.writeBool(
|
|
92520
|
+
5,
|
|
92521
|
+
f
|
|
92522
|
+
);
|
|
92523
|
+
}
|
|
92512
92524
|
};
|
|
92513
92525
|
|
|
92514
92526
|
|
|
@@ -92603,6 +92615,24 @@ proto.clarifai.api.ListNodepoolsRequest.prototype.setPerPage = function(value) {
|
|
|
92603
92615
|
};
|
|
92604
92616
|
|
|
92605
92617
|
|
|
92618
|
+
/**
|
|
92619
|
+
* optional bool active_usage = 5;
|
|
92620
|
+
* @return {boolean}
|
|
92621
|
+
*/
|
|
92622
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.getActiveUsage = function() {
|
|
92623
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
92624
|
+
};
|
|
92625
|
+
|
|
92626
|
+
|
|
92627
|
+
/**
|
|
92628
|
+
* @param {boolean} value
|
|
92629
|
+
* @return {!proto.clarifai.api.ListNodepoolsRequest} returns this
|
|
92630
|
+
*/
|
|
92631
|
+
proto.clarifai.api.ListNodepoolsRequest.prototype.setActiveUsage = function(value) {
|
|
92632
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
92633
|
+
};
|
|
92634
|
+
|
|
92635
|
+
|
|
92606
92636
|
|
|
92607
92637
|
/**
|
|
92608
92638
|
* List of repeated fields within this message type.
|