@google-cloud/discoveryengine 2.9.0 → 3.0.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 +500 -1
- package/build/protos/protos.js +1 -1
- package/build/protos/protos.json +169 -8
- package/build/src/index.d.ts +3 -3
- package/build/src/index.js +4 -4
- package/package.json +7 -7
package/build/protos/protos.d.ts
CHANGED
|
@@ -164791,6 +164791,9 @@ export namespace google {
|
|
|
164791
164791
|
|
|
164792
164792
|
/** PhpSettings common */
|
|
164793
164793
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
164794
|
+
|
|
164795
|
+
/** PhpSettings libraryPackage */
|
|
164796
|
+
libraryPackage?: (string|null);
|
|
164794
164797
|
}
|
|
164795
164798
|
|
|
164796
164799
|
/** Represents a PhpSettings. */
|
|
@@ -164805,6 +164808,9 @@ export namespace google {
|
|
|
164805
164808
|
/** PhpSettings common. */
|
|
164806
164809
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
164807
164810
|
|
|
164811
|
+
/** PhpSettings libraryPackage. */
|
|
164812
|
+
public libraryPackage: string;
|
|
164813
|
+
|
|
164808
164814
|
/**
|
|
164809
164815
|
* Creates a new PhpSettings instance using the specified properties.
|
|
164810
164816
|
* @param [properties] Properties to set
|
|
@@ -165533,6 +165539,9 @@ export namespace google {
|
|
|
165533
165539
|
|
|
165534
165540
|
/** MethodSettings autoPopulatedFields */
|
|
165535
165541
|
autoPopulatedFields?: (string[]|null);
|
|
165542
|
+
|
|
165543
|
+
/** MethodSettings batching */
|
|
165544
|
+
batching?: (google.api.IBatchingConfigProto|null);
|
|
165536
165545
|
}
|
|
165537
165546
|
|
|
165538
165547
|
/** Represents a MethodSettings. */
|
|
@@ -165553,6 +165562,9 @@ export namespace google {
|
|
|
165553
165562
|
/** MethodSettings autoPopulatedFields. */
|
|
165554
165563
|
public autoPopulatedFields: string[];
|
|
165555
165564
|
|
|
165565
|
+
/** MethodSettings batching. */
|
|
165566
|
+
public batching?: (google.api.IBatchingConfigProto|null);
|
|
165567
|
+
|
|
165556
165568
|
/**
|
|
165557
165569
|
* Creates a new MethodSettings instance using the specified properties.
|
|
165558
165570
|
* @param [properties] Properties to set
|
|
@@ -165871,6 +165883,365 @@ export namespace google {
|
|
|
165871
165883
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
165872
165884
|
}
|
|
165873
165885
|
|
|
165886
|
+
/** Properties of a BatchingConfigProto. */
|
|
165887
|
+
interface IBatchingConfigProto {
|
|
165888
|
+
|
|
165889
|
+
/** BatchingConfigProto thresholds */
|
|
165890
|
+
thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
165891
|
+
|
|
165892
|
+
/** BatchingConfigProto batchDescriptor */
|
|
165893
|
+
batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
165894
|
+
}
|
|
165895
|
+
|
|
165896
|
+
/** Represents a BatchingConfigProto. */
|
|
165897
|
+
class BatchingConfigProto implements IBatchingConfigProto {
|
|
165898
|
+
|
|
165899
|
+
/**
|
|
165900
|
+
* Constructs a new BatchingConfigProto.
|
|
165901
|
+
* @param [properties] Properties to set
|
|
165902
|
+
*/
|
|
165903
|
+
constructor(properties?: google.api.IBatchingConfigProto);
|
|
165904
|
+
|
|
165905
|
+
/** BatchingConfigProto thresholds. */
|
|
165906
|
+
public thresholds?: (google.api.IBatchingSettingsProto|null);
|
|
165907
|
+
|
|
165908
|
+
/** BatchingConfigProto batchDescriptor. */
|
|
165909
|
+
public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
|
|
165910
|
+
|
|
165911
|
+
/**
|
|
165912
|
+
* Creates a new BatchingConfigProto instance using the specified properties.
|
|
165913
|
+
* @param [properties] Properties to set
|
|
165914
|
+
* @returns BatchingConfigProto instance
|
|
165915
|
+
*/
|
|
165916
|
+
public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
|
|
165917
|
+
|
|
165918
|
+
/**
|
|
165919
|
+
* Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
165920
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
165921
|
+
* @param [writer] Writer to encode to
|
|
165922
|
+
* @returns Writer
|
|
165923
|
+
*/
|
|
165924
|
+
public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
165925
|
+
|
|
165926
|
+
/**
|
|
165927
|
+
* Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
|
|
165928
|
+
* @param message BatchingConfigProto message or plain object to encode
|
|
165929
|
+
* @param [writer] Writer to encode to
|
|
165930
|
+
* @returns Writer
|
|
165931
|
+
*/
|
|
165932
|
+
public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
165933
|
+
|
|
165934
|
+
/**
|
|
165935
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer.
|
|
165936
|
+
* @param reader Reader or buffer to decode from
|
|
165937
|
+
* @param [length] Message length if known beforehand
|
|
165938
|
+
* @returns BatchingConfigProto
|
|
165939
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
165940
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
165941
|
+
*/
|
|
165942
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
|
|
165943
|
+
|
|
165944
|
+
/**
|
|
165945
|
+
* Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
|
|
165946
|
+
* @param reader Reader or buffer to decode from
|
|
165947
|
+
* @returns BatchingConfigProto
|
|
165948
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
165949
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
165950
|
+
*/
|
|
165951
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
|
|
165952
|
+
|
|
165953
|
+
/**
|
|
165954
|
+
* Verifies a BatchingConfigProto message.
|
|
165955
|
+
* @param message Plain object to verify
|
|
165956
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
165957
|
+
*/
|
|
165958
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
165959
|
+
|
|
165960
|
+
/**
|
|
165961
|
+
* Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
|
|
165962
|
+
* @param object Plain object
|
|
165963
|
+
* @returns BatchingConfigProto
|
|
165964
|
+
*/
|
|
165965
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
|
|
165966
|
+
|
|
165967
|
+
/**
|
|
165968
|
+
* Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
|
|
165969
|
+
* @param message BatchingConfigProto
|
|
165970
|
+
* @param [options] Conversion options
|
|
165971
|
+
* @returns Plain object
|
|
165972
|
+
*/
|
|
165973
|
+
public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
165974
|
+
|
|
165975
|
+
/**
|
|
165976
|
+
* Converts this BatchingConfigProto to JSON.
|
|
165977
|
+
* @returns JSON object
|
|
165978
|
+
*/
|
|
165979
|
+
public toJSON(): { [k: string]: any };
|
|
165980
|
+
|
|
165981
|
+
/**
|
|
165982
|
+
* Gets the default type url for BatchingConfigProto
|
|
165983
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
165984
|
+
* @returns The default type url
|
|
165985
|
+
*/
|
|
165986
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
165987
|
+
}
|
|
165988
|
+
|
|
165989
|
+
/** Properties of a BatchingSettingsProto. */
|
|
165990
|
+
interface IBatchingSettingsProto {
|
|
165991
|
+
|
|
165992
|
+
/** BatchingSettingsProto elementCountThreshold */
|
|
165993
|
+
elementCountThreshold?: (number|null);
|
|
165994
|
+
|
|
165995
|
+
/** BatchingSettingsProto requestByteThreshold */
|
|
165996
|
+
requestByteThreshold?: (number|Long|string|null);
|
|
165997
|
+
|
|
165998
|
+
/** BatchingSettingsProto delayThreshold */
|
|
165999
|
+
delayThreshold?: (google.protobuf.IDuration|null);
|
|
166000
|
+
|
|
166001
|
+
/** BatchingSettingsProto elementCountLimit */
|
|
166002
|
+
elementCountLimit?: (number|null);
|
|
166003
|
+
|
|
166004
|
+
/** BatchingSettingsProto requestByteLimit */
|
|
166005
|
+
requestByteLimit?: (number|null);
|
|
166006
|
+
|
|
166007
|
+
/** BatchingSettingsProto flowControlElementLimit */
|
|
166008
|
+
flowControlElementLimit?: (number|null);
|
|
166009
|
+
|
|
166010
|
+
/** BatchingSettingsProto flowControlByteLimit */
|
|
166011
|
+
flowControlByteLimit?: (number|null);
|
|
166012
|
+
|
|
166013
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior */
|
|
166014
|
+
flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
|
|
166015
|
+
}
|
|
166016
|
+
|
|
166017
|
+
/** Represents a BatchingSettingsProto. */
|
|
166018
|
+
class BatchingSettingsProto implements IBatchingSettingsProto {
|
|
166019
|
+
|
|
166020
|
+
/**
|
|
166021
|
+
* Constructs a new BatchingSettingsProto.
|
|
166022
|
+
* @param [properties] Properties to set
|
|
166023
|
+
*/
|
|
166024
|
+
constructor(properties?: google.api.IBatchingSettingsProto);
|
|
166025
|
+
|
|
166026
|
+
/** BatchingSettingsProto elementCountThreshold. */
|
|
166027
|
+
public elementCountThreshold: number;
|
|
166028
|
+
|
|
166029
|
+
/** BatchingSettingsProto requestByteThreshold. */
|
|
166030
|
+
public requestByteThreshold: (number|Long|string);
|
|
166031
|
+
|
|
166032
|
+
/** BatchingSettingsProto delayThreshold. */
|
|
166033
|
+
public delayThreshold?: (google.protobuf.IDuration|null);
|
|
166034
|
+
|
|
166035
|
+
/** BatchingSettingsProto elementCountLimit. */
|
|
166036
|
+
public elementCountLimit: number;
|
|
166037
|
+
|
|
166038
|
+
/** BatchingSettingsProto requestByteLimit. */
|
|
166039
|
+
public requestByteLimit: number;
|
|
166040
|
+
|
|
166041
|
+
/** BatchingSettingsProto flowControlElementLimit. */
|
|
166042
|
+
public flowControlElementLimit: number;
|
|
166043
|
+
|
|
166044
|
+
/** BatchingSettingsProto flowControlByteLimit. */
|
|
166045
|
+
public flowControlByteLimit: number;
|
|
166046
|
+
|
|
166047
|
+
/** BatchingSettingsProto flowControlLimitExceededBehavior. */
|
|
166048
|
+
public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
|
|
166049
|
+
|
|
166050
|
+
/**
|
|
166051
|
+
* Creates a new BatchingSettingsProto instance using the specified properties.
|
|
166052
|
+
* @param [properties] Properties to set
|
|
166053
|
+
* @returns BatchingSettingsProto instance
|
|
166054
|
+
*/
|
|
166055
|
+
public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
|
|
166056
|
+
|
|
166057
|
+
/**
|
|
166058
|
+
* Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
166059
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
166060
|
+
* @param [writer] Writer to encode to
|
|
166061
|
+
* @returns Writer
|
|
166062
|
+
*/
|
|
166063
|
+
public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
166064
|
+
|
|
166065
|
+
/**
|
|
166066
|
+
* Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
|
|
166067
|
+
* @param message BatchingSettingsProto message or plain object to encode
|
|
166068
|
+
* @param [writer] Writer to encode to
|
|
166069
|
+
* @returns Writer
|
|
166070
|
+
*/
|
|
166071
|
+
public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
166072
|
+
|
|
166073
|
+
/**
|
|
166074
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer.
|
|
166075
|
+
* @param reader Reader or buffer to decode from
|
|
166076
|
+
* @param [length] Message length if known beforehand
|
|
166077
|
+
* @returns BatchingSettingsProto
|
|
166078
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
166079
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
166080
|
+
*/
|
|
166081
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
|
|
166082
|
+
|
|
166083
|
+
/**
|
|
166084
|
+
* Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
|
|
166085
|
+
* @param reader Reader or buffer to decode from
|
|
166086
|
+
* @returns BatchingSettingsProto
|
|
166087
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
166088
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
166089
|
+
*/
|
|
166090
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
|
|
166091
|
+
|
|
166092
|
+
/**
|
|
166093
|
+
* Verifies a BatchingSettingsProto message.
|
|
166094
|
+
* @param message Plain object to verify
|
|
166095
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
166096
|
+
*/
|
|
166097
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
166098
|
+
|
|
166099
|
+
/**
|
|
166100
|
+
* Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
|
|
166101
|
+
* @param object Plain object
|
|
166102
|
+
* @returns BatchingSettingsProto
|
|
166103
|
+
*/
|
|
166104
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
|
|
166105
|
+
|
|
166106
|
+
/**
|
|
166107
|
+
* Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
|
|
166108
|
+
* @param message BatchingSettingsProto
|
|
166109
|
+
* @param [options] Conversion options
|
|
166110
|
+
* @returns Plain object
|
|
166111
|
+
*/
|
|
166112
|
+
public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
166113
|
+
|
|
166114
|
+
/**
|
|
166115
|
+
* Converts this BatchingSettingsProto to JSON.
|
|
166116
|
+
* @returns JSON object
|
|
166117
|
+
*/
|
|
166118
|
+
public toJSON(): { [k: string]: any };
|
|
166119
|
+
|
|
166120
|
+
/**
|
|
166121
|
+
* Gets the default type url for BatchingSettingsProto
|
|
166122
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
166123
|
+
* @returns The default type url
|
|
166124
|
+
*/
|
|
166125
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
166126
|
+
}
|
|
166127
|
+
|
|
166128
|
+
/** FlowControlLimitExceededBehaviorProto enum. */
|
|
166129
|
+
enum FlowControlLimitExceededBehaviorProto {
|
|
166130
|
+
UNSET_BEHAVIOR = 0,
|
|
166131
|
+
THROW_EXCEPTION = 1,
|
|
166132
|
+
BLOCK = 2,
|
|
166133
|
+
IGNORE = 3
|
|
166134
|
+
}
|
|
166135
|
+
|
|
166136
|
+
/** Properties of a BatchingDescriptorProto. */
|
|
166137
|
+
interface IBatchingDescriptorProto {
|
|
166138
|
+
|
|
166139
|
+
/** BatchingDescriptorProto batchedField */
|
|
166140
|
+
batchedField?: (string|null);
|
|
166141
|
+
|
|
166142
|
+
/** BatchingDescriptorProto discriminatorFields */
|
|
166143
|
+
discriminatorFields?: (string[]|null);
|
|
166144
|
+
|
|
166145
|
+
/** BatchingDescriptorProto subresponseField */
|
|
166146
|
+
subresponseField?: (string|null);
|
|
166147
|
+
}
|
|
166148
|
+
|
|
166149
|
+
/** Represents a BatchingDescriptorProto. */
|
|
166150
|
+
class BatchingDescriptorProto implements IBatchingDescriptorProto {
|
|
166151
|
+
|
|
166152
|
+
/**
|
|
166153
|
+
* Constructs a new BatchingDescriptorProto.
|
|
166154
|
+
* @param [properties] Properties to set
|
|
166155
|
+
*/
|
|
166156
|
+
constructor(properties?: google.api.IBatchingDescriptorProto);
|
|
166157
|
+
|
|
166158
|
+
/** BatchingDescriptorProto batchedField. */
|
|
166159
|
+
public batchedField: string;
|
|
166160
|
+
|
|
166161
|
+
/** BatchingDescriptorProto discriminatorFields. */
|
|
166162
|
+
public discriminatorFields: string[];
|
|
166163
|
+
|
|
166164
|
+
/** BatchingDescriptorProto subresponseField. */
|
|
166165
|
+
public subresponseField: string;
|
|
166166
|
+
|
|
166167
|
+
/**
|
|
166168
|
+
* Creates a new BatchingDescriptorProto instance using the specified properties.
|
|
166169
|
+
* @param [properties] Properties to set
|
|
166170
|
+
* @returns BatchingDescriptorProto instance
|
|
166171
|
+
*/
|
|
166172
|
+
public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
|
|
166173
|
+
|
|
166174
|
+
/**
|
|
166175
|
+
* Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
166176
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
166177
|
+
* @param [writer] Writer to encode to
|
|
166178
|
+
* @returns Writer
|
|
166179
|
+
*/
|
|
166180
|
+
public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
166181
|
+
|
|
166182
|
+
/**
|
|
166183
|
+
* Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
|
|
166184
|
+
* @param message BatchingDescriptorProto message or plain object to encode
|
|
166185
|
+
* @param [writer] Writer to encode to
|
|
166186
|
+
* @returns Writer
|
|
166187
|
+
*/
|
|
166188
|
+
public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
166189
|
+
|
|
166190
|
+
/**
|
|
166191
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer.
|
|
166192
|
+
* @param reader Reader or buffer to decode from
|
|
166193
|
+
* @param [length] Message length if known beforehand
|
|
166194
|
+
* @returns BatchingDescriptorProto
|
|
166195
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
166196
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
166197
|
+
*/
|
|
166198
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
|
|
166199
|
+
|
|
166200
|
+
/**
|
|
166201
|
+
* Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
|
|
166202
|
+
* @param reader Reader or buffer to decode from
|
|
166203
|
+
* @returns BatchingDescriptorProto
|
|
166204
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
166205
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
166206
|
+
*/
|
|
166207
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
|
|
166208
|
+
|
|
166209
|
+
/**
|
|
166210
|
+
* Verifies a BatchingDescriptorProto message.
|
|
166211
|
+
* @param message Plain object to verify
|
|
166212
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
166213
|
+
*/
|
|
166214
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
166215
|
+
|
|
166216
|
+
/**
|
|
166217
|
+
* Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
|
|
166218
|
+
* @param object Plain object
|
|
166219
|
+
* @returns BatchingDescriptorProto
|
|
166220
|
+
*/
|
|
166221
|
+
public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
|
|
166222
|
+
|
|
166223
|
+
/**
|
|
166224
|
+
* Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
|
|
166225
|
+
* @param message BatchingDescriptorProto
|
|
166226
|
+
* @param [options] Conversion options
|
|
166227
|
+
* @returns Plain object
|
|
166228
|
+
*/
|
|
166229
|
+
public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
166230
|
+
|
|
166231
|
+
/**
|
|
166232
|
+
* Converts this BatchingDescriptorProto to JSON.
|
|
166233
|
+
* @returns JSON object
|
|
166234
|
+
*/
|
|
166235
|
+
public toJSON(): { [k: string]: any };
|
|
166236
|
+
|
|
166237
|
+
/**
|
|
166238
|
+
* Gets the default type url for BatchingDescriptorProto
|
|
166239
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
166240
|
+
* @returns The default type url
|
|
166241
|
+
*/
|
|
166242
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
166243
|
+
}
|
|
166244
|
+
|
|
165874
166245
|
/** LaunchStage enum. */
|
|
165875
166246
|
enum LaunchStage {
|
|
165876
166247
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
@@ -166101,6 +166472,8 @@ export namespace google {
|
|
|
166101
166472
|
EDITION_PROTO3 = 999,
|
|
166102
166473
|
EDITION_2023 = 1000,
|
|
166103
166474
|
EDITION_2024 = 1001,
|
|
166475
|
+
EDITION_2026 = 1002,
|
|
166476
|
+
EDITION_UNSTABLE = 9999,
|
|
166104
166477
|
EDITION_1_TEST_ONLY = 1,
|
|
166105
166478
|
EDITION_2_TEST_ONLY = 2,
|
|
166106
166479
|
EDITION_99997_TEST_ONLY = 99997,
|
|
@@ -168472,6 +168845,9 @@ export namespace google {
|
|
|
168472
168845
|
|
|
168473
168846
|
/** FeatureSupport editionRemoved */
|
|
168474
168847
|
editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
168848
|
+
|
|
168849
|
+
/** FeatureSupport removalError */
|
|
168850
|
+
removalError?: (string|null);
|
|
168475
168851
|
}
|
|
168476
168852
|
|
|
168477
168853
|
/** Represents a FeatureSupport. */
|
|
@@ -168495,6 +168871,9 @@ export namespace google {
|
|
|
168495
168871
|
/** FeatureSupport editionRemoved. */
|
|
168496
168872
|
public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
168497
168873
|
|
|
168874
|
+
/** FeatureSupport removalError. */
|
|
168875
|
+
public removalError: string;
|
|
168876
|
+
|
|
168498
168877
|
/**
|
|
168499
168878
|
* Creates a new FeatureSupport instance using the specified properties.
|
|
168500
168879
|
* @param [properties] Properties to set
|
|
@@ -169436,6 +169815,9 @@ export namespace google {
|
|
|
169436
169815
|
|
|
169437
169816
|
/** FeatureSet defaultSymbolVisibility */
|
|
169438
169817
|
defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
|
|
169818
|
+
|
|
169819
|
+
/** FeatureSet enforceProtoLimits */
|
|
169820
|
+
enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
|
|
169439
169821
|
}
|
|
169440
169822
|
|
|
169441
169823
|
/** Represents a FeatureSet. */
|
|
@@ -169471,6 +169853,9 @@ export namespace google {
|
|
|
169471
169853
|
/** FeatureSet defaultSymbolVisibility. */
|
|
169472
169854
|
public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
|
|
169473
169855
|
|
|
169856
|
+
/** FeatureSet enforceProtoLimits. */
|
|
169857
|
+
public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
|
|
169858
|
+
|
|
169474
169859
|
/**
|
|
169475
169860
|
* Creates a new FeatureSet instance using the specified properties.
|
|
169476
169861
|
* @param [properties] Properties to set
|
|
@@ -169598,7 +169983,8 @@ export namespace google {
|
|
|
169598
169983
|
enum EnforceNamingStyle {
|
|
169599
169984
|
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
169600
169985
|
STYLE2024 = 1,
|
|
169601
|
-
STYLE_LEGACY = 2
|
|
169986
|
+
STYLE_LEGACY = 2,
|
|
169987
|
+
STYLE2026 = 3
|
|
169602
169988
|
}
|
|
169603
169989
|
|
|
169604
169990
|
/** Properties of a VisibilityFeature. */
|
|
@@ -169703,6 +170089,107 @@ export namespace google {
|
|
|
169703
170089
|
STRICT = 4
|
|
169704
170090
|
}
|
|
169705
170091
|
}
|
|
170092
|
+
|
|
170093
|
+
/** Properties of a ProtoLimitsFeature. */
|
|
170094
|
+
interface IProtoLimitsFeature {
|
|
170095
|
+
}
|
|
170096
|
+
|
|
170097
|
+
/** Represents a ProtoLimitsFeature. */
|
|
170098
|
+
class ProtoLimitsFeature implements IProtoLimitsFeature {
|
|
170099
|
+
|
|
170100
|
+
/**
|
|
170101
|
+
* Constructs a new ProtoLimitsFeature.
|
|
170102
|
+
* @param [properties] Properties to set
|
|
170103
|
+
*/
|
|
170104
|
+
constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
|
|
170105
|
+
|
|
170106
|
+
/**
|
|
170107
|
+
* Creates a new ProtoLimitsFeature instance using the specified properties.
|
|
170108
|
+
* @param [properties] Properties to set
|
|
170109
|
+
* @returns ProtoLimitsFeature instance
|
|
170110
|
+
*/
|
|
170111
|
+
public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
170112
|
+
|
|
170113
|
+
/**
|
|
170114
|
+
* Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
170115
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
170116
|
+
* @param [writer] Writer to encode to
|
|
170117
|
+
* @returns Writer
|
|
170118
|
+
*/
|
|
170119
|
+
public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
170120
|
+
|
|
170121
|
+
/**
|
|
170122
|
+
* Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
|
|
170123
|
+
* @param message ProtoLimitsFeature message or plain object to encode
|
|
170124
|
+
* @param [writer] Writer to encode to
|
|
170125
|
+
* @returns Writer
|
|
170126
|
+
*/
|
|
170127
|
+
public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
170128
|
+
|
|
170129
|
+
/**
|
|
170130
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer.
|
|
170131
|
+
* @param reader Reader or buffer to decode from
|
|
170132
|
+
* @param [length] Message length if known beforehand
|
|
170133
|
+
* @returns ProtoLimitsFeature
|
|
170134
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
170135
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
170136
|
+
*/
|
|
170137
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
170138
|
+
|
|
170139
|
+
/**
|
|
170140
|
+
* Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
|
|
170141
|
+
* @param reader Reader or buffer to decode from
|
|
170142
|
+
* @returns ProtoLimitsFeature
|
|
170143
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
170144
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
170145
|
+
*/
|
|
170146
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
170147
|
+
|
|
170148
|
+
/**
|
|
170149
|
+
* Verifies a ProtoLimitsFeature message.
|
|
170150
|
+
* @param message Plain object to verify
|
|
170151
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
170152
|
+
*/
|
|
170153
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
170154
|
+
|
|
170155
|
+
/**
|
|
170156
|
+
* Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
|
|
170157
|
+
* @param object Plain object
|
|
170158
|
+
* @returns ProtoLimitsFeature
|
|
170159
|
+
*/
|
|
170160
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
|
|
170161
|
+
|
|
170162
|
+
/**
|
|
170163
|
+
* Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
|
|
170164
|
+
* @param message ProtoLimitsFeature
|
|
170165
|
+
* @param [options] Conversion options
|
|
170166
|
+
* @returns Plain object
|
|
170167
|
+
*/
|
|
170168
|
+
public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
170169
|
+
|
|
170170
|
+
/**
|
|
170171
|
+
* Converts this ProtoLimitsFeature to JSON.
|
|
170172
|
+
* @returns JSON object
|
|
170173
|
+
*/
|
|
170174
|
+
public toJSON(): { [k: string]: any };
|
|
170175
|
+
|
|
170176
|
+
/**
|
|
170177
|
+
* Gets the default type url for ProtoLimitsFeature
|
|
170178
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
170179
|
+
* @returns The default type url
|
|
170180
|
+
*/
|
|
170181
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
170182
|
+
}
|
|
170183
|
+
|
|
170184
|
+
namespace ProtoLimitsFeature {
|
|
170185
|
+
|
|
170186
|
+
/** EnforceProtoLimits enum. */
|
|
170187
|
+
enum EnforceProtoLimits {
|
|
170188
|
+
PROTO_LIMITS_UNKNOWN = 0,
|
|
170189
|
+
LEGACY_NO_EXPLICIT_LIMITS = 1,
|
|
170190
|
+
PROTO_LIMITS2026 = 2
|
|
170191
|
+
}
|
|
170192
|
+
}
|
|
169706
170193
|
}
|
|
169707
170194
|
|
|
169708
170195
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -171692,6 +172179,9 @@ export namespace google {
|
|
|
171692
172179
|
|
|
171693
172180
|
/** ListOperationsRequest pageToken */
|
|
171694
172181
|
pageToken?: (string|null);
|
|
172182
|
+
|
|
172183
|
+
/** ListOperationsRequest returnPartialSuccess */
|
|
172184
|
+
returnPartialSuccess?: (boolean|null);
|
|
171695
172185
|
}
|
|
171696
172186
|
|
|
171697
172187
|
/** Represents a ListOperationsRequest. */
|
|
@@ -171715,6 +172205,9 @@ export namespace google {
|
|
|
171715
172205
|
/** ListOperationsRequest pageToken. */
|
|
171716
172206
|
public pageToken: string;
|
|
171717
172207
|
|
|
172208
|
+
/** ListOperationsRequest returnPartialSuccess. */
|
|
172209
|
+
public returnPartialSuccess: boolean;
|
|
172210
|
+
|
|
171718
172211
|
/**
|
|
171719
172212
|
* Creates a new ListOperationsRequest instance using the specified properties.
|
|
171720
172213
|
* @param [properties] Properties to set
|
|
@@ -171801,6 +172294,9 @@ export namespace google {
|
|
|
171801
172294
|
|
|
171802
172295
|
/** ListOperationsResponse nextPageToken */
|
|
171803
172296
|
nextPageToken?: (string|null);
|
|
172297
|
+
|
|
172298
|
+
/** ListOperationsResponse unreachable */
|
|
172299
|
+
unreachable?: (string[]|null);
|
|
171804
172300
|
}
|
|
171805
172301
|
|
|
171806
172302
|
/** Represents a ListOperationsResponse. */
|
|
@@ -171818,6 +172314,9 @@ export namespace google {
|
|
|
171818
172314
|
/** ListOperationsResponse nextPageToken. */
|
|
171819
172315
|
public nextPageToken: string;
|
|
171820
172316
|
|
|
172317
|
+
/** ListOperationsResponse unreachable. */
|
|
172318
|
+
public unreachable: string[];
|
|
172319
|
+
|
|
171821
172320
|
/**
|
|
171822
172321
|
* Creates a new ListOperationsResponse instance using the specified properties.
|
|
171823
172322
|
* @param [properties] Properties to set
|