@google-cloud/dms 4.1.2 → 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/README.md +2 -3
- package/build/protos/protos.d.ts +1033 -20
- package/build/protos/protos.js +1 -68257
- package/build/protos/protos.json +368 -27
- package/build/src/v1/data_migration_service_client.d.ts +339 -339
- package/build/src/v1/data_migration_service_client.js +716 -347
- package/package.json +9 -12
package/build/protos/protos.d.ts
CHANGED
|
@@ -17437,6 +17437,9 @@ export namespace google {
|
|
|
17437
17437
|
|
|
17438
17438
|
/** CommonLanguageSettings destinations */
|
|
17439
17439
|
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
17440
|
+
|
|
17441
|
+
/** CommonLanguageSettings selectiveGapicGeneration */
|
|
17442
|
+
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
17440
17443
|
}
|
|
17441
17444
|
|
|
17442
17445
|
/** Represents a CommonLanguageSettings. */
|
|
@@ -17454,6 +17457,9 @@ export namespace google {
|
|
|
17454
17457
|
/** CommonLanguageSettings destinations. */
|
|
17455
17458
|
public destinations: google.api.ClientLibraryDestination[];
|
|
17456
17459
|
|
|
17460
|
+
/** CommonLanguageSettings selectiveGapicGeneration. */
|
|
17461
|
+
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
17462
|
+
|
|
17457
17463
|
/**
|
|
17458
17464
|
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
17459
17465
|
* @param [properties] Properties to set
|
|
@@ -18057,6 +18063,9 @@ export namespace google {
|
|
|
18057
18063
|
|
|
18058
18064
|
/** PhpSettings common */
|
|
18059
18065
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
18066
|
+
|
|
18067
|
+
/** PhpSettings libraryPackage */
|
|
18068
|
+
libraryPackage?: (string|null);
|
|
18060
18069
|
}
|
|
18061
18070
|
|
|
18062
18071
|
/** Represents a PhpSettings. */
|
|
@@ -18071,6 +18080,9 @@ export namespace google {
|
|
|
18071
18080
|
/** PhpSettings common. */
|
|
18072
18081
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18073
18082
|
|
|
18083
|
+
/** PhpSettings libraryPackage. */
|
|
18084
|
+
public libraryPackage: string;
|
|
18085
|
+
|
|
18074
18086
|
/**
|
|
18075
18087
|
* Creates a new PhpSettings instance using the specified properties.
|
|
18076
18088
|
* @param [properties] Properties to set
|
|
@@ -18154,6 +18166,9 @@ export namespace google {
|
|
|
18154
18166
|
|
|
18155
18167
|
/** PythonSettings common */
|
|
18156
18168
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
18169
|
+
|
|
18170
|
+
/** PythonSettings experimentalFeatures */
|
|
18171
|
+
experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
18157
18172
|
}
|
|
18158
18173
|
|
|
18159
18174
|
/** Represents a PythonSettings. */
|
|
@@ -18168,6 +18183,9 @@ export namespace google {
|
|
|
18168
18183
|
/** PythonSettings common. */
|
|
18169
18184
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18170
18185
|
|
|
18186
|
+
/** PythonSettings experimentalFeatures. */
|
|
18187
|
+
public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
18188
|
+
|
|
18171
18189
|
/**
|
|
18172
18190
|
* Creates a new PythonSettings instance using the specified properties.
|
|
18173
18191
|
* @param [properties] Properties to set
|
|
@@ -18246,6 +18264,118 @@ export namespace google {
|
|
|
18246
18264
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18247
18265
|
}
|
|
18248
18266
|
|
|
18267
|
+
namespace PythonSettings {
|
|
18268
|
+
|
|
18269
|
+
/** Properties of an ExperimentalFeatures. */
|
|
18270
|
+
interface IExperimentalFeatures {
|
|
18271
|
+
|
|
18272
|
+
/** ExperimentalFeatures restAsyncIoEnabled */
|
|
18273
|
+
restAsyncIoEnabled?: (boolean|null);
|
|
18274
|
+
|
|
18275
|
+
/** ExperimentalFeatures protobufPythonicTypesEnabled */
|
|
18276
|
+
protobufPythonicTypesEnabled?: (boolean|null);
|
|
18277
|
+
|
|
18278
|
+
/** ExperimentalFeatures unversionedPackageDisabled */
|
|
18279
|
+
unversionedPackageDisabled?: (boolean|null);
|
|
18280
|
+
}
|
|
18281
|
+
|
|
18282
|
+
/** Represents an ExperimentalFeatures. */
|
|
18283
|
+
class ExperimentalFeatures implements IExperimentalFeatures {
|
|
18284
|
+
|
|
18285
|
+
/**
|
|
18286
|
+
* Constructs a new ExperimentalFeatures.
|
|
18287
|
+
* @param [properties] Properties to set
|
|
18288
|
+
*/
|
|
18289
|
+
constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
|
|
18290
|
+
|
|
18291
|
+
/** ExperimentalFeatures restAsyncIoEnabled. */
|
|
18292
|
+
public restAsyncIoEnabled: boolean;
|
|
18293
|
+
|
|
18294
|
+
/** ExperimentalFeatures protobufPythonicTypesEnabled. */
|
|
18295
|
+
public protobufPythonicTypesEnabled: boolean;
|
|
18296
|
+
|
|
18297
|
+
/** ExperimentalFeatures unversionedPackageDisabled. */
|
|
18298
|
+
public unversionedPackageDisabled: boolean;
|
|
18299
|
+
|
|
18300
|
+
/**
|
|
18301
|
+
* Creates a new ExperimentalFeatures instance using the specified properties.
|
|
18302
|
+
* @param [properties] Properties to set
|
|
18303
|
+
* @returns ExperimentalFeatures instance
|
|
18304
|
+
*/
|
|
18305
|
+
public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
|
|
18306
|
+
|
|
18307
|
+
/**
|
|
18308
|
+
* Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
|
|
18309
|
+
* @param message ExperimentalFeatures message or plain object to encode
|
|
18310
|
+
* @param [writer] Writer to encode to
|
|
18311
|
+
* @returns Writer
|
|
18312
|
+
*/
|
|
18313
|
+
public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18314
|
+
|
|
18315
|
+
/**
|
|
18316
|
+
* Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
|
|
18317
|
+
* @param message ExperimentalFeatures message or plain object to encode
|
|
18318
|
+
* @param [writer] Writer to encode to
|
|
18319
|
+
* @returns Writer
|
|
18320
|
+
*/
|
|
18321
|
+
public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18322
|
+
|
|
18323
|
+
/**
|
|
18324
|
+
* Decodes an ExperimentalFeatures message from the specified reader or buffer.
|
|
18325
|
+
* @param reader Reader or buffer to decode from
|
|
18326
|
+
* @param [length] Message length if known beforehand
|
|
18327
|
+
* @returns ExperimentalFeatures
|
|
18328
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18329
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18330
|
+
*/
|
|
18331
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
|
|
18332
|
+
|
|
18333
|
+
/**
|
|
18334
|
+
* Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
|
|
18335
|
+
* @param reader Reader or buffer to decode from
|
|
18336
|
+
* @returns ExperimentalFeatures
|
|
18337
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18338
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18339
|
+
*/
|
|
18340
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
|
|
18341
|
+
|
|
18342
|
+
/**
|
|
18343
|
+
* Verifies an ExperimentalFeatures message.
|
|
18344
|
+
* @param message Plain object to verify
|
|
18345
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18346
|
+
*/
|
|
18347
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18348
|
+
|
|
18349
|
+
/**
|
|
18350
|
+
* Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
|
|
18351
|
+
* @param object Plain object
|
|
18352
|
+
* @returns ExperimentalFeatures
|
|
18353
|
+
*/
|
|
18354
|
+
public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
|
|
18355
|
+
|
|
18356
|
+
/**
|
|
18357
|
+
* Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
|
|
18358
|
+
* @param message ExperimentalFeatures
|
|
18359
|
+
* @param [options] Conversion options
|
|
18360
|
+
* @returns Plain object
|
|
18361
|
+
*/
|
|
18362
|
+
public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18363
|
+
|
|
18364
|
+
/**
|
|
18365
|
+
* Converts this ExperimentalFeatures to JSON.
|
|
18366
|
+
* @returns JSON object
|
|
18367
|
+
*/
|
|
18368
|
+
public toJSON(): { [k: string]: any };
|
|
18369
|
+
|
|
18370
|
+
/**
|
|
18371
|
+
* Gets the default type url for ExperimentalFeatures
|
|
18372
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18373
|
+
* @returns The default type url
|
|
18374
|
+
*/
|
|
18375
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18376
|
+
}
|
|
18377
|
+
}
|
|
18378
|
+
|
|
18249
18379
|
/** Properties of a NodeSettings. */
|
|
18250
18380
|
interface INodeSettings {
|
|
18251
18381
|
|
|
@@ -18572,6 +18702,9 @@ export namespace google {
|
|
|
18572
18702
|
|
|
18573
18703
|
/** GoSettings common */
|
|
18574
18704
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
18705
|
+
|
|
18706
|
+
/** GoSettings renamedServices */
|
|
18707
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
18575
18708
|
}
|
|
18576
18709
|
|
|
18577
18710
|
/** Represents a GoSettings. */
|
|
@@ -18586,6 +18719,9 @@ export namespace google {
|
|
|
18586
18719
|
/** GoSettings common. */
|
|
18587
18720
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18588
18721
|
|
|
18722
|
+
/** GoSettings renamedServices. */
|
|
18723
|
+
public renamedServices: { [k: string]: string };
|
|
18724
|
+
|
|
18589
18725
|
/**
|
|
18590
18726
|
* Creates a new GoSettings instance using the specified properties.
|
|
18591
18727
|
* @param [properties] Properties to set
|
|
@@ -18675,6 +18811,9 @@ export namespace google {
|
|
|
18675
18811
|
|
|
18676
18812
|
/** MethodSettings autoPopulatedFields */
|
|
18677
18813
|
autoPopulatedFields?: (string[]|null);
|
|
18814
|
+
|
|
18815
|
+
/** MethodSettings batching */
|
|
18816
|
+
batching?: (google.api.IBatchingConfigProto|null);
|
|
18678
18817
|
}
|
|
18679
18818
|
|
|
18680
18819
|
/** Represents a MethodSettings. */
|
|
@@ -18695,6 +18834,9 @@ export namespace google {
|
|
|
18695
18834
|
/** MethodSettings autoPopulatedFields. */
|
|
18696
18835
|
public autoPopulatedFields: string[];
|
|
18697
18836
|
|
|
18837
|
+
/** MethodSettings batching. */
|
|
18838
|
+
public batching?: (google.api.IBatchingConfigProto|null);
|
|
18839
|
+
|
|
18698
18840
|
/**
|
|
18699
18841
|
* Creates a new MethodSettings instance using the specified properties.
|
|
18700
18842
|
* @param [properties] Properties to set
|
|
@@ -18891,23 +19033,485 @@ export namespace google {
|
|
|
18891
19033
|
}
|
|
18892
19034
|
}
|
|
18893
19035
|
|
|
18894
|
-
/** ClientLibraryOrganization enum. */
|
|
18895
|
-
enum ClientLibraryOrganization {
|
|
18896
|
-
CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
|
|
18897
|
-
CLOUD = 1,
|
|
18898
|
-
ADS = 2,
|
|
18899
|
-
PHOTOS = 3,
|
|
18900
|
-
STREET_VIEW = 4,
|
|
18901
|
-
SHOPPING = 5,
|
|
18902
|
-
GEO = 6,
|
|
18903
|
-
GENERATIVE_AI = 7
|
|
18904
|
-
}
|
|
19036
|
+
/** ClientLibraryOrganization enum. */
|
|
19037
|
+
enum ClientLibraryOrganization {
|
|
19038
|
+
CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
|
|
19039
|
+
CLOUD = 1,
|
|
19040
|
+
ADS = 2,
|
|
19041
|
+
PHOTOS = 3,
|
|
19042
|
+
STREET_VIEW = 4,
|
|
19043
|
+
SHOPPING = 5,
|
|
19044
|
+
GEO = 6,
|
|
19045
|
+
GENERATIVE_AI = 7
|
|
19046
|
+
}
|
|
19047
|
+
|
|
19048
|
+
/** ClientLibraryDestination enum. */
|
|
19049
|
+
enum ClientLibraryDestination {
|
|
19050
|
+
CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
|
|
19051
|
+
GITHUB = 10,
|
|
19052
|
+
PACKAGE_MANAGER = 20
|
|
19053
|
+
}
|
|
19054
|
+
|
|
19055
|
+
/** Properties of a SelectiveGapicGeneration. */
|
|
19056
|
+
interface ISelectiveGapicGeneration {
|
|
19057
|
+
|
|
19058
|
+
/** SelectiveGapicGeneration methods */
|
|
19059
|
+
methods?: (string[]|null);
|
|
19060
|
+
|
|
19061
|
+
/** SelectiveGapicGeneration generateOmittedAsInternal */
|
|
19062
|
+
generateOmittedAsInternal?: (boolean|null);
|
|
19063
|
+
}
|
|
19064
|
+
|
|
19065
|
+
/** Represents a SelectiveGapicGeneration. */
|
|
19066
|
+
class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
|
|
19067
|
+
|
|
19068
|
+
/**
|
|
19069
|
+
* Constructs a new SelectiveGapicGeneration.
|
|
19070
|
+
* @param [properties] Properties to set
|
|
19071
|
+
*/
|
|
19072
|
+
constructor(properties?: google.api.ISelectiveGapicGeneration);
|
|
19073
|
+
|
|
19074
|
+
/** SelectiveGapicGeneration methods. */
|
|
19075
|
+
public methods: string[];
|
|
19076
|
+
|
|
19077
|
+
/** SelectiveGapicGeneration generateOmittedAsInternal. */
|
|
19078
|
+
public generateOmittedAsInternal: boolean;
|
|
19079
|
+
|
|
19080
|
+
/**
|
|
19081
|
+
* Creates a new SelectiveGapicGeneration instance using the specified properties.
|
|
19082
|
+
* @param [properties] Properties to set
|
|
19083
|
+
* @returns SelectiveGapicGeneration instance
|
|
19084
|
+
*/
|
|
19085
|
+
public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
|
|
19086
|
+
|
|
19087
|
+
/**
|
|
19088
|
+
* Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
|
|
19089
|
+
* @param message SelectiveGapicGeneration message or plain object to encode
|
|
19090
|
+
* @param [writer] Writer to encode to
|
|
19091
|
+
* @returns Writer
|
|
19092
|
+
*/
|
|
19093
|
+
public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19094
|
+
|
|
19095
|
+
/**
|
|
19096
|
+
* Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
|
|
19097
|
+
* @param message SelectiveGapicGeneration message or plain object to encode
|
|
19098
|
+
* @param [writer] Writer to encode to
|
|
19099
|
+
* @returns Writer
|
|
19100
|
+
*/
|
|
19101
|
+
public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
19102
|
+
|
|
19103
|
+
/**
|
|
19104
|
+
* Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
|
|
19105
|
+
* @param reader Reader or buffer to decode from
|
|
19106
|
+
* @param [length] Message length if known beforehand
|
|
19107
|
+
* @returns SelectiveGapicGeneration
|
|
19108
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19109
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19110
|
+
*/
|
|
19111
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
|
|
19112
|
+
|
|
19113
|
+
/**
|
|
19114
|
+
* Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
|
|
19115
|
+
* @param reader Reader or buffer to decode from
|
|
19116
|
+
* @returns SelectiveGapicGeneration
|
|
19117
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
19118
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
19119
|
+
*/
|
|
19120
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
|
|
19121
|
+
|
|
19122
|
+
/**
|
|
19123
|
+
* Verifies a SelectiveGapicGeneration message.
|
|
19124
|
+
* @param message Plain object to verify
|
|
19125
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
19126
|
+
*/
|
|
19127
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
19128
|
+
|
|
19129
|
+
/**
|
|
19130
|
+
* Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
|
|
19131
|
+
* @param object Plain object
|
|
19132
|
+
* @returns SelectiveGapicGeneration
|
|
19133
|
+
*/
|
|
19134
|
+
public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
|
|
19135
|
+
|
|
19136
|
+
/**
|
|
19137
|
+
* Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
|
|
19138
|
+
* @param message SelectiveGapicGeneration
|
|
19139
|
+
* @param [options] Conversion options
|
|
19140
|
+
* @returns Plain object
|
|
19141
|
+
*/
|
|
19142
|
+
public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
19143
|
+
|
|
19144
|
+
/**
|
|
19145
|
+
* Converts this SelectiveGapicGeneration to JSON.
|
|
19146
|
+
* @returns JSON object
|
|
19147
|
+
*/
|
|
19148
|
+
public toJSON(): { [k: string]: any };
|
|
19149
|
+
|
|
19150
|
+
/**
|
|
19151
|
+
* Gets the default type url for SelectiveGapicGeneration
|
|
19152
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
19153
|
+
* @returns The default type url
|
|
19154
|
+
*/
|
|
19155
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
19156
|
+
}
|
|
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 };
|
|
18905
19508
|
|
|
18906
|
-
|
|
18907
|
-
|
|
18908
|
-
|
|
18909
|
-
|
|
18910
|
-
|
|
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;
|
|
18911
19515
|
}
|
|
18912
19516
|
|
|
18913
19517
|
/** LaunchStage enum. */
|
|
@@ -19291,10 +19895,13 @@ export namespace google {
|
|
|
19291
19895
|
/** Edition enum. */
|
|
19292
19896
|
enum Edition {
|
|
19293
19897
|
EDITION_UNKNOWN = 0,
|
|
19898
|
+
EDITION_LEGACY = 900,
|
|
19294
19899
|
EDITION_PROTO2 = 998,
|
|
19295
19900
|
EDITION_PROTO3 = 999,
|
|
19296
19901
|
EDITION_2023 = 1000,
|
|
19297
19902
|
EDITION_2024 = 1001,
|
|
19903
|
+
EDITION_2026 = 1002,
|
|
19904
|
+
EDITION_UNSTABLE = 9999,
|
|
19298
19905
|
EDITION_1_TEST_ONLY = 1,
|
|
19299
19906
|
EDITION_2_TEST_ONLY = 2,
|
|
19300
19907
|
EDITION_99997_TEST_ONLY = 99997,
|
|
@@ -19321,6 +19928,9 @@ export namespace google {
|
|
|
19321
19928
|
/** FileDescriptorProto weakDependency */
|
|
19322
19929
|
weakDependency?: (number[]|null);
|
|
19323
19930
|
|
|
19931
|
+
/** FileDescriptorProto optionDependency */
|
|
19932
|
+
optionDependency?: (string[]|null);
|
|
19933
|
+
|
|
19324
19934
|
/** FileDescriptorProto messageType */
|
|
19325
19935
|
messageType?: (google.protobuf.IDescriptorProto[]|null);
|
|
19326
19936
|
|
|
@@ -19370,6 +19980,9 @@ export namespace google {
|
|
|
19370
19980
|
/** FileDescriptorProto weakDependency. */
|
|
19371
19981
|
public weakDependency: number[];
|
|
19372
19982
|
|
|
19983
|
+
/** FileDescriptorProto optionDependency. */
|
|
19984
|
+
public optionDependency: string[];
|
|
19985
|
+
|
|
19373
19986
|
/** FileDescriptorProto messageType. */
|
|
19374
19987
|
public messageType: google.protobuf.IDescriptorProto[];
|
|
19375
19988
|
|
|
@@ -19504,6 +20117,9 @@ export namespace google {
|
|
|
19504
20117
|
|
|
19505
20118
|
/** DescriptorProto reservedName */
|
|
19506
20119
|
reservedName?: (string[]|null);
|
|
20120
|
+
|
|
20121
|
+
/** DescriptorProto visibility */
|
|
20122
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
19507
20123
|
}
|
|
19508
20124
|
|
|
19509
20125
|
/** Represents a DescriptorProto. */
|
|
@@ -19545,6 +20161,9 @@ export namespace google {
|
|
|
19545
20161
|
/** DescriptorProto reservedName. */
|
|
19546
20162
|
public reservedName: string[];
|
|
19547
20163
|
|
|
20164
|
+
/** DescriptorProto visibility. */
|
|
20165
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
20166
|
+
|
|
19548
20167
|
/**
|
|
19549
20168
|
* Creates a new DescriptorProto instance using the specified properties.
|
|
19550
20169
|
* @param [properties] Properties to set
|
|
@@ -20392,6 +21011,9 @@ export namespace google {
|
|
|
20392
21011
|
|
|
20393
21012
|
/** EnumDescriptorProto reservedName */
|
|
20394
21013
|
reservedName?: (string[]|null);
|
|
21014
|
+
|
|
21015
|
+
/** EnumDescriptorProto visibility */
|
|
21016
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
20395
21017
|
}
|
|
20396
21018
|
|
|
20397
21019
|
/** Represents an EnumDescriptorProto. */
|
|
@@ -20418,6 +21040,9 @@ export namespace google {
|
|
|
20418
21040
|
/** EnumDescriptorProto reservedName. */
|
|
20419
21041
|
public reservedName: string[];
|
|
20420
21042
|
|
|
21043
|
+
/** EnumDescriptorProto visibility. */
|
|
21044
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
21045
|
+
|
|
20421
21046
|
/**
|
|
20422
21047
|
* Creates a new EnumDescriptorProto instance using the specified properties.
|
|
20423
21048
|
* @param [properties] Properties to set
|
|
@@ -21352,6 +21977,9 @@ export namespace google {
|
|
|
21352
21977
|
/** FieldOptions features */
|
|
21353
21978
|
features?: (google.protobuf.IFeatureSet|null);
|
|
21354
21979
|
|
|
21980
|
+
/** FieldOptions featureSupport */
|
|
21981
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
21982
|
+
|
|
21355
21983
|
/** FieldOptions uninterpretedOption */
|
|
21356
21984
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21357
21985
|
|
|
@@ -21407,6 +22035,9 @@ export namespace google {
|
|
|
21407
22035
|
/** FieldOptions features. */
|
|
21408
22036
|
public features?: (google.protobuf.IFeatureSet|null);
|
|
21409
22037
|
|
|
22038
|
+
/** FieldOptions featureSupport. */
|
|
22039
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
22040
|
+
|
|
21410
22041
|
/** FieldOptions uninterpretedOption. */
|
|
21411
22042
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21412
22043
|
|
|
@@ -21627,6 +22258,127 @@ export namespace google {
|
|
|
21627
22258
|
*/
|
|
21628
22259
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
21629
22260
|
}
|
|
22261
|
+
|
|
22262
|
+
/** Properties of a FeatureSupport. */
|
|
22263
|
+
interface IFeatureSupport {
|
|
22264
|
+
|
|
22265
|
+
/** FeatureSupport editionIntroduced */
|
|
22266
|
+
editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22267
|
+
|
|
22268
|
+
/** FeatureSupport editionDeprecated */
|
|
22269
|
+
editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22270
|
+
|
|
22271
|
+
/** FeatureSupport deprecationWarning */
|
|
22272
|
+
deprecationWarning?: (string|null);
|
|
22273
|
+
|
|
22274
|
+
/** FeatureSupport editionRemoved */
|
|
22275
|
+
editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22276
|
+
|
|
22277
|
+
/** FeatureSupport removalError */
|
|
22278
|
+
removalError?: (string|null);
|
|
22279
|
+
}
|
|
22280
|
+
|
|
22281
|
+
/** Represents a FeatureSupport. */
|
|
22282
|
+
class FeatureSupport implements IFeatureSupport {
|
|
22283
|
+
|
|
22284
|
+
/**
|
|
22285
|
+
* Constructs a new FeatureSupport.
|
|
22286
|
+
* @param [properties] Properties to set
|
|
22287
|
+
*/
|
|
22288
|
+
constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
|
|
22289
|
+
|
|
22290
|
+
/** FeatureSupport editionIntroduced. */
|
|
22291
|
+
public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22292
|
+
|
|
22293
|
+
/** FeatureSupport editionDeprecated. */
|
|
22294
|
+
public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22295
|
+
|
|
22296
|
+
/** FeatureSupport deprecationWarning. */
|
|
22297
|
+
public deprecationWarning: string;
|
|
22298
|
+
|
|
22299
|
+
/** FeatureSupport editionRemoved. */
|
|
22300
|
+
public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22301
|
+
|
|
22302
|
+
/** FeatureSupport removalError. */
|
|
22303
|
+
public removalError: string;
|
|
22304
|
+
|
|
22305
|
+
/**
|
|
22306
|
+
* Creates a new FeatureSupport instance using the specified properties.
|
|
22307
|
+
* @param [properties] Properties to set
|
|
22308
|
+
* @returns FeatureSupport instance
|
|
22309
|
+
*/
|
|
22310
|
+
public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
|
|
22311
|
+
|
|
22312
|
+
/**
|
|
22313
|
+
* Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
|
|
22314
|
+
* @param message FeatureSupport message or plain object to encode
|
|
22315
|
+
* @param [writer] Writer to encode to
|
|
22316
|
+
* @returns Writer
|
|
22317
|
+
*/
|
|
22318
|
+
public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22319
|
+
|
|
22320
|
+
/**
|
|
22321
|
+
* Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
|
|
22322
|
+
* @param message FeatureSupport message or plain object to encode
|
|
22323
|
+
* @param [writer] Writer to encode to
|
|
22324
|
+
* @returns Writer
|
|
22325
|
+
*/
|
|
22326
|
+
public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22327
|
+
|
|
22328
|
+
/**
|
|
22329
|
+
* Decodes a FeatureSupport message from the specified reader or buffer.
|
|
22330
|
+
* @param reader Reader or buffer to decode from
|
|
22331
|
+
* @param [length] Message length if known beforehand
|
|
22332
|
+
* @returns FeatureSupport
|
|
22333
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22334
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22335
|
+
*/
|
|
22336
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
|
|
22337
|
+
|
|
22338
|
+
/**
|
|
22339
|
+
* Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
|
|
22340
|
+
* @param reader Reader or buffer to decode from
|
|
22341
|
+
* @returns FeatureSupport
|
|
22342
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22343
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22344
|
+
*/
|
|
22345
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
|
|
22346
|
+
|
|
22347
|
+
/**
|
|
22348
|
+
* Verifies a FeatureSupport message.
|
|
22349
|
+
* @param message Plain object to verify
|
|
22350
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
22351
|
+
*/
|
|
22352
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
22353
|
+
|
|
22354
|
+
/**
|
|
22355
|
+
* Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
|
|
22356
|
+
* @param object Plain object
|
|
22357
|
+
* @returns FeatureSupport
|
|
22358
|
+
*/
|
|
22359
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
|
|
22360
|
+
|
|
22361
|
+
/**
|
|
22362
|
+
* Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
|
|
22363
|
+
* @param message FeatureSupport
|
|
22364
|
+
* @param [options] Conversion options
|
|
22365
|
+
* @returns Plain object
|
|
22366
|
+
*/
|
|
22367
|
+
public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22368
|
+
|
|
22369
|
+
/**
|
|
22370
|
+
* Converts this FeatureSupport to JSON.
|
|
22371
|
+
* @returns JSON object
|
|
22372
|
+
*/
|
|
22373
|
+
public toJSON(): { [k: string]: any };
|
|
22374
|
+
|
|
22375
|
+
/**
|
|
22376
|
+
* Gets the default type url for FeatureSupport
|
|
22377
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22378
|
+
* @returns The default type url
|
|
22379
|
+
*/
|
|
22380
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22381
|
+
}
|
|
21630
22382
|
}
|
|
21631
22383
|
|
|
21632
22384
|
/** Properties of an OneofOptions. */
|
|
@@ -21865,6 +22617,9 @@ export namespace google {
|
|
|
21865
22617
|
/** EnumValueOptions debugRedact */
|
|
21866
22618
|
debugRedact?: (boolean|null);
|
|
21867
22619
|
|
|
22620
|
+
/** EnumValueOptions featureSupport */
|
|
22621
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
22622
|
+
|
|
21868
22623
|
/** EnumValueOptions uninterpretedOption */
|
|
21869
22624
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
21870
22625
|
}
|
|
@@ -21887,6 +22642,9 @@ export namespace google {
|
|
|
21887
22642
|
/** EnumValueOptions debugRedact. */
|
|
21888
22643
|
public debugRedact: boolean;
|
|
21889
22644
|
|
|
22645
|
+
/** EnumValueOptions featureSupport. */
|
|
22646
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
22647
|
+
|
|
21890
22648
|
/** EnumValueOptions uninterpretedOption. */
|
|
21891
22649
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
21892
22650
|
|
|
@@ -22479,6 +23237,15 @@ export namespace google {
|
|
|
22479
23237
|
|
|
22480
23238
|
/** FeatureSet jsonFormat */
|
|
22481
23239
|
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
23240
|
+
|
|
23241
|
+
/** FeatureSet enforceNamingStyle */
|
|
23242
|
+
enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
|
|
23243
|
+
|
|
23244
|
+
/** FeatureSet defaultSymbolVisibility */
|
|
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);
|
|
22482
23249
|
}
|
|
22483
23250
|
|
|
22484
23251
|
/** Represents a FeatureSet. */
|
|
@@ -22508,6 +23275,15 @@ export namespace google {
|
|
|
22508
23275
|
/** FeatureSet jsonFormat. */
|
|
22509
23276
|
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
22510
23277
|
|
|
23278
|
+
/** FeatureSet enforceNamingStyle. */
|
|
23279
|
+
public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
|
|
23280
|
+
|
|
23281
|
+
/** FeatureSet defaultSymbolVisibility. */
|
|
23282
|
+
public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
|
|
23283
|
+
|
|
23284
|
+
/** FeatureSet enforceProtoLimits. */
|
|
23285
|
+
public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
|
|
23286
|
+
|
|
22511
23287
|
/**
|
|
22512
23288
|
* Creates a new FeatureSet instance using the specified properties.
|
|
22513
23289
|
* @param [properties] Properties to set
|
|
@@ -22630,6 +23406,218 @@ export namespace google {
|
|
|
22630
23406
|
ALLOW = 1,
|
|
22631
23407
|
LEGACY_BEST_EFFORT = 2
|
|
22632
23408
|
}
|
|
23409
|
+
|
|
23410
|
+
/** EnforceNamingStyle enum. */
|
|
23411
|
+
enum EnforceNamingStyle {
|
|
23412
|
+
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
23413
|
+
STYLE2024 = 1,
|
|
23414
|
+
STYLE_LEGACY = 2,
|
|
23415
|
+
STYLE2026 = 3
|
|
23416
|
+
}
|
|
23417
|
+
|
|
23418
|
+
/** Properties of a VisibilityFeature. */
|
|
23419
|
+
interface IVisibilityFeature {
|
|
23420
|
+
}
|
|
23421
|
+
|
|
23422
|
+
/** Represents a VisibilityFeature. */
|
|
23423
|
+
class VisibilityFeature implements IVisibilityFeature {
|
|
23424
|
+
|
|
23425
|
+
/**
|
|
23426
|
+
* Constructs a new VisibilityFeature.
|
|
23427
|
+
* @param [properties] Properties to set
|
|
23428
|
+
*/
|
|
23429
|
+
constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
|
|
23430
|
+
|
|
23431
|
+
/**
|
|
23432
|
+
* Creates a new VisibilityFeature instance using the specified properties.
|
|
23433
|
+
* @param [properties] Properties to set
|
|
23434
|
+
* @returns VisibilityFeature instance
|
|
23435
|
+
*/
|
|
23436
|
+
public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
|
|
23437
|
+
|
|
23438
|
+
/**
|
|
23439
|
+
* Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
|
|
23440
|
+
* @param message VisibilityFeature message or plain object to encode
|
|
23441
|
+
* @param [writer] Writer to encode to
|
|
23442
|
+
* @returns Writer
|
|
23443
|
+
*/
|
|
23444
|
+
public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23445
|
+
|
|
23446
|
+
/**
|
|
23447
|
+
* Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
|
|
23448
|
+
* @param message VisibilityFeature message or plain object to encode
|
|
23449
|
+
* @param [writer] Writer to encode to
|
|
23450
|
+
* @returns Writer
|
|
23451
|
+
*/
|
|
23452
|
+
public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23453
|
+
|
|
23454
|
+
/**
|
|
23455
|
+
* Decodes a VisibilityFeature message from the specified reader or buffer.
|
|
23456
|
+
* @param reader Reader or buffer to decode from
|
|
23457
|
+
* @param [length] Message length if known beforehand
|
|
23458
|
+
* @returns VisibilityFeature
|
|
23459
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23460
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23461
|
+
*/
|
|
23462
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
|
|
23463
|
+
|
|
23464
|
+
/**
|
|
23465
|
+
* Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
|
|
23466
|
+
* @param reader Reader or buffer to decode from
|
|
23467
|
+
* @returns VisibilityFeature
|
|
23468
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23469
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23470
|
+
*/
|
|
23471
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
|
|
23472
|
+
|
|
23473
|
+
/**
|
|
23474
|
+
* Verifies a VisibilityFeature message.
|
|
23475
|
+
* @param message Plain object to verify
|
|
23476
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
23477
|
+
*/
|
|
23478
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
23479
|
+
|
|
23480
|
+
/**
|
|
23481
|
+
* Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
|
|
23482
|
+
* @param object Plain object
|
|
23483
|
+
* @returns VisibilityFeature
|
|
23484
|
+
*/
|
|
23485
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
|
|
23486
|
+
|
|
23487
|
+
/**
|
|
23488
|
+
* Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
|
|
23489
|
+
* @param message VisibilityFeature
|
|
23490
|
+
* @param [options] Conversion options
|
|
23491
|
+
* @returns Plain object
|
|
23492
|
+
*/
|
|
23493
|
+
public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
23494
|
+
|
|
23495
|
+
/**
|
|
23496
|
+
* Converts this VisibilityFeature to JSON.
|
|
23497
|
+
* @returns JSON object
|
|
23498
|
+
*/
|
|
23499
|
+
public toJSON(): { [k: string]: any };
|
|
23500
|
+
|
|
23501
|
+
/**
|
|
23502
|
+
* Gets the default type url for VisibilityFeature
|
|
23503
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
23504
|
+
* @returns The default type url
|
|
23505
|
+
*/
|
|
23506
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23507
|
+
}
|
|
23508
|
+
|
|
23509
|
+
namespace VisibilityFeature {
|
|
23510
|
+
|
|
23511
|
+
/** DefaultSymbolVisibility enum. */
|
|
23512
|
+
enum DefaultSymbolVisibility {
|
|
23513
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
23514
|
+
EXPORT_ALL = 1,
|
|
23515
|
+
EXPORT_TOP_LEVEL = 2,
|
|
23516
|
+
LOCAL_ALL = 3,
|
|
23517
|
+
STRICT = 4
|
|
23518
|
+
}
|
|
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
|
+
}
|
|
22633
23621
|
}
|
|
22634
23622
|
|
|
22635
23623
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -22749,8 +23737,11 @@ export namespace google {
|
|
|
22749
23737
|
/** FeatureSetEditionDefault edition */
|
|
22750
23738
|
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
22751
23739
|
|
|
22752
|
-
/** FeatureSetEditionDefault
|
|
22753
|
-
|
|
23740
|
+
/** FeatureSetEditionDefault overridableFeatures */
|
|
23741
|
+
overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
23742
|
+
|
|
23743
|
+
/** FeatureSetEditionDefault fixedFeatures */
|
|
23744
|
+
fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
22754
23745
|
}
|
|
22755
23746
|
|
|
22756
23747
|
/** Represents a FeatureSetEditionDefault. */
|
|
@@ -22765,8 +23756,11 @@ export namespace google {
|
|
|
22765
23756
|
/** FeatureSetEditionDefault edition. */
|
|
22766
23757
|
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
22767
23758
|
|
|
22768
|
-
/** FeatureSetEditionDefault
|
|
22769
|
-
public
|
|
23759
|
+
/** FeatureSetEditionDefault overridableFeatures. */
|
|
23760
|
+
public overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
23761
|
+
|
|
23762
|
+
/** FeatureSetEditionDefault fixedFeatures. */
|
|
23763
|
+
public fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
22770
23764
|
|
|
22771
23765
|
/**
|
|
22772
23766
|
* Creates a new FeatureSetEditionDefault instance using the specified properties.
|
|
@@ -23299,6 +24293,13 @@ export namespace google {
|
|
|
23299
24293
|
}
|
|
23300
24294
|
}
|
|
23301
24295
|
|
|
24296
|
+
/** SymbolVisibility enum. */
|
|
24297
|
+
enum SymbolVisibility {
|
|
24298
|
+
VISIBILITY_UNSET = 0,
|
|
24299
|
+
VISIBILITY_LOCAL = 1,
|
|
24300
|
+
VISIBILITY_EXPORT = 2
|
|
24301
|
+
}
|
|
24302
|
+
|
|
23302
24303
|
/** Properties of a Duration. */
|
|
23303
24304
|
interface IDuration {
|
|
23304
24305
|
|
|
@@ -25479,6 +26480,9 @@ export namespace google {
|
|
|
25479
26480
|
|
|
25480
26481
|
/** ListOperationsRequest pageToken */
|
|
25481
26482
|
pageToken?: (string|null);
|
|
26483
|
+
|
|
26484
|
+
/** ListOperationsRequest returnPartialSuccess */
|
|
26485
|
+
returnPartialSuccess?: (boolean|null);
|
|
25482
26486
|
}
|
|
25483
26487
|
|
|
25484
26488
|
/** Represents a ListOperationsRequest. */
|
|
@@ -25502,6 +26506,9 @@ export namespace google {
|
|
|
25502
26506
|
/** ListOperationsRequest pageToken. */
|
|
25503
26507
|
public pageToken: string;
|
|
25504
26508
|
|
|
26509
|
+
/** ListOperationsRequest returnPartialSuccess. */
|
|
26510
|
+
public returnPartialSuccess: boolean;
|
|
26511
|
+
|
|
25505
26512
|
/**
|
|
25506
26513
|
* Creates a new ListOperationsRequest instance using the specified properties.
|
|
25507
26514
|
* @param [properties] Properties to set
|
|
@@ -25588,6 +26595,9 @@ export namespace google {
|
|
|
25588
26595
|
|
|
25589
26596
|
/** ListOperationsResponse nextPageToken */
|
|
25590
26597
|
nextPageToken?: (string|null);
|
|
26598
|
+
|
|
26599
|
+
/** ListOperationsResponse unreachable */
|
|
26600
|
+
unreachable?: (string[]|null);
|
|
25591
26601
|
}
|
|
25592
26602
|
|
|
25593
26603
|
/** Represents a ListOperationsResponse. */
|
|
@@ -25605,6 +26615,9 @@ export namespace google {
|
|
|
25605
26615
|
/** ListOperationsResponse nextPageToken. */
|
|
25606
26616
|
public nextPageToken: string;
|
|
25607
26617
|
|
|
26618
|
+
/** ListOperationsResponse unreachable. */
|
|
26619
|
+
public unreachable: string[];
|
|
26620
|
+
|
|
25608
26621
|
/**
|
|
25609
26622
|
* Creates a new ListOperationsResponse instance using the specified properties.
|
|
25610
26623
|
* @param [properties] Properties to set
|