@google-cloud/dms 5.0.0 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/protos/protos.d.ts
CHANGED
|
@@ -18063,6 +18063,9 @@ export namespace google {
|
|
|
18063
18063
|
|
|
18064
18064
|
/** PhpSettings common */
|
|
18065
18065
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
18066
|
+
|
|
18067
|
+
/** PhpSettings libraryPackage */
|
|
18068
|
+
libraryPackage?: (string|null);
|
|
18066
18069
|
}
|
|
18067
18070
|
|
|
18068
18071
|
/** Represents a PhpSettings. */
|
|
@@ -18077,6 +18080,9 @@ export namespace google {
|
|
|
18077
18080
|
/** PhpSettings common. */
|
|
18078
18081
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18079
18082
|
|
|
18083
|
+
/** PhpSettings libraryPackage. */
|
|
18084
|
+
public libraryPackage: string;
|
|
18085
|
+
|
|
18080
18086
|
/**
|
|
18081
18087
|
* Creates a new PhpSettings instance using the specified properties.
|
|
18082
18088
|
* @param [properties] Properties to set
|
|
@@ -18805,6 +18811,9 @@ export namespace google {
|
|
|
18805
18811
|
|
|
18806
18812
|
/** MethodSettings autoPopulatedFields */
|
|
18807
18813
|
autoPopulatedFields?: (string[]|null);
|
|
18814
|
+
|
|
18815
|
+
/** MethodSettings batching */
|
|
18816
|
+
batching?: (google.api.IBatchingConfigProto|null);
|
|
18808
18817
|
}
|
|
18809
18818
|
|
|
18810
18819
|
/** Represents a MethodSettings. */
|
|
@@ -18825,6 +18834,9 @@ export namespace google {
|
|
|
18825
18834
|
/** MethodSettings autoPopulatedFields. */
|
|
18826
18835
|
public autoPopulatedFields: string[];
|
|
18827
18836
|
|
|
18837
|
+
/** MethodSettings batching. */
|
|
18838
|
+
public batching?: (google.api.IBatchingConfigProto|null);
|
|
18839
|
+
|
|
18828
18840
|
/**
|
|
18829
18841
|
* Creates a new MethodSettings instance using the specified properties.
|
|
18830
18842
|
* @param [properties] Properties to set
|
|
@@ -19143,6 +19155,365 @@ export namespace google {
|
|
|
19143
19155
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19144
19156
|
}
|
|
19145
19157
|
|
|
19158
|
+
/** Properties of a BatchingConfigProto. */
|
|
19159
|
+
interface IBatchingConfigProto {
|
|
19160
|
+
|
|
19161
|
+
/** BatchingConfigProto thresholds */
|
|
19162
|
+
thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
19163
|
+
|
|
19164
|
+
/** BatchingConfigProto batchDescriptor */
|
|
19165
|
+
batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
19166
|
+
}
|
|
19167
|
+
|
|
19168
|
+
/** Represents a BatchingConfigProto. */
|
|
19169
|
+
class BatchingConfigProto implements IBatchingConfigProto {
|
|
19170
|
+
|
|
19171
|
+
/**
|
|
19172
|
+
* Constructs a new BatchingConfigProto.
|
|
19173
|
+
* @param [properties] Properties to set
|
|
19174
|
+
*/
|
|
19175
|
+
constructor(properties?: google.api.IBatchingConfigProto);
|
|
19176
|
+
|
|
19177
|
+
/** BatchingConfigProto thresholds. */
|
|
19178
|
+
public thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
19179
|
+
|
|
19180
|
+
/** BatchingConfigProto batchDescriptor. */
|
|
19181
|
+
public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
19182
|
+
|
|
19183
|
+
/**
|
|
19184
|
+
* Creates a new BatchingConfigProto instance using the specified properties.
|
|
19185
|
+
* @param [properties] Properties to set
|
|
19186
|
+
* @returns BatchingConfigProto instance
|
|
19187
|
+
*/
|
|
19188
|
+
public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
|
|
19189
|
+
|
|
19190
|
+
/**
|
|
19191
|
+
* Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
19192
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
19193
|
+
* @param [writer] Writer to encode to
|
|
19194
|
+
* @returns Writer
|
|
19195
|
+
*/
|
|
19196
|
+
public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19197
|
+
|
|
19198
|
+
/**
|
|
19199
|
+
* Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
19200
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
19201
|
+
* @param [writer] Writer to encode to
|
|
19202
|
+
* @returns Writer
|
|
19203
|
+
*/
|
|
19204
|
+
public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19205
|
+
|
|
19206
|
+
/**
|
|
19207
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer.
|
|
19208
|
+
* @param reader Reader or buffer to decode from
|
|
19209
|
+
* @param [length] Message length if known beforehand
|
|
19210
|
+
* @returns BatchingConfigProto
|
|
19211
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19212
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19213
|
+
*/
|
|
19214
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
|
|
19215
|
+
|
|
19216
|
+
/**
|
|
19217
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
|
|
19218
|
+
* @param reader Reader or buffer to decode from
|
|
19219
|
+
* @returns BatchingConfigProto
|
|
19220
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19221
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19222
|
+
*/
|
|
19223
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
|
|
19224
|
+
|
|
19225
|
+
/**
|
|
19226
|
+
* Verifies a BatchingConfigProto message.
|
|
19227
|
+
* @param message Plain object to verify
|
|
19228
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19229
|
+
*/
|
|
19230
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19231
|
+
|
|
19232
|
+
/**
|
|
19233
|
+
* Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
|
|
19234
|
+
* @param object Plain object
|
|
19235
|
+
* @returns BatchingConfigProto
|
|
19236
|
+
*/
|
|
19237
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
|
|
19238
|
+
|
|
19239
|
+
/**
|
|
19240
|
+
* Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
|
|
19241
|
+
* @param message BatchingConfigProto
|
|
19242
|
+
* @param [options] Conversion options
|
|
19243
|
+
* @returns Plain object
|
|
19244
|
+
*/
|
|
19245
|
+
public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
19246
|
+
|
|
19247
|
+
/**
|
|
19248
|
+
* Converts this BatchingConfigProto to JSON.
|
|
19249
|
+
* @returns JSON object
|
|
19250
|
+
*/
|
|
19251
|
+
public toJSON(): { [k: string]: any };
|
|
19252
|
+
|
|
19253
|
+
/**
|
|
19254
|
+
* Gets the default type url for BatchingConfigProto
|
|
19255
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
19256
|
+
* @returns The default type url
|
|
19257
|
+
*/
|
|
19258
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19259
|
+
}
|
|
19260
|
+
|
|
19261
|
+
/** Properties of a BatchingSettingsProto. */
|
|
19262
|
+
interface IBatchingSettingsProto {
|
|
19263
|
+
|
|
19264
|
+
/** BatchingSettingsProto elementCountThreshold */
|
|
19265
|
+
elementCountThreshold?: (number|null);
|
|
19266
|
+
|
|
19267
|
+
/** BatchingSettingsProto requestByteThreshold */
|
|
19268
|
+
requestByteThreshold?: (number|Long|string|null);
|
|
19269
|
+
|
|
19270
|
+
/** BatchingSettingsProto delayThreshold */
|
|
19271
|
+
delayThreshold?: (google.protobuf.IDuration|null);
|
|
19272
|
+
|
|
19273
|
+
/** BatchingSettingsProto elementCountLimit */
|
|
19274
|
+
elementCountLimit?: (number|null);
|
|
19275
|
+
|
|
19276
|
+
/** BatchingSettingsProto requestByteLimit */
|
|
19277
|
+
requestByteLimit?: (number|null);
|
|
19278
|
+
|
|
19279
|
+
/** BatchingSettingsProto flowControlElementLimit */
|
|
19280
|
+
flowControlElementLimit?: (number|null);
|
|
19281
|
+
|
|
19282
|
+
/** BatchingSettingsProto flowControlByteLimit */
|
|
19283
|
+
flowControlByteLimit?: (number|null);
|
|
19284
|
+
|
|
19285
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior */
|
|
19286
|
+
flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
|
|
19287
|
+
}
|
|
19288
|
+
|
|
19289
|
+
/** Represents a BatchingSettingsProto. */
|
|
19290
|
+
class BatchingSettingsProto implements IBatchingSettingsProto {
|
|
19291
|
+
|
|
19292
|
+
/**
|
|
19293
|
+
* Constructs a new BatchingSettingsProto.
|
|
19294
|
+
* @param [properties] Properties to set
|
|
19295
|
+
*/
|
|
19296
|
+
constructor(properties?: google.api.IBatchingSettingsProto);
|
|
19297
|
+
|
|
19298
|
+
/** BatchingSettingsProto elementCountThreshold. */
|
|
19299
|
+
public elementCountThreshold: number;
|
|
19300
|
+
|
|
19301
|
+
/** BatchingSettingsProto requestByteThreshold. */
|
|
19302
|
+
public requestByteThreshold: (number|Long|string);
|
|
19303
|
+
|
|
19304
|
+
/** BatchingSettingsProto delayThreshold. */
|
|
19305
|
+
public delayThreshold?: (google.protobuf.IDuration|null);
|
|
19306
|
+
|
|
19307
|
+
/** BatchingSettingsProto elementCountLimit. */
|
|
19308
|
+
public elementCountLimit: number;
|
|
19309
|
+
|
|
19310
|
+
/** BatchingSettingsProto requestByteLimit. */
|
|
19311
|
+
public requestByteLimit: number;
|
|
19312
|
+
|
|
19313
|
+
/** BatchingSettingsProto flowControlElementLimit. */
|
|
19314
|
+
public flowControlElementLimit: number;
|
|
19315
|
+
|
|
19316
|
+
/** BatchingSettingsProto flowControlByteLimit. */
|
|
19317
|
+
public flowControlByteLimit: number;
|
|
19318
|
+
|
|
19319
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior. */
|
|
19320
|
+
public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
|
|
19321
|
+
|
|
19322
|
+
/**
|
|
19323
|
+
* Creates a new BatchingSettingsProto instance using the specified properties.
|
|
19324
|
+
* @param [properties] Properties to set
|
|
19325
|
+
* @returns BatchingSettingsProto instance
|
|
19326
|
+
*/
|
|
19327
|
+
public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
|
|
19328
|
+
|
|
19329
|
+
/**
|
|
19330
|
+
* Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
19331
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
19332
|
+
* @param [writer] Writer to encode to
|
|
19333
|
+
* @returns Writer
|
|
19334
|
+
*/
|
|
19335
|
+
public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19336
|
+
|
|
19337
|
+
/**
|
|
19338
|
+
* Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
19339
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
19340
|
+
* @param [writer] Writer to encode to
|
|
19341
|
+
* @returns Writer
|
|
19342
|
+
*/
|
|
19343
|
+
public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19344
|
+
|
|
19345
|
+
/**
|
|
19346
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer.
|
|
19347
|
+
* @param reader Reader or buffer to decode from
|
|
19348
|
+
* @param [length] Message length if known beforehand
|
|
19349
|
+
* @returns BatchingSettingsProto
|
|
19350
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19351
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19352
|
+
*/
|
|
19353
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
|
|
19354
|
+
|
|
19355
|
+
/**
|
|
19356
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
|
|
19357
|
+
* @param reader Reader or buffer to decode from
|
|
19358
|
+
* @returns BatchingSettingsProto
|
|
19359
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19360
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19361
|
+
*/
|
|
19362
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
|
|
19363
|
+
|
|
19364
|
+
/**
|
|
19365
|
+
* Verifies a BatchingSettingsProto message.
|
|
19366
|
+
* @param message Plain object to verify
|
|
19367
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19368
|
+
*/
|
|
19369
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19370
|
+
|
|
19371
|
+
/**
|
|
19372
|
+
* Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
|
|
19373
|
+
* @param object Plain object
|
|
19374
|
+
* @returns BatchingSettingsProto
|
|
19375
|
+
*/
|
|
19376
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
|
|
19377
|
+
|
|
19378
|
+
/**
|
|
19379
|
+
* Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
|
|
19380
|
+
* @param message BatchingSettingsProto
|
|
19381
|
+
* @param [options] Conversion options
|
|
19382
|
+
* @returns Plain object
|
|
19383
|
+
*/
|
|
19384
|
+
public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
19385
|
+
|
|
19386
|
+
/**
|
|
19387
|
+
* Converts this BatchingSettingsProto to JSON.
|
|
19388
|
+
* @returns JSON object
|
|
19389
|
+
*/
|
|
19390
|
+
public toJSON(): { [k: string]: any };
|
|
19391
|
+
|
|
19392
|
+
/**
|
|
19393
|
+
* Gets the default type url for BatchingSettingsProto
|
|
19394
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
19395
|
+
* @returns The default type url
|
|
19396
|
+
*/
|
|
19397
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19398
|
+
}
|
|
19399
|
+
|
|
19400
|
+
/** FlowControlLimitExceededBehaviorProto enum. */
|
|
19401
|
+
enum FlowControlLimitExceededBehaviorProto {
|
|
19402
|
+
UNSET_BEHAVIOR = 0,
|
|
19403
|
+
THROW_EXCEPTION = 1,
|
|
19404
|
+
BLOCK = 2,
|
|
19405
|
+
IGNORE = 3
|
|
19406
|
+
}
|
|
19407
|
+
|
|
19408
|
+
/** Properties of a BatchingDescriptorProto. */
|
|
19409
|
+
interface IBatchingDescriptorProto {
|
|
19410
|
+
|
|
19411
|
+
/** BatchingDescriptorProto batchedField */
|
|
19412
|
+
batchedField?: (string|null);
|
|
19413
|
+
|
|
19414
|
+
/** BatchingDescriptorProto discriminatorFields */
|
|
19415
|
+
discriminatorFields?: (string[]|null);
|
|
19416
|
+
|
|
19417
|
+
/** BatchingDescriptorProto subresponseField */
|
|
19418
|
+
subresponseField?: (string|null);
|
|
19419
|
+
}
|
|
19420
|
+
|
|
19421
|
+
/** Represents a BatchingDescriptorProto. */
|
|
19422
|
+
class BatchingDescriptorProto implements IBatchingDescriptorProto {
|
|
19423
|
+
|
|
19424
|
+
/**
|
|
19425
|
+
* Constructs a new BatchingDescriptorProto.
|
|
19426
|
+
* @param [properties] Properties to set
|
|
19427
|
+
*/
|
|
19428
|
+
constructor(properties?: google.api.IBatchingDescriptorProto);
|
|
19429
|
+
|
|
19430
|
+
/** BatchingDescriptorProto batchedField. */
|
|
19431
|
+
public batchedField: string;
|
|
19432
|
+
|
|
19433
|
+
/** BatchingDescriptorProto discriminatorFields. */
|
|
19434
|
+
public discriminatorFields: string[];
|
|
19435
|
+
|
|
19436
|
+
/** BatchingDescriptorProto subresponseField. */
|
|
19437
|
+
public subresponseField: string;
|
|
19438
|
+
|
|
19439
|
+
/**
|
|
19440
|
+
* Creates a new BatchingDescriptorProto instance using the specified properties.
|
|
19441
|
+
* @param [properties] Properties to set
|
|
19442
|
+
* @returns BatchingDescriptorProto instance
|
|
19443
|
+
*/
|
|
19444
|
+
public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
|
|
19445
|
+
|
|
19446
|
+
/**
|
|
19447
|
+
* Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
19448
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
19449
|
+
* @param [writer] Writer to encode to
|
|
19450
|
+
* @returns Writer
|
|
19451
|
+
*/
|
|
19452
|
+
public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19453
|
+
|
|
19454
|
+
/**
|
|
19455
|
+
* Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
19456
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
19457
|
+
* @param [writer] Writer to encode to
|
|
19458
|
+
* @returns Writer
|
|
19459
|
+
*/
|
|
19460
|
+
public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19461
|
+
|
|
19462
|
+
/**
|
|
19463
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer.
|
|
19464
|
+
* @param reader Reader or buffer to decode from
|
|
19465
|
+
* @param [length] Message length if known beforehand
|
|
19466
|
+
* @returns BatchingDescriptorProto
|
|
19467
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19468
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19469
|
+
*/
|
|
19470
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
|
|
19471
|
+
|
|
19472
|
+
/**
|
|
19473
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
|
|
19474
|
+
* @param reader Reader or buffer to decode from
|
|
19475
|
+
* @returns BatchingDescriptorProto
|
|
19476
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19477
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19478
|
+
*/
|
|
19479
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
|
|
19480
|
+
|
|
19481
|
+
/**
|
|
19482
|
+
* Verifies a BatchingDescriptorProto message.
|
|
19483
|
+
* @param message Plain object to verify
|
|
19484
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19485
|
+
*/
|
|
19486
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19487
|
+
|
|
19488
|
+
/**
|
|
19489
|
+
* Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
|
|
19490
|
+
* @param object Plain object
|
|
19491
|
+
* @returns BatchingDescriptorProto
|
|
19492
|
+
*/
|
|
19493
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
|
|
19494
|
+
|
|
19495
|
+
/**
|
|
19496
|
+
* Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
|
|
19497
|
+
* @param message BatchingDescriptorProto
|
|
19498
|
+
* @param [options] Conversion options
|
|
19499
|
+
* @returns Plain object
|
|
19500
|
+
*/
|
|
19501
|
+
public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
19502
|
+
|
|
19503
|
+
/**
|
|
19504
|
+
* Converts this BatchingDescriptorProto to JSON.
|
|
19505
|
+
* @returns JSON object
|
|
19506
|
+
*/
|
|
19507
|
+
public toJSON(): { [k: string]: any };
|
|
19508
|
+
|
|
19509
|
+
/**
|
|
19510
|
+
* Gets the default type url for BatchingDescriptorProto
|
|
19511
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
19512
|
+
* @returns The default type url
|
|
19513
|
+
*/
|
|
19514
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19515
|
+
}
|
|
19516
|
+
|
|
19146
19517
|
/** LaunchStage enum. */
|
|
19147
19518
|
enum LaunchStage {
|
|
19148
19519
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
@@ -19529,6 +19900,8 @@ export namespace google {
|
|
|
19529
19900
|
EDITION_PROTO3 = 999,
|
|
19530
19901
|
EDITION_2023 = 1000,
|
|
19531
19902
|
EDITION_2024 = 1001,
|
|
19903
|
+
EDITION_2026 = 1002,
|
|
19904
|
+
EDITION_UNSTABLE = 9999,
|
|
19532
19905
|
EDITION_1_TEST_ONLY = 1,
|
|
19533
19906
|
EDITION_2_TEST_ONLY = 2,
|
|
19534
19907
|
EDITION_99997_TEST_ONLY = 99997,
|
|
@@ -21900,6 +22273,9 @@ export namespace google {
|
|
|
21900
22273
|
|
|
21901
22274
|
/** FeatureSupport editionRemoved */
|
|
21902
22275
|
editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22276
|
+
|
|
22277
|
+
/** FeatureSupport removalError */
|
|
22278
|
+
removalError?: (string|null);
|
|
21903
22279
|
}
|
|
21904
22280
|
|
|
21905
22281
|
/** Represents a FeatureSupport. */
|
|
@@ -21923,6 +22299,9 @@ export namespace google {
|
|
|
21923
22299
|
/** FeatureSupport editionRemoved. */
|
|
21924
22300
|
public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
21925
22301
|
|
|
22302
|
+
/** FeatureSupport removalError. */
|
|
22303
|
+
public removalError: string;
|
|
22304
|
+
|
|
21926
22305
|
/**
|
|
21927
22306
|
* Creates a new FeatureSupport instance using the specified properties.
|
|
21928
22307
|
* @param [properties] Properties to set
|
|
@@ -22864,6 +23243,9 @@ export namespace google {
|
|
|
22864
23243
|
|
|
22865
23244
|
/** FeatureSet defaultSymbolVisibility */
|
|
22866
23245
|
defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
|
|
23246
|
+
|
|
23247
|
+
/** FeatureSet enforceProtoLimits */
|
|
23248
|
+
enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
|
|
22867
23249
|
}
|
|
22868
23250
|
|
|
22869
23251
|
/** Represents a FeatureSet. */
|
|
@@ -22899,6 +23281,9 @@ export namespace google {
|
|
|
22899
23281
|
/** FeatureSet defaultSymbolVisibility. */
|
|
22900
23282
|
public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
|
|
22901
23283
|
|
|
23284
|
+
/** FeatureSet enforceProtoLimits. */
|
|
23285
|
+
public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
|
|
23286
|
+
|
|
22902
23287
|
/**
|
|
22903
23288
|
* Creates a new FeatureSet instance using the specified properties.
|
|
22904
23289
|
* @param [properties] Properties to set
|
|
@@ -23026,7 +23411,8 @@ export namespace google {
|
|
|
23026
23411
|
enum EnforceNamingStyle {
|
|
23027
23412
|
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
23028
23413
|
STYLE2024 = 1,
|
|
23029
|
-
STYLE_LEGACY = 2
|
|
23414
|
+
STYLE_LEGACY = 2,
|
|
23415
|
+
STYLE2026 = 3
|
|
23030
23416
|
}
|
|
23031
23417
|
|
|
23032
23418
|
/** Properties of a VisibilityFeature. */
|
|
@@ -23131,6 +23517,107 @@ export namespace google {
|
|
|
23131
23517
|
STRICT = 4
|
|
23132
23518
|
}
|
|
23133
23519
|
}
|
|
23520
|
+
|
|
23521
|
+
/** Properties of a ProtoLimitsFeature. */
|
|
23522
|
+
interface IProtoLimitsFeature {
|
|
23523
|
+
}
|
|
23524
|
+
|
|
23525
|
+
/** Represents a ProtoLimitsFeature. */
|
|
23526
|
+
class ProtoLimitsFeature implements IProtoLimitsFeature {
|
|
23527
|
+
|
|
23528
|
+
/**
|
|
23529
|
+
* Constructs a new ProtoLimitsFeature.
|
|
23530
|
+
* @param [properties] Properties to set
|
|
23531
|
+
*/
|
|
23532
|
+
constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
|
|
23533
|
+
|
|
23534
|
+
/**
|
|
23535
|
+
* Creates a new ProtoLimitsFeature instance using the specified properties.
|
|
23536
|
+
* @param [properties] Properties to set
|
|
23537
|
+
* @returns ProtoLimitsFeature instance
|
|
23538
|
+
*/
|
|
23539
|
+
public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
23540
|
+
|
|
23541
|
+
/**
|
|
23542
|
+
* Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
23543
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
23544
|
+
* @param [writer] Writer to encode to
|
|
23545
|
+
* @returns Writer
|
|
23546
|
+
*/
|
|
23547
|
+
public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23548
|
+
|
|
23549
|
+
/**
|
|
23550
|
+
* Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
23551
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
23552
|
+
* @param [writer] Writer to encode to
|
|
23553
|
+
* @returns Writer
|
|
23554
|
+
*/
|
|
23555
|
+
public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23556
|
+
|
|
23557
|
+
/**
|
|
23558
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer.
|
|
23559
|
+
* @param reader Reader or buffer to decode from
|
|
23560
|
+
* @param [length] Message length if known beforehand
|
|
23561
|
+
* @returns ProtoLimitsFeature
|
|
23562
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23563
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23564
|
+
*/
|
|
23565
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
23566
|
+
|
|
23567
|
+
/**
|
|
23568
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
|
|
23569
|
+
* @param reader Reader or buffer to decode from
|
|
23570
|
+
* @returns ProtoLimitsFeature
|
|
23571
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23572
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23573
|
+
*/
|
|
23574
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
23575
|
+
|
|
23576
|
+
/**
|
|
23577
|
+
* Verifies a ProtoLimitsFeature message.
|
|
23578
|
+
* @param message Plain object to verify
|
|
23579
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
23580
|
+
*/
|
|
23581
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
23582
|
+
|
|
23583
|
+
/**
|
|
23584
|
+
* Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
|
|
23585
|
+
* @param object Plain object
|
|
23586
|
+
* @returns ProtoLimitsFeature
|
|
23587
|
+
*/
|
|
23588
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
23589
|
+
|
|
23590
|
+
/**
|
|
23591
|
+
* Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
|
|
23592
|
+
* @param message ProtoLimitsFeature
|
|
23593
|
+
* @param [options] Conversion options
|
|
23594
|
+
* @returns Plain object
|
|
23595
|
+
*/
|
|
23596
|
+
public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
23597
|
+
|
|
23598
|
+
/**
|
|
23599
|
+
* Converts this ProtoLimitsFeature to JSON.
|
|
23600
|
+
* @returns JSON object
|
|
23601
|
+
*/
|
|
23602
|
+
public toJSON(): { [k: string]: any };
|
|
23603
|
+
|
|
23604
|
+
/**
|
|
23605
|
+
* Gets the default type url for ProtoLimitsFeature
|
|
23606
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
23607
|
+
* @returns The default type url
|
|
23608
|
+
*/
|
|
23609
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23610
|
+
}
|
|
23611
|
+
|
|
23612
|
+
namespace ProtoLimitsFeature {
|
|
23613
|
+
|
|
23614
|
+
/** EnforceProtoLimits enum. */
|
|
23615
|
+
enum EnforceProtoLimits {
|
|
23616
|
+
PROTO_LIMITS_UNKNOWN = 0,
|
|
23617
|
+
LEGACY_NO_EXPLICIT_LIMITS = 1,
|
|
23618
|
+
PROTO_LIMITS2026 = 2
|
|
23619
|
+
}
|
|
23620
|
+
}
|
|
23134
23621
|
}
|
|
23135
23622
|
|
|
23136
23623
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -25993,6 +26480,9 @@ export namespace google {
|
|
|
25993
26480
|
|
|
25994
26481
|
/** ListOperationsRequest pageToken */
|
|
25995
26482
|
pageToken?: (string|null);
|
|
26483
|
+
|
|
26484
|
+
/** ListOperationsRequest returnPartialSuccess */
|
|
26485
|
+
returnPartialSuccess?: (boolean|null);
|
|
25996
26486
|
}
|
|
25997
26487
|
|
|
25998
26488
|
/** Represents a ListOperationsRequest. */
|
|
@@ -26016,6 +26506,9 @@ export namespace google {
|
|
|
26016
26506
|
/** ListOperationsRequest pageToken. */
|
|
26017
26507
|
public pageToken: string;
|
|
26018
26508
|
|
|
26509
|
+
/** ListOperationsRequest returnPartialSuccess. */
|
|
26510
|
+
public returnPartialSuccess: boolean;
|
|
26511
|
+
|
|
26019
26512
|
/**
|
|
26020
26513
|
* Creates a new ListOperationsRequest instance using the specified properties.
|
|
26021
26514
|
* @param [properties] Properties to set
|
|
@@ -26102,6 +26595,9 @@ export namespace google {
|
|
|
26102
26595
|
|
|
26103
26596
|
/** ListOperationsResponse nextPageToken */
|
|
26104
26597
|
nextPageToken?: (string|null);
|
|
26598
|
+
|
|
26599
|
+
/** ListOperationsResponse unreachable */
|
|
26600
|
+
unreachable?: (string[]|null);
|
|
26105
26601
|
}
|
|
26106
26602
|
|
|
26107
26603
|
/** Represents a ListOperationsResponse. */
|
|
@@ -26119,6 +26615,9 @@ export namespace google {
|
|
|
26119
26615
|
/** ListOperationsResponse nextPageToken. */
|
|
26120
26616
|
public nextPageToken: string;
|
|
26121
26617
|
|
|
26618
|
+
/** ListOperationsResponse unreachable. */
|
|
26619
|
+
public unreachable: string[];
|
|
26620
|
+
|
|
26122
26621
|
/**
|
|
26123
26622
|
* Creates a new ListOperationsResponse instance using the specified properties.
|
|
26124
26623
|
* @param [properties] Properties to set
|