Created
March 27, 2017 21:25
-
-
Save tamird/e608926392befd0b6dc51e879c96ac15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/pkg/ui/src/js/protos.d.ts b/pkg/ui/src/js/protos.d.ts | |
index 2c469afd5..85a36aa78 100644 | |
--- a/pkg/ui/src/js/protos.d.ts | |
+++ b/pkg/ui/src/js/protos.d.ts | |
@@ -42,23 +42,21 @@ export namespace cockroach { | |
/** | |
* Properties of a DatabasesRequest. | |
* @typedef cockroach.server.serverpb.DatabasesRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type DatabasesRequest$Properties = Object; | |
/** | |
* Constructs a new DatabasesRequest. | |
* @exports cockroach.server.serverpb.DatabasesRequest | |
- * @implements cockroach.server.serverpb.DatabasesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabasesRequest$Properties=} [properties] Properties to set | |
*/ | |
- class DatabasesRequest implements cockroach.server.serverpb.DatabasesRequest$Properties { | |
+ class DatabasesRequest { | |
/** | |
* Constructs a new DatabasesRequest. | |
* @exports cockroach.server.serverpb.DatabasesRequest | |
- * @implements cockroach.server.serverpb.DatabasesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabasesRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -154,7 +152,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DatabasesResponse. | |
* @typedef cockroach.server.serverpb.DatabasesResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<string>} [databases] DatabasesResponse databases. | |
*/ | |
type DatabasesResponse$Properties = { | |
@@ -164,22 +162,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new DatabasesResponse. | |
* @exports cockroach.server.serverpb.DatabasesResponse | |
- * @implements cockroach.server.serverpb.DatabasesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabasesResponse$Properties=} [properties] Properties to set | |
*/ | |
- class DatabasesResponse implements cockroach.server.serverpb.DatabasesResponse$Properties { | |
+ class DatabasesResponse { | |
/** | |
* Constructs a new DatabasesResponse. | |
* @exports cockroach.server.serverpb.DatabasesResponse | |
- * @implements cockroach.server.serverpb.DatabasesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabasesResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DatabasesResponse$Properties); | |
/** | |
+ * DatabasesResponse databases. | |
* @type {Array.<string>|undefined} | |
*/ | |
public databases?: string[]; | |
@@ -274,7 +271,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DatabaseDetailsRequest. | |
* @typedef cockroach.server.serverpb.DatabaseDetailsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [database] DatabaseDetailsRequest database. | |
*/ | |
type DatabaseDetailsRequest$Properties = { | |
@@ -284,22 +281,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new DatabaseDetailsRequest. | |
* @exports cockroach.server.serverpb.DatabaseDetailsRequest | |
- * @implements cockroach.server.serverpb.DatabaseDetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class DatabaseDetailsRequest implements cockroach.server.serverpb.DatabaseDetailsRequest$Properties { | |
+ class DatabaseDetailsRequest { | |
/** | |
* Constructs a new DatabaseDetailsRequest. | |
* @exports cockroach.server.serverpb.DatabaseDetailsRequest | |
- * @implements cockroach.server.serverpb.DatabaseDetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DatabaseDetailsRequest$Properties); | |
/** | |
+ * DatabaseDetailsRequest database. | |
* @type {string|undefined} | |
*/ | |
public database?: string; | |
@@ -394,7 +390,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DatabaseDetailsResponse. | |
* @typedef cockroach.server.serverpb.DatabaseDetailsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties>} [grants] DatabaseDetailsResponse grants. | |
* @property {Array.<string>} [table_names] DatabaseDetailsResponse table_names. | |
* @property {Long} [descriptor_id] DatabaseDetailsResponse descriptor_id. | |
@@ -412,42 +408,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new DatabaseDetailsResponse. | |
* @exports cockroach.server.serverpb.DatabaseDetailsResponse | |
- * @implements cockroach.server.serverpb.DatabaseDetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class DatabaseDetailsResponse implements cockroach.server.serverpb.DatabaseDetailsResponse$Properties { | |
+ class DatabaseDetailsResponse { | |
/** | |
* Constructs a new DatabaseDetailsResponse. | |
* @exports cockroach.server.serverpb.DatabaseDetailsResponse | |
- * @implements cockroach.server.serverpb.DatabaseDetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DatabaseDetailsResponse$Properties); | |
/** | |
+ * DatabaseDetailsResponse grants. | |
* @type {Array.<cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties>|undefined} | |
*/ | |
public grants?: cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties[]; | |
/** | |
+ * DatabaseDetailsResponse table_names. | |
* @type {Array.<string>|undefined} | |
*/ | |
public table_names?: string[]; | |
/** | |
+ * DatabaseDetailsResponse descriptor_id. | |
* @type {Long|undefined} | |
*/ | |
public descriptor_id?: Long; | |
/** | |
+ * DatabaseDetailsResponse zone_config. | |
* @type {cockroach.config.ZoneConfig$Properties|undefined} | |
*/ | |
public zone_config?: cockroach.config.ZoneConfig$Properties; | |
/** | |
+ * DatabaseDetailsResponse zone_config_level. | |
* @type {cockroach.server.serverpb.ZoneConfigurationLevel|undefined} | |
*/ | |
public zone_config_level?: cockroach.server.serverpb.ZoneConfigurationLevel; | |
@@ -544,7 +543,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Grant. | |
* @typedef cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [user] Grant user. | |
* @property {Array.<string>} [privileges] Grant privileges. | |
*/ | |
@@ -556,27 +555,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Grant. | |
* @exports cockroach.server.serverpb.DatabaseDetailsResponse.Grant | |
- * @implements cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties=} [properties] Properties to set | |
*/ | |
- class Grant implements cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties { | |
+ class Grant { | |
/** | |
* Constructs a new Grant. | |
* @exports cockroach.server.serverpb.DatabaseDetailsResponse.Grant | |
- * @implements cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DatabaseDetailsResponse.Grant$Properties); | |
/** | |
+ * Grant user. | |
* @type {string|undefined} | |
*/ | |
public user?: string; | |
/** | |
+ * Grant privileges. | |
* @type {Array.<string>|undefined} | |
*/ | |
public privileges?: string[]; | |
@@ -672,7 +671,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TableDetailsRequest. | |
* @typedef cockroach.server.serverpb.TableDetailsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [database] TableDetailsRequest database. | |
* @property {string} [table] TableDetailsRequest table. | |
*/ | |
@@ -684,27 +683,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new TableDetailsRequest. | |
* @exports cockroach.server.serverpb.TableDetailsRequest | |
- * @implements cockroach.server.serverpb.TableDetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class TableDetailsRequest implements cockroach.server.serverpb.TableDetailsRequest$Properties { | |
+ class TableDetailsRequest { | |
/** | |
* Constructs a new TableDetailsRequest. | |
* @exports cockroach.server.serverpb.TableDetailsRequest | |
- * @implements cockroach.server.serverpb.TableDetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableDetailsRequest$Properties); | |
/** | |
+ * TableDetailsRequest database. | |
* @type {string|undefined} | |
*/ | |
public database?: string; | |
/** | |
+ * TableDetailsRequest table. | |
* @type {string|undefined} | |
*/ | |
public table?: string; | |
@@ -799,7 +798,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TableDetailsResponse. | |
* @typedef cockroach.server.serverpb.TableDetailsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.serverpb.TableDetailsResponse.Grant$Properties>} [grants] TableDetailsResponse grants. | |
* @property {Array.<cockroach.server.serverpb.TableDetailsResponse.Column$Properties>} [columns] TableDetailsResponse columns. | |
* @property {Array.<cockroach.server.serverpb.TableDetailsResponse.Index$Properties>} [indexes] TableDetailsResponse indexes. | |
@@ -823,57 +822,63 @@ export namespace cockroach { | |
/** | |
* Constructs a new TableDetailsResponse. | |
* @exports cockroach.server.serverpb.TableDetailsResponse | |
- * @implements cockroach.server.serverpb.TableDetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class TableDetailsResponse implements cockroach.server.serverpb.TableDetailsResponse$Properties { | |
+ class TableDetailsResponse { | |
/** | |
* Constructs a new TableDetailsResponse. | |
* @exports cockroach.server.serverpb.TableDetailsResponse | |
- * @implements cockroach.server.serverpb.TableDetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableDetailsResponse$Properties); | |
/** | |
+ * TableDetailsResponse grants. | |
* @type {Array.<cockroach.server.serverpb.TableDetailsResponse.Grant$Properties>|undefined} | |
*/ | |
public grants?: cockroach.server.serverpb.TableDetailsResponse.Grant$Properties[]; | |
/** | |
+ * TableDetailsResponse columns. | |
* @type {Array.<cockroach.server.serverpb.TableDetailsResponse.Column$Properties>|undefined} | |
*/ | |
public columns?: cockroach.server.serverpb.TableDetailsResponse.Column$Properties[]; | |
/** | |
+ * TableDetailsResponse indexes. | |
* @type {Array.<cockroach.server.serverpb.TableDetailsResponse.Index$Properties>|undefined} | |
*/ | |
public indexes?: cockroach.server.serverpb.TableDetailsResponse.Index$Properties[]; | |
/** | |
+ * TableDetailsResponse range_count. | |
* @type {Long|undefined} | |
*/ | |
public range_count?: Long; | |
/** | |
+ * TableDetailsResponse create_table_statement. | |
* @type {string|undefined} | |
*/ | |
public create_table_statement?: string; | |
/** | |
+ * TableDetailsResponse zone_config. | |
* @type {cockroach.config.ZoneConfig$Properties|undefined} | |
*/ | |
public zone_config?: cockroach.config.ZoneConfig$Properties; | |
/** | |
+ * TableDetailsResponse zone_config_level. | |
* @type {cockroach.server.serverpb.ZoneConfigurationLevel|undefined} | |
*/ | |
public zone_config_level?: cockroach.server.serverpb.ZoneConfigurationLevel; | |
/** | |
+ * TableDetailsResponse descriptor_id. | |
* @type {Long|undefined} | |
*/ | |
public descriptor_id?: Long; | |
@@ -970,7 +975,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Grant. | |
* @typedef cockroach.server.serverpb.TableDetailsResponse.Grant$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [user] Grant user. | |
* @property {Array.<string>} [privileges] Grant privileges. | |
*/ | |
@@ -982,27 +987,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Grant. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Grant | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Grant$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Grant$Properties=} [properties] Properties to set | |
*/ | |
- class Grant implements cockroach.server.serverpb.TableDetailsResponse.Grant$Properties { | |
+ class Grant { | |
/** | |
* Constructs a new Grant. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Grant | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Grant$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Grant$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableDetailsResponse.Grant$Properties); | |
/** | |
+ * Grant user. | |
* @type {string|undefined} | |
*/ | |
public user?: string; | |
/** | |
+ * Grant privileges. | |
* @type {Array.<string>|undefined} | |
*/ | |
public privileges?: string[]; | |
@@ -1097,7 +1102,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Column. | |
* @typedef cockroach.server.serverpb.TableDetailsResponse.Column$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] Column name. | |
* @property {string} [type] Column type. | |
* @property {boolean} [nullable] Column nullable. | |
@@ -1113,37 +1118,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new Column. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Column | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Column$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Column$Properties=} [properties] Properties to set | |
*/ | |
- class Column implements cockroach.server.serverpb.TableDetailsResponse.Column$Properties { | |
+ class Column { | |
/** | |
* Constructs a new Column. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Column | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Column$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Column$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableDetailsResponse.Column$Properties); | |
/** | |
+ * Column name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * Column type. | |
* @type {string|undefined} | |
*/ | |
public type?: string; | |
/** | |
+ * Column nullable. | |
* @type {boolean|undefined} | |
*/ | |
public nullable?: boolean; | |
/** | |
+ * Column default_value. | |
* @type {string|undefined} | |
*/ | |
public default_value?: string; | |
@@ -1238,7 +1245,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Index. | |
* @typedef cockroach.server.serverpb.TableDetailsResponse.Index$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] Index name. | |
* @property {boolean} [unique] Index unique. | |
* @property {Long} [seq] Index seq. | |
@@ -1260,52 +1267,57 @@ export namespace cockroach { | |
/** | |
* Constructs a new Index. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Index | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Index$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Index$Properties=} [properties] Properties to set | |
*/ | |
- class Index implements cockroach.server.serverpb.TableDetailsResponse.Index$Properties { | |
+ class Index { | |
/** | |
* Constructs a new Index. | |
* @exports cockroach.server.serverpb.TableDetailsResponse.Index | |
- * @implements cockroach.server.serverpb.TableDetailsResponse.Index$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableDetailsResponse.Index$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableDetailsResponse.Index$Properties); | |
/** | |
+ * Index name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * Index unique. | |
* @type {boolean|undefined} | |
*/ | |
public unique?: boolean; | |
/** | |
+ * Index seq. | |
* @type {Long|undefined} | |
*/ | |
public seq?: Long; | |
/** | |
+ * Index column. | |
* @type {string|undefined} | |
*/ | |
public column?: string; | |
/** | |
+ * Index direction. | |
* @type {string|undefined} | |
*/ | |
public direction?: string; | |
/** | |
+ * Index storing. | |
* @type {boolean|undefined} | |
*/ | |
public storing?: boolean; | |
/** | |
+ * Index implicit. | |
* @type {boolean|undefined} | |
*/ | |
public implicit?: boolean; | |
@@ -1401,7 +1413,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TableStatsRequest. | |
* @typedef cockroach.server.serverpb.TableStatsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [database] TableStatsRequest database. | |
* @property {string} [table] TableStatsRequest table. | |
*/ | |
@@ -1413,27 +1425,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new TableStatsRequest. | |
* @exports cockroach.server.serverpb.TableStatsRequest | |
- * @implements cockroach.server.serverpb.TableStatsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class TableStatsRequest implements cockroach.server.serverpb.TableStatsRequest$Properties { | |
+ class TableStatsRequest { | |
/** | |
* Constructs a new TableStatsRequest. | |
* @exports cockroach.server.serverpb.TableStatsRequest | |
- * @implements cockroach.server.serverpb.TableStatsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableStatsRequest$Properties); | |
/** | |
+ * TableStatsRequest database. | |
* @type {string|undefined} | |
*/ | |
public database?: string; | |
/** | |
+ * TableStatsRequest table. | |
* @type {string|undefined} | |
*/ | |
public table?: string; | |
@@ -1528,7 +1540,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TableStatsResponse. | |
* @typedef cockroach.server.serverpb.TableStatsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [range_count] TableStatsResponse range_count. | |
* @property {Long} [replica_count] TableStatsResponse replica_count. | |
* @property {Long} [node_count] TableStatsResponse node_count. | |
@@ -1546,42 +1558,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new TableStatsResponse. | |
* @exports cockroach.server.serverpb.TableStatsResponse | |
- * @implements cockroach.server.serverpb.TableStatsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class TableStatsResponse implements cockroach.server.serverpb.TableStatsResponse$Properties { | |
+ class TableStatsResponse { | |
/** | |
* Constructs a new TableStatsResponse. | |
* @exports cockroach.server.serverpb.TableStatsResponse | |
- * @implements cockroach.server.serverpb.TableStatsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableStatsResponse$Properties); | |
/** | |
+ * TableStatsResponse range_count. | |
* @type {Long|undefined} | |
*/ | |
public range_count?: Long; | |
/** | |
+ * TableStatsResponse replica_count. | |
* @type {Long|undefined} | |
*/ | |
public replica_count?: Long; | |
/** | |
+ * TableStatsResponse node_count. | |
* @type {Long|undefined} | |
*/ | |
public node_count?: Long; | |
/** | |
+ * TableStatsResponse stats. | |
* @type {cockroach.storage.engine.enginepb.MVCCStats$Properties|undefined} | |
*/ | |
public stats?: cockroach.storage.engine.enginepb.MVCCStats$Properties; | |
/** | |
+ * TableStatsResponse missing_nodes. | |
* @type {Array.<cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties>|undefined} | |
*/ | |
public missing_nodes?: cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties[]; | |
@@ -1678,7 +1693,7 @@ export namespace cockroach { | |
/** | |
* Properties of a MissingNode. | |
* @typedef cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] MissingNode node_id. | |
* @property {string} [error_message] MissingNode error_message. | |
*/ | |
@@ -1690,27 +1705,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new MissingNode. | |
* @exports cockroach.server.serverpb.TableStatsResponse.MissingNode | |
- * @implements cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties=} [properties] Properties to set | |
*/ | |
- class MissingNode implements cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties { | |
+ class MissingNode { | |
/** | |
* Constructs a new MissingNode. | |
* @exports cockroach.server.serverpb.TableStatsResponse.MissingNode | |
- * @implements cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.TableStatsResponse.MissingNode$Properties); | |
/** | |
+ * MissingNode node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
/** | |
+ * MissingNode error_message. | |
* @type {string|undefined} | |
*/ | |
public error_message?: string; | |
@@ -1806,23 +1821,21 @@ export namespace cockroach { | |
/** | |
* Properties of a UsersRequest. | |
* @typedef cockroach.server.serverpb.UsersRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type UsersRequest$Properties = Object; | |
/** | |
* Constructs a new UsersRequest. | |
* @exports cockroach.server.serverpb.UsersRequest | |
- * @implements cockroach.server.serverpb.UsersRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersRequest$Properties=} [properties] Properties to set | |
*/ | |
- class UsersRequest implements cockroach.server.serverpb.UsersRequest$Properties { | |
+ class UsersRequest { | |
/** | |
* Constructs a new UsersRequest. | |
* @exports cockroach.server.serverpb.UsersRequest | |
- * @implements cockroach.server.serverpb.UsersRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -1918,7 +1931,7 @@ export namespace cockroach { | |
/** | |
* Properties of a UsersResponse. | |
* @typedef cockroach.server.serverpb.UsersResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.serverpb.UsersResponse.User$Properties>} [users] UsersResponse users. | |
*/ | |
type UsersResponse$Properties = { | |
@@ -1928,22 +1941,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new UsersResponse. | |
* @exports cockroach.server.serverpb.UsersResponse | |
- * @implements cockroach.server.serverpb.UsersResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersResponse$Properties=} [properties] Properties to set | |
*/ | |
- class UsersResponse implements cockroach.server.serverpb.UsersResponse$Properties { | |
+ class UsersResponse { | |
/** | |
* Constructs a new UsersResponse. | |
* @exports cockroach.server.serverpb.UsersResponse | |
- * @implements cockroach.server.serverpb.UsersResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.UsersResponse$Properties); | |
/** | |
+ * UsersResponse users. | |
* @type {Array.<cockroach.server.serverpb.UsersResponse.User$Properties>|undefined} | |
*/ | |
public users?: cockroach.server.serverpb.UsersResponse.User$Properties[]; | |
@@ -2040,7 +2052,7 @@ export namespace cockroach { | |
/** | |
* Properties of a User. | |
* @typedef cockroach.server.serverpb.UsersResponse.User$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [username] User username. | |
*/ | |
type User$Properties = { | |
@@ -2050,22 +2062,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new User. | |
* @exports cockroach.server.serverpb.UsersResponse.User | |
- * @implements cockroach.server.serverpb.UsersResponse.User$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersResponse.User$Properties=} [properties] Properties to set | |
*/ | |
- class User implements cockroach.server.serverpb.UsersResponse.User$Properties { | |
+ class User { | |
/** | |
* Constructs a new User. | |
* @exports cockroach.server.serverpb.UsersResponse.User | |
- * @implements cockroach.server.serverpb.UsersResponse.User$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.UsersResponse.User$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.UsersResponse.User$Properties); | |
/** | |
+ * User username. | |
* @type {string|undefined} | |
*/ | |
public username?: string; | |
@@ -2161,7 +2172,7 @@ export namespace cockroach { | |
/** | |
* Properties of an EventsRequest. | |
* @typedef cockroach.server.serverpb.EventsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [type] EventsRequest type. | |
* @property {Long} [target_id] EventsRequest target_id. | |
*/ | |
@@ -2173,27 +2184,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new EventsRequest. | |
* @exports cockroach.server.serverpb.EventsRequest | |
- * @implements cockroach.server.serverpb.EventsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class EventsRequest implements cockroach.server.serverpb.EventsRequest$Properties { | |
+ class EventsRequest { | |
/** | |
* Constructs a new EventsRequest. | |
* @exports cockroach.server.serverpb.EventsRequest | |
- * @implements cockroach.server.serverpb.EventsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.EventsRequest$Properties); | |
/** | |
+ * EventsRequest type. | |
* @type {string|undefined} | |
*/ | |
public type?: string; | |
/** | |
+ * EventsRequest target_id. | |
* @type {Long|undefined} | |
*/ | |
public target_id?: Long; | |
@@ -2288,7 +2299,7 @@ export namespace cockroach { | |
/** | |
* Properties of an EventsResponse. | |
* @typedef cockroach.server.serverpb.EventsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.serverpb.EventsResponse.Event$Properties>} [events] EventsResponse events. | |
*/ | |
type EventsResponse$Properties = { | |
@@ -2298,22 +2309,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new EventsResponse. | |
* @exports cockroach.server.serverpb.EventsResponse | |
- * @implements cockroach.server.serverpb.EventsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class EventsResponse implements cockroach.server.serverpb.EventsResponse$Properties { | |
+ class EventsResponse { | |
/** | |
* Constructs a new EventsResponse. | |
* @exports cockroach.server.serverpb.EventsResponse | |
- * @implements cockroach.server.serverpb.EventsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.EventsResponse$Properties); | |
/** | |
+ * EventsResponse events. | |
* @type {Array.<cockroach.server.serverpb.EventsResponse.Event$Properties>|undefined} | |
*/ | |
public events?: cockroach.server.serverpb.EventsResponse.Event$Properties[]; | |
@@ -2410,8 +2420,8 @@ export namespace cockroach { | |
/** | |
* Properties of an Event. | |
* @typedef cockroach.server.serverpb.EventsResponse.Event$Properties | |
- * @type Object | |
- * @property {*} [timestamp] Event timestamp. | |
+ * @type {Object} | |
+ * @property {cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties} [timestamp] Event timestamp. | |
* @property {string} [event_type] Event event_type. | |
* @property {Long} [target_id] Event target_id. | |
* @property {Long} [reporting_id] Event reporting_id. | |
@@ -2419,7 +2429,7 @@ export namespace cockroach { | |
* @property {Uint8Array} [unique_id] Event unique_id. | |
*/ | |
type Event$Properties = { | |
- timestamp?: any; | |
+ timestamp?: cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties; | |
event_type?: string; | |
target_id?: Long; | |
reporting_id?: Long; | |
@@ -2430,47 +2440,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new Event. | |
* @exports cockroach.server.serverpb.EventsResponse.Event | |
- * @implements cockroach.server.serverpb.EventsResponse.Event$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse.Event$Properties=} [properties] Properties to set | |
*/ | |
- class Event implements cockroach.server.serverpb.EventsResponse.Event$Properties { | |
+ class Event { | |
/** | |
* Constructs a new Event. | |
* @exports cockroach.server.serverpb.EventsResponse.Event | |
- * @implements cockroach.server.serverpb.EventsResponse.Event$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse.Event$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.EventsResponse.Event$Properties); | |
/** | |
+ * Event timestamp. | |
* @type {cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties; | |
/** | |
+ * Event event_type. | |
* @type {string|undefined} | |
*/ | |
public event_type?: string; | |
/** | |
+ * Event target_id. | |
* @type {Long|undefined} | |
*/ | |
public target_id?: Long; | |
/** | |
+ * Event reporting_id. | |
* @type {Long|undefined} | |
*/ | |
public reporting_id?: Long; | |
/** | |
+ * Event info. | |
* @type {string|undefined} | |
*/ | |
public info?: string; | |
/** | |
+ * Event unique_id. | |
* @type {Uint8Array|undefined} | |
*/ | |
public unique_id?: Uint8Array; | |
@@ -2567,7 +2581,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Timestamp. | |
* @typedef cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [sec] Timestamp sec. | |
* @property {number} [nsec] Timestamp nsec. | |
*/ | |
@@ -2579,27 +2593,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.server.serverpb.EventsResponse.Event.Timestamp | |
- * @implements cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
- class Timestamp implements cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties { | |
+ class Timestamp { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.server.serverpb.EventsResponse.Event.Timestamp | |
- * @implements cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.EventsResponse.Event.Timestamp$Properties); | |
/** | |
+ * Timestamp sec. | |
* @type {Long|undefined} | |
*/ | |
public sec?: Long; | |
/** | |
+ * Timestamp nsec. | |
* @type {number|undefined} | |
*/ | |
public nsec?: number; | |
@@ -2696,7 +2710,7 @@ export namespace cockroach { | |
/** | |
* Properties of a SetUIDataRequest. | |
* @typedef cockroach.server.serverpb.SetUIDataRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Object.<string,Uint8Array>} [key_values] SetUIDataRequest key_values. | |
*/ | |
type SetUIDataRequest$Properties = { | |
@@ -2706,22 +2720,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new SetUIDataRequest. | |
* @exports cockroach.server.serverpb.SetUIDataRequest | |
- * @implements cockroach.server.serverpb.SetUIDataRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SetUIDataRequest$Properties=} [properties] Properties to set | |
*/ | |
- class SetUIDataRequest implements cockroach.server.serverpb.SetUIDataRequest$Properties { | |
+ class SetUIDataRequest { | |
/** | |
* Constructs a new SetUIDataRequest. | |
* @exports cockroach.server.serverpb.SetUIDataRequest | |
- * @implements cockroach.server.serverpb.SetUIDataRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SetUIDataRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.SetUIDataRequest$Properties); | |
/** | |
+ * SetUIDataRequest key_values. | |
* @type {Object.<string,Uint8Array>|undefined} | |
*/ | |
public key_values?: { [k: string]: Uint8Array }; | |
@@ -2816,23 +2829,21 @@ export namespace cockroach { | |
/** | |
* Properties of a SetUIDataResponse. | |
* @typedef cockroach.server.serverpb.SetUIDataResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type SetUIDataResponse$Properties = Object; | |
/** | |
* Constructs a new SetUIDataResponse. | |
* @exports cockroach.server.serverpb.SetUIDataResponse | |
- * @implements cockroach.server.serverpb.SetUIDataResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SetUIDataResponse$Properties=} [properties] Properties to set | |
*/ | |
- class SetUIDataResponse implements cockroach.server.serverpb.SetUIDataResponse$Properties { | |
+ class SetUIDataResponse { | |
/** | |
* Constructs a new SetUIDataResponse. | |
* @exports cockroach.server.serverpb.SetUIDataResponse | |
- * @implements cockroach.server.serverpb.SetUIDataResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SetUIDataResponse$Properties=} [properties] Properties to set | |
*/ | |
@@ -2928,7 +2939,7 @@ export namespace cockroach { | |
/** | |
* Properties of a GetUIDataRequest. | |
* @typedef cockroach.server.serverpb.GetUIDataRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<string>} [keys] GetUIDataRequest keys. | |
*/ | |
type GetUIDataRequest$Properties = { | |
@@ -2938,22 +2949,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new GetUIDataRequest. | |
* @exports cockroach.server.serverpb.GetUIDataRequest | |
- * @implements cockroach.server.serverpb.GetUIDataRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataRequest$Properties=} [properties] Properties to set | |
*/ | |
- class GetUIDataRequest implements cockroach.server.serverpb.GetUIDataRequest$Properties { | |
+ class GetUIDataRequest { | |
/** | |
* Constructs a new GetUIDataRequest. | |
* @exports cockroach.server.serverpb.GetUIDataRequest | |
- * @implements cockroach.server.serverpb.GetUIDataRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.GetUIDataRequest$Properties); | |
/** | |
+ * GetUIDataRequest keys. | |
* @type {Array.<string>|undefined} | |
*/ | |
public keys?: string[]; | |
@@ -3048,7 +3058,7 @@ export namespace cockroach { | |
/** | |
* Properties of a GetUIDataResponse. | |
* @typedef cockroach.server.serverpb.GetUIDataResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Object.<string,cockroach.server.serverpb.GetUIDataResponse.Value$Properties>} [key_values] GetUIDataResponse key_values. | |
*/ | |
type GetUIDataResponse$Properties = { | |
@@ -3058,22 +3068,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new GetUIDataResponse. | |
* @exports cockroach.server.serverpb.GetUIDataResponse | |
- * @implements cockroach.server.serverpb.GetUIDataResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse$Properties=} [properties] Properties to set | |
*/ | |
- class GetUIDataResponse implements cockroach.server.serverpb.GetUIDataResponse$Properties { | |
+ class GetUIDataResponse { | |
/** | |
* Constructs a new GetUIDataResponse. | |
* @exports cockroach.server.serverpb.GetUIDataResponse | |
- * @implements cockroach.server.serverpb.GetUIDataResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.GetUIDataResponse$Properties); | |
/** | |
+ * GetUIDataResponse key_values. | |
* @type {Object.<string,cockroach.server.serverpb.GetUIDataResponse.Value$Properties>|undefined} | |
*/ | |
public key_values?: { [k: string]: cockroach.server.serverpb.GetUIDataResponse.Value$Properties }; | |
@@ -3170,7 +3179,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Timestamp. | |
* @typedef cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [sec] Timestamp sec. | |
* @property {number} [nsec] Timestamp nsec. | |
*/ | |
@@ -3182,27 +3191,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.server.serverpb.GetUIDataResponse.Timestamp | |
- * @implements cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
- class Timestamp implements cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties { | |
+ class Timestamp { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.server.serverpb.GetUIDataResponse.Timestamp | |
- * @implements cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties); | |
/** | |
+ * Timestamp sec. | |
* @type {Long|undefined} | |
*/ | |
public sec?: Long; | |
/** | |
+ * Timestamp nsec. | |
* @type {number|undefined} | |
*/ | |
public nsec?: number; | |
@@ -3297,39 +3306,39 @@ export namespace cockroach { | |
/** | |
* Properties of a Value. | |
* @typedef cockroach.server.serverpb.GetUIDataResponse.Value$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [value] Value value. | |
- * @property {*} [last_updated] Value last_updated. | |
+ * @property {cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties} [last_updated] Value last_updated. | |
*/ | |
type Value$Properties = { | |
value?: Uint8Array; | |
- last_updated?: any; | |
+ last_updated?: cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties; | |
}; | |
/** | |
* Constructs a new Value. | |
* @exports cockroach.server.serverpb.GetUIDataResponse.Value | |
- * @implements cockroach.server.serverpb.GetUIDataResponse.Value$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse.Value$Properties=} [properties] Properties to set | |
*/ | |
- class Value implements cockroach.server.serverpb.GetUIDataResponse.Value$Properties { | |
+ class Value { | |
/** | |
* Constructs a new Value. | |
* @exports cockroach.server.serverpb.GetUIDataResponse.Value | |
- * @implements cockroach.server.serverpb.GetUIDataResponse.Value$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GetUIDataResponse.Value$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.GetUIDataResponse.Value$Properties); | |
/** | |
+ * Value value. | |
* @type {Uint8Array|undefined} | |
*/ | |
public value?: Uint8Array; | |
/** | |
+ * Value last_updated. | |
* @type {cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties|undefined} | |
*/ | |
public last_updated?: cockroach.server.serverpb.GetUIDataResponse.Timestamp$Properties; | |
@@ -3425,23 +3434,21 @@ export namespace cockroach { | |
/** | |
* Properties of a ClusterRequest. | |
* @typedef cockroach.server.serverpb.ClusterRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type ClusterRequest$Properties = Object; | |
/** | |
* Constructs a new ClusterRequest. | |
* @exports cockroach.server.serverpb.ClusterRequest | |
- * @implements cockroach.server.serverpb.ClusterRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterRequest$Properties=} [properties] Properties to set | |
*/ | |
- class ClusterRequest implements cockroach.server.serverpb.ClusterRequest$Properties { | |
+ class ClusterRequest { | |
/** | |
* Constructs a new ClusterRequest. | |
* @exports cockroach.server.serverpb.ClusterRequest | |
- * @implements cockroach.server.serverpb.ClusterRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -3537,7 +3544,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ClusterResponse. | |
* @typedef cockroach.server.serverpb.ClusterResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [cluster_id] ClusterResponse cluster_id. | |
*/ | |
type ClusterResponse$Properties = { | |
@@ -3547,22 +3554,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new ClusterResponse. | |
* @exports cockroach.server.serverpb.ClusterResponse | |
- * @implements cockroach.server.serverpb.ClusterResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterResponse$Properties=} [properties] Properties to set | |
*/ | |
- class ClusterResponse implements cockroach.server.serverpb.ClusterResponse$Properties { | |
+ class ClusterResponse { | |
/** | |
* Constructs a new ClusterResponse. | |
* @exports cockroach.server.serverpb.ClusterResponse | |
- * @implements cockroach.server.serverpb.ClusterResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.ClusterResponse$Properties); | |
/** | |
+ * ClusterResponse cluster_id. | |
* @type {string|undefined} | |
*/ | |
public cluster_id?: string; | |
@@ -3670,7 +3676,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DrainRequest. | |
* @typedef cockroach.server.serverpb.DrainRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<number>} [on] DrainRequest on. | |
* @property {Array.<number>} [off] DrainRequest off. | |
* @property {boolean} [shutdown] DrainRequest shutdown. | |
@@ -3684,32 +3690,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new DrainRequest. | |
* @exports cockroach.server.serverpb.DrainRequest | |
- * @implements cockroach.server.serverpb.DrainRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DrainRequest$Properties=} [properties] Properties to set | |
*/ | |
- class DrainRequest implements cockroach.server.serverpb.DrainRequest$Properties { | |
+ class DrainRequest { | |
/** | |
* Constructs a new DrainRequest. | |
* @exports cockroach.server.serverpb.DrainRequest | |
- * @implements cockroach.server.serverpb.DrainRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DrainRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DrainRequest$Properties); | |
/** | |
+ * DrainRequest on. | |
* @type {Array.<number>|undefined} | |
*/ | |
public on?: number[]; | |
/** | |
+ * DrainRequest off. | |
* @type {Array.<number>|undefined} | |
*/ | |
public off?: number[]; | |
/** | |
+ * DrainRequest shutdown. | |
* @type {boolean|undefined} | |
*/ | |
public shutdown?: boolean; | |
@@ -3804,7 +3811,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DrainResponse. | |
* @typedef cockroach.server.serverpb.DrainResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<number>} [on] DrainResponse on. | |
*/ | |
type DrainResponse$Properties = { | |
@@ -3814,22 +3821,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new DrainResponse. | |
* @exports cockroach.server.serverpb.DrainResponse | |
- * @implements cockroach.server.serverpb.DrainResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DrainResponse$Properties=} [properties] Properties to set | |
*/ | |
- class DrainResponse implements cockroach.server.serverpb.DrainResponse$Properties { | |
+ class DrainResponse { | |
/** | |
* Constructs a new DrainResponse. | |
* @exports cockroach.server.serverpb.DrainResponse | |
- * @implements cockroach.server.serverpb.DrainResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DrainResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DrainResponse$Properties); | |
/** | |
+ * DrainResponse on. | |
* @type {Array.<number>|undefined} | |
*/ | |
public on?: number[]; | |
@@ -3924,23 +3930,21 @@ export namespace cockroach { | |
/** | |
* Properties of a HealthRequest. | |
* @typedef cockroach.server.serverpb.HealthRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type HealthRequest$Properties = Object; | |
/** | |
* Constructs a new HealthRequest. | |
* @exports cockroach.server.serverpb.HealthRequest | |
- * @implements cockroach.server.serverpb.HealthRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.HealthRequest$Properties=} [properties] Properties to set | |
*/ | |
- class HealthRequest implements cockroach.server.serverpb.HealthRequest$Properties { | |
+ class HealthRequest { | |
/** | |
* Constructs a new HealthRequest. | |
* @exports cockroach.server.serverpb.HealthRequest | |
- * @implements cockroach.server.serverpb.HealthRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.HealthRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -4036,23 +4040,21 @@ export namespace cockroach { | |
/** | |
* Properties of a HealthResponse. | |
* @typedef cockroach.server.serverpb.HealthResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type HealthResponse$Properties = Object; | |
/** | |
* Constructs a new HealthResponse. | |
* @exports cockroach.server.serverpb.HealthResponse | |
- * @implements cockroach.server.serverpb.HealthResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.HealthResponse$Properties=} [properties] Properties to set | |
*/ | |
- class HealthResponse implements cockroach.server.serverpb.HealthResponse$Properties { | |
+ class HealthResponse { | |
/** | |
* Constructs a new HealthResponse. | |
* @exports cockroach.server.serverpb.HealthResponse | |
- * @implements cockroach.server.serverpb.HealthResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.HealthResponse$Properties=} [properties] Properties to set | |
*/ | |
@@ -4148,23 +4150,21 @@ export namespace cockroach { | |
/** | |
* Properties of a LivenessRequest. | |
* @typedef cockroach.server.serverpb.LivenessRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type LivenessRequest$Properties = Object; | |
/** | |
* Constructs a new LivenessRequest. | |
* @exports cockroach.server.serverpb.LivenessRequest | |
- * @implements cockroach.server.serverpb.LivenessRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LivenessRequest$Properties=} [properties] Properties to set | |
*/ | |
- class LivenessRequest implements cockroach.server.serverpb.LivenessRequest$Properties { | |
+ class LivenessRequest { | |
/** | |
* Constructs a new LivenessRequest. | |
* @exports cockroach.server.serverpb.LivenessRequest | |
- * @implements cockroach.server.serverpb.LivenessRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LivenessRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -4260,7 +4260,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LivenessResponse. | |
* @typedef cockroach.server.serverpb.LivenessResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.storage.Liveness$Properties>} [livenesses] LivenessResponse livenesses. | |
*/ | |
type LivenessResponse$Properties = { | |
@@ -4270,22 +4270,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new LivenessResponse. | |
* @exports cockroach.server.serverpb.LivenessResponse | |
- * @implements cockroach.server.serverpb.LivenessResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LivenessResponse$Properties=} [properties] Properties to set | |
*/ | |
- class LivenessResponse implements cockroach.server.serverpb.LivenessResponse$Properties { | |
+ class LivenessResponse { | |
/** | |
* Constructs a new LivenessResponse. | |
* @exports cockroach.server.serverpb.LivenessResponse | |
- * @implements cockroach.server.serverpb.LivenessResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LivenessResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LivenessResponse$Properties); | |
/** | |
+ * LivenessResponse livenesses. | |
* @type {Array.<cockroach.storage.Liveness$Properties>|undefined} | |
*/ | |
public livenesses?: cockroach.storage.Liveness$Properties[]; | |
@@ -4380,7 +4379,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ClusterFreezeRequest. | |
* @typedef cockroach.server.serverpb.ClusterFreezeRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [freeze] ClusterFreezeRequest freeze. | |
*/ | |
type ClusterFreezeRequest$Properties = { | |
@@ -4390,22 +4389,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new ClusterFreezeRequest. | |
* @exports cockroach.server.serverpb.ClusterFreezeRequest | |
- * @implements cockroach.server.serverpb.ClusterFreezeRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterFreezeRequest$Properties=} [properties] Properties to set | |
*/ | |
- class ClusterFreezeRequest implements cockroach.server.serverpb.ClusterFreezeRequest$Properties { | |
+ class ClusterFreezeRequest { | |
/** | |
* Constructs a new ClusterFreezeRequest. | |
* @exports cockroach.server.serverpb.ClusterFreezeRequest | |
- * @implements cockroach.server.serverpb.ClusterFreezeRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterFreezeRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.ClusterFreezeRequest$Properties); | |
/** | |
+ * ClusterFreezeRequest freeze. | |
* @type {boolean|undefined} | |
*/ | |
public freeze?: boolean; | |
@@ -4500,7 +4498,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ClusterFreezeResponse. | |
* @typedef cockroach.server.serverpb.ClusterFreezeResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [ranges_affected] ClusterFreezeResponse ranges_affected. | |
* @property {string} [message] ClusterFreezeResponse message. | |
*/ | |
@@ -4512,27 +4510,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new ClusterFreezeResponse. | |
* @exports cockroach.server.serverpb.ClusterFreezeResponse | |
- * @implements cockroach.server.serverpb.ClusterFreezeResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterFreezeResponse$Properties=} [properties] Properties to set | |
*/ | |
- class ClusterFreezeResponse implements cockroach.server.serverpb.ClusterFreezeResponse$Properties { | |
+ class ClusterFreezeResponse { | |
/** | |
* Constructs a new ClusterFreezeResponse. | |
* @exports cockroach.server.serverpb.ClusterFreezeResponse | |
- * @implements cockroach.server.serverpb.ClusterFreezeResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.ClusterFreezeResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.ClusterFreezeResponse$Properties); | |
/** | |
+ * ClusterFreezeResponse ranges_affected. | |
* @type {Long|undefined} | |
*/ | |
public ranges_affected?: Long; | |
/** | |
+ * ClusterFreezeResponse message. | |
* @type {string|undefined} | |
*/ | |
public message?: string; | |
@@ -4763,7 +4761,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DetailsRequest. | |
* @typedef cockroach.server.serverpb.DetailsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] DetailsRequest node_id. | |
*/ | |
type DetailsRequest$Properties = { | |
@@ -4773,22 +4771,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new DetailsRequest. | |
* @exports cockroach.server.serverpb.DetailsRequest | |
- * @implements cockroach.server.serverpb.DetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class DetailsRequest implements cockroach.server.serverpb.DetailsRequest$Properties { | |
+ class DetailsRequest { | |
/** | |
* Constructs a new DetailsRequest. | |
* @exports cockroach.server.serverpb.DetailsRequest | |
- * @implements cockroach.server.serverpb.DetailsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DetailsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DetailsRequest$Properties); | |
/** | |
+ * DetailsRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -4883,7 +4880,7 @@ export namespace cockroach { | |
/** | |
* Properties of a DetailsResponse. | |
* @typedef cockroach.server.serverpb.DetailsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] DetailsResponse node_id. | |
* @property {cockroach.util.UnresolvedAddr$Properties} [address] DetailsResponse address. | |
* @property {cockroach.build.Info$Properties} [build_info] DetailsResponse build_info. | |
@@ -4897,32 +4894,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new DetailsResponse. | |
* @exports cockroach.server.serverpb.DetailsResponse | |
- * @implements cockroach.server.serverpb.DetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class DetailsResponse implements cockroach.server.serverpb.DetailsResponse$Properties { | |
+ class DetailsResponse { | |
/** | |
* Constructs a new DetailsResponse. | |
* @exports cockroach.server.serverpb.DetailsResponse | |
- * @implements cockroach.server.serverpb.DetailsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.DetailsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.DetailsResponse$Properties); | |
/** | |
+ * DetailsResponse node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * DetailsResponse address. | |
* @type {cockroach.util.UnresolvedAddr$Properties|undefined} | |
*/ | |
public address?: cockroach.util.UnresolvedAddr$Properties; | |
/** | |
+ * DetailsResponse build_info. | |
* @type {cockroach.build.Info$Properties|undefined} | |
*/ | |
public build_info?: cockroach.build.Info$Properties; | |
@@ -5017,23 +5015,21 @@ export namespace cockroach { | |
/** | |
* Properties of a NodesRequest. | |
* @typedef cockroach.server.serverpb.NodesRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
*/ | |
type NodesRequest$Properties = Object; | |
/** | |
* Constructs a new NodesRequest. | |
* @exports cockroach.server.serverpb.NodesRequest | |
- * @implements cockroach.server.serverpb.NodesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodesRequest$Properties=} [properties] Properties to set | |
*/ | |
- class NodesRequest implements cockroach.server.serverpb.NodesRequest$Properties { | |
+ class NodesRequest { | |
/** | |
* Constructs a new NodesRequest. | |
* @exports cockroach.server.serverpb.NodesRequest | |
- * @implements cockroach.server.serverpb.NodesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodesRequest$Properties=} [properties] Properties to set | |
*/ | |
@@ -5129,7 +5125,7 @@ export namespace cockroach { | |
/** | |
* Properties of a NodesResponse. | |
* @typedef cockroach.server.serverpb.NodesResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.status.NodeStatus$Properties>} [nodes] NodesResponse nodes. | |
*/ | |
type NodesResponse$Properties = { | |
@@ -5139,22 +5135,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new NodesResponse. | |
* @exports cockroach.server.serverpb.NodesResponse | |
- * @implements cockroach.server.serverpb.NodesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodesResponse$Properties=} [properties] Properties to set | |
*/ | |
- class NodesResponse implements cockroach.server.serverpb.NodesResponse$Properties { | |
+ class NodesResponse { | |
/** | |
* Constructs a new NodesResponse. | |
* @exports cockroach.server.serverpb.NodesResponse | |
- * @implements cockroach.server.serverpb.NodesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodesResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.NodesResponse$Properties); | |
/** | |
+ * NodesResponse nodes. | |
* @type {Array.<cockroach.server.status.NodeStatus$Properties>|undefined} | |
*/ | |
public nodes?: cockroach.server.status.NodeStatus$Properties[]; | |
@@ -5249,7 +5244,7 @@ export namespace cockroach { | |
/** | |
* Properties of a NodeRequest. | |
* @typedef cockroach.server.serverpb.NodeRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] NodeRequest node_id. | |
*/ | |
type NodeRequest$Properties = { | |
@@ -5259,22 +5254,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new NodeRequest. | |
* @exports cockroach.server.serverpb.NodeRequest | |
- * @implements cockroach.server.serverpb.NodeRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodeRequest$Properties=} [properties] Properties to set | |
*/ | |
- class NodeRequest implements cockroach.server.serverpb.NodeRequest$Properties { | |
+ class NodeRequest { | |
/** | |
* Constructs a new NodeRequest. | |
* @exports cockroach.server.serverpb.NodeRequest | |
- * @implements cockroach.server.serverpb.NodeRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.NodeRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.NodeRequest$Properties); | |
/** | |
+ * NodeRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -5369,7 +5363,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftState. | |
* @typedef cockroach.server.serverpb.RaftState$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [replica_id] RaftState replica_id. | |
* @property {raftpb.HardState$Properties} [hard_state] RaftState hard_state. | |
* @property {Long} [lead] RaftState lead. | |
@@ -5389,47 +5383,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftState. | |
* @exports cockroach.server.serverpb.RaftState | |
- * @implements cockroach.server.serverpb.RaftState$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftState$Properties=} [properties] Properties to set | |
*/ | |
- class RaftState implements cockroach.server.serverpb.RaftState$Properties { | |
+ class RaftState { | |
/** | |
* Constructs a new RaftState. | |
* @exports cockroach.server.serverpb.RaftState | |
- * @implements cockroach.server.serverpb.RaftState$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftState$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftState$Properties); | |
/** | |
+ * RaftState replica_id. | |
* @type {Long|undefined} | |
*/ | |
public replica_id?: Long; | |
/** | |
+ * RaftState hard_state. | |
* @type {raftpb.HardState$Properties|undefined} | |
*/ | |
public hard_state?: raftpb.HardState$Properties; | |
/** | |
+ * RaftState lead. | |
* @type {Long|undefined} | |
*/ | |
public lead?: Long; | |
/** | |
+ * RaftState state. | |
* @type {string|undefined} | |
*/ | |
public state?: string; | |
/** | |
+ * RaftState applied. | |
* @type {Long|undefined} | |
*/ | |
public applied?: Long; | |
/** | |
+ * RaftState progress. | |
* @type {Object.<string,cockroach.server.serverpb.RaftState.Progress$Properties>|undefined} | |
*/ | |
public progress?: { [k: string]: cockroach.server.serverpb.RaftState.Progress$Properties }; | |
@@ -5526,7 +5524,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Progress. | |
* @typedef cockroach.server.serverpb.RaftState.Progress$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [match] Progress match. | |
* @property {Long} [next] Progress next. | |
* @property {string} [state] Progress state. | |
@@ -5544,42 +5542,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new Progress. | |
* @exports cockroach.server.serverpb.RaftState.Progress | |
- * @implements cockroach.server.serverpb.RaftState.Progress$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftState.Progress$Properties=} [properties] Properties to set | |
*/ | |
- class Progress implements cockroach.server.serverpb.RaftState.Progress$Properties { | |
+ class Progress { | |
/** | |
* Constructs a new Progress. | |
* @exports cockroach.server.serverpb.RaftState.Progress | |
- * @implements cockroach.server.serverpb.RaftState.Progress$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftState.Progress$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftState.Progress$Properties); | |
/** | |
+ * Progress match. | |
* @type {Long|undefined} | |
*/ | |
public match?: Long; | |
/** | |
+ * Progress next. | |
* @type {Long|undefined} | |
*/ | |
public next?: Long; | |
/** | |
+ * Progress state. | |
* @type {string|undefined} | |
*/ | |
public state?: string; | |
/** | |
+ * Progress paused. | |
* @type {boolean|undefined} | |
*/ | |
public paused?: boolean; | |
/** | |
+ * Progress pending_snapshot. | |
* @type {Long|undefined} | |
*/ | |
public pending_snapshot?: Long; | |
@@ -5675,7 +5676,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RangeInfo. | |
* @typedef cockroach.server.serverpb.RangeInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.server.serverpb.PrettySpan$Properties} [span] RangeInfo span. | |
* @property {cockroach.server.serverpb.RaftState$Properties} [raft_state] RangeInfo raft_state. | |
* @property {cockroach.storage.storagebase.RangeInfo$Properties} [state] RangeInfo state. | |
@@ -5695,47 +5696,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new RangeInfo. | |
* @exports cockroach.server.serverpb.RangeInfo | |
- * @implements cockroach.server.serverpb.RangeInfo$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangeInfo$Properties=} [properties] Properties to set | |
*/ | |
- class RangeInfo implements cockroach.server.serverpb.RangeInfo$Properties { | |
+ class RangeInfo { | |
/** | |
* Constructs a new RangeInfo. | |
* @exports cockroach.server.serverpb.RangeInfo | |
- * @implements cockroach.server.serverpb.RangeInfo$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangeInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RangeInfo$Properties); | |
/** | |
+ * RangeInfo span. | |
* @type {cockroach.server.serverpb.PrettySpan$Properties|undefined} | |
*/ | |
public span?: cockroach.server.serverpb.PrettySpan$Properties; | |
/** | |
+ * RangeInfo raft_state. | |
* @type {cockroach.server.serverpb.RaftState$Properties|undefined} | |
*/ | |
public raft_state?: cockroach.server.serverpb.RaftState$Properties; | |
/** | |
+ * RangeInfo state. | |
* @type {cockroach.storage.storagebase.RangeInfo$Properties|undefined} | |
*/ | |
public state?: cockroach.storage.storagebase.RangeInfo$Properties; | |
/** | |
+ * RangeInfo source_node_id. | |
* @type {number|undefined} | |
*/ | |
public source_node_id?: number; | |
/** | |
+ * RangeInfo source_store_id. | |
* @type {number|undefined} | |
*/ | |
public source_store_id?: number; | |
/** | |
+ * RangeInfo error_message. | |
* @type {string|undefined} | |
*/ | |
public error_message?: string; | |
@@ -5830,7 +5835,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RangesRequest. | |
* @typedef cockroach.server.serverpb.RangesRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] RangesRequest node_id. | |
* @property {Array.<Long>} [range_ids] RangesRequest range_ids. | |
*/ | |
@@ -5842,27 +5847,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new RangesRequest. | |
* @exports cockroach.server.serverpb.RangesRequest | |
- * @implements cockroach.server.serverpb.RangesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangesRequest$Properties=} [properties] Properties to set | |
*/ | |
- class RangesRequest implements cockroach.server.serverpb.RangesRequest$Properties { | |
+ class RangesRequest { | |
/** | |
* Constructs a new RangesRequest. | |
* @exports cockroach.server.serverpb.RangesRequest | |
- * @implements cockroach.server.serverpb.RangesRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangesRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RangesRequest$Properties); | |
/** | |
+ * RangesRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
/** | |
+ * RangesRequest range_ids. | |
* @type {Array.<Long>|undefined} | |
*/ | |
public range_ids?: Long[]; | |
@@ -5957,7 +5962,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RangesResponse. | |
* @typedef cockroach.server.serverpb.RangesResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.server.serverpb.RangeInfo$Properties>} [ranges] RangesResponse ranges. | |
*/ | |
type RangesResponse$Properties = { | |
@@ -5967,22 +5972,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new RangesResponse. | |
* @exports cockroach.server.serverpb.RangesResponse | |
- * @implements cockroach.server.serverpb.RangesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangesResponse$Properties=} [properties] Properties to set | |
*/ | |
- class RangesResponse implements cockroach.server.serverpb.RangesResponse$Properties { | |
+ class RangesResponse { | |
/** | |
* Constructs a new RangesResponse. | |
* @exports cockroach.server.serverpb.RangesResponse | |
- * @implements cockroach.server.serverpb.RangesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RangesResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RangesResponse$Properties); | |
/** | |
+ * RangesResponse ranges. | |
* @type {Array.<cockroach.server.serverpb.RangeInfo$Properties>|undefined} | |
*/ | |
public ranges?: cockroach.server.serverpb.RangeInfo$Properties[]; | |
@@ -6077,7 +6081,7 @@ export namespace cockroach { | |
/** | |
* Properties of a GossipRequest. | |
* @typedef cockroach.server.serverpb.GossipRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] GossipRequest node_id. | |
*/ | |
type GossipRequest$Properties = { | |
@@ -6087,22 +6091,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new GossipRequest. | |
* @exports cockroach.server.serverpb.GossipRequest | |
- * @implements cockroach.server.serverpb.GossipRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GossipRequest$Properties=} [properties] Properties to set | |
*/ | |
- class GossipRequest implements cockroach.server.serverpb.GossipRequest$Properties { | |
+ class GossipRequest { | |
/** | |
* Constructs a new GossipRequest. | |
* @exports cockroach.server.serverpb.GossipRequest | |
- * @implements cockroach.server.serverpb.GossipRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.GossipRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.GossipRequest$Properties); | |
/** | |
+ * GossipRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -6197,7 +6200,7 @@ export namespace cockroach { | |
/** | |
* Properties of a JSONResponse. | |
* @typedef cockroach.server.serverpb.JSONResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [data] JSONResponse data. | |
*/ | |
type JSONResponse$Properties = { | |
@@ -6207,22 +6210,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new JSONResponse. | |
* @exports cockroach.server.serverpb.JSONResponse | |
- * @implements cockroach.server.serverpb.JSONResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.JSONResponse$Properties=} [properties] Properties to set | |
*/ | |
- class JSONResponse implements cockroach.server.serverpb.JSONResponse$Properties { | |
+ class JSONResponse { | |
/** | |
* Constructs a new JSONResponse. | |
* @exports cockroach.server.serverpb.JSONResponse | |
- * @implements cockroach.server.serverpb.JSONResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.JSONResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.JSONResponse$Properties); | |
/** | |
+ * JSONResponse data. | |
* @type {Uint8Array|undefined} | |
*/ | |
public data?: Uint8Array; | |
@@ -6317,7 +6319,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LogsRequest. | |
* @typedef cockroach.server.serverpb.LogsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] LogsRequest node_id. | |
* @property {string} [level] LogsRequest level. | |
* @property {string} [start_time] LogsRequest start_time. | |
@@ -6337,47 +6339,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new LogsRequest. | |
* @exports cockroach.server.serverpb.LogsRequest | |
- * @implements cockroach.server.serverpb.LogsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class LogsRequest implements cockroach.server.serverpb.LogsRequest$Properties { | |
+ class LogsRequest { | |
/** | |
* Constructs a new LogsRequest. | |
* @exports cockroach.server.serverpb.LogsRequest | |
- * @implements cockroach.server.serverpb.LogsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LogsRequest$Properties); | |
/** | |
+ * LogsRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
/** | |
+ * LogsRequest level. | |
* @type {string|undefined} | |
*/ | |
public level?: string; | |
/** | |
+ * LogsRequest start_time. | |
* @type {string|undefined} | |
*/ | |
public start_time?: string; | |
/** | |
+ * LogsRequest end_time. | |
* @type {string|undefined} | |
*/ | |
public end_time?: string; | |
/** | |
+ * LogsRequest max. | |
* @type {string|undefined} | |
*/ | |
public max?: string; | |
/** | |
+ * LogsRequest pattern. | |
* @type {string|undefined} | |
*/ | |
public pattern?: string; | |
@@ -6472,7 +6478,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LogEntriesResponse. | |
* @typedef cockroach.server.serverpb.LogEntriesResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.util.log.Entry$Properties>} [entries] LogEntriesResponse entries. | |
*/ | |
type LogEntriesResponse$Properties = { | |
@@ -6482,22 +6488,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new LogEntriesResponse. | |
* @exports cockroach.server.serverpb.LogEntriesResponse | |
- * @implements cockroach.server.serverpb.LogEntriesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogEntriesResponse$Properties=} [properties] Properties to set | |
*/ | |
- class LogEntriesResponse implements cockroach.server.serverpb.LogEntriesResponse$Properties { | |
+ class LogEntriesResponse { | |
/** | |
* Constructs a new LogEntriesResponse. | |
* @exports cockroach.server.serverpb.LogEntriesResponse | |
- * @implements cockroach.server.serverpb.LogEntriesResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogEntriesResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LogEntriesResponse$Properties); | |
/** | |
+ * LogEntriesResponse entries. | |
* @type {Array.<cockroach.util.log.Entry$Properties>|undefined} | |
*/ | |
public entries?: cockroach.util.log.Entry$Properties[]; | |
@@ -6592,7 +6597,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LogFilesListRequest. | |
* @typedef cockroach.server.serverpb.LogFilesListRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] LogFilesListRequest node_id. | |
*/ | |
type LogFilesListRequest$Properties = { | |
@@ -6602,22 +6607,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new LogFilesListRequest. | |
* @exports cockroach.server.serverpb.LogFilesListRequest | |
- * @implements cockroach.server.serverpb.LogFilesListRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFilesListRequest$Properties=} [properties] Properties to set | |
*/ | |
- class LogFilesListRequest implements cockroach.server.serverpb.LogFilesListRequest$Properties { | |
+ class LogFilesListRequest { | |
/** | |
* Constructs a new LogFilesListRequest. | |
* @exports cockroach.server.serverpb.LogFilesListRequest | |
- * @implements cockroach.server.serverpb.LogFilesListRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFilesListRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LogFilesListRequest$Properties); | |
/** | |
+ * LogFilesListRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -6712,7 +6716,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LogFilesListResponse. | |
* @typedef cockroach.server.serverpb.LogFilesListResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.util.log.FileInfo$Properties>} [files] LogFilesListResponse files. | |
*/ | |
type LogFilesListResponse$Properties = { | |
@@ -6722,22 +6726,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new LogFilesListResponse. | |
* @exports cockroach.server.serverpb.LogFilesListResponse | |
- * @implements cockroach.server.serverpb.LogFilesListResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFilesListResponse$Properties=} [properties] Properties to set | |
*/ | |
- class LogFilesListResponse implements cockroach.server.serverpb.LogFilesListResponse$Properties { | |
+ class LogFilesListResponse { | |
/** | |
* Constructs a new LogFilesListResponse. | |
* @exports cockroach.server.serverpb.LogFilesListResponse | |
- * @implements cockroach.server.serverpb.LogFilesListResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFilesListResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LogFilesListResponse$Properties); | |
/** | |
+ * LogFilesListResponse files. | |
* @type {Array.<cockroach.util.log.FileInfo$Properties>|undefined} | |
*/ | |
public files?: cockroach.util.log.FileInfo$Properties[]; | |
@@ -6832,7 +6835,7 @@ export namespace cockroach { | |
/** | |
* Properties of a LogFileRequest. | |
* @typedef cockroach.server.serverpb.LogFileRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] LogFileRequest node_id. | |
* @property {string} [file] LogFileRequest file. | |
*/ | |
@@ -6844,27 +6847,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new LogFileRequest. | |
* @exports cockroach.server.serverpb.LogFileRequest | |
- * @implements cockroach.server.serverpb.LogFileRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFileRequest$Properties=} [properties] Properties to set | |
*/ | |
- class LogFileRequest implements cockroach.server.serverpb.LogFileRequest$Properties { | |
+ class LogFileRequest { | |
/** | |
* Constructs a new LogFileRequest. | |
* @exports cockroach.server.serverpb.LogFileRequest | |
- * @implements cockroach.server.serverpb.LogFileRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.LogFileRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.LogFileRequest$Properties); | |
/** | |
+ * LogFileRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
/** | |
+ * LogFileRequest file. | |
* @type {string|undefined} | |
*/ | |
public file?: string; | |
@@ -6959,7 +6962,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StacksRequest. | |
* @typedef cockroach.server.serverpb.StacksRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] StacksRequest node_id. | |
*/ | |
type StacksRequest$Properties = { | |
@@ -6969,22 +6972,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new StacksRequest. | |
* @exports cockroach.server.serverpb.StacksRequest | |
- * @implements cockroach.server.serverpb.StacksRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.StacksRequest$Properties=} [properties] Properties to set | |
*/ | |
- class StacksRequest implements cockroach.server.serverpb.StacksRequest$Properties { | |
+ class StacksRequest { | |
/** | |
* Constructs a new StacksRequest. | |
* @exports cockroach.server.serverpb.StacksRequest | |
- * @implements cockroach.server.serverpb.StacksRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.StacksRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.StacksRequest$Properties); | |
/** | |
+ * StacksRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -7079,7 +7081,7 @@ export namespace cockroach { | |
/** | |
* Properties of a MetricsRequest. | |
* @typedef cockroach.server.serverpb.MetricsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] MetricsRequest node_id. | |
*/ | |
type MetricsRequest$Properties = { | |
@@ -7089,22 +7091,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new MetricsRequest. | |
* @exports cockroach.server.serverpb.MetricsRequest | |
- * @implements cockroach.server.serverpb.MetricsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.MetricsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class MetricsRequest implements cockroach.server.serverpb.MetricsRequest$Properties { | |
+ class MetricsRequest { | |
/** | |
* Constructs a new MetricsRequest. | |
* @exports cockroach.server.serverpb.MetricsRequest | |
- * @implements cockroach.server.serverpb.MetricsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.MetricsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.MetricsRequest$Properties); | |
/** | |
+ * MetricsRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
@@ -7199,7 +7200,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftRangeNode. | |
* @typedef cockroach.server.serverpb.RaftRangeNode$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] RaftRangeNode node_id. | |
* @property {cockroach.server.serverpb.RangeInfo$Properties} [range] RaftRangeNode range. | |
*/ | |
@@ -7211,27 +7212,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftRangeNode. | |
* @exports cockroach.server.serverpb.RaftRangeNode | |
- * @implements cockroach.server.serverpb.RaftRangeNode$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeNode$Properties=} [properties] Properties to set | |
*/ | |
- class RaftRangeNode implements cockroach.server.serverpb.RaftRangeNode$Properties { | |
+ class RaftRangeNode { | |
/** | |
* Constructs a new RaftRangeNode. | |
* @exports cockroach.server.serverpb.RaftRangeNode | |
- * @implements cockroach.server.serverpb.RaftRangeNode$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeNode$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftRangeNode$Properties); | |
/** | |
+ * RaftRangeNode node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * RaftRangeNode range. | |
* @type {cockroach.server.serverpb.RangeInfo$Properties|undefined} | |
*/ | |
public range?: cockroach.server.serverpb.RangeInfo$Properties; | |
@@ -7326,7 +7327,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftRangeError. | |
* @typedef cockroach.server.serverpb.RaftRangeError$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [message] RaftRangeError message. | |
*/ | |
type RaftRangeError$Properties = { | |
@@ -7336,22 +7337,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftRangeError. | |
* @exports cockroach.server.serverpb.RaftRangeError | |
- * @implements cockroach.server.serverpb.RaftRangeError$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeError$Properties=} [properties] Properties to set | |
*/ | |
- class RaftRangeError implements cockroach.server.serverpb.RaftRangeError$Properties { | |
+ class RaftRangeError { | |
/** | |
* Constructs a new RaftRangeError. | |
* @exports cockroach.server.serverpb.RaftRangeError | |
- * @implements cockroach.server.serverpb.RaftRangeError$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeError$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftRangeError$Properties); | |
/** | |
+ * RaftRangeError message. | |
* @type {string|undefined} | |
*/ | |
public message?: string; | |
@@ -7446,7 +7446,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftRangeStatus. | |
* @typedef cockroach.server.serverpb.RaftRangeStatus$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [range_id] RaftRangeStatus range_id. | |
* @property {Array.<cockroach.server.serverpb.RaftRangeError$Properties>} [errors] RaftRangeStatus errors. | |
* @property {Array.<cockroach.server.serverpb.RaftRangeNode$Properties>} [nodes] RaftRangeStatus nodes. | |
@@ -7460,32 +7460,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftRangeStatus. | |
* @exports cockroach.server.serverpb.RaftRangeStatus | |
- * @implements cockroach.server.serverpb.RaftRangeStatus$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeStatus$Properties=} [properties] Properties to set | |
*/ | |
- class RaftRangeStatus implements cockroach.server.serverpb.RaftRangeStatus$Properties { | |
+ class RaftRangeStatus { | |
/** | |
* Constructs a new RaftRangeStatus. | |
* @exports cockroach.server.serverpb.RaftRangeStatus | |
- * @implements cockroach.server.serverpb.RaftRangeStatus$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftRangeStatus$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftRangeStatus$Properties); | |
/** | |
+ * RaftRangeStatus range_id. | |
* @type {Long|undefined} | |
*/ | |
public range_id?: Long; | |
/** | |
+ * RaftRangeStatus errors. | |
* @type {Array.<cockroach.server.serverpb.RaftRangeError$Properties>|undefined} | |
*/ | |
public errors?: cockroach.server.serverpb.RaftRangeError$Properties[]; | |
/** | |
+ * RaftRangeStatus nodes. | |
* @type {Array.<cockroach.server.serverpb.RaftRangeNode$Properties>|undefined} | |
*/ | |
public nodes?: cockroach.server.serverpb.RaftRangeNode$Properties[]; | |
@@ -7580,7 +7581,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftDebugRequest. | |
* @typedef cockroach.server.serverpb.RaftDebugRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<Long>} [range_ids] RaftDebugRequest range_ids. | |
*/ | |
type RaftDebugRequest$Properties = { | |
@@ -7590,22 +7591,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftDebugRequest. | |
* @exports cockroach.server.serverpb.RaftDebugRequest | |
- * @implements cockroach.server.serverpb.RaftDebugRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftDebugRequest$Properties=} [properties] Properties to set | |
*/ | |
- class RaftDebugRequest implements cockroach.server.serverpb.RaftDebugRequest$Properties { | |
+ class RaftDebugRequest { | |
/** | |
* Constructs a new RaftDebugRequest. | |
* @exports cockroach.server.serverpb.RaftDebugRequest | |
- * @implements cockroach.server.serverpb.RaftDebugRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftDebugRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftDebugRequest$Properties); | |
/** | |
+ * RaftDebugRequest range_ids. | |
* @type {Array.<Long>|undefined} | |
*/ | |
public range_ids?: Long[]; | |
@@ -7700,7 +7700,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftDebugResponse. | |
* @typedef cockroach.server.serverpb.RaftDebugResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Object.<string,cockroach.server.serverpb.RaftRangeStatus$Properties>} [ranges] RaftDebugResponse ranges. | |
* @property {Array.<cockroach.server.serverpb.RaftRangeError$Properties>} [errors] RaftDebugResponse errors. | |
*/ | |
@@ -7712,27 +7712,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftDebugResponse. | |
* @exports cockroach.server.serverpb.RaftDebugResponse | |
- * @implements cockroach.server.serverpb.RaftDebugResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftDebugResponse$Properties=} [properties] Properties to set | |
*/ | |
- class RaftDebugResponse implements cockroach.server.serverpb.RaftDebugResponse$Properties { | |
+ class RaftDebugResponse { | |
/** | |
* Constructs a new RaftDebugResponse. | |
* @exports cockroach.server.serverpb.RaftDebugResponse | |
- * @implements cockroach.server.serverpb.RaftDebugResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.RaftDebugResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.RaftDebugResponse$Properties); | |
/** | |
+ * RaftDebugResponse ranges. | |
* @type {Object.<string,cockroach.server.serverpb.RaftRangeStatus$Properties>|undefined} | |
*/ | |
public ranges?: { [k: string]: cockroach.server.serverpb.RaftRangeStatus$Properties }; | |
/** | |
+ * RaftDebugResponse errors. | |
* @type {Array.<cockroach.server.serverpb.RaftRangeError$Properties>|undefined} | |
*/ | |
public errors?: cockroach.server.serverpb.RaftRangeError$Properties[]; | |
@@ -7827,7 +7827,7 @@ export namespace cockroach { | |
/** | |
* Properties of a SpanStatsRequest. | |
* @typedef cockroach.server.serverpb.SpanStatsRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [node_id] SpanStatsRequest node_id. | |
* @property {Uint8Array} [start_key] SpanStatsRequest start_key. | |
* @property {Uint8Array} [end_key] SpanStatsRequest end_key. | |
@@ -7841,32 +7841,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new SpanStatsRequest. | |
* @exports cockroach.server.serverpb.SpanStatsRequest | |
- * @implements cockroach.server.serverpb.SpanStatsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SpanStatsRequest$Properties=} [properties] Properties to set | |
*/ | |
- class SpanStatsRequest implements cockroach.server.serverpb.SpanStatsRequest$Properties { | |
+ class SpanStatsRequest { | |
/** | |
* Constructs a new SpanStatsRequest. | |
* @exports cockroach.server.serverpb.SpanStatsRequest | |
- * @implements cockroach.server.serverpb.SpanStatsRequest$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SpanStatsRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.SpanStatsRequest$Properties); | |
/** | |
+ * SpanStatsRequest node_id. | |
* @type {string|undefined} | |
*/ | |
public node_id?: string; | |
/** | |
+ * SpanStatsRequest start_key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public start_key?: Uint8Array; | |
/** | |
+ * SpanStatsRequest end_key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public end_key?: Uint8Array; | |
@@ -7961,7 +7962,7 @@ export namespace cockroach { | |
/** | |
* Properties of a SpanStatsResponse. | |
* @typedef cockroach.server.serverpb.SpanStatsResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [range_count] SpanStatsResponse range_count. | |
* @property {cockroach.storage.engine.enginepb.MVCCStats$Properties} [total_stats] SpanStatsResponse total_stats. | |
*/ | |
@@ -7973,27 +7974,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new SpanStatsResponse. | |
* @exports cockroach.server.serverpb.SpanStatsResponse | |
- * @implements cockroach.server.serverpb.SpanStatsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SpanStatsResponse$Properties=} [properties] Properties to set | |
*/ | |
- class SpanStatsResponse implements cockroach.server.serverpb.SpanStatsResponse$Properties { | |
+ class SpanStatsResponse { | |
/** | |
* Constructs a new SpanStatsResponse. | |
* @exports cockroach.server.serverpb.SpanStatsResponse | |
- * @implements cockroach.server.serverpb.SpanStatsResponse$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.SpanStatsResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.SpanStatsResponse$Properties); | |
/** | |
+ * SpanStatsResponse range_count. | |
* @type {number|undefined} | |
*/ | |
public range_count?: number; | |
/** | |
+ * SpanStatsResponse total_stats. | |
* @type {cockroach.storage.engine.enginepb.MVCCStats$Properties|undefined} | |
*/ | |
public total_stats?: cockroach.storage.engine.enginepb.MVCCStats$Properties; | |
@@ -8216,7 +8217,7 @@ export namespace cockroach { | |
/** | |
* Properties of a PrettySpan. | |
* @typedef cockroach.server.serverpb.PrettySpan$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [start_key] PrettySpan start_key. | |
* @property {string} [end_key] PrettySpan end_key. | |
*/ | |
@@ -8228,27 +8229,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new PrettySpan. | |
* @exports cockroach.server.serverpb.PrettySpan | |
- * @implements cockroach.server.serverpb.PrettySpan$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.PrettySpan$Properties=} [properties] Properties to set | |
*/ | |
- class PrettySpan implements cockroach.server.serverpb.PrettySpan$Properties { | |
+ class PrettySpan { | |
/** | |
* Constructs a new PrettySpan. | |
* @exports cockroach.server.serverpb.PrettySpan | |
- * @implements cockroach.server.serverpb.PrettySpan$Properties | |
* @constructor | |
* @param {cockroach.server.serverpb.PrettySpan$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.serverpb.PrettySpan$Properties); | |
/** | |
+ * PrettySpan start_key. | |
* @type {string|undefined} | |
*/ | |
public start_key?: string; | |
/** | |
+ * PrettySpan end_key. | |
* @type {string|undefined} | |
*/ | |
public end_key?: string; | |
@@ -8351,7 +8352,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StoreStatus. | |
* @typedef cockroach.server.status.StoreStatus$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.StoreDescriptor$Properties} [desc] StoreStatus desc. | |
* @property {Object.<string,number>} [metrics] StoreStatus metrics. | |
*/ | |
@@ -8363,27 +8364,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new StoreStatus. | |
* @exports cockroach.server.status.StoreStatus | |
- * @implements cockroach.server.status.StoreStatus$Properties | |
* @constructor | |
* @param {cockroach.server.status.StoreStatus$Properties=} [properties] Properties to set | |
*/ | |
- class StoreStatus implements cockroach.server.status.StoreStatus$Properties { | |
+ class StoreStatus { | |
/** | |
* Constructs a new StoreStatus. | |
* @exports cockroach.server.status.StoreStatus | |
- * @implements cockroach.server.status.StoreStatus$Properties | |
* @constructor | |
* @param {cockroach.server.status.StoreStatus$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.status.StoreStatus$Properties); | |
/** | |
+ * StoreStatus desc. | |
* @type {cockroach.roachpb.StoreDescriptor$Properties|undefined} | |
*/ | |
public desc?: cockroach.roachpb.StoreDescriptor$Properties; | |
/** | |
+ * StoreStatus metrics. | |
* @type {Object.<string,number>|undefined} | |
*/ | |
public metrics?: { [k: string]: number }; | |
@@ -8478,7 +8479,7 @@ export namespace cockroach { | |
/** | |
* Properties of a NodeStatus. | |
* @typedef cockroach.server.status.NodeStatus$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.NodeDescriptor$Properties} [desc] NodeStatus desc. | |
* @property {cockroach.build.Info$Properties} [build_info] NodeStatus build_info. | |
* @property {Long} [started_at] NodeStatus started_at. | |
@@ -8502,57 +8503,63 @@ export namespace cockroach { | |
/** | |
* Constructs a new NodeStatus. | |
* @exports cockroach.server.status.NodeStatus | |
- * @implements cockroach.server.status.NodeStatus$Properties | |
* @constructor | |
* @param {cockroach.server.status.NodeStatus$Properties=} [properties] Properties to set | |
*/ | |
- class NodeStatus implements cockroach.server.status.NodeStatus$Properties { | |
+ class NodeStatus { | |
/** | |
* Constructs a new NodeStatus. | |
* @exports cockroach.server.status.NodeStatus | |
- * @implements cockroach.server.status.NodeStatus$Properties | |
* @constructor | |
* @param {cockroach.server.status.NodeStatus$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.server.status.NodeStatus$Properties); | |
/** | |
+ * NodeStatus desc. | |
* @type {cockroach.roachpb.NodeDescriptor$Properties|undefined} | |
*/ | |
public desc?: cockroach.roachpb.NodeDescriptor$Properties; | |
/** | |
+ * NodeStatus build_info. | |
* @type {cockroach.build.Info$Properties|undefined} | |
*/ | |
public build_info?: cockroach.build.Info$Properties; | |
/** | |
+ * NodeStatus started_at. | |
* @type {Long|undefined} | |
*/ | |
public started_at?: Long; | |
/** | |
+ * NodeStatus updated_at. | |
* @type {Long|undefined} | |
*/ | |
public updated_at?: Long; | |
/** | |
+ * NodeStatus metrics. | |
* @type {Object.<string,number>|undefined} | |
*/ | |
public metrics?: { [k: string]: number }; | |
/** | |
+ * NodeStatus store_statuses. | |
* @type {Array.<cockroach.server.status.StoreStatus$Properties>|undefined} | |
*/ | |
public store_statuses?: cockroach.server.status.StoreStatus$Properties[]; | |
/** | |
+ * NodeStatus args. | |
* @type {Array.<string>|undefined} | |
*/ | |
public args?: string[]; | |
/** | |
+ * NodeStatus env. | |
* @type {Array.<string>|undefined} | |
*/ | |
public env?: string[]; | |
@@ -8656,7 +8663,7 @@ export namespace cockroach { | |
/** | |
* Properties of a GCPolicy. | |
* @typedef cockroach.config.GCPolicy$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [ttl_seconds] GCPolicy ttl_seconds. | |
*/ | |
type GCPolicy$Properties = { | |
@@ -8666,22 +8673,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new GCPolicy. | |
* @exports cockroach.config.GCPolicy | |
- * @implements cockroach.config.GCPolicy$Properties | |
* @constructor | |
* @param {cockroach.config.GCPolicy$Properties=} [properties] Properties to set | |
*/ | |
- class GCPolicy implements cockroach.config.GCPolicy$Properties { | |
+ class GCPolicy { | |
/** | |
* Constructs a new GCPolicy. | |
* @exports cockroach.config.GCPolicy | |
- * @implements cockroach.config.GCPolicy$Properties | |
* @constructor | |
* @param {cockroach.config.GCPolicy$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.config.GCPolicy$Properties); | |
/** | |
+ * GCPolicy ttl_seconds. | |
* @type {number|undefined} | |
*/ | |
public ttl_seconds?: number; | |
@@ -8776,7 +8782,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Constraint. | |
* @typedef cockroach.config.Constraint$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.config.Constraint.Type} [type] Constraint type. | |
* @property {string} [key] Constraint key. | |
* @property {string} [value] Constraint value. | |
@@ -8790,32 +8796,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new Constraint. | |
* @exports cockroach.config.Constraint | |
- * @implements cockroach.config.Constraint$Properties | |
* @constructor | |
* @param {cockroach.config.Constraint$Properties=} [properties] Properties to set | |
*/ | |
- class Constraint implements cockroach.config.Constraint$Properties { | |
+ class Constraint { | |
/** | |
* Constructs a new Constraint. | |
* @exports cockroach.config.Constraint | |
- * @implements cockroach.config.Constraint$Properties | |
* @constructor | |
* @param {cockroach.config.Constraint$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.config.Constraint$Properties); | |
/** | |
+ * Constraint type. | |
* @type {cockroach.config.Constraint.Type|undefined} | |
*/ | |
public type?: cockroach.config.Constraint.Type; | |
/** | |
+ * Constraint key. | |
* @type {string|undefined} | |
*/ | |
public key?: string; | |
/** | |
+ * Constraint value. | |
* @type {string|undefined} | |
*/ | |
public value?: string; | |
@@ -8928,7 +8935,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Constraints. | |
* @typedef cockroach.config.Constraints$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.config.Constraint$Properties>} [constraints] Constraints constraints. | |
*/ | |
type Constraints$Properties = { | |
@@ -8938,22 +8945,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new Constraints. | |
* @exports cockroach.config.Constraints | |
- * @implements cockroach.config.Constraints$Properties | |
* @constructor | |
* @param {cockroach.config.Constraints$Properties=} [properties] Properties to set | |
*/ | |
- class Constraints implements cockroach.config.Constraints$Properties { | |
+ class Constraints { | |
/** | |
* Constructs a new Constraints. | |
* @exports cockroach.config.Constraints | |
- * @implements cockroach.config.Constraints$Properties | |
* @constructor | |
* @param {cockroach.config.Constraints$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.config.Constraints$Properties); | |
/** | |
+ * Constraints constraints. | |
* @type {Array.<cockroach.config.Constraint$Properties>|undefined} | |
*/ | |
public constraints?: cockroach.config.Constraint$Properties[]; | |
@@ -9048,7 +9054,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ZoneConfig. | |
* @typedef cockroach.config.ZoneConfig$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.roachpb.Attributes$Properties>} [replica_attrs] ZoneConfig replica_attrs. | |
* @property {Long} [range_min_bytes] ZoneConfig range_min_bytes. | |
* @property {Long} [range_max_bytes] ZoneConfig range_max_bytes. | |
@@ -9068,47 +9074,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new ZoneConfig. | |
* @exports cockroach.config.ZoneConfig | |
- * @implements cockroach.config.ZoneConfig$Properties | |
* @constructor | |
* @param {cockroach.config.ZoneConfig$Properties=} [properties] Properties to set | |
*/ | |
- class ZoneConfig implements cockroach.config.ZoneConfig$Properties { | |
+ class ZoneConfig { | |
/** | |
* Constructs a new ZoneConfig. | |
* @exports cockroach.config.ZoneConfig | |
- * @implements cockroach.config.ZoneConfig$Properties | |
* @constructor | |
* @param {cockroach.config.ZoneConfig$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.config.ZoneConfig$Properties); | |
/** | |
+ * ZoneConfig replica_attrs. | |
* @type {Array.<cockroach.roachpb.Attributes$Properties>|undefined} | |
*/ | |
public replica_attrs?: cockroach.roachpb.Attributes$Properties[]; | |
/** | |
+ * ZoneConfig range_min_bytes. | |
* @type {Long|undefined} | |
*/ | |
public range_min_bytes?: Long; | |
/** | |
+ * ZoneConfig range_max_bytes. | |
* @type {Long|undefined} | |
*/ | |
public range_max_bytes?: Long; | |
/** | |
+ * ZoneConfig gc. | |
* @type {cockroach.config.GCPolicy$Properties|undefined} | |
*/ | |
public gc?: cockroach.config.GCPolicy$Properties; | |
/** | |
+ * ZoneConfig num_replicas. | |
* @type {number|undefined} | |
*/ | |
public num_replicas?: number; | |
/** | |
+ * ZoneConfig constraints. | |
* @type {cockroach.config.Constraints$Properties|undefined} | |
*/ | |
public constraints?: cockroach.config.Constraints$Properties; | |
@@ -9203,7 +9213,7 @@ export namespace cockroach { | |
/** | |
* Properties of a SystemConfig. | |
* @typedef cockroach.config.SystemConfig$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.roachpb.KeyValue$Properties>} [values] SystemConfig values. | |
*/ | |
type SystemConfig$Properties = { | |
@@ -9213,22 +9223,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new SystemConfig. | |
* @exports cockroach.config.SystemConfig | |
- * @implements cockroach.config.SystemConfig$Properties | |
* @constructor | |
* @param {cockroach.config.SystemConfig$Properties=} [properties] Properties to set | |
*/ | |
- class SystemConfig implements cockroach.config.SystemConfig$Properties { | |
+ class SystemConfig { | |
/** | |
* Constructs a new SystemConfig. | |
* @exports cockroach.config.SystemConfig | |
- * @implements cockroach.config.SystemConfig$Properties | |
* @constructor | |
* @param {cockroach.config.SystemConfig$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.config.SystemConfig$Properties); | |
/** | |
+ * SystemConfig values. | |
* @type {Array.<cockroach.roachpb.KeyValue$Properties>|undefined} | |
*/ | |
public values?: cockroach.roachpb.KeyValue$Properties[]; | |
@@ -9331,7 +9340,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Span. | |
* @typedef cockroach.roachpb.Span$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [key] Span key. | |
* @property {Uint8Array} [end_key] Span end_key. | |
*/ | |
@@ -9343,27 +9352,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Span. | |
* @exports cockroach.roachpb.Span | |
- * @implements cockroach.roachpb.Span$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Span$Properties=} [properties] Properties to set | |
*/ | |
- class Span implements cockroach.roachpb.Span$Properties { | |
+ class Span { | |
/** | |
* Constructs a new Span. | |
* @exports cockroach.roachpb.Span | |
- * @implements cockroach.roachpb.Span$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Span$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Span$Properties); | |
/** | |
+ * Span key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public key?: Uint8Array; | |
/** | |
+ * Span end_key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public end_key?: Uint8Array; | |
@@ -9491,7 +9500,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Value. | |
* @typedef cockroach.roachpb.Value$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [raw_bytes] Value raw_bytes. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] Value timestamp. | |
*/ | |
@@ -9503,27 +9512,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Value. | |
* @exports cockroach.roachpb.Value | |
- * @implements cockroach.roachpb.Value$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Value$Properties=} [properties] Properties to set | |
*/ | |
- class Value implements cockroach.roachpb.Value$Properties { | |
+ class Value { | |
/** | |
* Constructs a new Value. | |
* @exports cockroach.roachpb.Value | |
- * @implements cockroach.roachpb.Value$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Value$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Value$Properties); | |
/** | |
+ * Value raw_bytes. | |
* @type {Uint8Array|undefined} | |
*/ | |
public raw_bytes?: Uint8Array; | |
/** | |
+ * Value timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
@@ -9618,7 +9627,7 @@ export namespace cockroach { | |
/** | |
* Properties of a KeyValue. | |
* @typedef cockroach.roachpb.KeyValue$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [key] KeyValue key. | |
* @property {cockroach.roachpb.Value$Properties} [value] KeyValue value. | |
*/ | |
@@ -9630,27 +9639,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new KeyValue. | |
* @exports cockroach.roachpb.KeyValue | |
- * @implements cockroach.roachpb.KeyValue$Properties | |
* @constructor | |
* @param {cockroach.roachpb.KeyValue$Properties=} [properties] Properties to set | |
*/ | |
- class KeyValue implements cockroach.roachpb.KeyValue$Properties { | |
+ class KeyValue { | |
/** | |
* Constructs a new KeyValue. | |
* @exports cockroach.roachpb.KeyValue | |
- * @implements cockroach.roachpb.KeyValue$Properties | |
* @constructor | |
* @param {cockroach.roachpb.KeyValue$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.KeyValue$Properties); | |
/** | |
+ * KeyValue key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public key?: Uint8Array; | |
/** | |
+ * KeyValue value. | |
* @type {cockroach.roachpb.Value$Properties|undefined} | |
*/ | |
public value?: cockroach.roachpb.Value$Properties; | |
@@ -9745,7 +9754,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StoreIdent. | |
* @typedef cockroach.roachpb.StoreIdent$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [cluster_id] StoreIdent cluster_id. | |
* @property {number} [node_id] StoreIdent node_id. | |
* @property {number} [store_id] StoreIdent store_id. | |
@@ -9759,32 +9768,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new StoreIdent. | |
* @exports cockroach.roachpb.StoreIdent | |
- * @implements cockroach.roachpb.StoreIdent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreIdent$Properties=} [properties] Properties to set | |
*/ | |
- class StoreIdent implements cockroach.roachpb.StoreIdent$Properties { | |
+ class StoreIdent { | |
/** | |
* Constructs a new StoreIdent. | |
* @exports cockroach.roachpb.StoreIdent | |
- * @implements cockroach.roachpb.StoreIdent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreIdent$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.StoreIdent$Properties); | |
/** | |
+ * StoreIdent cluster_id. | |
* @type {Uint8Array|undefined} | |
*/ | |
public cluster_id?: Uint8Array; | |
/** | |
+ * StoreIdent node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * StoreIdent store_id. | |
* @type {number|undefined} | |
*/ | |
public store_id?: number; | |
@@ -9879,7 +9889,7 @@ export namespace cockroach { | |
/** | |
* Properties of a SplitTrigger. | |
* @typedef cockroach.roachpb.SplitTrigger$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [left_desc] SplitTrigger left_desc. | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [right_desc] SplitTrigger right_desc. | |
*/ | |
@@ -9891,27 +9901,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new SplitTrigger. | |
* @exports cockroach.roachpb.SplitTrigger | |
- * @implements cockroach.roachpb.SplitTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.SplitTrigger$Properties=} [properties] Properties to set | |
*/ | |
- class SplitTrigger implements cockroach.roachpb.SplitTrigger$Properties { | |
+ class SplitTrigger { | |
/** | |
* Constructs a new SplitTrigger. | |
* @exports cockroach.roachpb.SplitTrigger | |
- * @implements cockroach.roachpb.SplitTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.SplitTrigger$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.SplitTrigger$Properties); | |
/** | |
+ * SplitTrigger left_desc. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public left_desc?: cockroach.roachpb.RangeDescriptor$Properties; | |
/** | |
+ * SplitTrigger right_desc. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public right_desc?: cockroach.roachpb.RangeDescriptor$Properties; | |
@@ -10006,7 +10016,7 @@ export namespace cockroach { | |
/** | |
* Properties of a MergeTrigger. | |
* @typedef cockroach.roachpb.MergeTrigger$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [left_desc] MergeTrigger left_desc. | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [right_desc] MergeTrigger right_desc. | |
*/ | |
@@ -10018,27 +10028,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new MergeTrigger. | |
* @exports cockroach.roachpb.MergeTrigger | |
- * @implements cockroach.roachpb.MergeTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.MergeTrigger$Properties=} [properties] Properties to set | |
*/ | |
- class MergeTrigger implements cockroach.roachpb.MergeTrigger$Properties { | |
+ class MergeTrigger { | |
/** | |
* Constructs a new MergeTrigger. | |
* @exports cockroach.roachpb.MergeTrigger | |
- * @implements cockroach.roachpb.MergeTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.MergeTrigger$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.MergeTrigger$Properties); | |
/** | |
+ * MergeTrigger left_desc. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public left_desc?: cockroach.roachpb.RangeDescriptor$Properties; | |
/** | |
+ * MergeTrigger right_desc. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public right_desc?: cockroach.roachpb.RangeDescriptor$Properties; | |
@@ -10146,7 +10156,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ChangeReplicasTrigger. | |
* @typedef cockroach.roachpb.ChangeReplicasTrigger$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.ReplicaChangeType} [change_type] ChangeReplicasTrigger change_type. | |
* @property {cockroach.roachpb.ReplicaDescriptor$Properties} [replica] ChangeReplicasTrigger replica. | |
* @property {Array.<cockroach.roachpb.ReplicaDescriptor$Properties>} [updated_replicas] ChangeReplicasTrigger updated_replicas. | |
@@ -10162,37 +10172,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new ChangeReplicasTrigger. | |
* @exports cockroach.roachpb.ChangeReplicasTrigger | |
- * @implements cockroach.roachpb.ChangeReplicasTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ChangeReplicasTrigger$Properties=} [properties] Properties to set | |
*/ | |
- class ChangeReplicasTrigger implements cockroach.roachpb.ChangeReplicasTrigger$Properties { | |
+ class ChangeReplicasTrigger { | |
/** | |
* Constructs a new ChangeReplicasTrigger. | |
* @exports cockroach.roachpb.ChangeReplicasTrigger | |
- * @implements cockroach.roachpb.ChangeReplicasTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ChangeReplicasTrigger$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ChangeReplicasTrigger$Properties); | |
/** | |
+ * ChangeReplicasTrigger change_type. | |
* @type {cockroach.roachpb.ReplicaChangeType|undefined} | |
*/ | |
public change_type?: cockroach.roachpb.ReplicaChangeType; | |
/** | |
+ * ChangeReplicasTrigger replica. | |
* @type {cockroach.roachpb.ReplicaDescriptor$Properties|undefined} | |
*/ | |
public replica?: cockroach.roachpb.ReplicaDescriptor$Properties; | |
/** | |
+ * ChangeReplicasTrigger updated_replicas. | |
* @type {Array.<cockroach.roachpb.ReplicaDescriptor$Properties>|undefined} | |
*/ | |
public updated_replicas?: cockroach.roachpb.ReplicaDescriptor$Properties[]; | |
/** | |
+ * ChangeReplicasTrigger next_replica_id. | |
* @type {number|undefined} | |
*/ | |
public next_replica_id?: number; | |
@@ -10287,7 +10299,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ModifiedSpanTrigger. | |
* @typedef cockroach.roachpb.ModifiedSpanTrigger$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [system_config_span] ModifiedSpanTrigger system_config_span. | |
* @property {cockroach.roachpb.Span$Properties} [node_liveness_span] ModifiedSpanTrigger node_liveness_span. | |
*/ | |
@@ -10299,27 +10311,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new ModifiedSpanTrigger. | |
* @exports cockroach.roachpb.ModifiedSpanTrigger | |
- * @implements cockroach.roachpb.ModifiedSpanTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ModifiedSpanTrigger$Properties=} [properties] Properties to set | |
*/ | |
- class ModifiedSpanTrigger implements cockroach.roachpb.ModifiedSpanTrigger$Properties { | |
+ class ModifiedSpanTrigger { | |
/** | |
* Constructs a new ModifiedSpanTrigger. | |
* @exports cockroach.roachpb.ModifiedSpanTrigger | |
- * @implements cockroach.roachpb.ModifiedSpanTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ModifiedSpanTrigger$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ModifiedSpanTrigger$Properties); | |
/** | |
+ * ModifiedSpanTrigger system_config_span. | |
* @type {boolean|undefined} | |
*/ | |
public system_config_span?: boolean; | |
/** | |
+ * ModifiedSpanTrigger node_liveness_span. | |
* @type {cockroach.roachpb.Span$Properties|undefined} | |
*/ | |
public node_liveness_span?: cockroach.roachpb.Span$Properties; | |
@@ -10414,7 +10426,7 @@ export namespace cockroach { | |
/** | |
* Properties of an InternalCommitTrigger. | |
* @typedef cockroach.roachpb.InternalCommitTrigger$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.SplitTrigger$Properties} [split_trigger] InternalCommitTrigger split_trigger. | |
* @property {cockroach.roachpb.MergeTrigger$Properties} [merge_trigger] InternalCommitTrigger merge_trigger. | |
* @property {cockroach.roachpb.ChangeReplicasTrigger$Properties} [change_replicas_trigger] InternalCommitTrigger change_replicas_trigger. | |
@@ -10430,37 +10442,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new InternalCommitTrigger. | |
* @exports cockroach.roachpb.InternalCommitTrigger | |
- * @implements cockroach.roachpb.InternalCommitTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.InternalCommitTrigger$Properties=} [properties] Properties to set | |
*/ | |
- class InternalCommitTrigger implements cockroach.roachpb.InternalCommitTrigger$Properties { | |
+ class InternalCommitTrigger { | |
/** | |
* Constructs a new InternalCommitTrigger. | |
* @exports cockroach.roachpb.InternalCommitTrigger | |
- * @implements cockroach.roachpb.InternalCommitTrigger$Properties | |
* @constructor | |
* @param {cockroach.roachpb.InternalCommitTrigger$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.InternalCommitTrigger$Properties); | |
/** | |
+ * InternalCommitTrigger split_trigger. | |
* @type {cockroach.roachpb.SplitTrigger$Properties|undefined} | |
*/ | |
public split_trigger?: cockroach.roachpb.SplitTrigger$Properties; | |
/** | |
+ * InternalCommitTrigger merge_trigger. | |
* @type {cockroach.roachpb.MergeTrigger$Properties|undefined} | |
*/ | |
public merge_trigger?: cockroach.roachpb.MergeTrigger$Properties; | |
/** | |
+ * InternalCommitTrigger change_replicas_trigger. | |
* @type {cockroach.roachpb.ChangeReplicasTrigger$Properties|undefined} | |
*/ | |
public change_replicas_trigger?: cockroach.roachpb.ChangeReplicasTrigger$Properties; | |
/** | |
+ * InternalCommitTrigger modified_span_trigger. | |
* @type {cockroach.roachpb.ModifiedSpanTrigger$Properties|undefined} | |
*/ | |
public modified_span_trigger?: cockroach.roachpb.ModifiedSpanTrigger$Properties; | |
@@ -10570,7 +10584,7 @@ export namespace cockroach { | |
/** | |
* Properties of an ObservedTimestamp. | |
* @typedef cockroach.roachpb.ObservedTimestamp$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] ObservedTimestamp node_id. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] ObservedTimestamp timestamp. | |
*/ | |
@@ -10582,27 +10596,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new ObservedTimestamp. | |
* @exports cockroach.roachpb.ObservedTimestamp | |
- * @implements cockroach.roachpb.ObservedTimestamp$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ObservedTimestamp$Properties=} [properties] Properties to set | |
*/ | |
- class ObservedTimestamp implements cockroach.roachpb.ObservedTimestamp$Properties { | |
+ class ObservedTimestamp { | |
/** | |
* Constructs a new ObservedTimestamp. | |
* @exports cockroach.roachpb.ObservedTimestamp | |
- * @implements cockroach.roachpb.ObservedTimestamp$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ObservedTimestamp$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ObservedTimestamp$Properties); | |
/** | |
+ * ObservedTimestamp node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * ObservedTimestamp timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
@@ -10697,7 +10711,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Transaction. | |
* @typedef cockroach.roachpb.Transaction$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.storage.engine.enginepb.TxnMeta$Properties} [meta] Transaction meta. | |
* @property {string} [name] Transaction name. | |
* @property {cockroach.roachpb.TransactionStatus} [status] Transaction status. | |
@@ -10727,72 +10741,81 @@ export namespace cockroach { | |
/** | |
* Constructs a new Transaction. | |
* @exports cockroach.roachpb.Transaction | |
- * @implements cockroach.roachpb.Transaction$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Transaction$Properties=} [properties] Properties to set | |
*/ | |
- class Transaction implements cockroach.roachpb.Transaction$Properties { | |
+ class Transaction { | |
/** | |
* Constructs a new Transaction. | |
* @exports cockroach.roachpb.Transaction | |
- * @implements cockroach.roachpb.Transaction$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Transaction$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Transaction$Properties); | |
/** | |
+ * Transaction meta. | |
* @type {cockroach.storage.engine.enginepb.TxnMeta$Properties|undefined} | |
*/ | |
public meta?: cockroach.storage.engine.enginepb.TxnMeta$Properties; | |
/** | |
+ * Transaction name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * Transaction status. | |
* @type {cockroach.roachpb.TransactionStatus|undefined} | |
*/ | |
public status?: cockroach.roachpb.TransactionStatus; | |
/** | |
+ * Transaction last_heartbeat. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public last_heartbeat?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Transaction orig_timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public orig_timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Transaction max_timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public max_timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Transaction observed_timestamps. | |
* @type {Array.<cockroach.roachpb.ObservedTimestamp$Properties>|undefined} | |
*/ | |
public observed_timestamps?: cockroach.roachpb.ObservedTimestamp$Properties[]; | |
/** | |
+ * Transaction writing. | |
* @type {boolean|undefined} | |
*/ | |
public writing?: boolean; | |
/** | |
+ * Transaction write_too_old. | |
* @type {boolean|undefined} | |
*/ | |
public write_too_old?: boolean; | |
/** | |
+ * Transaction retry_on_push. | |
* @type {boolean|undefined} | |
*/ | |
public retry_on_push?: boolean; | |
/** | |
+ * Transaction intents. | |
* @type {Array.<cockroach.roachpb.Span$Properties>|undefined} | |
*/ | |
public intents?: cockroach.roachpb.Span$Properties[]; | |
@@ -10887,7 +10910,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Intent. | |
* @typedef cockroach.roachpb.Intent$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.Span$Properties} [span] Intent span. | |
* @property {cockroach.storage.engine.enginepb.TxnMeta$Properties} [txn] Intent txn. | |
* @property {cockroach.roachpb.TransactionStatus} [status] Intent status. | |
@@ -10901,32 +10924,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new Intent. | |
* @exports cockroach.roachpb.Intent | |
- * @implements cockroach.roachpb.Intent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Intent$Properties=} [properties] Properties to set | |
*/ | |
- class Intent implements cockroach.roachpb.Intent$Properties { | |
+ class Intent { | |
/** | |
* Constructs a new Intent. | |
* @exports cockroach.roachpb.Intent | |
- * @implements cockroach.roachpb.Intent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Intent$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Intent$Properties); | |
/** | |
+ * Intent span. | |
* @type {cockroach.roachpb.Span$Properties|undefined} | |
*/ | |
public span?: cockroach.roachpb.Span$Properties; | |
/** | |
+ * Intent txn. | |
* @type {cockroach.storage.engine.enginepb.TxnMeta$Properties|undefined} | |
*/ | |
public txn?: cockroach.storage.engine.enginepb.TxnMeta$Properties; | |
/** | |
+ * Intent status. | |
* @type {cockroach.roachpb.TransactionStatus|undefined} | |
*/ | |
public status?: cockroach.roachpb.TransactionStatus; | |
@@ -11021,7 +11045,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Lease. | |
* @typedef cockroach.roachpb.Lease$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.util.hlc.Timestamp$Properties} [start] Lease start. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [expiration] Lease expiration. | |
* @property {cockroach.roachpb.ReplicaDescriptor$Properties} [replica] Lease replica. | |
@@ -11041,47 +11065,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new Lease. | |
* @exports cockroach.roachpb.Lease | |
- * @implements cockroach.roachpb.Lease$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Lease$Properties=} [properties] Properties to set | |
*/ | |
- class Lease implements cockroach.roachpb.Lease$Properties { | |
+ class Lease { | |
/** | |
* Constructs a new Lease. | |
* @exports cockroach.roachpb.Lease | |
- * @implements cockroach.roachpb.Lease$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Lease$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Lease$Properties); | |
/** | |
+ * Lease start. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public start?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Lease expiration. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public expiration?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Lease replica. | |
* @type {cockroach.roachpb.ReplicaDescriptor$Properties|undefined} | |
*/ | |
public replica?: cockroach.roachpb.ReplicaDescriptor$Properties; | |
/** | |
+ * Lease deprecated_start_stasis. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public deprecated_start_stasis?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Lease proposed_ts. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public proposed_ts?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Lease epoch. | |
* @type {Long|undefined} | |
*/ | |
public epoch?: Long; | |
@@ -11176,7 +11204,7 @@ export namespace cockroach { | |
/** | |
* Properties of an AbortCacheEntry. | |
* @typedef cockroach.roachpb.AbortCacheEntry$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [key] AbortCacheEntry key. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] AbortCacheEntry timestamp. | |
* @property {number} [priority] AbortCacheEntry priority. | |
@@ -11190,32 +11218,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new AbortCacheEntry. | |
* @exports cockroach.roachpb.AbortCacheEntry | |
- * @implements cockroach.roachpb.AbortCacheEntry$Properties | |
* @constructor | |
* @param {cockroach.roachpb.AbortCacheEntry$Properties=} [properties] Properties to set | |
*/ | |
- class AbortCacheEntry implements cockroach.roachpb.AbortCacheEntry$Properties { | |
+ class AbortCacheEntry { | |
/** | |
* Constructs a new AbortCacheEntry. | |
* @exports cockroach.roachpb.AbortCacheEntry | |
- * @implements cockroach.roachpb.AbortCacheEntry$Properties | |
* @constructor | |
* @param {cockroach.roachpb.AbortCacheEntry$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.AbortCacheEntry$Properties); | |
/** | |
+ * AbortCacheEntry key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public key?: Uint8Array; | |
/** | |
+ * AbortCacheEntry timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * AbortCacheEntry priority. | |
* @type {number|undefined} | |
*/ | |
public priority?: number; | |
@@ -11310,7 +11339,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Attributes. | |
* @typedef cockroach.roachpb.Attributes$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<string>} [attrs] Attributes attrs. | |
*/ | |
type Attributes$Properties = { | |
@@ -11320,22 +11349,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new Attributes. | |
* @exports cockroach.roachpb.Attributes | |
- * @implements cockroach.roachpb.Attributes$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Attributes$Properties=} [properties] Properties to set | |
*/ | |
- class Attributes implements cockroach.roachpb.Attributes$Properties { | |
+ class Attributes { | |
/** | |
* Constructs a new Attributes. | |
* @exports cockroach.roachpb.Attributes | |
- * @implements cockroach.roachpb.Attributes$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Attributes$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Attributes$Properties); | |
/** | |
+ * Attributes attrs. | |
* @type {Array.<string>|undefined} | |
*/ | |
public attrs?: string[]; | |
@@ -11430,7 +11458,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ReplicationTarget. | |
* @typedef cockroach.roachpb.ReplicationTarget$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] ReplicationTarget node_id. | |
* @property {number} [store_id] ReplicationTarget store_id. | |
*/ | |
@@ -11442,27 +11470,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new ReplicationTarget. | |
* @exports cockroach.roachpb.ReplicationTarget | |
- * @implements cockroach.roachpb.ReplicationTarget$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicationTarget$Properties=} [properties] Properties to set | |
*/ | |
- class ReplicationTarget implements cockroach.roachpb.ReplicationTarget$Properties { | |
+ class ReplicationTarget { | |
/** | |
* Constructs a new ReplicationTarget. | |
* @exports cockroach.roachpb.ReplicationTarget | |
- * @implements cockroach.roachpb.ReplicationTarget$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicationTarget$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ReplicationTarget$Properties); | |
/** | |
+ * ReplicationTarget node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * ReplicationTarget store_id. | |
* @type {number|undefined} | |
*/ | |
public store_id?: number; | |
@@ -11557,7 +11585,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ReplicaDescriptor. | |
* @typedef cockroach.roachpb.ReplicaDescriptor$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] ReplicaDescriptor node_id. | |
* @property {number} [store_id] ReplicaDescriptor store_id. | |
* @property {number} [replica_id] ReplicaDescriptor replica_id. | |
@@ -11571,32 +11599,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new ReplicaDescriptor. | |
* @exports cockroach.roachpb.ReplicaDescriptor | |
- * @implements cockroach.roachpb.ReplicaDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicaDescriptor$Properties=} [properties] Properties to set | |
*/ | |
- class ReplicaDescriptor implements cockroach.roachpb.ReplicaDescriptor$Properties { | |
+ class ReplicaDescriptor { | |
/** | |
* Constructs a new ReplicaDescriptor. | |
* @exports cockroach.roachpb.ReplicaDescriptor | |
- * @implements cockroach.roachpb.ReplicaDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicaDescriptor$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ReplicaDescriptor$Properties); | |
/** | |
+ * ReplicaDescriptor node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * ReplicaDescriptor store_id. | |
* @type {number|undefined} | |
*/ | |
public store_id?: number; | |
/** | |
+ * ReplicaDescriptor replica_id. | |
* @type {number|undefined} | |
*/ | |
public replica_id?: number; | |
@@ -11691,7 +11720,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ReplicaIdent. | |
* @typedef cockroach.roachpb.ReplicaIdent$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [range_id] ReplicaIdent range_id. | |
* @property {cockroach.roachpb.ReplicaDescriptor$Properties} [replica] ReplicaIdent replica. | |
*/ | |
@@ -11703,27 +11732,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new ReplicaIdent. | |
* @exports cockroach.roachpb.ReplicaIdent | |
- * @implements cockroach.roachpb.ReplicaIdent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicaIdent$Properties=} [properties] Properties to set | |
*/ | |
- class ReplicaIdent implements cockroach.roachpb.ReplicaIdent$Properties { | |
+ class ReplicaIdent { | |
/** | |
* Constructs a new ReplicaIdent. | |
* @exports cockroach.roachpb.ReplicaIdent | |
- * @implements cockroach.roachpb.ReplicaIdent$Properties | |
* @constructor | |
* @param {cockroach.roachpb.ReplicaIdent$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.ReplicaIdent$Properties); | |
/** | |
+ * ReplicaIdent range_id. | |
* @type {Long|undefined} | |
*/ | |
public range_id?: Long; | |
/** | |
+ * ReplicaIdent replica. | |
* @type {cockroach.roachpb.ReplicaDescriptor$Properties|undefined} | |
*/ | |
public replica?: cockroach.roachpb.ReplicaDescriptor$Properties; | |
@@ -11818,7 +11847,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RangeDescriptor. | |
* @typedef cockroach.roachpb.RangeDescriptor$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [range_id] RangeDescriptor range_id. | |
* @property {Uint8Array} [start_key] RangeDescriptor start_key. | |
* @property {Uint8Array} [end_key] RangeDescriptor end_key. | |
@@ -11836,42 +11865,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new RangeDescriptor. | |
* @exports cockroach.roachpb.RangeDescriptor | |
- * @implements cockroach.roachpb.RangeDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RangeDescriptor$Properties=} [properties] Properties to set | |
*/ | |
- class RangeDescriptor implements cockroach.roachpb.RangeDescriptor$Properties { | |
+ class RangeDescriptor { | |
/** | |
* Constructs a new RangeDescriptor. | |
* @exports cockroach.roachpb.RangeDescriptor | |
- * @implements cockroach.roachpb.RangeDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RangeDescriptor$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.RangeDescriptor$Properties); | |
/** | |
+ * RangeDescriptor range_id. | |
* @type {Long|undefined} | |
*/ | |
public range_id?: Long; | |
/** | |
+ * RangeDescriptor start_key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public start_key?: Uint8Array; | |
/** | |
+ * RangeDescriptor end_key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public end_key?: Uint8Array; | |
/** | |
+ * RangeDescriptor replicas. | |
* @type {Array.<cockroach.roachpb.ReplicaDescriptor$Properties>|undefined} | |
*/ | |
public replicas?: cockroach.roachpb.ReplicaDescriptor$Properties[]; | |
/** | |
+ * RangeDescriptor next_replica_id. | |
* @type {number|undefined} | |
*/ | |
public next_replica_id?: number; | |
@@ -11966,7 +11998,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StoreCapacity. | |
* @typedef cockroach.roachpb.StoreCapacity$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [capacity] StoreCapacity capacity. | |
* @property {Long} [available] StoreCapacity available. | |
* @property {number} [range_count] StoreCapacity range_count. | |
@@ -11982,37 +12014,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new StoreCapacity. | |
* @exports cockroach.roachpb.StoreCapacity | |
- * @implements cockroach.roachpb.StoreCapacity$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreCapacity$Properties=} [properties] Properties to set | |
*/ | |
- class StoreCapacity implements cockroach.roachpb.StoreCapacity$Properties { | |
+ class StoreCapacity { | |
/** | |
* Constructs a new StoreCapacity. | |
* @exports cockroach.roachpb.StoreCapacity | |
- * @implements cockroach.roachpb.StoreCapacity$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreCapacity$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.StoreCapacity$Properties); | |
/** | |
+ * StoreCapacity capacity. | |
* @type {Long|undefined} | |
*/ | |
public capacity?: Long; | |
/** | |
+ * StoreCapacity available. | |
* @type {Long|undefined} | |
*/ | |
public available?: Long; | |
/** | |
+ * StoreCapacity range_count. | |
* @type {number|undefined} | |
*/ | |
public range_count?: number; | |
/** | |
+ * StoreCapacity lease_count. | |
* @type {number|undefined} | |
*/ | |
public lease_count?: number; | |
@@ -12107,7 +12141,7 @@ export namespace cockroach { | |
/** | |
* Properties of a NodeDescriptor. | |
* @typedef cockroach.roachpb.NodeDescriptor$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] NodeDescriptor node_id. | |
* @property {cockroach.util.UnresolvedAddr$Properties} [address] NodeDescriptor address. | |
* @property {cockroach.roachpb.Attributes$Properties} [attrs] NodeDescriptor attrs. | |
@@ -12123,37 +12157,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new NodeDescriptor. | |
* @exports cockroach.roachpb.NodeDescriptor | |
- * @implements cockroach.roachpb.NodeDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.NodeDescriptor$Properties=} [properties] Properties to set | |
*/ | |
- class NodeDescriptor implements cockroach.roachpb.NodeDescriptor$Properties { | |
+ class NodeDescriptor { | |
/** | |
* Constructs a new NodeDescriptor. | |
* @exports cockroach.roachpb.NodeDescriptor | |
- * @implements cockroach.roachpb.NodeDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.NodeDescriptor$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.NodeDescriptor$Properties); | |
/** | |
+ * NodeDescriptor node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * NodeDescriptor address. | |
* @type {cockroach.util.UnresolvedAddr$Properties|undefined} | |
*/ | |
public address?: cockroach.util.UnresolvedAddr$Properties; | |
/** | |
+ * NodeDescriptor attrs. | |
* @type {cockroach.roachpb.Attributes$Properties|undefined} | |
*/ | |
public attrs?: cockroach.roachpb.Attributes$Properties; | |
/** | |
+ * NodeDescriptor locality. | |
* @type {cockroach.roachpb.Locality$Properties|undefined} | |
*/ | |
public locality?: cockroach.roachpb.Locality$Properties; | |
@@ -12248,7 +12284,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StoreDescriptor. | |
* @typedef cockroach.roachpb.StoreDescriptor$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [store_id] StoreDescriptor store_id. | |
* @property {cockroach.roachpb.Attributes$Properties} [attrs] StoreDescriptor attrs. | |
* @property {cockroach.roachpb.NodeDescriptor$Properties} [node] StoreDescriptor node. | |
@@ -12264,37 +12300,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new StoreDescriptor. | |
* @exports cockroach.roachpb.StoreDescriptor | |
- * @implements cockroach.roachpb.StoreDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreDescriptor$Properties=} [properties] Properties to set | |
*/ | |
- class StoreDescriptor implements cockroach.roachpb.StoreDescriptor$Properties { | |
+ class StoreDescriptor { | |
/** | |
* Constructs a new StoreDescriptor. | |
* @exports cockroach.roachpb.StoreDescriptor | |
- * @implements cockroach.roachpb.StoreDescriptor$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreDescriptor$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.StoreDescriptor$Properties); | |
/** | |
+ * StoreDescriptor store_id. | |
* @type {number|undefined} | |
*/ | |
public store_id?: number; | |
/** | |
+ * StoreDescriptor attrs. | |
* @type {cockroach.roachpb.Attributes$Properties|undefined} | |
*/ | |
public attrs?: cockroach.roachpb.Attributes$Properties; | |
/** | |
+ * StoreDescriptor node. | |
* @type {cockroach.roachpb.NodeDescriptor$Properties|undefined} | |
*/ | |
public node?: cockroach.roachpb.NodeDescriptor$Properties; | |
/** | |
+ * StoreDescriptor capacity. | |
* @type {cockroach.roachpb.StoreCapacity$Properties|undefined} | |
*/ | |
public capacity?: cockroach.roachpb.StoreCapacity$Properties; | |
@@ -12389,7 +12427,7 @@ export namespace cockroach { | |
/** | |
* Properties of a StoreDeadReplicas. | |
* @typedef cockroach.roachpb.StoreDeadReplicas$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [store_id] StoreDeadReplicas store_id. | |
* @property {Array.<cockroach.roachpb.ReplicaIdent$Properties>} [replicas] StoreDeadReplicas replicas. | |
*/ | |
@@ -12401,27 +12439,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new StoreDeadReplicas. | |
* @exports cockroach.roachpb.StoreDeadReplicas | |
- * @implements cockroach.roachpb.StoreDeadReplicas$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreDeadReplicas$Properties=} [properties] Properties to set | |
*/ | |
- class StoreDeadReplicas implements cockroach.roachpb.StoreDeadReplicas$Properties { | |
+ class StoreDeadReplicas { | |
/** | |
* Constructs a new StoreDeadReplicas. | |
* @exports cockroach.roachpb.StoreDeadReplicas | |
- * @implements cockroach.roachpb.StoreDeadReplicas$Properties | |
* @constructor | |
* @param {cockroach.roachpb.StoreDeadReplicas$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.StoreDeadReplicas$Properties); | |
/** | |
+ * StoreDeadReplicas store_id. | |
* @type {number|undefined} | |
*/ | |
public store_id?: number; | |
/** | |
+ * StoreDeadReplicas replicas. | |
* @type {Array.<cockroach.roachpb.ReplicaIdent$Properties>|undefined} | |
*/ | |
public replicas?: cockroach.roachpb.ReplicaIdent$Properties[]; | |
@@ -12516,7 +12554,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Locality. | |
* @typedef cockroach.roachpb.Locality$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.roachpb.Tier$Properties>} [tiers] Locality tiers. | |
*/ | |
type Locality$Properties = { | |
@@ -12526,22 +12564,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new Locality. | |
* @exports cockroach.roachpb.Locality | |
- * @implements cockroach.roachpb.Locality$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Locality$Properties=} [properties] Properties to set | |
*/ | |
- class Locality implements cockroach.roachpb.Locality$Properties { | |
+ class Locality { | |
/** | |
* Constructs a new Locality. | |
* @exports cockroach.roachpb.Locality | |
- * @implements cockroach.roachpb.Locality$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Locality$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Locality$Properties); | |
/** | |
+ * Locality tiers. | |
* @type {Array.<cockroach.roachpb.Tier$Properties>|undefined} | |
*/ | |
public tiers?: cockroach.roachpb.Tier$Properties[]; | |
@@ -12636,7 +12673,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Tier. | |
* @typedef cockroach.roachpb.Tier$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [key] Tier key. | |
* @property {string} [value] Tier value. | |
*/ | |
@@ -12648,27 +12685,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Tier. | |
* @exports cockroach.roachpb.Tier | |
- * @implements cockroach.roachpb.Tier$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Tier$Properties=} [properties] Properties to set | |
*/ | |
- class Tier implements cockroach.roachpb.Tier$Properties { | |
+ class Tier { | |
/** | |
* Constructs a new Tier. | |
* @exports cockroach.roachpb.Tier | |
- * @implements cockroach.roachpb.Tier$Properties | |
* @constructor | |
* @param {cockroach.roachpb.Tier$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.Tier$Properties); | |
/** | |
+ * Tier key. | |
* @type {string|undefined} | |
*/ | |
public key?: string; | |
/** | |
+ * Tier value. | |
* @type {string|undefined} | |
*/ | |
public value?: string; | |
@@ -12763,7 +12800,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftTruncatedState. | |
* @typedef cockroach.roachpb.RaftTruncatedState$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [index] RaftTruncatedState index. | |
* @property {Long} [term] RaftTruncatedState term. | |
*/ | |
@@ -12775,27 +12812,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftTruncatedState. | |
* @exports cockroach.roachpb.RaftTruncatedState | |
- * @implements cockroach.roachpb.RaftTruncatedState$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftTruncatedState$Properties=} [properties] Properties to set | |
*/ | |
- class RaftTruncatedState implements cockroach.roachpb.RaftTruncatedState$Properties { | |
+ class RaftTruncatedState { | |
/** | |
* Constructs a new RaftTruncatedState. | |
* @exports cockroach.roachpb.RaftTruncatedState | |
- * @implements cockroach.roachpb.RaftTruncatedState$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftTruncatedState$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.RaftTruncatedState$Properties); | |
/** | |
+ * RaftTruncatedState index. | |
* @type {Long|undefined} | |
*/ | |
public index?: Long; | |
/** | |
+ * RaftTruncatedState term. | |
* @type {Long|undefined} | |
*/ | |
public term?: Long; | |
@@ -12890,7 +12927,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftTombstone. | |
* @typedef cockroach.roachpb.RaftTombstone$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [next_replica_id] RaftTombstone next_replica_id. | |
*/ | |
type RaftTombstone$Properties = { | |
@@ -12900,22 +12937,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftTombstone. | |
* @exports cockroach.roachpb.RaftTombstone | |
- * @implements cockroach.roachpb.RaftTombstone$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftTombstone$Properties=} [properties] Properties to set | |
*/ | |
- class RaftTombstone implements cockroach.roachpb.RaftTombstone$Properties { | |
+ class RaftTombstone { | |
/** | |
* Constructs a new RaftTombstone. | |
* @exports cockroach.roachpb.RaftTombstone | |
- * @implements cockroach.roachpb.RaftTombstone$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftTombstone$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.RaftTombstone$Properties); | |
/** | |
+ * RaftTombstone next_replica_id. | |
* @type {number|undefined} | |
*/ | |
public next_replica_id?: number; | |
@@ -13010,7 +13046,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RaftSnapshotData. | |
* @typedef cockroach.roachpb.RaftSnapshotData$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [range_descriptor] RaftSnapshotData range_descriptor. | |
* @property {Array.<cockroach.roachpb.RaftSnapshotData.KeyValue$Properties>} [KV] RaftSnapshotData KV. | |
* @property {Array.<Uint8Array>} [log_entries] RaftSnapshotData log_entries. | |
@@ -13024,32 +13060,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new RaftSnapshotData. | |
* @exports cockroach.roachpb.RaftSnapshotData | |
- * @implements cockroach.roachpb.RaftSnapshotData$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftSnapshotData$Properties=} [properties] Properties to set | |
*/ | |
- class RaftSnapshotData implements cockroach.roachpb.RaftSnapshotData$Properties { | |
+ class RaftSnapshotData { | |
/** | |
* Constructs a new RaftSnapshotData. | |
* @exports cockroach.roachpb.RaftSnapshotData | |
- * @implements cockroach.roachpb.RaftSnapshotData$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftSnapshotData$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.RaftSnapshotData$Properties); | |
/** | |
+ * RaftSnapshotData range_descriptor. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public range_descriptor?: cockroach.roachpb.RangeDescriptor$Properties; | |
/** | |
+ * RaftSnapshotData KV. | |
* @type {Array.<cockroach.roachpb.RaftSnapshotData.KeyValue$Properties>|undefined} | |
*/ | |
public KV?: cockroach.roachpb.RaftSnapshotData.KeyValue$Properties[]; | |
/** | |
+ * RaftSnapshotData log_entries. | |
* @type {Array.<Uint8Array>|undefined} | |
*/ | |
public log_entries?: Uint8Array[]; | |
@@ -13146,46 +13183,47 @@ export namespace cockroach { | |
/** | |
* Properties of a KeyValue. | |
* @typedef cockroach.roachpb.RaftSnapshotData.KeyValue$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [key] KeyValue key. | |
* @property {Uint8Array} [value] KeyValue value. | |
- * @property {*} [timestamp] KeyValue timestamp. | |
+ * @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] KeyValue timestamp. | |
*/ | |
type KeyValue$Properties = { | |
key?: Uint8Array; | |
value?: Uint8Array; | |
- timestamp?: any; | |
+ timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
}; | |
/** | |
* Constructs a new KeyValue. | |
* @exports cockroach.roachpb.RaftSnapshotData.KeyValue | |
- * @implements cockroach.roachpb.RaftSnapshotData.KeyValue$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftSnapshotData.KeyValue$Properties=} [properties] Properties to set | |
*/ | |
- class KeyValue implements cockroach.roachpb.RaftSnapshotData.KeyValue$Properties { | |
+ class KeyValue { | |
/** | |
* Constructs a new KeyValue. | |
* @exports cockroach.roachpb.RaftSnapshotData.KeyValue | |
- * @implements cockroach.roachpb.RaftSnapshotData.KeyValue$Properties | |
* @constructor | |
* @param {cockroach.roachpb.RaftSnapshotData.KeyValue$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.roachpb.RaftSnapshotData.KeyValue$Properties); | |
/** | |
+ * KeyValue key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public key?: Uint8Array; | |
/** | |
+ * KeyValue value. | |
* @type {Uint8Array|undefined} | |
*/ | |
public value?: Uint8Array; | |
/** | |
+ * KeyValue timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
@@ -13289,7 +13327,7 @@ export namespace cockroach { | |
/** | |
* Properties of an UnresolvedAddr. | |
* @typedef cockroach.util.UnresolvedAddr$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [network_field] UnresolvedAddr network_field. | |
* @property {string} [address_field] UnresolvedAddr address_field. | |
*/ | |
@@ -13301,27 +13339,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new UnresolvedAddr. | |
* @exports cockroach.util.UnresolvedAddr | |
- * @implements cockroach.util.UnresolvedAddr$Properties | |
* @constructor | |
* @param {cockroach.util.UnresolvedAddr$Properties=} [properties] Properties to set | |
*/ | |
- class UnresolvedAddr implements cockroach.util.UnresolvedAddr$Properties { | |
+ class UnresolvedAddr { | |
/** | |
* Constructs a new UnresolvedAddr. | |
* @exports cockroach.util.UnresolvedAddr | |
- * @implements cockroach.util.UnresolvedAddr$Properties | |
* @constructor | |
* @param {cockroach.util.UnresolvedAddr$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.util.UnresolvedAddr$Properties); | |
/** | |
+ * UnresolvedAddr network_field. | |
* @type {string|undefined} | |
*/ | |
public network_field?: string; | |
/** | |
+ * UnresolvedAddr address_field. | |
* @type {string|undefined} | |
*/ | |
public address_field?: string; | |
@@ -13423,7 +13461,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Timestamp. | |
* @typedef cockroach.util.hlc.Timestamp$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [wall_time] Timestamp wall_time. | |
* @property {number} [logical] Timestamp logical. | |
*/ | |
@@ -13435,27 +13473,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.util.hlc.Timestamp | |
- * @implements cockroach.util.hlc.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.util.hlc.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
- class Timestamp implements cockroach.util.hlc.Timestamp$Properties { | |
+ class Timestamp { | |
/** | |
* Constructs a new Timestamp. | |
* @exports cockroach.util.hlc.Timestamp | |
- * @implements cockroach.util.hlc.Timestamp$Properties | |
* @constructor | |
* @param {cockroach.util.hlc.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.util.hlc.Timestamp$Properties); | |
/** | |
+ * Timestamp wall_time. | |
* @type {Long|undefined} | |
*/ | |
public wall_time?: Long; | |
/** | |
+ * Timestamp logical. | |
* @type {number|undefined} | |
*/ | |
public logical?: number; | |
@@ -13579,7 +13617,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Entry. | |
* @typedef cockroach.util.log.Entry$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.util.log.Severity} [severity] Entry severity. | |
* @property {Long} [time] Entry time. | |
* @property {Long} [goroutine] Entry goroutine. | |
@@ -13599,47 +13637,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new Entry. | |
* @exports cockroach.util.log.Entry | |
- * @implements cockroach.util.log.Entry$Properties | |
* @constructor | |
* @param {cockroach.util.log.Entry$Properties=} [properties] Properties to set | |
*/ | |
- class Entry implements cockroach.util.log.Entry$Properties { | |
+ class Entry { | |
/** | |
* Constructs a new Entry. | |
* @exports cockroach.util.log.Entry | |
- * @implements cockroach.util.log.Entry$Properties | |
* @constructor | |
* @param {cockroach.util.log.Entry$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.util.log.Entry$Properties); | |
/** | |
+ * Entry severity. | |
* @type {cockroach.util.log.Severity|undefined} | |
*/ | |
public severity?: cockroach.util.log.Severity; | |
/** | |
+ * Entry time. | |
* @type {Long|undefined} | |
*/ | |
public time?: Long; | |
/** | |
+ * Entry goroutine. | |
* @type {Long|undefined} | |
*/ | |
public goroutine?: Long; | |
/** | |
+ * Entry file. | |
* @type {string|undefined} | |
*/ | |
public file?: string; | |
/** | |
+ * Entry line. | |
* @type {Long|undefined} | |
*/ | |
public line?: Long; | |
/** | |
+ * Entry message. | |
* @type {string|undefined} | |
*/ | |
public message?: string; | |
@@ -13734,7 +13776,7 @@ export namespace cockroach { | |
/** | |
* Properties of a FileDetails. | |
* @typedef cockroach.util.log.FileDetails$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [program] FileDetails program. | |
* @property {string} [host] FileDetails host. | |
* @property {string} [user_name] FileDetails user_name. | |
@@ -13754,47 +13796,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new FileDetails. | |
* @exports cockroach.util.log.FileDetails | |
- * @implements cockroach.util.log.FileDetails$Properties | |
* @constructor | |
* @param {cockroach.util.log.FileDetails$Properties=} [properties] Properties to set | |
*/ | |
- class FileDetails implements cockroach.util.log.FileDetails$Properties { | |
+ class FileDetails { | |
/** | |
* Constructs a new FileDetails. | |
* @exports cockroach.util.log.FileDetails | |
- * @implements cockroach.util.log.FileDetails$Properties | |
* @constructor | |
* @param {cockroach.util.log.FileDetails$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.util.log.FileDetails$Properties); | |
/** | |
+ * FileDetails program. | |
* @type {string|undefined} | |
*/ | |
public program?: string; | |
/** | |
+ * FileDetails host. | |
* @type {string|undefined} | |
*/ | |
public host?: string; | |
/** | |
+ * FileDetails user_name. | |
* @type {string|undefined} | |
*/ | |
public user_name?: string; | |
/** | |
+ * FileDetails severity. | |
* @type {cockroach.util.log.Severity|undefined} | |
*/ | |
public severity?: cockroach.util.log.Severity; | |
/** | |
+ * FileDetails time. | |
* @type {Long|undefined} | |
*/ | |
public time?: Long; | |
/** | |
+ * FileDetails pid. | |
* @type {Long|undefined} | |
*/ | |
public pid?: Long; | |
@@ -13889,7 +13935,7 @@ export namespace cockroach { | |
/** | |
* Properties of a FileInfo. | |
* @typedef cockroach.util.log.FileInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] FileInfo name. | |
* @property {Long} [size_bytes] FileInfo size_bytes. | |
* @property {google.protobuf.Timestamp$Properties} [modified] FileInfo modified. | |
@@ -13905,37 +13951,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new FileInfo. | |
* @exports cockroach.util.log.FileInfo | |
- * @implements cockroach.util.log.FileInfo$Properties | |
* @constructor | |
* @param {cockroach.util.log.FileInfo$Properties=} [properties] Properties to set | |
*/ | |
- class FileInfo implements cockroach.util.log.FileInfo$Properties { | |
+ class FileInfo { | |
/** | |
* Constructs a new FileInfo. | |
* @exports cockroach.util.log.FileInfo | |
- * @implements cockroach.util.log.FileInfo$Properties | |
* @constructor | |
* @param {cockroach.util.log.FileInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.util.log.FileInfo$Properties); | |
/** | |
+ * FileInfo name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * FileInfo size_bytes. | |
* @type {Long|undefined} | |
*/ | |
public size_bytes?: Long; | |
/** | |
+ * FileInfo modified. | |
* @type {google.protobuf.Timestamp$Properties|undefined} | |
*/ | |
public modified?: google.protobuf.Timestamp$Properties; | |
/** | |
+ * FileInfo details. | |
* @type {cockroach.util.log.FileDetails$Properties|undefined} | |
*/ | |
public details?: cockroach.util.log.FileDetails$Properties; | |
@@ -14066,7 +14114,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TxnMeta. | |
* @typedef cockroach.storage.engine.enginepb.TxnMeta$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [id] TxnMeta id. | |
* @property {cockroach.storage.engine.enginepb.IsolationType} [isolation] TxnMeta isolation. | |
* @property {Uint8Array} [key] TxnMeta key. | |
@@ -14090,57 +14138,63 @@ export namespace cockroach { | |
/** | |
* Constructs a new TxnMeta. | |
* @exports cockroach.storage.engine.enginepb.TxnMeta | |
- * @implements cockroach.storage.engine.enginepb.TxnMeta$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.TxnMeta$Properties=} [properties] Properties to set | |
*/ | |
- class TxnMeta implements cockroach.storage.engine.enginepb.TxnMeta$Properties { | |
+ class TxnMeta { | |
/** | |
* Constructs a new TxnMeta. | |
* @exports cockroach.storage.engine.enginepb.TxnMeta | |
- * @implements cockroach.storage.engine.enginepb.TxnMeta$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.TxnMeta$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.engine.enginepb.TxnMeta$Properties); | |
/** | |
+ * TxnMeta id. | |
* @type {Uint8Array|undefined} | |
*/ | |
public id?: Uint8Array; | |
/** | |
+ * TxnMeta isolation. | |
* @type {cockroach.storage.engine.enginepb.IsolationType|undefined} | |
*/ | |
public isolation?: cockroach.storage.engine.enginepb.IsolationType; | |
/** | |
+ * TxnMeta key. | |
* @type {Uint8Array|undefined} | |
*/ | |
public key?: Uint8Array; | |
/** | |
+ * TxnMeta epoch. | |
* @type {number|undefined} | |
*/ | |
public epoch?: number; | |
/** | |
+ * TxnMeta timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * TxnMeta priority. | |
* @type {number|undefined} | |
*/ | |
public priority?: number; | |
/** | |
+ * TxnMeta sequence. | |
* @type {number|undefined} | |
*/ | |
public sequence?: number; | |
/** | |
+ * TxnMeta batch_index. | |
* @type {number|undefined} | |
*/ | |
public batch_index?: number; | |
@@ -14235,7 +14289,7 @@ export namespace cockroach { | |
/** | |
* Properties of a MVCCMetadata. | |
* @typedef cockroach.storage.engine.enginepb.MVCCMetadata$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.storage.engine.enginepb.TxnMeta$Properties} [txn] MVCCMetadata txn. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] MVCCMetadata timestamp. | |
* @property {boolean} [deleted] MVCCMetadata deleted. | |
@@ -14257,52 +14311,57 @@ export namespace cockroach { | |
/** | |
* Constructs a new MVCCMetadata. | |
* @exports cockroach.storage.engine.enginepb.MVCCMetadata | |
- * @implements cockroach.storage.engine.enginepb.MVCCMetadata$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.MVCCMetadata$Properties=} [properties] Properties to set | |
*/ | |
- class MVCCMetadata implements cockroach.storage.engine.enginepb.MVCCMetadata$Properties { | |
+ class MVCCMetadata { | |
/** | |
* Constructs a new MVCCMetadata. | |
* @exports cockroach.storage.engine.enginepb.MVCCMetadata | |
- * @implements cockroach.storage.engine.enginepb.MVCCMetadata$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.MVCCMetadata$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.engine.enginepb.MVCCMetadata$Properties); | |
/** | |
+ * MVCCMetadata txn. | |
* @type {cockroach.storage.engine.enginepb.TxnMeta$Properties|undefined} | |
*/ | |
public txn?: cockroach.storage.engine.enginepb.TxnMeta$Properties; | |
/** | |
+ * MVCCMetadata timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * MVCCMetadata deleted. | |
* @type {boolean|undefined} | |
*/ | |
public deleted?: boolean; | |
/** | |
+ * MVCCMetadata key_bytes. | |
* @type {Long|undefined} | |
*/ | |
public key_bytes?: Long; | |
/** | |
+ * MVCCMetadata val_bytes. | |
* @type {Long|undefined} | |
*/ | |
public val_bytes?: Long; | |
/** | |
+ * MVCCMetadata raw_bytes. | |
* @type {Uint8Array|undefined} | |
*/ | |
public raw_bytes?: Uint8Array; | |
/** | |
+ * MVCCMetadata merge_timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public merge_timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
@@ -14397,7 +14456,7 @@ export namespace cockroach { | |
/** | |
* Properties of a MVCCStats. | |
* @typedef cockroach.storage.engine.enginepb.MVCCStats$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [contains_estimates] MVCCStats contains_estimates. | |
* @property {Long} [last_update_nanos] MVCCStats last_update_nanos. | |
* @property {Long} [intent_age] MVCCStats intent_age. | |
@@ -14433,87 +14492,99 @@ export namespace cockroach { | |
/** | |
* Constructs a new MVCCStats. | |
* @exports cockroach.storage.engine.enginepb.MVCCStats | |
- * @implements cockroach.storage.engine.enginepb.MVCCStats$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.MVCCStats$Properties=} [properties] Properties to set | |
*/ | |
- class MVCCStats implements cockroach.storage.engine.enginepb.MVCCStats$Properties { | |
+ class MVCCStats { | |
/** | |
* Constructs a new MVCCStats. | |
* @exports cockroach.storage.engine.enginepb.MVCCStats | |
- * @implements cockroach.storage.engine.enginepb.MVCCStats$Properties | |
* @constructor | |
* @param {cockroach.storage.engine.enginepb.MVCCStats$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.engine.enginepb.MVCCStats$Properties); | |
/** | |
+ * MVCCStats contains_estimates. | |
* @type {boolean|undefined} | |
*/ | |
public contains_estimates?: boolean; | |
/** | |
+ * MVCCStats last_update_nanos. | |
* @type {Long|undefined} | |
*/ | |
public last_update_nanos?: Long; | |
/** | |
+ * MVCCStats intent_age. | |
* @type {Long|undefined} | |
*/ | |
public intent_age?: Long; | |
/** | |
+ * MVCCStats gc_bytes_age. | |
* @type {Long|undefined} | |
*/ | |
public gc_bytes_age?: Long; | |
/** | |
+ * MVCCStats live_bytes. | |
* @type {Long|undefined} | |
*/ | |
public live_bytes?: Long; | |
/** | |
+ * MVCCStats live_count. | |
* @type {Long|undefined} | |
*/ | |
public live_count?: Long; | |
/** | |
+ * MVCCStats key_bytes. | |
* @type {Long|undefined} | |
*/ | |
public key_bytes?: Long; | |
/** | |
+ * MVCCStats key_count. | |
* @type {Long|undefined} | |
*/ | |
public key_count?: Long; | |
/** | |
+ * MVCCStats val_bytes. | |
* @type {Long|undefined} | |
*/ | |
public val_bytes?: Long; | |
/** | |
+ * MVCCStats val_count. | |
* @type {Long|undefined} | |
*/ | |
public val_count?: Long; | |
/** | |
+ * MVCCStats intent_bytes. | |
* @type {Long|undefined} | |
*/ | |
public intent_bytes?: Long; | |
/** | |
+ * MVCCStats intent_count. | |
* @type {Long|undefined} | |
*/ | |
public intent_count?: Long; | |
/** | |
+ * MVCCStats sys_bytes. | |
* @type {Long|undefined} | |
*/ | |
public sys_bytes?: Long; | |
/** | |
+ * MVCCStats sys_count. | |
* @type {Long|undefined} | |
*/ | |
public sys_count?: Long; | |
@@ -14610,7 +14681,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Liveness. | |
* @typedef cockroach.storage.Liveness$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] Liveness node_id. | |
* @property {Long} [epoch] Liveness epoch. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [expiration] Liveness expiration. | |
@@ -14626,37 +14697,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new Liveness. | |
* @exports cockroach.storage.Liveness | |
- * @implements cockroach.storage.Liveness$Properties | |
* @constructor | |
* @param {cockroach.storage.Liveness$Properties=} [properties] Properties to set | |
*/ | |
- class Liveness implements cockroach.storage.Liveness$Properties { | |
+ class Liveness { | |
/** | |
* Constructs a new Liveness. | |
* @exports cockroach.storage.Liveness | |
- * @implements cockroach.storage.Liveness$Properties | |
* @constructor | |
* @param {cockroach.storage.Liveness$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.Liveness$Properties); | |
/** | |
+ * Liveness node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * Liveness epoch. | |
* @type {Long|undefined} | |
*/ | |
public epoch?: Long; | |
/** | |
+ * Liveness expiration. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public expiration?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * Liveness draining. | |
* @type {boolean|undefined} | |
*/ | |
public draining?: boolean; | |
@@ -14758,7 +14831,7 @@ export namespace cockroach { | |
/** | |
* Properties of a ReplicaState. | |
* @typedef cockroach.storage.storagebase.ReplicaState$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [raft_applied_index] ReplicaState raft_applied_index. | |
* @property {Long} [lease_applied_index] ReplicaState lease_applied_index. | |
* @property {cockroach.roachpb.RangeDescriptor$Properties} [desc] ReplicaState desc. | |
@@ -14784,62 +14857,69 @@ export namespace cockroach { | |
/** | |
* Constructs a new ReplicaState. | |
* @exports cockroach.storage.storagebase.ReplicaState | |
- * @implements cockroach.storage.storagebase.ReplicaState$Properties | |
* @constructor | |
* @param {cockroach.storage.storagebase.ReplicaState$Properties=} [properties] Properties to set | |
*/ | |
- class ReplicaState implements cockroach.storage.storagebase.ReplicaState$Properties { | |
+ class ReplicaState { | |
/** | |
* Constructs a new ReplicaState. | |
* @exports cockroach.storage.storagebase.ReplicaState | |
- * @implements cockroach.storage.storagebase.ReplicaState$Properties | |
* @constructor | |
* @param {cockroach.storage.storagebase.ReplicaState$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.storagebase.ReplicaState$Properties); | |
/** | |
+ * ReplicaState raft_applied_index. | |
* @type {Long|undefined} | |
*/ | |
public raft_applied_index?: Long; | |
/** | |
+ * ReplicaState lease_applied_index. | |
* @type {Long|undefined} | |
*/ | |
public lease_applied_index?: Long; | |
/** | |
+ * ReplicaState desc. | |
* @type {cockroach.roachpb.RangeDescriptor$Properties|undefined} | |
*/ | |
public desc?: cockroach.roachpb.RangeDescriptor$Properties; | |
/** | |
+ * ReplicaState lease. | |
* @type {cockroach.roachpb.Lease$Properties|undefined} | |
*/ | |
public lease?: cockroach.roachpb.Lease$Properties; | |
/** | |
+ * ReplicaState truncated_state. | |
* @type {cockroach.roachpb.RaftTruncatedState$Properties|undefined} | |
*/ | |
public truncated_state?: cockroach.roachpb.RaftTruncatedState$Properties; | |
/** | |
+ * ReplicaState gc_threshold. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public gc_threshold?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * ReplicaState stats. | |
* @type {cockroach.storage.engine.enginepb.MVCCStats$Properties|undefined} | |
*/ | |
public stats?: cockroach.storage.engine.enginepb.MVCCStats$Properties; | |
/** | |
+ * ReplicaState txn_span_gc_threshold. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public txn_span_gc_threshold?: cockroach.util.hlc.Timestamp$Properties; | |
/** | |
+ * ReplicaState frozen. | |
* @type {cockroach.storage.storagebase.ReplicaState.FrozenEnum|undefined} | |
*/ | |
public frozen?: cockroach.storage.storagebase.ReplicaState.FrozenEnum; | |
@@ -14952,7 +15032,7 @@ export namespace cockroach { | |
/** | |
* Properties of a RangeInfo. | |
* @typedef cockroach.storage.storagebase.RangeInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.storage.storagebase.ReplicaState$Properties} [state] RangeInfo state. | |
* @property {Long} [lastIndex] RangeInfo lastIndex. | |
* @property {Long} [num_pending] RangeInfo num_pending. | |
@@ -14970,42 +15050,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new RangeInfo. | |
* @exports cockroach.storage.storagebase.RangeInfo | |
- * @implements cockroach.storage.storagebase.RangeInfo$Properties | |
* @constructor | |
* @param {cockroach.storage.storagebase.RangeInfo$Properties=} [properties] Properties to set | |
*/ | |
- class RangeInfo implements cockroach.storage.storagebase.RangeInfo$Properties { | |
+ class RangeInfo { | |
/** | |
* Constructs a new RangeInfo. | |
* @exports cockroach.storage.storagebase.RangeInfo | |
- * @implements cockroach.storage.storagebase.RangeInfo$Properties | |
* @constructor | |
* @param {cockroach.storage.storagebase.RangeInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.storage.storagebase.RangeInfo$Properties); | |
/** | |
+ * RangeInfo state. | |
* @type {cockroach.storage.storagebase.ReplicaState$Properties|undefined} | |
*/ | |
public state?: cockroach.storage.storagebase.ReplicaState$Properties; | |
/** | |
+ * RangeInfo lastIndex. | |
* @type {Long|undefined} | |
*/ | |
public lastIndex?: Long; | |
/** | |
+ * RangeInfo num_pending. | |
* @type {Long|undefined} | |
*/ | |
public num_pending?: Long; | |
/** | |
+ * RangeInfo num_dropped. | |
* @type {Long|undefined} | |
*/ | |
public num_dropped?: Long; | |
/** | |
+ * RangeInfo raft_log_size. | |
* @type {Long|undefined} | |
*/ | |
public raft_log_size?: Long; | |
@@ -15109,7 +15192,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Info. | |
* @typedef cockroach.build.Info$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [go_version] Info go_version. | |
* @property {string} [tag] Info tag. | |
* @property {string} [time] Info time. | |
@@ -15135,62 +15218,69 @@ export namespace cockroach { | |
/** | |
* Constructs a new Info. | |
* @exports cockroach.build.Info | |
- * @implements cockroach.build.Info$Properties | |
* @constructor | |
* @param {cockroach.build.Info$Properties=} [properties] Properties to set | |
*/ | |
- class Info implements cockroach.build.Info$Properties { | |
+ class Info { | |
/** | |
* Constructs a new Info. | |
* @exports cockroach.build.Info | |
- * @implements cockroach.build.Info$Properties | |
* @constructor | |
* @param {cockroach.build.Info$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.build.Info$Properties); | |
/** | |
+ * Info go_version. | |
* @type {string|undefined} | |
*/ | |
public go_version?: string; | |
/** | |
+ * Info tag. | |
* @type {string|undefined} | |
*/ | |
public tag?: string; | |
/** | |
+ * Info time. | |
* @type {string|undefined} | |
*/ | |
public time?: string; | |
/** | |
+ * Info revision. | |
* @type {string|undefined} | |
*/ | |
public revision?: string; | |
/** | |
+ * Info cgo_compiler. | |
* @type {string|undefined} | |
*/ | |
public cgo_compiler?: string; | |
/** | |
+ * Info platform. | |
* @type {string|undefined} | |
*/ | |
public platform?: string; | |
/** | |
+ * Info distribution. | |
* @type {string|undefined} | |
*/ | |
public distribution?: string; | |
/** | |
+ * Info type. | |
* @type {string|undefined} | |
*/ | |
public type?: string; | |
/** | |
+ * Info dependencies. | |
* @type {string|undefined} | |
*/ | |
public dependencies?: string; | |
@@ -15293,7 +15383,7 @@ export namespace cockroach { | |
/** | |
* Properties of a BootstrapInfo. | |
* @typedef cockroach.gossip.BootstrapInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.util.UnresolvedAddr$Properties>} [addresses] BootstrapInfo addresses. | |
* @property {cockroach.util.hlc.Timestamp$Properties} [timestamp] BootstrapInfo timestamp. | |
*/ | |
@@ -15305,27 +15395,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new BootstrapInfo. | |
* @exports cockroach.gossip.BootstrapInfo | |
- * @implements cockroach.gossip.BootstrapInfo$Properties | |
* @constructor | |
* @param {cockroach.gossip.BootstrapInfo$Properties=} [properties] Properties to set | |
*/ | |
- class BootstrapInfo implements cockroach.gossip.BootstrapInfo$Properties { | |
+ class BootstrapInfo { | |
/** | |
* Constructs a new BootstrapInfo. | |
* @exports cockroach.gossip.BootstrapInfo | |
- * @implements cockroach.gossip.BootstrapInfo$Properties | |
* @constructor | |
* @param {cockroach.gossip.BootstrapInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.gossip.BootstrapInfo$Properties); | |
/** | |
+ * BootstrapInfo addresses. | |
* @type {Array.<cockroach.util.UnresolvedAddr$Properties>|undefined} | |
*/ | |
public addresses?: cockroach.util.UnresolvedAddr$Properties[]; | |
/** | |
+ * BootstrapInfo timestamp. | |
* @type {cockroach.util.hlc.Timestamp$Properties|undefined} | |
*/ | |
public timestamp?: cockroach.util.hlc.Timestamp$Properties; | |
@@ -15420,7 +15510,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Request. | |
* @typedef cockroach.gossip.Request$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] Request node_id. | |
* @property {cockroach.util.UnresolvedAddr$Properties} [addr] Request addr. | |
* @property {Object.<string,Long>} [high_water_stamps] Request high_water_stamps. | |
@@ -15436,37 +15526,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new Request. | |
* @exports cockroach.gossip.Request | |
- * @implements cockroach.gossip.Request$Properties | |
* @constructor | |
* @param {cockroach.gossip.Request$Properties=} [properties] Properties to set | |
*/ | |
- class Request implements cockroach.gossip.Request$Properties { | |
+ class Request { | |
/** | |
* Constructs a new Request. | |
* @exports cockroach.gossip.Request | |
- * @implements cockroach.gossip.Request$Properties | |
* @constructor | |
* @param {cockroach.gossip.Request$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.gossip.Request$Properties); | |
/** | |
+ * Request node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * Request addr. | |
* @type {cockroach.util.UnresolvedAddr$Properties|undefined} | |
*/ | |
public addr?: cockroach.util.UnresolvedAddr$Properties; | |
/** | |
+ * Request high_water_stamps. | |
* @type {Object.<string,Long>|undefined} | |
*/ | |
public high_water_stamps?: { [k: string]: Long }; | |
/** | |
+ * Request delta. | |
* @type {Object.<string,cockroach.gossip.Info$Properties>|undefined} | |
*/ | |
public delta?: { [k: string]: cockroach.gossip.Info$Properties }; | |
@@ -15561,7 +15653,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Response. | |
* @typedef cockroach.gossip.Response$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [node_id] Response node_id. | |
* @property {cockroach.util.UnresolvedAddr$Properties} [addr] Response addr. | |
* @property {cockroach.util.UnresolvedAddr$Properties} [alternate_addr] Response alternate_addr. | |
@@ -15581,47 +15673,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new Response. | |
* @exports cockroach.gossip.Response | |
- * @implements cockroach.gossip.Response$Properties | |
* @constructor | |
* @param {cockroach.gossip.Response$Properties=} [properties] Properties to set | |
*/ | |
- class Response implements cockroach.gossip.Response$Properties { | |
+ class Response { | |
/** | |
* Constructs a new Response. | |
* @exports cockroach.gossip.Response | |
- * @implements cockroach.gossip.Response$Properties | |
* @constructor | |
* @param {cockroach.gossip.Response$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.gossip.Response$Properties); | |
/** | |
+ * Response node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * Response addr. | |
* @type {cockroach.util.UnresolvedAddr$Properties|undefined} | |
*/ | |
public addr?: cockroach.util.UnresolvedAddr$Properties; | |
/** | |
+ * Response alternate_addr. | |
* @type {cockroach.util.UnresolvedAddr$Properties|undefined} | |
*/ | |
public alternate_addr?: cockroach.util.UnresolvedAddr$Properties; | |
/** | |
+ * Response alternate_node_id. | |
* @type {number|undefined} | |
*/ | |
public alternate_node_id?: number; | |
/** | |
+ * Response delta. | |
* @type {Object.<string,cockroach.gossip.Info$Properties>|undefined} | |
*/ | |
public delta?: { [k: string]: cockroach.gossip.Info$Properties }; | |
/** | |
+ * Response high_water_stamps. | |
* @type {Object.<string,Long>|undefined} | |
*/ | |
public high_water_stamps?: { [k: string]: Long }; | |
@@ -15716,7 +15812,7 @@ export namespace cockroach { | |
/** | |
* Properties of an InfoStatus. | |
* @typedef cockroach.gossip.InfoStatus$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Object.<string,cockroach.gossip.Info$Properties>} [infos] InfoStatus infos. | |
*/ | |
type InfoStatus$Properties = { | |
@@ -15726,22 +15822,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new InfoStatus. | |
* @exports cockroach.gossip.InfoStatus | |
- * @implements cockroach.gossip.InfoStatus$Properties | |
* @constructor | |
* @param {cockroach.gossip.InfoStatus$Properties=} [properties] Properties to set | |
*/ | |
- class InfoStatus implements cockroach.gossip.InfoStatus$Properties { | |
+ class InfoStatus { | |
/** | |
* Constructs a new InfoStatus. | |
* @exports cockroach.gossip.InfoStatus | |
- * @implements cockroach.gossip.InfoStatus$Properties | |
* @constructor | |
* @param {cockroach.gossip.InfoStatus$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.gossip.InfoStatus$Properties); | |
/** | |
+ * InfoStatus infos. | |
* @type {Object.<string,cockroach.gossip.Info$Properties>|undefined} | |
*/ | |
public infos?: { [k: string]: cockroach.gossip.Info$Properties }; | |
@@ -15836,7 +15931,7 @@ export namespace cockroach { | |
/** | |
* Properties of an Info. | |
* @typedef cockroach.gossip.Info$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {cockroach.roachpb.Value$Properties} [value] Info value. | |
* @property {Long} [orig_stamp] Info orig_stamp. | |
* @property {Long} [ttl_stamp] Info ttl_stamp. | |
@@ -15856,47 +15951,51 @@ export namespace cockroach { | |
/** | |
* Constructs a new Info. | |
* @exports cockroach.gossip.Info | |
- * @implements cockroach.gossip.Info$Properties | |
* @constructor | |
* @param {cockroach.gossip.Info$Properties=} [properties] Properties to set | |
*/ | |
- class Info implements cockroach.gossip.Info$Properties { | |
+ class Info { | |
/** | |
* Constructs a new Info. | |
* @exports cockroach.gossip.Info | |
- * @implements cockroach.gossip.Info$Properties | |
* @constructor | |
* @param {cockroach.gossip.Info$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.gossip.Info$Properties); | |
/** | |
+ * Info value. | |
* @type {cockroach.roachpb.Value$Properties|undefined} | |
*/ | |
public value?: cockroach.roachpb.Value$Properties; | |
/** | |
+ * Info orig_stamp. | |
* @type {Long|undefined} | |
*/ | |
public orig_stamp?: Long; | |
/** | |
+ * Info ttl_stamp. | |
* @type {Long|undefined} | |
*/ | |
public ttl_stamp?: Long; | |
/** | |
+ * Info hops. | |
* @type {number|undefined} | |
*/ | |
public hops?: number; | |
/** | |
+ * Info node_id. | |
* @type {number|undefined} | |
*/ | |
public node_id?: number; | |
/** | |
+ * Info peer_id. | |
* @type {number|undefined} | |
*/ | |
public peer_id?: number; | |
@@ -16046,7 +16145,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TimeSeriesDatapoint. | |
* @typedef cockroach.ts.tspb.TimeSeriesDatapoint$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [timestamp_nanos] TimeSeriesDatapoint timestamp_nanos. | |
* @property {number} [value] TimeSeriesDatapoint value. | |
*/ | |
@@ -16058,27 +16157,27 @@ export namespace cockroach { | |
/** | |
* Constructs a new TimeSeriesDatapoint. | |
* @exports cockroach.ts.tspb.TimeSeriesDatapoint | |
- * @implements cockroach.ts.tspb.TimeSeriesDatapoint$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesDatapoint$Properties=} [properties] Properties to set | |
*/ | |
- class TimeSeriesDatapoint implements cockroach.ts.tspb.TimeSeriesDatapoint$Properties { | |
+ class TimeSeriesDatapoint { | |
/** | |
* Constructs a new TimeSeriesDatapoint. | |
* @exports cockroach.ts.tspb.TimeSeriesDatapoint | |
- * @implements cockroach.ts.tspb.TimeSeriesDatapoint$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesDatapoint$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.TimeSeriesDatapoint$Properties); | |
/** | |
+ * TimeSeriesDatapoint timestamp_nanos. | |
* @type {Long|undefined} | |
*/ | |
public timestamp_nanos?: Long; | |
/** | |
+ * TimeSeriesDatapoint value. | |
* @type {number|undefined} | |
*/ | |
public value?: number; | |
@@ -16173,7 +16272,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TimeSeriesData. | |
* @typedef cockroach.ts.tspb.TimeSeriesData$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] TimeSeriesData name. | |
* @property {string} [source] TimeSeriesData source. | |
* @property {Array.<cockroach.ts.tspb.TimeSeriesDatapoint$Properties>} [datapoints] TimeSeriesData datapoints. | |
@@ -16187,32 +16286,33 @@ export namespace cockroach { | |
/** | |
* Constructs a new TimeSeriesData. | |
* @exports cockroach.ts.tspb.TimeSeriesData | |
- * @implements cockroach.ts.tspb.TimeSeriesData$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesData$Properties=} [properties] Properties to set | |
*/ | |
- class TimeSeriesData implements cockroach.ts.tspb.TimeSeriesData$Properties { | |
+ class TimeSeriesData { | |
/** | |
* Constructs a new TimeSeriesData. | |
* @exports cockroach.ts.tspb.TimeSeriesData | |
- * @implements cockroach.ts.tspb.TimeSeriesData$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesData$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.TimeSeriesData$Properties); | |
/** | |
+ * TimeSeriesData name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * TimeSeriesData source. | |
* @type {string|undefined} | |
*/ | |
public source?: string; | |
/** | |
+ * TimeSeriesData datapoints. | |
* @type {Array.<cockroach.ts.tspb.TimeSeriesDatapoint$Properties>|undefined} | |
*/ | |
public datapoints?: cockroach.ts.tspb.TimeSeriesDatapoint$Properties[]; | |
@@ -16339,7 +16439,7 @@ export namespace cockroach { | |
/** | |
* Properties of a Query. | |
* @typedef cockroach.ts.tspb.Query$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] Query name. | |
* @property {cockroach.ts.tspb.TimeSeriesQueryAggregator} [downsampler] Query downsampler. | |
* @property {cockroach.ts.tspb.TimeSeriesQueryAggregator} [source_aggregator] Query source_aggregator. | |
@@ -16357,42 +16457,45 @@ export namespace cockroach { | |
/** | |
* Constructs a new Query. | |
* @exports cockroach.ts.tspb.Query | |
- * @implements cockroach.ts.tspb.Query$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.Query$Properties=} [properties] Properties to set | |
*/ | |
- class Query implements cockroach.ts.tspb.Query$Properties { | |
+ class Query { | |
/** | |
* Constructs a new Query. | |
* @exports cockroach.ts.tspb.Query | |
- * @implements cockroach.ts.tspb.Query$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.Query$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.Query$Properties); | |
/** | |
+ * Query name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * Query downsampler. | |
* @type {cockroach.ts.tspb.TimeSeriesQueryAggregator|undefined} | |
*/ | |
public downsampler?: cockroach.ts.tspb.TimeSeriesQueryAggregator; | |
/** | |
+ * Query source_aggregator. | |
* @type {cockroach.ts.tspb.TimeSeriesQueryAggregator|undefined} | |
*/ | |
public source_aggregator?: cockroach.ts.tspb.TimeSeriesQueryAggregator; | |
/** | |
+ * Query derivative. | |
* @type {cockroach.ts.tspb.TimeSeriesQueryDerivative|undefined} | |
*/ | |
public derivative?: cockroach.ts.tspb.TimeSeriesQueryDerivative; | |
/** | |
+ * Query sources. | |
* @type {Array.<string>|undefined} | |
*/ | |
public sources?: string[]; | |
@@ -16487,7 +16590,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TimeSeriesQueryRequest. | |
* @typedef cockroach.ts.tspb.TimeSeriesQueryRequest$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [start_nanos] TimeSeriesQueryRequest start_nanos. | |
* @property {Long} [end_nanos] TimeSeriesQueryRequest end_nanos. | |
* @property {Array.<cockroach.ts.tspb.Query$Properties>} [queries] TimeSeriesQueryRequest queries. | |
@@ -16503,37 +16606,39 @@ export namespace cockroach { | |
/** | |
* Constructs a new TimeSeriesQueryRequest. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryRequest | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryRequest$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryRequest$Properties=} [properties] Properties to set | |
*/ | |
- class TimeSeriesQueryRequest implements cockroach.ts.tspb.TimeSeriesQueryRequest$Properties { | |
+ class TimeSeriesQueryRequest { | |
/** | |
* Constructs a new TimeSeriesQueryRequest. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryRequest | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryRequest$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryRequest$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.TimeSeriesQueryRequest$Properties); | |
/** | |
+ * TimeSeriesQueryRequest start_nanos. | |
* @type {Long|undefined} | |
*/ | |
public start_nanos?: Long; | |
/** | |
+ * TimeSeriesQueryRequest end_nanos. | |
* @type {Long|undefined} | |
*/ | |
public end_nanos?: Long; | |
/** | |
+ * TimeSeriesQueryRequest queries. | |
* @type {Array.<cockroach.ts.tspb.Query$Properties>|undefined} | |
*/ | |
public queries?: cockroach.ts.tspb.Query$Properties[]; | |
/** | |
+ * TimeSeriesQueryRequest sample_nanos. | |
* @type {Long|undefined} | |
*/ | |
public sample_nanos?: Long; | |
@@ -16628,7 +16733,7 @@ export namespace cockroach { | |
/** | |
* Properties of a TimeSeriesQueryResponse. | |
* @typedef cockroach.ts.tspb.TimeSeriesQueryResponse$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties>} [results] TimeSeriesQueryResponse results. | |
*/ | |
type TimeSeriesQueryResponse$Properties = { | |
@@ -16638,22 +16743,21 @@ export namespace cockroach { | |
/** | |
* Constructs a new TimeSeriesQueryResponse. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryResponse | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryResponse$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryResponse$Properties=} [properties] Properties to set | |
*/ | |
- class TimeSeriesQueryResponse implements cockroach.ts.tspb.TimeSeriesQueryResponse$Properties { | |
+ class TimeSeriesQueryResponse { | |
/** | |
* Constructs a new TimeSeriesQueryResponse. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryResponse | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryResponse$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryResponse$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.TimeSeriesQueryResponse$Properties); | |
/** | |
+ * TimeSeriesQueryResponse results. | |
* @type {Array.<cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties>|undefined} | |
*/ | |
public results?: cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties[]; | |
@@ -16750,39 +16854,39 @@ export namespace cockroach { | |
/** | |
* Properties of a Result. | |
* @typedef cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties | |
- * @type Object | |
- * @property {*} [query] Result query. | |
- * @property {Array.<*>} [datapoints] Result datapoints. | |
+ * @type {Object} | |
+ * @property {cockroach.ts.tspb.Query$Properties} [query] Result query. | |
+ * @property {Array.<cockroach.ts.tspb.TimeSeriesDatapoint$Properties>} [datapoints] Result datapoints. | |
*/ | |
type Result$Properties = { | |
- query?: any; | |
- datapoints?: any[]; | |
+ query?: cockroach.ts.tspb.Query$Properties; | |
+ datapoints?: cockroach.ts.tspb.TimeSeriesDatapoint$Properties[]; | |
}; | |
/** | |
* Constructs a new Result. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryResponse.Result | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties=} [properties] Properties to set | |
*/ | |
- class Result implements cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties { | |
+ class Result { | |
/** | |
* Constructs a new Result. | |
* @exports cockroach.ts.tspb.TimeSeriesQueryResponse.Result | |
- * @implements cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties | |
* @constructor | |
* @param {cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: cockroach.ts.tspb.TimeSeriesQueryResponse.Result$Properties); | |
/** | |
+ * Result query. | |
* @type {cockroach.ts.tspb.Query$Properties|undefined} | |
*/ | |
public query?: cockroach.ts.tspb.Query$Properties; | |
/** | |
+ * Result datapoints. | |
* @type {Array.<cockroach.ts.tspb.TimeSeriesDatapoint$Properties>|undefined} | |
*/ | |
public datapoints?: cockroach.ts.tspb.TimeSeriesDatapoint$Properties[]; | |
@@ -17186,7 +17290,7 @@ export namespace google { | |
/** | |
* Properties of a FileDescriptorSet. | |
* @typedef google.protobuf.FileDescriptorSet$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<google.protobuf.FileDescriptorProto$Properties>} [file] FileDescriptorSet file. | |
*/ | |
type FileDescriptorSet$Properties = { | |
@@ -17196,22 +17300,21 @@ export namespace google { | |
/** | |
* Constructs a new FileDescriptorSet. | |
* @exports google.protobuf.FileDescriptorSet | |
- * @implements google.protobuf.FileDescriptorSet$Properties | |
* @constructor | |
* @param {google.protobuf.FileDescriptorSet$Properties=} [properties] Properties to set | |
*/ | |
- class FileDescriptorSet implements google.protobuf.FileDescriptorSet$Properties { | |
+ class FileDescriptorSet { | |
/** | |
* Constructs a new FileDescriptorSet. | |
* @exports google.protobuf.FileDescriptorSet | |
- * @implements google.protobuf.FileDescriptorSet$Properties | |
* @constructor | |
* @param {google.protobuf.FileDescriptorSet$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.FileDescriptorSet$Properties); | |
/** | |
+ * FileDescriptorSet file. | |
* @type {Array.<google.protobuf.FileDescriptorProto$Properties>|undefined} | |
*/ | |
public file?: google.protobuf.FileDescriptorProto$Properties[]; | |
@@ -17306,7 +17409,7 @@ export namespace google { | |
/** | |
* Properties of a FileDescriptorProto. | |
* @typedef google.protobuf.FileDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] FileDescriptorProto name. | |
* @property {string} ["package"] FileDescriptorProto package. | |
* @property {Array.<string>} [dependency] FileDescriptorProto dependency. | |
@@ -17338,77 +17441,87 @@ export namespace google { | |
/** | |
* Constructs a new FileDescriptorProto. | |
* @exports google.protobuf.FileDescriptorProto | |
- * @implements google.protobuf.FileDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.FileDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class FileDescriptorProto implements google.protobuf.FileDescriptorProto$Properties { | |
+ class FileDescriptorProto { | |
/** | |
* Constructs a new FileDescriptorProto. | |
* @exports google.protobuf.FileDescriptorProto | |
- * @implements google.protobuf.FileDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.FileDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.FileDescriptorProto$Properties); | |
/** | |
+ * FileDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * FileDescriptorProto package. | |
* @type {string|undefined} | |
*/ | |
public ["package"]?: string; | |
/** | |
+ * FileDescriptorProto dependency. | |
* @type {Array.<string>|undefined} | |
*/ | |
public dependency?: string[]; | |
/** | |
+ * FileDescriptorProto public_dependency. | |
* @type {Array.<number>|undefined} | |
*/ | |
public public_dependency?: number[]; | |
/** | |
+ * FileDescriptorProto weak_dependency. | |
* @type {Array.<number>|undefined} | |
*/ | |
public weak_dependency?: number[]; | |
/** | |
+ * FileDescriptorProto message_type. | |
* @type {Array.<google.protobuf.DescriptorProto$Properties>|undefined} | |
*/ | |
public message_type?: google.protobuf.DescriptorProto$Properties[]; | |
/** | |
+ * FileDescriptorProto enum_type. | |
* @type {Array.<google.protobuf.EnumDescriptorProto$Properties>|undefined} | |
*/ | |
public enum_type?: google.protobuf.EnumDescriptorProto$Properties[]; | |
/** | |
+ * FileDescriptorProto service. | |
* @type {Array.<google.protobuf.ServiceDescriptorProto$Properties>|undefined} | |
*/ | |
public service?: google.protobuf.ServiceDescriptorProto$Properties[]; | |
/** | |
+ * FileDescriptorProto extension. | |
* @type {Array.<google.protobuf.FieldDescriptorProto$Properties>|undefined} | |
*/ | |
public extension?: google.protobuf.FieldDescriptorProto$Properties[]; | |
/** | |
+ * FileDescriptorProto options. | |
* @type {google.protobuf.FileOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.FileOptions$Properties; | |
/** | |
+ * FileDescriptorProto source_code_info. | |
* @type {google.protobuf.SourceCodeInfo$Properties|undefined} | |
*/ | |
public source_code_info?: google.protobuf.SourceCodeInfo$Properties; | |
/** | |
+ * FileDescriptorProto syntax. | |
* @type {string|undefined} | |
*/ | |
public syntax?: string; | |
@@ -17503,7 +17616,7 @@ export namespace google { | |
/** | |
* Properties of a DescriptorProto. | |
* @typedef google.protobuf.DescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] DescriptorProto name. | |
* @property {Array.<google.protobuf.FieldDescriptorProto$Properties>} [field] DescriptorProto field. | |
* @property {Array.<google.protobuf.FieldDescriptorProto$Properties>} [extension] DescriptorProto extension. | |
@@ -17531,67 +17644,75 @@ export namespace google { | |
/** | |
* Constructs a new DescriptorProto. | |
* @exports google.protobuf.DescriptorProto | |
- * @implements google.protobuf.DescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class DescriptorProto implements google.protobuf.DescriptorProto$Properties { | |
+ class DescriptorProto { | |
/** | |
* Constructs a new DescriptorProto. | |
* @exports google.protobuf.DescriptorProto | |
- * @implements google.protobuf.DescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.DescriptorProto$Properties); | |
/** | |
+ * DescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * DescriptorProto field. | |
* @type {Array.<google.protobuf.FieldDescriptorProto$Properties>|undefined} | |
*/ | |
public field?: google.protobuf.FieldDescriptorProto$Properties[]; | |
/** | |
+ * DescriptorProto extension. | |
* @type {Array.<google.protobuf.FieldDescriptorProto$Properties>|undefined} | |
*/ | |
public extension?: google.protobuf.FieldDescriptorProto$Properties[]; | |
/** | |
+ * DescriptorProto nested_type. | |
* @type {Array.<google.protobuf.DescriptorProto$Properties>|undefined} | |
*/ | |
public nested_type?: google.protobuf.DescriptorProto$Properties[]; | |
/** | |
+ * DescriptorProto enum_type. | |
* @type {Array.<google.protobuf.EnumDescriptorProto$Properties>|undefined} | |
*/ | |
public enum_type?: google.protobuf.EnumDescriptorProto$Properties[]; | |
/** | |
+ * DescriptorProto extension_range. | |
* @type {Array.<google.protobuf.DescriptorProto.ExtensionRange$Properties>|undefined} | |
*/ | |
public extension_range?: google.protobuf.DescriptorProto.ExtensionRange$Properties[]; | |
/** | |
+ * DescriptorProto oneof_decl. | |
* @type {Array.<google.protobuf.OneofDescriptorProto$Properties>|undefined} | |
*/ | |
public oneof_decl?: google.protobuf.OneofDescriptorProto$Properties[]; | |
/** | |
+ * DescriptorProto options. | |
* @type {google.protobuf.MessageOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.MessageOptions$Properties; | |
/** | |
+ * DescriptorProto reserved_range. | |
* @type {Array.<google.protobuf.DescriptorProto.ReservedRange$Properties>|undefined} | |
*/ | |
public reserved_range?: google.protobuf.DescriptorProto.ReservedRange$Properties[]; | |
/** | |
+ * DescriptorProto reserved_name. | |
* @type {Array.<string>|undefined} | |
*/ | |
public reserved_name?: string[]; | |
@@ -17688,7 +17809,7 @@ export namespace google { | |
/** | |
* Properties of an ExtensionRange. | |
* @typedef google.protobuf.DescriptorProto.ExtensionRange$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [start] ExtensionRange start. | |
* @property {number} [end] ExtensionRange end. | |
*/ | |
@@ -17700,27 +17821,27 @@ export namespace google { | |
/** | |
* Constructs a new ExtensionRange. | |
* @exports google.protobuf.DescriptorProto.ExtensionRange | |
- * @implements google.protobuf.DescriptorProto.ExtensionRange$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto.ExtensionRange$Properties=} [properties] Properties to set | |
*/ | |
- class ExtensionRange implements google.protobuf.DescriptorProto.ExtensionRange$Properties { | |
+ class ExtensionRange { | |
/** | |
* Constructs a new ExtensionRange. | |
* @exports google.protobuf.DescriptorProto.ExtensionRange | |
- * @implements google.protobuf.DescriptorProto.ExtensionRange$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto.ExtensionRange$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.DescriptorProto.ExtensionRange$Properties); | |
/** | |
+ * ExtensionRange start. | |
* @type {number|undefined} | |
*/ | |
public start?: number; | |
/** | |
+ * ExtensionRange end. | |
* @type {number|undefined} | |
*/ | |
public end?: number; | |
@@ -17815,7 +17936,7 @@ export namespace google { | |
/** | |
* Properties of a ReservedRange. | |
* @typedef google.protobuf.DescriptorProto.ReservedRange$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {number} [start] ReservedRange start. | |
* @property {number} [end] ReservedRange end. | |
*/ | |
@@ -17827,27 +17948,27 @@ export namespace google { | |
/** | |
* Constructs a new ReservedRange. | |
* @exports google.protobuf.DescriptorProto.ReservedRange | |
- * @implements google.protobuf.DescriptorProto.ReservedRange$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto.ReservedRange$Properties=} [properties] Properties to set | |
*/ | |
- class ReservedRange implements google.protobuf.DescriptorProto.ReservedRange$Properties { | |
+ class ReservedRange { | |
/** | |
* Constructs a new ReservedRange. | |
* @exports google.protobuf.DescriptorProto.ReservedRange | |
- * @implements google.protobuf.DescriptorProto.ReservedRange$Properties | |
* @constructor | |
* @param {google.protobuf.DescriptorProto.ReservedRange$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.DescriptorProto.ReservedRange$Properties); | |
/** | |
+ * ReservedRange start. | |
* @type {number|undefined} | |
*/ | |
public start?: number; | |
/** | |
+ * ReservedRange end. | |
* @type {number|undefined} | |
*/ | |
public end?: number; | |
@@ -17943,7 +18064,7 @@ export namespace google { | |
/** | |
* Properties of a FieldDescriptorProto. | |
* @typedef google.protobuf.FieldDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] FieldDescriptorProto name. | |
* @property {number} [number] FieldDescriptorProto number. | |
* @property {google.protobuf.FieldDescriptorProto.Label} [label] FieldDescriptorProto label. | |
@@ -17971,67 +18092,75 @@ export namespace google { | |
/** | |
* Constructs a new FieldDescriptorProto. | |
* @exports google.protobuf.FieldDescriptorProto | |
- * @implements google.protobuf.FieldDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.FieldDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class FieldDescriptorProto implements google.protobuf.FieldDescriptorProto$Properties { | |
+ class FieldDescriptorProto { | |
/** | |
* Constructs a new FieldDescriptorProto. | |
* @exports google.protobuf.FieldDescriptorProto | |
- * @implements google.protobuf.FieldDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.FieldDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.FieldDescriptorProto$Properties); | |
/** | |
+ * FieldDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * FieldDescriptorProto number. | |
* @type {number|undefined} | |
*/ | |
public number?: number; | |
/** | |
+ * FieldDescriptorProto label. | |
* @type {google.protobuf.FieldDescriptorProto.Label|undefined} | |
*/ | |
public label?: google.protobuf.FieldDescriptorProto.Label; | |
/** | |
+ * FieldDescriptorProto type. | |
* @type {google.protobuf.FieldDescriptorProto.Type|undefined} | |
*/ | |
public type?: google.protobuf.FieldDescriptorProto.Type; | |
/** | |
+ * FieldDescriptorProto type_name. | |
* @type {string|undefined} | |
*/ | |
public type_name?: string; | |
/** | |
+ * FieldDescriptorProto extendee. | |
* @type {string|undefined} | |
*/ | |
public extendee?: string; | |
/** | |
+ * FieldDescriptorProto default_value. | |
* @type {string|undefined} | |
*/ | |
public default_value?: string; | |
/** | |
+ * FieldDescriptorProto oneof_index. | |
* @type {number|undefined} | |
*/ | |
public oneof_index?: number; | |
/** | |
+ * FieldDescriptorProto json_name. | |
* @type {string|undefined} | |
*/ | |
public json_name?: string; | |
/** | |
+ * FieldDescriptorProto options. | |
* @type {google.protobuf.FieldOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.FieldOptions$Properties; | |
@@ -18189,7 +18318,7 @@ export namespace google { | |
/** | |
* Properties of an OneofDescriptorProto. | |
* @typedef google.protobuf.OneofDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] OneofDescriptorProto name. | |
* @property {google.protobuf.OneofOptions$Properties} [options] OneofDescriptorProto options. | |
*/ | |
@@ -18201,27 +18330,27 @@ export namespace google { | |
/** | |
* Constructs a new OneofDescriptorProto. | |
* @exports google.protobuf.OneofDescriptorProto | |
- * @implements google.protobuf.OneofDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.OneofDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class OneofDescriptorProto implements google.protobuf.OneofDescriptorProto$Properties { | |
+ class OneofDescriptorProto { | |
/** | |
* Constructs a new OneofDescriptorProto. | |
* @exports google.protobuf.OneofDescriptorProto | |
- * @implements google.protobuf.OneofDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.OneofDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.OneofDescriptorProto$Properties); | |
/** | |
+ * OneofDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * OneofDescriptorProto options. | |
* @type {google.protobuf.OneofOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.OneofOptions$Properties; | |
@@ -18316,7 +18445,7 @@ export namespace google { | |
/** | |
* Properties of an EnumDescriptorProto. | |
* @typedef google.protobuf.EnumDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] EnumDescriptorProto name. | |
* @property {Array.<google.protobuf.EnumValueDescriptorProto$Properties>} [value] EnumDescriptorProto value. | |
* @property {google.protobuf.EnumOptions$Properties} [options] EnumDescriptorProto options. | |
@@ -18330,32 +18459,33 @@ export namespace google { | |
/** | |
* Constructs a new EnumDescriptorProto. | |
* @exports google.protobuf.EnumDescriptorProto | |
- * @implements google.protobuf.EnumDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.EnumDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class EnumDescriptorProto implements google.protobuf.EnumDescriptorProto$Properties { | |
+ class EnumDescriptorProto { | |
/** | |
* Constructs a new EnumDescriptorProto. | |
* @exports google.protobuf.EnumDescriptorProto | |
- * @implements google.protobuf.EnumDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.EnumDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.EnumDescriptorProto$Properties); | |
/** | |
+ * EnumDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * EnumDescriptorProto value. | |
* @type {Array.<google.protobuf.EnumValueDescriptorProto$Properties>|undefined} | |
*/ | |
public value?: google.protobuf.EnumValueDescriptorProto$Properties[]; | |
/** | |
+ * EnumDescriptorProto options. | |
* @type {google.protobuf.EnumOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.EnumOptions$Properties; | |
@@ -18450,7 +18580,7 @@ export namespace google { | |
/** | |
* Properties of an EnumValueDescriptorProto. | |
* @typedef google.protobuf.EnumValueDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] EnumValueDescriptorProto name. | |
* @property {number} [number] EnumValueDescriptorProto number. | |
* @property {google.protobuf.EnumValueOptions$Properties} [options] EnumValueDescriptorProto options. | |
@@ -18464,32 +18594,33 @@ export namespace google { | |
/** | |
* Constructs a new EnumValueDescriptorProto. | |
* @exports google.protobuf.EnumValueDescriptorProto | |
- * @implements google.protobuf.EnumValueDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.EnumValueDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class EnumValueDescriptorProto implements google.protobuf.EnumValueDescriptorProto$Properties { | |
+ class EnumValueDescriptorProto { | |
/** | |
* Constructs a new EnumValueDescriptorProto. | |
* @exports google.protobuf.EnumValueDescriptorProto | |
- * @implements google.protobuf.EnumValueDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.EnumValueDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.EnumValueDescriptorProto$Properties); | |
/** | |
+ * EnumValueDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * EnumValueDescriptorProto number. | |
* @type {number|undefined} | |
*/ | |
public number?: number; | |
/** | |
+ * EnumValueDescriptorProto options. | |
* @type {google.protobuf.EnumValueOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.EnumValueOptions$Properties; | |
@@ -18584,7 +18715,7 @@ export namespace google { | |
/** | |
* Properties of a ServiceDescriptorProto. | |
* @typedef google.protobuf.ServiceDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] ServiceDescriptorProto name. | |
* @property {Array.<google.protobuf.MethodDescriptorProto$Properties>} [method] ServiceDescriptorProto method. | |
* @property {google.protobuf.ServiceOptions$Properties} [options] ServiceDescriptorProto options. | |
@@ -18598,32 +18729,33 @@ export namespace google { | |
/** | |
* Constructs a new ServiceDescriptorProto. | |
* @exports google.protobuf.ServiceDescriptorProto | |
- * @implements google.protobuf.ServiceDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.ServiceDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class ServiceDescriptorProto implements google.protobuf.ServiceDescriptorProto$Properties { | |
+ class ServiceDescriptorProto { | |
/** | |
* Constructs a new ServiceDescriptorProto. | |
* @exports google.protobuf.ServiceDescriptorProto | |
- * @implements google.protobuf.ServiceDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.ServiceDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.ServiceDescriptorProto$Properties); | |
/** | |
+ * ServiceDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * ServiceDescriptorProto method. | |
* @type {Array.<google.protobuf.MethodDescriptorProto$Properties>|undefined} | |
*/ | |
public method?: google.protobuf.MethodDescriptorProto$Properties[]; | |
/** | |
+ * ServiceDescriptorProto options. | |
* @type {google.protobuf.ServiceOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.ServiceOptions$Properties; | |
@@ -18718,7 +18850,7 @@ export namespace google { | |
/** | |
* Properties of a MethodDescriptorProto. | |
* @typedef google.protobuf.MethodDescriptorProto$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [name] MethodDescriptorProto name. | |
* @property {string} [input_type] MethodDescriptorProto input_type. | |
* @property {string} [output_type] MethodDescriptorProto output_type. | |
@@ -18738,47 +18870,51 @@ export namespace google { | |
/** | |
* Constructs a new MethodDescriptorProto. | |
* @exports google.protobuf.MethodDescriptorProto | |
- * @implements google.protobuf.MethodDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.MethodDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
- class MethodDescriptorProto implements google.protobuf.MethodDescriptorProto$Properties { | |
+ class MethodDescriptorProto { | |
/** | |
* Constructs a new MethodDescriptorProto. | |
* @exports google.protobuf.MethodDescriptorProto | |
- * @implements google.protobuf.MethodDescriptorProto$Properties | |
* @constructor | |
* @param {google.protobuf.MethodDescriptorProto$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.MethodDescriptorProto$Properties); | |
/** | |
+ * MethodDescriptorProto name. | |
* @type {string|undefined} | |
*/ | |
public name?: string; | |
/** | |
+ * MethodDescriptorProto input_type. | |
* @type {string|undefined} | |
*/ | |
public input_type?: string; | |
/** | |
+ * MethodDescriptorProto output_type. | |
* @type {string|undefined} | |
*/ | |
public output_type?: string; | |
/** | |
+ * MethodDescriptorProto options. | |
* @type {google.protobuf.MethodOptions$Properties|undefined} | |
*/ | |
public options?: google.protobuf.MethodOptions$Properties; | |
/** | |
+ * MethodDescriptorProto client_streaming. | |
* @type {boolean|undefined} | |
*/ | |
public client_streaming?: boolean; | |
/** | |
+ * MethodDescriptorProto server_streaming. | |
* @type {boolean|undefined} | |
*/ | |
public server_streaming?: boolean; | |
@@ -18873,7 +19009,7 @@ export namespace google { | |
/** | |
* Properties of a FileOptions. | |
* @typedef google.protobuf.FileOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [java_package] FileOptions java_package. | |
* @property {string} [java_outer_classname] FileOptions java_outer_classname. | |
* @property {boolean} [java_multiple_files] FileOptions java_multiple_files. | |
@@ -18969,237 +19105,279 @@ export namespace google { | |
/** | |
* Constructs a new FileOptions. | |
* @exports google.protobuf.FileOptions | |
- * @implements google.protobuf.FileOptions$Properties | |
* @constructor | |
* @param {google.protobuf.FileOptions$Properties=} [properties] Properties to set | |
*/ | |
- class FileOptions implements google.protobuf.FileOptions$Properties { | |
+ class FileOptions { | |
/** | |
* Constructs a new FileOptions. | |
* @exports google.protobuf.FileOptions | |
- * @implements google.protobuf.FileOptions$Properties | |
* @constructor | |
* @param {google.protobuf.FileOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.FileOptions$Properties); | |
/** | |
+ * FileOptions java_package. | |
* @type {string|undefined} | |
*/ | |
public java_package?: string; | |
/** | |
+ * FileOptions java_outer_classname. | |
* @type {string|undefined} | |
*/ | |
public java_outer_classname?: string; | |
/** | |
+ * FileOptions java_multiple_files. | |
* @type {boolean|undefined} | |
*/ | |
public java_multiple_files?: boolean; | |
/** | |
+ * FileOptions java_generate_equals_and_hash. | |
* @type {boolean|undefined} | |
*/ | |
public java_generate_equals_and_hash?: boolean; | |
/** | |
+ * FileOptions java_string_check_utf8. | |
* @type {boolean|undefined} | |
*/ | |
public java_string_check_utf8?: boolean; | |
/** | |
+ * FileOptions optimize_for. | |
* @type {google.protobuf.FileOptions.OptimizeMode|undefined} | |
*/ | |
public optimize_for?: google.protobuf.FileOptions.OptimizeMode; | |
/** | |
+ * FileOptions go_package. | |
* @type {string|undefined} | |
*/ | |
public go_package?: string; | |
/** | |
+ * FileOptions cc_generic_services. | |
* @type {boolean|undefined} | |
*/ | |
public cc_generic_services?: boolean; | |
/** | |
+ * FileOptions java_generic_services. | |
* @type {boolean|undefined} | |
*/ | |
public java_generic_services?: boolean; | |
/** | |
+ * FileOptions py_generic_services. | |
* @type {boolean|undefined} | |
*/ | |
public py_generic_services?: boolean; | |
/** | |
+ * FileOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * FileOptions cc_enable_arenas. | |
* @type {boolean|undefined} | |
*/ | |
public cc_enable_arenas?: boolean; | |
/** | |
+ * FileOptions objc_class_prefix. | |
* @type {string|undefined} | |
*/ | |
public objc_class_prefix?: string; | |
/** | |
+ * FileOptions csharp_namespace. | |
* @type {string|undefined} | |
*/ | |
public csharp_namespace?: string; | |
/** | |
+ * FileOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * FileOptions .gogoproto.goproto_getters_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_getters_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_enum_prefix_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_enum_prefix_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_stringer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_stringer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.verbose_equal_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.verbose_equal_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.face_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.face_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.gostring_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.gostring_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.populate_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.populate_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.stringer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stringer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.onlyone_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.onlyone_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.equal_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.equal_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.description_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.description_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.testgen_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.testgen_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.benchgen_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.benchgen_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.marshaler_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.marshaler_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.unmarshaler_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unmarshaler_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.stable_marshaler_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stable_marshaler_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.sizer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.sizer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_enum_stringer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_enum_stringer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.enum_stringer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.enum_stringer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.unsafe_marshaler_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unsafe_marshaler_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.unsafe_unmarshaler_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unsafe_unmarshaler_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_extensions_map_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_extensions_map_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_unrecognized_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_unrecognized_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.gogoproto_import. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.gogoproto_import"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.protosizer_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.protosizer_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.compare_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.compare_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.typedecl_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.typedecl_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.enumdecl_all. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.enumdecl_all"]?: boolean; | |
/** | |
+ * FileOptions .gogoproto.goproto_registration. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_registration"]?: boolean; | |
@@ -19312,7 +19490,7 @@ export namespace google { | |
/** | |
* Properties of a MessageOptions. | |
* @typedef google.protobuf.MessageOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [message_set_wire_format] MessageOptions message_set_wire_format. | |
* @property {boolean} [no_standard_descriptor_accessor] MessageOptions no_standard_descriptor_accessor. | |
* @property {boolean} [deprecated] MessageOptions deprecated. | |
@@ -19376,157 +19554,183 @@ export namespace google { | |
/** | |
* Constructs a new MessageOptions. | |
* @exports google.protobuf.MessageOptions | |
- * @implements google.protobuf.MessageOptions$Properties | |
* @constructor | |
* @param {google.protobuf.MessageOptions$Properties=} [properties] Properties to set | |
*/ | |
- class MessageOptions implements google.protobuf.MessageOptions$Properties { | |
+ class MessageOptions { | |
/** | |
* Constructs a new MessageOptions. | |
* @exports google.protobuf.MessageOptions | |
- * @implements google.protobuf.MessageOptions$Properties | |
* @constructor | |
* @param {google.protobuf.MessageOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.MessageOptions$Properties); | |
/** | |
+ * MessageOptions message_set_wire_format. | |
* @type {boolean|undefined} | |
*/ | |
public message_set_wire_format?: boolean; | |
/** | |
+ * MessageOptions no_standard_descriptor_accessor. | |
* @type {boolean|undefined} | |
*/ | |
public no_standard_descriptor_accessor?: boolean; | |
/** | |
+ * MessageOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * MessageOptions map_entry. | |
* @type {boolean|undefined} | |
*/ | |
public map_entry?: boolean; | |
/** | |
+ * MessageOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * MessageOptions .gogoproto.goproto_getters. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_getters"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.goproto_stringer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_stringer"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.verbose_equal. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.verbose_equal"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.face. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.face"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.gostring. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.gostring"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.populate. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.populate"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.stringer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stringer"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.onlyone. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.onlyone"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.equal. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.equal"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.description. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.description"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.testgen. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.testgen"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.benchgen. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.benchgen"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.marshaler. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.marshaler"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.unmarshaler. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unmarshaler"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.stable_marshaler. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stable_marshaler"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.sizer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.sizer"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.unsafe_marshaler. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unsafe_marshaler"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.unsafe_unmarshaler. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.unsafe_unmarshaler"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.goproto_extensions_map. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_extensions_map"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.goproto_unrecognized. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_unrecognized"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.protosizer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.protosizer"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.compare. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.compare"]?: boolean; | |
/** | |
+ * MessageOptions .gogoproto.typedecl. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.typedecl"]?: boolean; | |
@@ -19621,7 +19825,7 @@ export namespace google { | |
/** | |
* Properties of a FieldOptions. | |
* @typedef google.protobuf.FieldOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {google.protobuf.FieldOptions.CType} [ctype] FieldOptions ctype. | |
* @property {boolean} [packed] FieldOptions packed. | |
* @property {google.protobuf.FieldOptions.JSType} [jstype] FieldOptions jstype. | |
@@ -19665,107 +19869,123 @@ export namespace google { | |
/** | |
* Constructs a new FieldOptions. | |
* @exports google.protobuf.FieldOptions | |
- * @implements google.protobuf.FieldOptions$Properties | |
* @constructor | |
* @param {google.protobuf.FieldOptions$Properties=} [properties] Properties to set | |
*/ | |
- class FieldOptions implements google.protobuf.FieldOptions$Properties { | |
+ class FieldOptions { | |
/** | |
* Constructs a new FieldOptions. | |
* @exports google.protobuf.FieldOptions | |
- * @implements google.protobuf.FieldOptions$Properties | |
* @constructor | |
* @param {google.protobuf.FieldOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.FieldOptions$Properties); | |
/** | |
+ * FieldOptions ctype. | |
* @type {google.protobuf.FieldOptions.CType|undefined} | |
*/ | |
public ctype?: google.protobuf.FieldOptions.CType; | |
/** | |
+ * FieldOptions packed. | |
* @type {boolean|undefined} | |
*/ | |
public packed?: boolean; | |
/** | |
+ * FieldOptions jstype. | |
* @type {google.protobuf.FieldOptions.JSType|undefined} | |
*/ | |
public jstype?: google.protobuf.FieldOptions.JSType; | |
/** | |
+ * FieldOptions lazy. | |
* @type {boolean|undefined} | |
*/ | |
public lazy?: boolean; | |
/** | |
+ * FieldOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * FieldOptions weak. | |
* @type {boolean|undefined} | |
*/ | |
public weak?: boolean; | |
/** | |
+ * FieldOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * FieldOptions .gogoproto.nullable. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.nullable"]?: boolean; | |
/** | |
+ * FieldOptions .gogoproto.embed. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.embed"]?: boolean; | |
/** | |
+ * FieldOptions .gogoproto.customtype. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.customtype"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.customname. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.customname"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.jsontag. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.jsontag"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.moretags. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.moretags"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.casttype. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.casttype"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.castkey. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.castkey"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.castvalue. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.castvalue"]?: string; | |
/** | |
+ * FieldOptions .gogoproto.stdtime. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stdtime"]?: boolean; | |
/** | |
+ * FieldOptions .gogoproto.stdduration. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.stdduration"]?: boolean; | |
@@ -19893,7 +20113,7 @@ export namespace google { | |
/** | |
* Properties of an OneofOptions. | |
* @typedef google.protobuf.OneofOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<google.protobuf.UninterpretedOption$Properties>} [uninterpreted_option] OneofOptions uninterpreted_option. | |
*/ | |
type OneofOptions$Properties = { | |
@@ -19903,22 +20123,21 @@ export namespace google { | |
/** | |
* Constructs a new OneofOptions. | |
* @exports google.protobuf.OneofOptions | |
- * @implements google.protobuf.OneofOptions$Properties | |
* @constructor | |
* @param {google.protobuf.OneofOptions$Properties=} [properties] Properties to set | |
*/ | |
- class OneofOptions implements google.protobuf.OneofOptions$Properties { | |
+ class OneofOptions { | |
/** | |
* Constructs a new OneofOptions. | |
* @exports google.protobuf.OneofOptions | |
- * @implements google.protobuf.OneofOptions$Properties | |
* @constructor | |
* @param {google.protobuf.OneofOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.OneofOptions$Properties); | |
/** | |
+ * OneofOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
@@ -20013,7 +20232,7 @@ export namespace google { | |
/** | |
* Properties of an EnumOptions. | |
* @typedef google.protobuf.EnumOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [allow_alias] EnumOptions allow_alias. | |
* @property {boolean} [deprecated] EnumOptions deprecated. | |
* @property {Array.<google.protobuf.UninterpretedOption$Properties>} [uninterpreted_option] EnumOptions uninterpreted_option. | |
@@ -20037,57 +20256,63 @@ export namespace google { | |
/** | |
* Constructs a new EnumOptions. | |
* @exports google.protobuf.EnumOptions | |
- * @implements google.protobuf.EnumOptions$Properties | |
* @constructor | |
* @param {google.protobuf.EnumOptions$Properties=} [properties] Properties to set | |
*/ | |
- class EnumOptions implements google.protobuf.EnumOptions$Properties { | |
+ class EnumOptions { | |
/** | |
* Constructs a new EnumOptions. | |
* @exports google.protobuf.EnumOptions | |
- * @implements google.protobuf.EnumOptions$Properties | |
* @constructor | |
* @param {google.protobuf.EnumOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.EnumOptions$Properties); | |
/** | |
+ * EnumOptions allow_alias. | |
* @type {boolean|undefined} | |
*/ | |
public allow_alias?: boolean; | |
/** | |
+ * EnumOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * EnumOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * EnumOptions .gogoproto.goproto_enum_prefix. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_enum_prefix"]?: boolean; | |
/** | |
+ * EnumOptions .gogoproto.goproto_enum_stringer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.goproto_enum_stringer"]?: boolean; | |
/** | |
+ * EnumOptions .gogoproto.enum_stringer. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.enum_stringer"]?: boolean; | |
/** | |
+ * EnumOptions .gogoproto.enum_customname. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.enum_customname"]?: string; | |
/** | |
+ * EnumOptions .gogoproto.enumdecl. | |
* @type {boolean|undefined} | |
*/ | |
public [".gogoproto.enumdecl"]?: boolean; | |
@@ -20182,7 +20407,7 @@ export namespace google { | |
/** | |
* Properties of an EnumValueOptions. | |
* @typedef google.protobuf.EnumValueOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [deprecated] EnumValueOptions deprecated. | |
* @property {Array.<google.protobuf.UninterpretedOption$Properties>} [uninterpreted_option] EnumValueOptions uninterpreted_option. | |
* @property {string} [".gogoproto.enumvalue_customname"] EnumValueOptions .gogoproto.enumvalue_customname. | |
@@ -20196,32 +20421,33 @@ export namespace google { | |
/** | |
* Constructs a new EnumValueOptions. | |
* @exports google.protobuf.EnumValueOptions | |
- * @implements google.protobuf.EnumValueOptions$Properties | |
* @constructor | |
* @param {google.protobuf.EnumValueOptions$Properties=} [properties] Properties to set | |
*/ | |
- class EnumValueOptions implements google.protobuf.EnumValueOptions$Properties { | |
+ class EnumValueOptions { | |
/** | |
* Constructs a new EnumValueOptions. | |
* @exports google.protobuf.EnumValueOptions | |
- * @implements google.protobuf.EnumValueOptions$Properties | |
* @constructor | |
* @param {google.protobuf.EnumValueOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.EnumValueOptions$Properties); | |
/** | |
+ * EnumValueOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * EnumValueOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * EnumValueOptions .gogoproto.enumvalue_customname. | |
* @type {string|undefined} | |
*/ | |
public [".gogoproto.enumvalue_customname"]?: string; | |
@@ -20316,7 +20542,7 @@ export namespace google { | |
/** | |
* Properties of a ServiceOptions. | |
* @typedef google.protobuf.ServiceOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [deprecated] ServiceOptions deprecated. | |
* @property {Array.<google.protobuf.UninterpretedOption$Properties>} [uninterpreted_option] ServiceOptions uninterpreted_option. | |
*/ | |
@@ -20328,27 +20554,27 @@ export namespace google { | |
/** | |
* Constructs a new ServiceOptions. | |
* @exports google.protobuf.ServiceOptions | |
- * @implements google.protobuf.ServiceOptions$Properties | |
* @constructor | |
* @param {google.protobuf.ServiceOptions$Properties=} [properties] Properties to set | |
*/ | |
- class ServiceOptions implements google.protobuf.ServiceOptions$Properties { | |
+ class ServiceOptions { | |
/** | |
* Constructs a new ServiceOptions. | |
* @exports google.protobuf.ServiceOptions | |
- * @implements google.protobuf.ServiceOptions$Properties | |
* @constructor | |
* @param {google.protobuf.ServiceOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.ServiceOptions$Properties); | |
/** | |
+ * ServiceOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * ServiceOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
@@ -20443,7 +20669,7 @@ export namespace google { | |
/** | |
* Properties of a MethodOptions. | |
* @typedef google.protobuf.MethodOptions$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {boolean} [deprecated] MethodOptions deprecated. | |
* @property {Array.<google.protobuf.UninterpretedOption$Properties>} [uninterpreted_option] MethodOptions uninterpreted_option. | |
* @property {google.api.HttpRule$Properties} [".google.api.http"] MethodOptions .google.api.http. | |
@@ -20457,32 +20683,33 @@ export namespace google { | |
/** | |
* Constructs a new MethodOptions. | |
* @exports google.protobuf.MethodOptions | |
- * @implements google.protobuf.MethodOptions$Properties | |
* @constructor | |
* @param {google.protobuf.MethodOptions$Properties=} [properties] Properties to set | |
*/ | |
- class MethodOptions implements google.protobuf.MethodOptions$Properties { | |
+ class MethodOptions { | |
/** | |
* Constructs a new MethodOptions. | |
* @exports google.protobuf.MethodOptions | |
- * @implements google.protobuf.MethodOptions$Properties | |
* @constructor | |
* @param {google.protobuf.MethodOptions$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.MethodOptions$Properties); | |
/** | |
+ * MethodOptions deprecated. | |
* @type {boolean|undefined} | |
*/ | |
public deprecated?: boolean; | |
/** | |
+ * MethodOptions uninterpreted_option. | |
* @type {Array.<google.protobuf.UninterpretedOption$Properties>|undefined} | |
*/ | |
public uninterpreted_option?: google.protobuf.UninterpretedOption$Properties[]; | |
/** | |
+ * MethodOptions .google.api.http. | |
* @type {google.api.HttpRule$Properties|undefined} | |
*/ | |
public [".google.api.http"]?: google.api.HttpRule$Properties; | |
@@ -20577,7 +20804,7 @@ export namespace google { | |
/** | |
* Properties of an UninterpretedOption. | |
* @typedef google.protobuf.UninterpretedOption$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<google.protobuf.UninterpretedOption.NamePart$Properties>} [name] UninterpretedOption name. | |
* @property {string} [identifier_value] UninterpretedOption identifier_value. | |
* @property {Long} [positive_int_value] UninterpretedOption positive_int_value. | |
@@ -20599,52 +20826,57 @@ export namespace google { | |
/** | |
* Constructs a new UninterpretedOption. | |
* @exports google.protobuf.UninterpretedOption | |
- * @implements google.protobuf.UninterpretedOption$Properties | |
* @constructor | |
* @param {google.protobuf.UninterpretedOption$Properties=} [properties] Properties to set | |
*/ | |
- class UninterpretedOption implements google.protobuf.UninterpretedOption$Properties { | |
+ class UninterpretedOption { | |
/** | |
* Constructs a new UninterpretedOption. | |
* @exports google.protobuf.UninterpretedOption | |
- * @implements google.protobuf.UninterpretedOption$Properties | |
* @constructor | |
* @param {google.protobuf.UninterpretedOption$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.UninterpretedOption$Properties); | |
/** | |
+ * UninterpretedOption name. | |
* @type {Array.<google.protobuf.UninterpretedOption.NamePart$Properties>|undefined} | |
*/ | |
public name?: google.protobuf.UninterpretedOption.NamePart$Properties[]; | |
/** | |
+ * UninterpretedOption identifier_value. | |
* @type {string|undefined} | |
*/ | |
public identifier_value?: string; | |
/** | |
+ * UninterpretedOption positive_int_value. | |
* @type {Long|undefined} | |
*/ | |
public positive_int_value?: Long; | |
/** | |
+ * UninterpretedOption negative_int_value. | |
* @type {Long|undefined} | |
*/ | |
public negative_int_value?: Long; | |
/** | |
+ * UninterpretedOption double_value. | |
* @type {number|undefined} | |
*/ | |
public double_value?: number; | |
/** | |
+ * UninterpretedOption string_value. | |
* @type {Uint8Array|undefined} | |
*/ | |
public string_value?: Uint8Array; | |
/** | |
+ * UninterpretedOption aggregate_value. | |
* @type {string|undefined} | |
*/ | |
public aggregate_value?: string; | |
@@ -20741,7 +20973,7 @@ export namespace google { | |
/** | |
* Properties of a NamePart. | |
* @typedef google.protobuf.UninterpretedOption.NamePart$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} name_part NamePart name_part. | |
* @property {boolean} is_extension NamePart is_extension. | |
*/ | |
@@ -20753,27 +20985,27 @@ export namespace google { | |
/** | |
* Constructs a new NamePart. | |
* @exports google.protobuf.UninterpretedOption.NamePart | |
- * @implements google.protobuf.UninterpretedOption.NamePart$Properties | |
* @constructor | |
* @param {google.protobuf.UninterpretedOption.NamePart$Properties=} [properties] Properties to set | |
*/ | |
- class NamePart implements google.protobuf.UninterpretedOption.NamePart$Properties { | |
+ class NamePart { | |
/** | |
* Constructs a new NamePart. | |
* @exports google.protobuf.UninterpretedOption.NamePart | |
- * @implements google.protobuf.UninterpretedOption.NamePart$Properties | |
* @constructor | |
* @param {google.protobuf.UninterpretedOption.NamePart$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.UninterpretedOption.NamePart$Properties); | |
/** | |
+ * NamePart name_part. | |
* @type {string} | |
*/ | |
public name_part: string; | |
/** | |
+ * NamePart is_extension. | |
* @type {boolean} | |
*/ | |
public is_extension: boolean; | |
@@ -20869,7 +21101,7 @@ export namespace google { | |
/** | |
* Properties of a SourceCodeInfo. | |
* @typedef google.protobuf.SourceCodeInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<google.protobuf.SourceCodeInfo.Location$Properties>} [location] SourceCodeInfo location. | |
*/ | |
type SourceCodeInfo$Properties = { | |
@@ -20879,22 +21111,21 @@ export namespace google { | |
/** | |
* Constructs a new SourceCodeInfo. | |
* @exports google.protobuf.SourceCodeInfo | |
- * @implements google.protobuf.SourceCodeInfo$Properties | |
* @constructor | |
* @param {google.protobuf.SourceCodeInfo$Properties=} [properties] Properties to set | |
*/ | |
- class SourceCodeInfo implements google.protobuf.SourceCodeInfo$Properties { | |
+ class SourceCodeInfo { | |
/** | |
* Constructs a new SourceCodeInfo. | |
* @exports google.protobuf.SourceCodeInfo | |
- * @implements google.protobuf.SourceCodeInfo$Properties | |
* @constructor | |
* @param {google.protobuf.SourceCodeInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.SourceCodeInfo$Properties); | |
/** | |
+ * SourceCodeInfo location. | |
* @type {Array.<google.protobuf.SourceCodeInfo.Location$Properties>|undefined} | |
*/ | |
public location?: google.protobuf.SourceCodeInfo.Location$Properties[]; | |
@@ -20991,7 +21222,7 @@ export namespace google { | |
/** | |
* Properties of a Location. | |
* @typedef google.protobuf.SourceCodeInfo.Location$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<number>} [path] Location path. | |
* @property {Array.<number>} [span] Location span. | |
* @property {string} [leading_comments] Location leading_comments. | |
@@ -21009,42 +21240,45 @@ export namespace google { | |
/** | |
* Constructs a new Location. | |
* @exports google.protobuf.SourceCodeInfo.Location | |
- * @implements google.protobuf.SourceCodeInfo.Location$Properties | |
* @constructor | |
* @param {google.protobuf.SourceCodeInfo.Location$Properties=} [properties] Properties to set | |
*/ | |
- class Location implements google.protobuf.SourceCodeInfo.Location$Properties { | |
+ class Location { | |
/** | |
* Constructs a new Location. | |
* @exports google.protobuf.SourceCodeInfo.Location | |
- * @implements google.protobuf.SourceCodeInfo.Location$Properties | |
* @constructor | |
* @param {google.protobuf.SourceCodeInfo.Location$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.SourceCodeInfo.Location$Properties); | |
/** | |
+ * Location path. | |
* @type {Array.<number>|undefined} | |
*/ | |
public path?: number[]; | |
/** | |
+ * Location span. | |
* @type {Array.<number>|undefined} | |
*/ | |
public span?: number[]; | |
/** | |
+ * Location leading_comments. | |
* @type {string|undefined} | |
*/ | |
public leading_comments?: string; | |
/** | |
+ * Location trailing_comments. | |
* @type {string|undefined} | |
*/ | |
public trailing_comments?: string; | |
/** | |
+ * Location leading_detached_comments. | |
* @type {Array.<string>|undefined} | |
*/ | |
public leading_detached_comments?: string[]; | |
@@ -21140,7 +21374,7 @@ export namespace google { | |
/** | |
* Properties of a GeneratedCodeInfo. | |
* @typedef google.protobuf.GeneratedCodeInfo$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<google.protobuf.GeneratedCodeInfo.Annotation$Properties>} [annotation] GeneratedCodeInfo annotation. | |
*/ | |
type GeneratedCodeInfo$Properties = { | |
@@ -21150,22 +21384,21 @@ export namespace google { | |
/** | |
* Constructs a new GeneratedCodeInfo. | |
* @exports google.protobuf.GeneratedCodeInfo | |
- * @implements google.protobuf.GeneratedCodeInfo$Properties | |
* @constructor | |
* @param {google.protobuf.GeneratedCodeInfo$Properties=} [properties] Properties to set | |
*/ | |
- class GeneratedCodeInfo implements google.protobuf.GeneratedCodeInfo$Properties { | |
+ class GeneratedCodeInfo { | |
/** | |
* Constructs a new GeneratedCodeInfo. | |
* @exports google.protobuf.GeneratedCodeInfo | |
- * @implements google.protobuf.GeneratedCodeInfo$Properties | |
* @constructor | |
* @param {google.protobuf.GeneratedCodeInfo$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.GeneratedCodeInfo$Properties); | |
/** | |
+ * GeneratedCodeInfo annotation. | |
* @type {Array.<google.protobuf.GeneratedCodeInfo.Annotation$Properties>|undefined} | |
*/ | |
public annotation?: google.protobuf.GeneratedCodeInfo.Annotation$Properties[]; | |
@@ -21262,7 +21495,7 @@ export namespace google { | |
/** | |
* Properties of an Annotation. | |
* @typedef google.protobuf.GeneratedCodeInfo.Annotation$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<number>} [path] Annotation path. | |
* @property {string} [source_file] Annotation source_file. | |
* @property {number} [begin] Annotation begin. | |
@@ -21278,37 +21511,39 @@ export namespace google { | |
/** | |
* Constructs a new Annotation. | |
* @exports google.protobuf.GeneratedCodeInfo.Annotation | |
- * @implements google.protobuf.GeneratedCodeInfo.Annotation$Properties | |
* @constructor | |
* @param {google.protobuf.GeneratedCodeInfo.Annotation$Properties=} [properties] Properties to set | |
*/ | |
- class Annotation implements google.protobuf.GeneratedCodeInfo.Annotation$Properties { | |
+ class Annotation { | |
/** | |
* Constructs a new Annotation. | |
* @exports google.protobuf.GeneratedCodeInfo.Annotation | |
- * @implements google.protobuf.GeneratedCodeInfo.Annotation$Properties | |
* @constructor | |
* @param {google.protobuf.GeneratedCodeInfo.Annotation$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.GeneratedCodeInfo.Annotation$Properties); | |
/** | |
+ * Annotation path. | |
* @type {Array.<number>|undefined} | |
*/ | |
public path?: number[]; | |
/** | |
+ * Annotation source_file. | |
* @type {string|undefined} | |
*/ | |
public source_file?: string; | |
/** | |
+ * Annotation begin. | |
* @type {number|undefined} | |
*/ | |
public begin?: number; | |
/** | |
+ * Annotation end. | |
* @type {number|undefined} | |
*/ | |
public end?: number; | |
@@ -21404,7 +21639,7 @@ export namespace google { | |
/** | |
* Properties of a Timestamp. | |
* @typedef google.protobuf.Timestamp$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [seconds] Timestamp seconds. | |
* @property {number} [nanos] Timestamp nanos. | |
*/ | |
@@ -21416,27 +21651,27 @@ export namespace google { | |
/** | |
* Constructs a new Timestamp. | |
* @exports google.protobuf.Timestamp | |
- * @implements google.protobuf.Timestamp$Properties | |
* @constructor | |
* @param {google.protobuf.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
- class Timestamp implements google.protobuf.Timestamp$Properties { | |
+ class Timestamp { | |
/** | |
* Constructs a new Timestamp. | |
* @exports google.protobuf.Timestamp | |
- * @implements google.protobuf.Timestamp$Properties | |
* @constructor | |
* @param {google.protobuf.Timestamp$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.protobuf.Timestamp$Properties); | |
/** | |
+ * Timestamp seconds. | |
* @type {Long|undefined} | |
*/ | |
public seconds?: Long; | |
/** | |
+ * Timestamp nanos. | |
* @type {number|undefined} | |
*/ | |
public nanos?: number; | |
@@ -21539,7 +21774,7 @@ export namespace google { | |
/** | |
* Properties of a HttpRule. | |
* @typedef google.api.HttpRule$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [get] HttpRule get. | |
* @property {string} [put] HttpRule put. | |
* @property {string} [post] HttpRule post. | |
@@ -21563,57 +21798,63 @@ export namespace google { | |
/** | |
* Constructs a new HttpRule. | |
* @exports google.api.HttpRule | |
- * @implements google.api.HttpRule$Properties | |
* @constructor | |
* @param {google.api.HttpRule$Properties=} [properties] Properties to set | |
*/ | |
- class HttpRule implements google.api.HttpRule$Properties { | |
+ class HttpRule { | |
/** | |
* Constructs a new HttpRule. | |
* @exports google.api.HttpRule | |
- * @implements google.api.HttpRule$Properties | |
* @constructor | |
* @param {google.api.HttpRule$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.api.HttpRule$Properties); | |
/** | |
+ * HttpRule get. | |
* @type {string|undefined} | |
*/ | |
public get?: string; | |
/** | |
+ * HttpRule put. | |
* @type {string|undefined} | |
*/ | |
public put?: string; | |
/** | |
+ * HttpRule post. | |
* @type {string|undefined} | |
*/ | |
public post?: string; | |
/** | |
+ * HttpRule delete. | |
* @type {string|undefined} | |
*/ | |
public ["delete"]?: string; | |
/** | |
+ * HttpRule patch. | |
* @type {string|undefined} | |
*/ | |
public patch?: string; | |
/** | |
+ * HttpRule custom. | |
* @type {google.api.CustomHttpPattern$Properties|undefined} | |
*/ | |
public custom?: google.api.CustomHttpPattern$Properties; | |
/** | |
+ * HttpRule body. | |
* @type {string|undefined} | |
*/ | |
public body?: string; | |
/** | |
+ * HttpRule additional_bindings. | |
* @type {Array.<google.api.HttpRule$Properties>|undefined} | |
*/ | |
public additional_bindings?: google.api.HttpRule$Properties[]; | |
@@ -21715,7 +21956,7 @@ export namespace google { | |
/** | |
* Properties of a CustomHttpPattern. | |
* @typedef google.api.CustomHttpPattern$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {string} [kind] CustomHttpPattern kind. | |
* @property {string} [path] CustomHttpPattern path. | |
*/ | |
@@ -21727,27 +21968,27 @@ export namespace google { | |
/** | |
* Constructs a new CustomHttpPattern. | |
* @exports google.api.CustomHttpPattern | |
- * @implements google.api.CustomHttpPattern$Properties | |
* @constructor | |
* @param {google.api.CustomHttpPattern$Properties=} [properties] Properties to set | |
*/ | |
- class CustomHttpPattern implements google.api.CustomHttpPattern$Properties { | |
+ class CustomHttpPattern { | |
/** | |
* Constructs a new CustomHttpPattern. | |
* @exports google.api.CustomHttpPattern | |
- * @implements google.api.CustomHttpPattern$Properties | |
* @constructor | |
* @param {google.api.CustomHttpPattern$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: google.api.CustomHttpPattern$Properties); | |
/** | |
+ * CustomHttpPattern kind. | |
* @type {string|undefined} | |
*/ | |
public kind?: string; | |
/** | |
+ * CustomHttpPattern path. | |
* @type {string|undefined} | |
*/ | |
public path?: string; | |
@@ -21864,7 +22105,7 @@ export namespace raftpb { | |
/** | |
* Properties of an Entry. | |
* @typedef raftpb.Entry$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [Term] Entry Term. | |
* @property {Long} [Index] Entry Index. | |
* @property {raftpb.EntryType} [Type] Entry Type. | |
@@ -21880,37 +22121,39 @@ export namespace raftpb { | |
/** | |
* Constructs a new Entry. | |
* @exports raftpb.Entry | |
- * @implements raftpb.Entry$Properties | |
* @constructor | |
* @param {raftpb.Entry$Properties=} [properties] Properties to set | |
*/ | |
- class Entry implements raftpb.Entry$Properties { | |
+ class Entry { | |
/** | |
* Constructs a new Entry. | |
* @exports raftpb.Entry | |
- * @implements raftpb.Entry$Properties | |
* @constructor | |
* @param {raftpb.Entry$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.Entry$Properties); | |
/** | |
+ * Entry Term. | |
* @type {Long|undefined} | |
*/ | |
public Term?: Long; | |
/** | |
+ * Entry Index. | |
* @type {Long|undefined} | |
*/ | |
public Index?: Long; | |
/** | |
+ * Entry Type. | |
* @type {raftpb.EntryType|undefined} | |
*/ | |
public Type?: raftpb.EntryType; | |
/** | |
+ * Entry Data. | |
* @type {Uint8Array|undefined} | |
*/ | |
public Data?: Uint8Array; | |
@@ -22005,7 +22248,7 @@ export namespace raftpb { | |
/** | |
* Properties of a SnapshotMetadata. | |
* @typedef raftpb.SnapshotMetadata$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {raftpb.ConfState$Properties} [conf_state] SnapshotMetadata conf_state. | |
* @property {Long} [index] SnapshotMetadata index. | |
* @property {Long} [term] SnapshotMetadata term. | |
@@ -22019,32 +22262,33 @@ export namespace raftpb { | |
/** | |
* Constructs a new SnapshotMetadata. | |
* @exports raftpb.SnapshotMetadata | |
- * @implements raftpb.SnapshotMetadata$Properties | |
* @constructor | |
* @param {raftpb.SnapshotMetadata$Properties=} [properties] Properties to set | |
*/ | |
- class SnapshotMetadata implements raftpb.SnapshotMetadata$Properties { | |
+ class SnapshotMetadata { | |
/** | |
* Constructs a new SnapshotMetadata. | |
* @exports raftpb.SnapshotMetadata | |
- * @implements raftpb.SnapshotMetadata$Properties | |
* @constructor | |
* @param {raftpb.SnapshotMetadata$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.SnapshotMetadata$Properties); | |
/** | |
+ * SnapshotMetadata conf_state. | |
* @type {raftpb.ConfState$Properties|undefined} | |
*/ | |
public conf_state?: raftpb.ConfState$Properties; | |
/** | |
+ * SnapshotMetadata index. | |
* @type {Long|undefined} | |
*/ | |
public index?: Long; | |
/** | |
+ * SnapshotMetadata term. | |
* @type {Long|undefined} | |
*/ | |
public term?: Long; | |
@@ -22139,7 +22383,7 @@ export namespace raftpb { | |
/** | |
* Properties of a Snapshot. | |
* @typedef raftpb.Snapshot$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Uint8Array} [data] Snapshot data. | |
* @property {raftpb.SnapshotMetadata$Properties} [metadata] Snapshot metadata. | |
*/ | |
@@ -22151,27 +22395,27 @@ export namespace raftpb { | |
/** | |
* Constructs a new Snapshot. | |
* @exports raftpb.Snapshot | |
- * @implements raftpb.Snapshot$Properties | |
* @constructor | |
* @param {raftpb.Snapshot$Properties=} [properties] Properties to set | |
*/ | |
- class Snapshot implements raftpb.Snapshot$Properties { | |
+ class Snapshot { | |
/** | |
* Constructs a new Snapshot. | |
* @exports raftpb.Snapshot | |
- * @implements raftpb.Snapshot$Properties | |
* @constructor | |
* @param {raftpb.Snapshot$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.Snapshot$Properties); | |
/** | |
+ * Snapshot data. | |
* @type {Uint8Array|undefined} | |
*/ | |
public data?: Uint8Array; | |
/** | |
+ * Snapshot metadata. | |
* @type {raftpb.SnapshotMetadata$Properties|undefined} | |
*/ | |
public metadata?: raftpb.SnapshotMetadata$Properties; | |
@@ -22313,7 +22557,7 @@ export namespace raftpb { | |
/** | |
* Properties of a Message. | |
* @typedef raftpb.Message$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {raftpb.MessageType} [type] Message type. | |
* @property {Long} [to] Message to. | |
* @property {Long} [from] Message from. | |
@@ -22345,77 +22589,87 @@ export namespace raftpb { | |
/** | |
* Constructs a new Message. | |
* @exports raftpb.Message | |
- * @implements raftpb.Message$Properties | |
* @constructor | |
* @param {raftpb.Message$Properties=} [properties] Properties to set | |
*/ | |
- class Message implements raftpb.Message$Properties { | |
+ class Message { | |
/** | |
* Constructs a new Message. | |
* @exports raftpb.Message | |
- * @implements raftpb.Message$Properties | |
* @constructor | |
* @param {raftpb.Message$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.Message$Properties); | |
/** | |
+ * Message type. | |
* @type {raftpb.MessageType|undefined} | |
*/ | |
public type?: raftpb.MessageType; | |
/** | |
+ * Message to. | |
* @type {Long|undefined} | |
*/ | |
public to?: Long; | |
/** | |
+ * Message from. | |
* @type {Long|undefined} | |
*/ | |
public from?: Long; | |
/** | |
+ * Message term. | |
* @type {Long|undefined} | |
*/ | |
public term?: Long; | |
/** | |
+ * Message logTerm. | |
* @type {Long|undefined} | |
*/ | |
public logTerm?: Long; | |
/** | |
+ * Message index. | |
* @type {Long|undefined} | |
*/ | |
public index?: Long; | |
/** | |
+ * Message entries. | |
* @type {Array.<raftpb.Entry$Properties>|undefined} | |
*/ | |
public entries?: raftpb.Entry$Properties[]; | |
/** | |
+ * Message commit. | |
* @type {Long|undefined} | |
*/ | |
public commit?: Long; | |
/** | |
+ * Message snapshot. | |
* @type {raftpb.Snapshot$Properties|undefined} | |
*/ | |
public snapshot?: raftpb.Snapshot$Properties; | |
/** | |
+ * Message reject. | |
* @type {boolean|undefined} | |
*/ | |
public reject?: boolean; | |
/** | |
+ * Message rejectHint. | |
* @type {Long|undefined} | |
*/ | |
public rejectHint?: Long; | |
/** | |
+ * Message context. | |
* @type {Uint8Array|undefined} | |
*/ | |
public context?: Uint8Array; | |
@@ -22510,7 +22764,7 @@ export namespace raftpb { | |
/** | |
* Properties of a HardState. | |
* @typedef raftpb.HardState$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [term] HardState term. | |
* @property {Long} [vote] HardState vote. | |
* @property {Long} [commit] HardState commit. | |
@@ -22524,32 +22778,33 @@ export namespace raftpb { | |
/** | |
* Constructs a new HardState. | |
* @exports raftpb.HardState | |
- * @implements raftpb.HardState$Properties | |
* @constructor | |
* @param {raftpb.HardState$Properties=} [properties] Properties to set | |
*/ | |
- class HardState implements raftpb.HardState$Properties { | |
+ class HardState { | |
/** | |
* Constructs a new HardState. | |
* @exports raftpb.HardState | |
- * @implements raftpb.HardState$Properties | |
* @constructor | |
* @param {raftpb.HardState$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.HardState$Properties); | |
/** | |
+ * HardState term. | |
* @type {Long|undefined} | |
*/ | |
public term?: Long; | |
/** | |
+ * HardState vote. | |
* @type {Long|undefined} | |
*/ | |
public vote?: Long; | |
/** | |
+ * HardState commit. | |
* @type {Long|undefined} | |
*/ | |
public commit?: Long; | |
@@ -22644,7 +22899,7 @@ export namespace raftpb { | |
/** | |
* Properties of a ConfState. | |
* @typedef raftpb.ConfState$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Array.<Long>} [nodes] ConfState nodes. | |
*/ | |
type ConfState$Properties = { | |
@@ -22654,22 +22909,21 @@ export namespace raftpb { | |
/** | |
* Constructs a new ConfState. | |
* @exports raftpb.ConfState | |
- * @implements raftpb.ConfState$Properties | |
* @constructor | |
* @param {raftpb.ConfState$Properties=} [properties] Properties to set | |
*/ | |
- class ConfState implements raftpb.ConfState$Properties { | |
+ class ConfState { | |
/** | |
* Constructs a new ConfState. | |
* @exports raftpb.ConfState | |
- * @implements raftpb.ConfState$Properties | |
* @constructor | |
* @param {raftpb.ConfState$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.ConfState$Properties); | |
/** | |
+ * ConfState nodes. | |
* @type {Array.<Long>|undefined} | |
*/ | |
public nodes?: Long[]; | |
@@ -22779,7 +23033,7 @@ export namespace raftpb { | |
/** | |
* Properties of a ConfChange. | |
* @typedef raftpb.ConfChange$Properties | |
- * @type Object | |
+ * @type {Object} | |
* @property {Long} [ID] ConfChange ID. | |
* @property {raftpb.ConfChangeType} [Type] ConfChange Type. | |
* @property {Long} [NodeID] ConfChange NodeID. | |
@@ -22795,37 +23049,39 @@ export namespace raftpb { | |
/** | |
* Constructs a new ConfChange. | |
* @exports raftpb.ConfChange | |
- * @implements raftpb.ConfChange$Properties | |
* @constructor | |
* @param {raftpb.ConfChange$Properties=} [properties] Properties to set | |
*/ | |
- class ConfChange implements raftpb.ConfChange$Properties { | |
+ class ConfChange { | |
/** | |
* Constructs a new ConfChange. | |
* @exports raftpb.ConfChange | |
- * @implements raftpb.ConfChange$Properties | |
* @constructor | |
* @param {raftpb.ConfChange$Properties=} [properties] Properties to set | |
*/ | |
constructor(properties?: raftpb.ConfChange$Properties); | |
/** | |
+ * ConfChange ID. | |
* @type {Long|undefined} | |
*/ | |
public ID?: Long; | |
/** | |
+ * ConfChange Type. | |
* @type {raftpb.ConfChangeType|undefined} | |
*/ | |
public Type?: raftpb.ConfChangeType; | |
/** | |
+ * ConfChange NodeID. | |
* @type {Long|undefined} | |
*/ | |
public NodeID?: Long; | |
/** | |
+ * ConfChange Context. | |
* @type {Uint8Array|undefined} | |
*/ | |
public Context?: Uint8Array; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment