@google-cloud/pubsub 3.3.0 → 3.4.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/CHANGELOG.md +14 -0
- package/README.md +3 -2
- package/build/protos/google/pubsub/v1/pubsub.proto +46 -34
- package/build/protos/google/pubsub/v1/schema.proto +6 -6
- package/build/protos/protos.d.ts +1671 -166
- package/build/protos/protos.js +4158 -227
- package/build/protos/protos.json +319 -10
- package/build/src/publisher/index.js +2 -2
- package/build/src/publisher/index.js.map +1 -1
- package/build/src/publisher/message-queues.d.ts +29 -1
- package/build/src/publisher/message-queues.js +32 -2
- package/build/src/publisher/message-queues.js.map +1 -1
- package/build/src/v1/publisher_client.d.ts +20 -20
- package/build/src/v1/publisher_client.js +12 -12
- package/build/src/v1/schema_service_client.d.ts +29 -30
- package/build/src/v1/schema_service_client.js +14 -14
- package/build/src/v1/schema_service_client.js.map +1 -1
- package/build/src/v1/subscriber_client.d.ts +52 -58
- package/build/src/v1/subscriber_client.js +16 -16
- package/build/src/v1/subscriber_client.js.map +1 -1
- package/build/src/v1/subscriber_client_config.json +7 -1
- package/package.json +1 -1
package/build/protos/protos.d.ts
CHANGED
|
@@ -4646,6 +4646,9 @@ export namespace google {
|
|
|
4646
4646
|
|
|
4647
4647
|
/** AcknowledgeConfirmation unorderedAckIds */
|
|
4648
4648
|
unorderedAckIds?: (string[]|null);
|
|
4649
|
+
|
|
4650
|
+
/** AcknowledgeConfirmation temporaryFailedAckIds */
|
|
4651
|
+
temporaryFailedAckIds?: (string[]|null);
|
|
4649
4652
|
}
|
|
4650
4653
|
|
|
4651
4654
|
/** Represents an AcknowledgeConfirmation. */
|
|
@@ -4666,6 +4669,9 @@ export namespace google {
|
|
|
4666
4669
|
/** AcknowledgeConfirmation unorderedAckIds. */
|
|
4667
4670
|
public unorderedAckIds: string[];
|
|
4668
4671
|
|
|
4672
|
+
/** AcknowledgeConfirmation temporaryFailedAckIds. */
|
|
4673
|
+
public temporaryFailedAckIds: string[];
|
|
4674
|
+
|
|
4669
4675
|
/**
|
|
4670
4676
|
* Creates a new AcknowledgeConfirmation instance using the specified properties.
|
|
4671
4677
|
* @param [properties] Properties to set
|
|
@@ -4752,6 +4758,9 @@ export namespace google {
|
|
|
4752
4758
|
|
|
4753
4759
|
/** ModifyAckDeadlineConfirmation invalidAckIds */
|
|
4754
4760
|
invalidAckIds?: (string[]|null);
|
|
4761
|
+
|
|
4762
|
+
/** ModifyAckDeadlineConfirmation temporaryFailedAckIds */
|
|
4763
|
+
temporaryFailedAckIds?: (string[]|null);
|
|
4755
4764
|
}
|
|
4756
4765
|
|
|
4757
4766
|
/** Represents a ModifyAckDeadlineConfirmation. */
|
|
@@ -4769,6 +4778,9 @@ export namespace google {
|
|
|
4769
4778
|
/** ModifyAckDeadlineConfirmation invalidAckIds. */
|
|
4770
4779
|
public invalidAckIds: string[];
|
|
4771
4780
|
|
|
4781
|
+
/** ModifyAckDeadlineConfirmation temporaryFailedAckIds. */
|
|
4782
|
+
public temporaryFailedAckIds: string[];
|
|
4783
|
+
|
|
4772
4784
|
/**
|
|
4773
4785
|
* Creates a new ModifyAckDeadlineConfirmation instance using the specified properties.
|
|
4774
4786
|
* @param [properties] Properties to set
|
|
@@ -8094,384 +8106,1826 @@ export namespace google {
|
|
|
8094
8106
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8095
8107
|
}
|
|
8096
8108
|
|
|
8097
|
-
/**
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
|
|
8104
|
-
|
|
8105
|
-
UNORDERED_LIST = 6,
|
|
8106
|
-
NON_EMPTY_DEFAULT = 7
|
|
8109
|
+
/** Properties of a CommonLanguageSettings. */
|
|
8110
|
+
interface ICommonLanguageSettings {
|
|
8111
|
+
|
|
8112
|
+
/** CommonLanguageSettings referenceDocsUri */
|
|
8113
|
+
referenceDocsUri?: (string|null);
|
|
8114
|
+
|
|
8115
|
+
/** CommonLanguageSettings destinations */
|
|
8116
|
+
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
8107
8117
|
}
|
|
8108
8118
|
|
|
8109
|
-
/**
|
|
8110
|
-
|
|
8119
|
+
/** Represents a CommonLanguageSettings. */
|
|
8120
|
+
class CommonLanguageSettings implements ICommonLanguageSettings {
|
|
8111
8121
|
|
|
8112
|
-
/**
|
|
8113
|
-
|
|
8122
|
+
/**
|
|
8123
|
+
* Constructs a new CommonLanguageSettings.
|
|
8124
|
+
* @param [properties] Properties to set
|
|
8125
|
+
*/
|
|
8126
|
+
constructor(properties?: google.api.ICommonLanguageSettings);
|
|
8114
8127
|
|
|
8115
|
-
/**
|
|
8116
|
-
|
|
8128
|
+
/** CommonLanguageSettings referenceDocsUri. */
|
|
8129
|
+
public referenceDocsUri: string;
|
|
8117
8130
|
|
|
8118
|
-
/**
|
|
8119
|
-
|
|
8131
|
+
/** CommonLanguageSettings destinations. */
|
|
8132
|
+
public destinations: google.api.ClientLibraryDestination[];
|
|
8120
8133
|
|
|
8121
|
-
/**
|
|
8122
|
-
|
|
8134
|
+
/**
|
|
8135
|
+
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
8136
|
+
* @param [properties] Properties to set
|
|
8137
|
+
* @returns CommonLanguageSettings instance
|
|
8138
|
+
*/
|
|
8139
|
+
public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
|
|
8123
8140
|
|
|
8124
|
-
/**
|
|
8125
|
-
|
|
8141
|
+
/**
|
|
8142
|
+
* Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
|
|
8143
|
+
* @param message CommonLanguageSettings message or plain object to encode
|
|
8144
|
+
* @param [writer] Writer to encode to
|
|
8145
|
+
* @returns Writer
|
|
8146
|
+
*/
|
|
8147
|
+
public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8126
8148
|
|
|
8127
|
-
/**
|
|
8128
|
-
|
|
8149
|
+
/**
|
|
8150
|
+
* Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
|
|
8151
|
+
* @param message CommonLanguageSettings message or plain object to encode
|
|
8152
|
+
* @param [writer] Writer to encode to
|
|
8153
|
+
* @returns Writer
|
|
8154
|
+
*/
|
|
8155
|
+
public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8129
8156
|
|
|
8130
|
-
/**
|
|
8131
|
-
|
|
8157
|
+
/**
|
|
8158
|
+
* Decodes a CommonLanguageSettings message from the specified reader or buffer.
|
|
8159
|
+
* @param reader Reader or buffer to decode from
|
|
8160
|
+
* @param [length] Message length if known beforehand
|
|
8161
|
+
* @returns CommonLanguageSettings
|
|
8162
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8163
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8164
|
+
*/
|
|
8165
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
|
|
8166
|
+
|
|
8167
|
+
/**
|
|
8168
|
+
* Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
|
|
8169
|
+
* @param reader Reader or buffer to decode from
|
|
8170
|
+
* @returns CommonLanguageSettings
|
|
8171
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8172
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8173
|
+
*/
|
|
8174
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
|
|
8175
|
+
|
|
8176
|
+
/**
|
|
8177
|
+
* Verifies a CommonLanguageSettings message.
|
|
8178
|
+
* @param message Plain object to verify
|
|
8179
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8180
|
+
*/
|
|
8181
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8182
|
+
|
|
8183
|
+
/**
|
|
8184
|
+
* Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
|
|
8185
|
+
* @param object Plain object
|
|
8186
|
+
* @returns CommonLanguageSettings
|
|
8187
|
+
*/
|
|
8188
|
+
public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
|
|
8189
|
+
|
|
8190
|
+
/**
|
|
8191
|
+
* Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
|
|
8192
|
+
* @param message CommonLanguageSettings
|
|
8193
|
+
* @param [options] Conversion options
|
|
8194
|
+
* @returns Plain object
|
|
8195
|
+
*/
|
|
8196
|
+
public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8197
|
+
|
|
8198
|
+
/**
|
|
8199
|
+
* Converts this CommonLanguageSettings to JSON.
|
|
8200
|
+
* @returns JSON object
|
|
8201
|
+
*/
|
|
8202
|
+
public toJSON(): { [k: string]: any };
|
|
8203
|
+
|
|
8204
|
+
/**
|
|
8205
|
+
* Gets the default type url for CommonLanguageSettings
|
|
8206
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8207
|
+
* @returns The default type url
|
|
8208
|
+
*/
|
|
8209
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8132
8210
|
}
|
|
8133
8211
|
|
|
8134
|
-
/**
|
|
8135
|
-
|
|
8212
|
+
/** Properties of a ClientLibrarySettings. */
|
|
8213
|
+
interface IClientLibrarySettings {
|
|
8214
|
+
|
|
8215
|
+
/** ClientLibrarySettings version */
|
|
8216
|
+
version?: (string|null);
|
|
8217
|
+
|
|
8218
|
+
/** ClientLibrarySettings launchStage */
|
|
8219
|
+
launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
|
|
8220
|
+
|
|
8221
|
+
/** ClientLibrarySettings restNumericEnums */
|
|
8222
|
+
restNumericEnums?: (boolean|null);
|
|
8223
|
+
|
|
8224
|
+
/** ClientLibrarySettings javaSettings */
|
|
8225
|
+
javaSettings?: (google.api.IJavaSettings|null);
|
|
8226
|
+
|
|
8227
|
+
/** ClientLibrarySettings cppSettings */
|
|
8228
|
+
cppSettings?: (google.api.ICppSettings|null);
|
|
8229
|
+
|
|
8230
|
+
/** ClientLibrarySettings phpSettings */
|
|
8231
|
+
phpSettings?: (google.api.IPhpSettings|null);
|
|
8232
|
+
|
|
8233
|
+
/** ClientLibrarySettings pythonSettings */
|
|
8234
|
+
pythonSettings?: (google.api.IPythonSettings|null);
|
|
8235
|
+
|
|
8236
|
+
/** ClientLibrarySettings nodeSettings */
|
|
8237
|
+
nodeSettings?: (google.api.INodeSettings|null);
|
|
8238
|
+
|
|
8239
|
+
/** ClientLibrarySettings dotnetSettings */
|
|
8240
|
+
dotnetSettings?: (google.api.IDotnetSettings|null);
|
|
8241
|
+
|
|
8242
|
+
/** ClientLibrarySettings rubySettings */
|
|
8243
|
+
rubySettings?: (google.api.IRubySettings|null);
|
|
8244
|
+
|
|
8245
|
+
/** ClientLibrarySettings goSettings */
|
|
8246
|
+
goSettings?: (google.api.IGoSettings|null);
|
|
8247
|
+
}
|
|
8248
|
+
|
|
8249
|
+
/** Represents a ClientLibrarySettings. */
|
|
8250
|
+
class ClientLibrarySettings implements IClientLibrarySettings {
|
|
8136
8251
|
|
|
8137
8252
|
/**
|
|
8138
|
-
* Constructs a new
|
|
8253
|
+
* Constructs a new ClientLibrarySettings.
|
|
8139
8254
|
* @param [properties] Properties to set
|
|
8140
8255
|
*/
|
|
8141
|
-
constructor(properties?: google.api.
|
|
8256
|
+
constructor(properties?: google.api.IClientLibrarySettings);
|
|
8142
8257
|
|
|
8143
|
-
/**
|
|
8144
|
-
public
|
|
8258
|
+
/** ClientLibrarySettings version. */
|
|
8259
|
+
public version: string;
|
|
8145
8260
|
|
|
8146
|
-
/**
|
|
8147
|
-
public
|
|
8261
|
+
/** ClientLibrarySettings launchStage. */
|
|
8262
|
+
public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage);
|
|
8148
8263
|
|
|
8149
|
-
/**
|
|
8150
|
-
public
|
|
8264
|
+
/** ClientLibrarySettings restNumericEnums. */
|
|
8265
|
+
public restNumericEnums: boolean;
|
|
8151
8266
|
|
|
8152
|
-
/**
|
|
8153
|
-
public
|
|
8267
|
+
/** ClientLibrarySettings javaSettings. */
|
|
8268
|
+
public javaSettings?: (google.api.IJavaSettings|null);
|
|
8154
8269
|
|
|
8155
|
-
/**
|
|
8156
|
-
public
|
|
8270
|
+
/** ClientLibrarySettings cppSettings. */
|
|
8271
|
+
public cppSettings?: (google.api.ICppSettings|null);
|
|
8157
8272
|
|
|
8158
|
-
/**
|
|
8159
|
-
public
|
|
8273
|
+
/** ClientLibrarySettings phpSettings. */
|
|
8274
|
+
public phpSettings?: (google.api.IPhpSettings|null);
|
|
8160
8275
|
|
|
8161
|
-
/**
|
|
8162
|
-
public
|
|
8276
|
+
/** ClientLibrarySettings pythonSettings. */
|
|
8277
|
+
public pythonSettings?: (google.api.IPythonSettings|null);
|
|
8278
|
+
|
|
8279
|
+
/** ClientLibrarySettings nodeSettings. */
|
|
8280
|
+
public nodeSettings?: (google.api.INodeSettings|null);
|
|
8281
|
+
|
|
8282
|
+
/** ClientLibrarySettings dotnetSettings. */
|
|
8283
|
+
public dotnetSettings?: (google.api.IDotnetSettings|null);
|
|
8284
|
+
|
|
8285
|
+
/** ClientLibrarySettings rubySettings. */
|
|
8286
|
+
public rubySettings?: (google.api.IRubySettings|null);
|
|
8287
|
+
|
|
8288
|
+
/** ClientLibrarySettings goSettings. */
|
|
8289
|
+
public goSettings?: (google.api.IGoSettings|null);
|
|
8163
8290
|
|
|
8164
8291
|
/**
|
|
8165
|
-
* Creates a new
|
|
8292
|
+
* Creates a new ClientLibrarySettings instance using the specified properties.
|
|
8166
8293
|
* @param [properties] Properties to set
|
|
8167
|
-
* @returns
|
|
8294
|
+
* @returns ClientLibrarySettings instance
|
|
8168
8295
|
*/
|
|
8169
|
-
public static create(properties?: google.api.
|
|
8296
|
+
public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
|
|
8170
8297
|
|
|
8171
8298
|
/**
|
|
8172
|
-
* Encodes the specified
|
|
8173
|
-
* @param message
|
|
8299
|
+
* Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
|
|
8300
|
+
* @param message ClientLibrarySettings message or plain object to encode
|
|
8174
8301
|
* @param [writer] Writer to encode to
|
|
8175
8302
|
* @returns Writer
|
|
8176
8303
|
*/
|
|
8177
|
-
public static encode(message: google.api.
|
|
8304
|
+
public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8178
8305
|
|
|
8179
8306
|
/**
|
|
8180
|
-
* Encodes the specified
|
|
8181
|
-
* @param message
|
|
8307
|
+
* Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
|
|
8308
|
+
* @param message ClientLibrarySettings message or plain object to encode
|
|
8182
8309
|
* @param [writer] Writer to encode to
|
|
8183
8310
|
* @returns Writer
|
|
8184
8311
|
*/
|
|
8185
|
-
public static encodeDelimited(message: google.api.
|
|
8312
|
+
public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8186
8313
|
|
|
8187
8314
|
/**
|
|
8188
|
-
* Decodes a
|
|
8315
|
+
* Decodes a ClientLibrarySettings message from the specified reader or buffer.
|
|
8189
8316
|
* @param reader Reader or buffer to decode from
|
|
8190
8317
|
* @param [length] Message length if known beforehand
|
|
8191
|
-
* @returns
|
|
8318
|
+
* @returns ClientLibrarySettings
|
|
8192
8319
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8193
8320
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8194
8321
|
*/
|
|
8195
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.
|
|
8322
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
|
|
8196
8323
|
|
|
8197
8324
|
/**
|
|
8198
|
-
* Decodes a
|
|
8325
|
+
* Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
|
|
8199
8326
|
* @param reader Reader or buffer to decode from
|
|
8200
|
-
* @returns
|
|
8327
|
+
* @returns ClientLibrarySettings
|
|
8201
8328
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8202
8329
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8203
8330
|
*/
|
|
8204
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.
|
|
8331
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
|
|
8205
8332
|
|
|
8206
8333
|
/**
|
|
8207
|
-
* Verifies a
|
|
8334
|
+
* Verifies a ClientLibrarySettings message.
|
|
8208
8335
|
* @param message Plain object to verify
|
|
8209
8336
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8210
8337
|
*/
|
|
8211
8338
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8212
8339
|
|
|
8213
8340
|
/**
|
|
8214
|
-
* Creates a
|
|
8341
|
+
* Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
|
|
8215
8342
|
* @param object Plain object
|
|
8216
|
-
* @returns
|
|
8343
|
+
* @returns ClientLibrarySettings
|
|
8217
8344
|
*/
|
|
8218
|
-
public static fromObject(object: { [k: string]: any }): google.api.
|
|
8345
|
+
public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
|
|
8219
8346
|
|
|
8220
8347
|
/**
|
|
8221
|
-
* Creates a plain object from a
|
|
8222
|
-
* @param message
|
|
8348
|
+
* Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
|
|
8349
|
+
* @param message ClientLibrarySettings
|
|
8223
8350
|
* @param [options] Conversion options
|
|
8224
8351
|
* @returns Plain object
|
|
8225
8352
|
*/
|
|
8226
|
-
public static toObject(message: google.api.
|
|
8353
|
+
public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8227
8354
|
|
|
8228
8355
|
/**
|
|
8229
|
-
* Converts this
|
|
8356
|
+
* Converts this ClientLibrarySettings to JSON.
|
|
8230
8357
|
* @returns JSON object
|
|
8231
8358
|
*/
|
|
8232
8359
|
public toJSON(): { [k: string]: any };
|
|
8233
8360
|
|
|
8234
8361
|
/**
|
|
8235
|
-
* Gets the default type url for
|
|
8362
|
+
* Gets the default type url for ClientLibrarySettings
|
|
8236
8363
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8237
8364
|
* @returns The default type url
|
|
8238
8365
|
*/
|
|
8239
8366
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8240
8367
|
}
|
|
8241
8368
|
|
|
8242
|
-
|
|
8369
|
+
/** Properties of a Publishing. */
|
|
8370
|
+
interface IPublishing {
|
|
8243
8371
|
|
|
8244
|
-
/**
|
|
8245
|
-
|
|
8246
|
-
HISTORY_UNSPECIFIED = 0,
|
|
8247
|
-
ORIGINALLY_SINGLE_PATTERN = 1,
|
|
8248
|
-
FUTURE_MULTI_PATTERN = 2
|
|
8249
|
-
}
|
|
8372
|
+
/** Publishing methodSettings */
|
|
8373
|
+
methodSettings?: (google.api.IMethodSettings[]|null);
|
|
8250
8374
|
|
|
8251
|
-
/**
|
|
8252
|
-
|
|
8253
|
-
STYLE_UNSPECIFIED = 0,
|
|
8254
|
-
DECLARATIVE_FRIENDLY = 1
|
|
8255
|
-
}
|
|
8256
|
-
}
|
|
8375
|
+
/** Publishing newIssueUri */
|
|
8376
|
+
newIssueUri?: (string|null);
|
|
8257
8377
|
|
|
8258
|
-
|
|
8259
|
-
|
|
8378
|
+
/** Publishing documentationUri */
|
|
8379
|
+
documentationUri?: (string|null);
|
|
8260
8380
|
|
|
8261
|
-
/**
|
|
8262
|
-
|
|
8381
|
+
/** Publishing apiShortName */
|
|
8382
|
+
apiShortName?: (string|null);
|
|
8263
8383
|
|
|
8264
|
-
/**
|
|
8265
|
-
|
|
8384
|
+
/** Publishing githubLabel */
|
|
8385
|
+
githubLabel?: (string|null);
|
|
8386
|
+
|
|
8387
|
+
/** Publishing codeownerGithubTeams */
|
|
8388
|
+
codeownerGithubTeams?: (string[]|null);
|
|
8389
|
+
|
|
8390
|
+
/** Publishing docTagPrefix */
|
|
8391
|
+
docTagPrefix?: (string|null);
|
|
8392
|
+
|
|
8393
|
+
/** Publishing organization */
|
|
8394
|
+
organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null);
|
|
8395
|
+
|
|
8396
|
+
/** Publishing librarySettings */
|
|
8397
|
+
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
8266
8398
|
}
|
|
8267
8399
|
|
|
8268
|
-
/** Represents a
|
|
8269
|
-
class
|
|
8400
|
+
/** Represents a Publishing. */
|
|
8401
|
+
class Publishing implements IPublishing {
|
|
8270
8402
|
|
|
8271
8403
|
/**
|
|
8272
|
-
* Constructs a new
|
|
8404
|
+
* Constructs a new Publishing.
|
|
8273
8405
|
* @param [properties] Properties to set
|
|
8274
8406
|
*/
|
|
8275
|
-
constructor(properties?: google.api.
|
|
8407
|
+
constructor(properties?: google.api.IPublishing);
|
|
8276
8408
|
|
|
8277
|
-
/**
|
|
8278
|
-
public
|
|
8409
|
+
/** Publishing methodSettings. */
|
|
8410
|
+
public methodSettings: google.api.IMethodSettings[];
|
|
8279
8411
|
|
|
8280
|
-
/**
|
|
8281
|
-
public
|
|
8412
|
+
/** Publishing newIssueUri. */
|
|
8413
|
+
public newIssueUri: string;
|
|
8414
|
+
|
|
8415
|
+
/** Publishing documentationUri. */
|
|
8416
|
+
public documentationUri: string;
|
|
8417
|
+
|
|
8418
|
+
/** Publishing apiShortName. */
|
|
8419
|
+
public apiShortName: string;
|
|
8420
|
+
|
|
8421
|
+
/** Publishing githubLabel. */
|
|
8422
|
+
public githubLabel: string;
|
|
8423
|
+
|
|
8424
|
+
/** Publishing codeownerGithubTeams. */
|
|
8425
|
+
public codeownerGithubTeams: string[];
|
|
8426
|
+
|
|
8427
|
+
/** Publishing docTagPrefix. */
|
|
8428
|
+
public docTagPrefix: string;
|
|
8429
|
+
|
|
8430
|
+
/** Publishing organization. */
|
|
8431
|
+
public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization);
|
|
8432
|
+
|
|
8433
|
+
/** Publishing librarySettings. */
|
|
8434
|
+
public librarySettings: google.api.IClientLibrarySettings[];
|
|
8282
8435
|
|
|
8283
8436
|
/**
|
|
8284
|
-
* Creates a new
|
|
8437
|
+
* Creates a new Publishing instance using the specified properties.
|
|
8285
8438
|
* @param [properties] Properties to set
|
|
8286
|
-
* @returns
|
|
8439
|
+
* @returns Publishing instance
|
|
8287
8440
|
*/
|
|
8288
|
-
public static create(properties?: google.api.
|
|
8441
|
+
public static create(properties?: google.api.IPublishing): google.api.Publishing;
|
|
8289
8442
|
|
|
8290
8443
|
/**
|
|
8291
|
-
* Encodes the specified
|
|
8292
|
-
* @param message
|
|
8444
|
+
* Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
|
|
8445
|
+
* @param message Publishing message or plain object to encode
|
|
8293
8446
|
* @param [writer] Writer to encode to
|
|
8294
8447
|
* @returns Writer
|
|
8295
8448
|
*/
|
|
8296
|
-
public static encode(message: google.api.
|
|
8449
|
+
public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8297
8450
|
|
|
8298
8451
|
/**
|
|
8299
|
-
* Encodes the specified
|
|
8300
|
-
* @param message
|
|
8452
|
+
* Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
|
|
8453
|
+
* @param message Publishing message or plain object to encode
|
|
8301
8454
|
* @param [writer] Writer to encode to
|
|
8302
8455
|
* @returns Writer
|
|
8303
8456
|
*/
|
|
8304
|
-
public static encodeDelimited(message: google.api.
|
|
8457
|
+
public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8305
8458
|
|
|
8306
8459
|
/**
|
|
8307
|
-
* Decodes a
|
|
8460
|
+
* Decodes a Publishing message from the specified reader or buffer.
|
|
8308
8461
|
* @param reader Reader or buffer to decode from
|
|
8309
8462
|
* @param [length] Message length if known beforehand
|
|
8310
|
-
* @returns
|
|
8463
|
+
* @returns Publishing
|
|
8311
8464
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8312
8465
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8313
8466
|
*/
|
|
8314
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.
|
|
8467
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
|
|
8315
8468
|
|
|
8316
8469
|
/**
|
|
8317
|
-
* Decodes a
|
|
8470
|
+
* Decodes a Publishing message from the specified reader or buffer, length delimited.
|
|
8318
8471
|
* @param reader Reader or buffer to decode from
|
|
8319
|
-
* @returns
|
|
8472
|
+
* @returns Publishing
|
|
8320
8473
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8321
8474
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8322
8475
|
*/
|
|
8323
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.
|
|
8476
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing;
|
|
8324
8477
|
|
|
8325
8478
|
/**
|
|
8326
|
-
* Verifies a
|
|
8479
|
+
* Verifies a Publishing message.
|
|
8327
8480
|
* @param message Plain object to verify
|
|
8328
8481
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8329
8482
|
*/
|
|
8330
8483
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8331
8484
|
|
|
8332
8485
|
/**
|
|
8333
|
-
* Creates a
|
|
8486
|
+
* Creates a Publishing message from a plain object. Also converts values to their respective internal types.
|
|
8334
8487
|
* @param object Plain object
|
|
8335
|
-
* @returns
|
|
8488
|
+
* @returns Publishing
|
|
8336
8489
|
*/
|
|
8337
|
-
public static fromObject(object: { [k: string]: any }): google.api.
|
|
8490
|
+
public static fromObject(object: { [k: string]: any }): google.api.Publishing;
|
|
8338
8491
|
|
|
8339
8492
|
/**
|
|
8340
|
-
* Creates a plain object from a
|
|
8341
|
-
* @param message
|
|
8493
|
+
* Creates a plain object from a Publishing message. Also converts values to other types if specified.
|
|
8494
|
+
* @param message Publishing
|
|
8342
8495
|
* @param [options] Conversion options
|
|
8343
8496
|
* @returns Plain object
|
|
8344
8497
|
*/
|
|
8345
|
-
public static toObject(message: google.api.
|
|
8498
|
+
public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8346
8499
|
|
|
8347
8500
|
/**
|
|
8348
|
-
* Converts this
|
|
8501
|
+
* Converts this Publishing to JSON.
|
|
8349
8502
|
* @returns JSON object
|
|
8350
8503
|
*/
|
|
8351
8504
|
public toJSON(): { [k: string]: any };
|
|
8352
8505
|
|
|
8353
8506
|
/**
|
|
8354
|
-
* Gets the default type url for
|
|
8507
|
+
* Gets the default type url for Publishing
|
|
8355
8508
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8356
8509
|
* @returns The default type url
|
|
8357
8510
|
*/
|
|
8358
8511
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8359
8512
|
}
|
|
8360
|
-
}
|
|
8361
8513
|
|
|
8362
|
-
|
|
8363
|
-
|
|
8514
|
+
/** Properties of a JavaSettings. */
|
|
8515
|
+
interface IJavaSettings {
|
|
8364
8516
|
|
|
8365
|
-
|
|
8366
|
-
|
|
8517
|
+
/** JavaSettings libraryPackage */
|
|
8518
|
+
libraryPackage?: (string|null);
|
|
8367
8519
|
|
|
8368
|
-
/**
|
|
8369
|
-
|
|
8520
|
+
/** JavaSettings serviceClassNames */
|
|
8521
|
+
serviceClassNames?: ({ [k: string]: string }|null);
|
|
8522
|
+
|
|
8523
|
+
/** JavaSettings common */
|
|
8524
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
8370
8525
|
}
|
|
8371
8526
|
|
|
8372
|
-
/** Represents a
|
|
8373
|
-
class
|
|
8527
|
+
/** Represents a JavaSettings. */
|
|
8528
|
+
class JavaSettings implements IJavaSettings {
|
|
8374
8529
|
|
|
8375
8530
|
/**
|
|
8376
|
-
* Constructs a new
|
|
8531
|
+
* Constructs a new JavaSettings.
|
|
8377
8532
|
* @param [properties] Properties to set
|
|
8378
8533
|
*/
|
|
8379
|
-
constructor(properties?: google.
|
|
8534
|
+
constructor(properties?: google.api.IJavaSettings);
|
|
8380
8535
|
|
|
8381
|
-
/**
|
|
8382
|
-
public
|
|
8536
|
+
/** JavaSettings libraryPackage. */
|
|
8537
|
+
public libraryPackage: string;
|
|
8538
|
+
|
|
8539
|
+
/** JavaSettings serviceClassNames. */
|
|
8540
|
+
public serviceClassNames: { [k: string]: string };
|
|
8541
|
+
|
|
8542
|
+
/** JavaSettings common. */
|
|
8543
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
8383
8544
|
|
|
8384
8545
|
/**
|
|
8385
|
-
* Creates a new
|
|
8546
|
+
* Creates a new JavaSettings instance using the specified properties.
|
|
8386
8547
|
* @param [properties] Properties to set
|
|
8387
|
-
* @returns
|
|
8548
|
+
* @returns JavaSettings instance
|
|
8388
8549
|
*/
|
|
8389
|
-
public static create(properties?: google.
|
|
8550
|
+
public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings;
|
|
8390
8551
|
|
|
8391
8552
|
/**
|
|
8392
|
-
* Encodes the specified
|
|
8393
|
-
* @param message
|
|
8553
|
+
* Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
|
|
8554
|
+
* @param message JavaSettings message or plain object to encode
|
|
8394
8555
|
* @param [writer] Writer to encode to
|
|
8395
8556
|
* @returns Writer
|
|
8396
8557
|
*/
|
|
8397
|
-
public static encode(message: google.
|
|
8558
|
+
public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8398
8559
|
|
|
8399
8560
|
/**
|
|
8400
|
-
* Encodes the specified
|
|
8401
|
-
* @param message
|
|
8561
|
+
* Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
|
|
8562
|
+
* @param message JavaSettings message or plain object to encode
|
|
8402
8563
|
* @param [writer] Writer to encode to
|
|
8403
8564
|
* @returns Writer
|
|
8404
8565
|
*/
|
|
8405
|
-
public static encodeDelimited(message: google.
|
|
8566
|
+
public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8406
8567
|
|
|
8407
8568
|
/**
|
|
8408
|
-
* Decodes a
|
|
8569
|
+
* Decodes a JavaSettings message from the specified reader or buffer.
|
|
8409
8570
|
* @param reader Reader or buffer to decode from
|
|
8410
8571
|
* @param [length] Message length if known beforehand
|
|
8411
|
-
* @returns
|
|
8572
|
+
* @returns JavaSettings
|
|
8412
8573
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8413
8574
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8414
8575
|
*/
|
|
8415
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.
|
|
8576
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings;
|
|
8416
8577
|
|
|
8417
8578
|
/**
|
|
8418
|
-
* Decodes a
|
|
8579
|
+
* Decodes a JavaSettings message from the specified reader or buffer, length delimited.
|
|
8419
8580
|
* @param reader Reader or buffer to decode from
|
|
8420
|
-
* @returns
|
|
8581
|
+
* @returns JavaSettings
|
|
8421
8582
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8422
8583
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8423
8584
|
*/
|
|
8424
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.
|
|
8585
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings;
|
|
8425
8586
|
|
|
8426
8587
|
/**
|
|
8427
|
-
* Verifies a
|
|
8588
|
+
* Verifies a JavaSettings message.
|
|
8428
8589
|
* @param message Plain object to verify
|
|
8429
8590
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8430
8591
|
*/
|
|
8431
8592
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8432
8593
|
|
|
8433
8594
|
/**
|
|
8434
|
-
* Creates a
|
|
8595
|
+
* Creates a JavaSettings message from a plain object. Also converts values to their respective internal types.
|
|
8435
8596
|
* @param object Plain object
|
|
8436
|
-
* @returns
|
|
8597
|
+
* @returns JavaSettings
|
|
8437
8598
|
*/
|
|
8438
|
-
public static fromObject(object: { [k: string]: any }): google.
|
|
8599
|
+
public static fromObject(object: { [k: string]: any }): google.api.JavaSettings;
|
|
8439
8600
|
|
|
8440
8601
|
/**
|
|
8441
|
-
* Creates a plain object from a
|
|
8442
|
-
* @param message
|
|
8602
|
+
* Creates a plain object from a JavaSettings message. Also converts values to other types if specified.
|
|
8603
|
+
* @param message JavaSettings
|
|
8443
8604
|
* @param [options] Conversion options
|
|
8444
8605
|
* @returns Plain object
|
|
8445
8606
|
*/
|
|
8446
|
-
public static toObject(message: google.
|
|
8607
|
+
public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8447
8608
|
|
|
8448
8609
|
/**
|
|
8449
|
-
* Converts this
|
|
8610
|
+
* Converts this JavaSettings to JSON.
|
|
8450
8611
|
* @returns JSON object
|
|
8451
8612
|
*/
|
|
8452
8613
|
public toJSON(): { [k: string]: any };
|
|
8453
8614
|
|
|
8454
8615
|
/**
|
|
8455
|
-
* Gets the default type url for
|
|
8616
|
+
* Gets the default type url for JavaSettings
|
|
8456
8617
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8457
8618
|
* @returns The default type url
|
|
8458
8619
|
*/
|
|
8459
8620
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8460
8621
|
}
|
|
8461
8622
|
|
|
8462
|
-
/** Properties of a
|
|
8463
|
-
interface
|
|
8464
|
-
|
|
8465
|
-
/** FileDescriptorProto name */
|
|
8466
|
-
name?: (string|null);
|
|
8623
|
+
/** Properties of a CppSettings. */
|
|
8624
|
+
interface ICppSettings {
|
|
8467
8625
|
|
|
8468
|
-
/**
|
|
8469
|
-
|
|
8626
|
+
/** CppSettings common */
|
|
8627
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
8628
|
+
}
|
|
8470
8629
|
|
|
8471
|
-
|
|
8472
|
-
|
|
8630
|
+
/** Represents a CppSettings. */
|
|
8631
|
+
class CppSettings implements ICppSettings {
|
|
8473
8632
|
|
|
8474
|
-
/**
|
|
8633
|
+
/**
|
|
8634
|
+
* Constructs a new CppSettings.
|
|
8635
|
+
* @param [properties] Properties to set
|
|
8636
|
+
*/
|
|
8637
|
+
constructor(properties?: google.api.ICppSettings);
|
|
8638
|
+
|
|
8639
|
+
/** CppSettings common. */
|
|
8640
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
8641
|
+
|
|
8642
|
+
/**
|
|
8643
|
+
* Creates a new CppSettings instance using the specified properties.
|
|
8644
|
+
* @param [properties] Properties to set
|
|
8645
|
+
* @returns CppSettings instance
|
|
8646
|
+
*/
|
|
8647
|
+
public static create(properties?: google.api.ICppSettings): google.api.CppSettings;
|
|
8648
|
+
|
|
8649
|
+
/**
|
|
8650
|
+
* Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
|
|
8651
|
+
* @param message CppSettings message or plain object to encode
|
|
8652
|
+
* @param [writer] Writer to encode to
|
|
8653
|
+
* @returns Writer
|
|
8654
|
+
*/
|
|
8655
|
+
public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8656
|
+
|
|
8657
|
+
/**
|
|
8658
|
+
* Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
|
|
8659
|
+
* @param message CppSettings message or plain object to encode
|
|
8660
|
+
* @param [writer] Writer to encode to
|
|
8661
|
+
* @returns Writer
|
|
8662
|
+
*/
|
|
8663
|
+
public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8664
|
+
|
|
8665
|
+
/**
|
|
8666
|
+
* Decodes a CppSettings message from the specified reader or buffer.
|
|
8667
|
+
* @param reader Reader or buffer to decode from
|
|
8668
|
+
* @param [length] Message length if known beforehand
|
|
8669
|
+
* @returns CppSettings
|
|
8670
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8671
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8672
|
+
*/
|
|
8673
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings;
|
|
8674
|
+
|
|
8675
|
+
/**
|
|
8676
|
+
* Decodes a CppSettings message from the specified reader or buffer, length delimited.
|
|
8677
|
+
* @param reader Reader or buffer to decode from
|
|
8678
|
+
* @returns CppSettings
|
|
8679
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8680
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8681
|
+
*/
|
|
8682
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings;
|
|
8683
|
+
|
|
8684
|
+
/**
|
|
8685
|
+
* Verifies a CppSettings message.
|
|
8686
|
+
* @param message Plain object to verify
|
|
8687
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8688
|
+
*/
|
|
8689
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8690
|
+
|
|
8691
|
+
/**
|
|
8692
|
+
* Creates a CppSettings message from a plain object. Also converts values to their respective internal types.
|
|
8693
|
+
* @param object Plain object
|
|
8694
|
+
* @returns CppSettings
|
|
8695
|
+
*/
|
|
8696
|
+
public static fromObject(object: { [k: string]: any }): google.api.CppSettings;
|
|
8697
|
+
|
|
8698
|
+
/**
|
|
8699
|
+
* Creates a plain object from a CppSettings message. Also converts values to other types if specified.
|
|
8700
|
+
* @param message CppSettings
|
|
8701
|
+
* @param [options] Conversion options
|
|
8702
|
+
* @returns Plain object
|
|
8703
|
+
*/
|
|
8704
|
+
public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8705
|
+
|
|
8706
|
+
/**
|
|
8707
|
+
* Converts this CppSettings to JSON.
|
|
8708
|
+
* @returns JSON object
|
|
8709
|
+
*/
|
|
8710
|
+
public toJSON(): { [k: string]: any };
|
|
8711
|
+
|
|
8712
|
+
/**
|
|
8713
|
+
* Gets the default type url for CppSettings
|
|
8714
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8715
|
+
* @returns The default type url
|
|
8716
|
+
*/
|
|
8717
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8718
|
+
}
|
|
8719
|
+
|
|
8720
|
+
/** Properties of a PhpSettings. */
|
|
8721
|
+
interface IPhpSettings {
|
|
8722
|
+
|
|
8723
|
+
/** PhpSettings common */
|
|
8724
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
8725
|
+
}
|
|
8726
|
+
|
|
8727
|
+
/** Represents a PhpSettings. */
|
|
8728
|
+
class PhpSettings implements IPhpSettings {
|
|
8729
|
+
|
|
8730
|
+
/**
|
|
8731
|
+
* Constructs a new PhpSettings.
|
|
8732
|
+
* @param [properties] Properties to set
|
|
8733
|
+
*/
|
|
8734
|
+
constructor(properties?: google.api.IPhpSettings);
|
|
8735
|
+
|
|
8736
|
+
/** PhpSettings common. */
|
|
8737
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
8738
|
+
|
|
8739
|
+
/**
|
|
8740
|
+
* Creates a new PhpSettings instance using the specified properties.
|
|
8741
|
+
* @param [properties] Properties to set
|
|
8742
|
+
* @returns PhpSettings instance
|
|
8743
|
+
*/
|
|
8744
|
+
public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings;
|
|
8745
|
+
|
|
8746
|
+
/**
|
|
8747
|
+
* Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
|
|
8748
|
+
* @param message PhpSettings message or plain object to encode
|
|
8749
|
+
* @param [writer] Writer to encode to
|
|
8750
|
+
* @returns Writer
|
|
8751
|
+
*/
|
|
8752
|
+
public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8753
|
+
|
|
8754
|
+
/**
|
|
8755
|
+
* Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
|
|
8756
|
+
* @param message PhpSettings message or plain object to encode
|
|
8757
|
+
* @param [writer] Writer to encode to
|
|
8758
|
+
* @returns Writer
|
|
8759
|
+
*/
|
|
8760
|
+
public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8761
|
+
|
|
8762
|
+
/**
|
|
8763
|
+
* Decodes a PhpSettings message from the specified reader or buffer.
|
|
8764
|
+
* @param reader Reader or buffer to decode from
|
|
8765
|
+
* @param [length] Message length if known beforehand
|
|
8766
|
+
* @returns PhpSettings
|
|
8767
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8768
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8769
|
+
*/
|
|
8770
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings;
|
|
8771
|
+
|
|
8772
|
+
/**
|
|
8773
|
+
* Decodes a PhpSettings message from the specified reader or buffer, length delimited.
|
|
8774
|
+
* @param reader Reader or buffer to decode from
|
|
8775
|
+
* @returns PhpSettings
|
|
8776
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8777
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8778
|
+
*/
|
|
8779
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings;
|
|
8780
|
+
|
|
8781
|
+
/**
|
|
8782
|
+
* Verifies a PhpSettings message.
|
|
8783
|
+
* @param message Plain object to verify
|
|
8784
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8785
|
+
*/
|
|
8786
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8787
|
+
|
|
8788
|
+
/**
|
|
8789
|
+
* Creates a PhpSettings message from a plain object. Also converts values to their respective internal types.
|
|
8790
|
+
* @param object Plain object
|
|
8791
|
+
* @returns PhpSettings
|
|
8792
|
+
*/
|
|
8793
|
+
public static fromObject(object: { [k: string]: any }): google.api.PhpSettings;
|
|
8794
|
+
|
|
8795
|
+
/**
|
|
8796
|
+
* Creates a plain object from a PhpSettings message. Also converts values to other types if specified.
|
|
8797
|
+
* @param message PhpSettings
|
|
8798
|
+
* @param [options] Conversion options
|
|
8799
|
+
* @returns Plain object
|
|
8800
|
+
*/
|
|
8801
|
+
public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8802
|
+
|
|
8803
|
+
/**
|
|
8804
|
+
* Converts this PhpSettings to JSON.
|
|
8805
|
+
* @returns JSON object
|
|
8806
|
+
*/
|
|
8807
|
+
public toJSON(): { [k: string]: any };
|
|
8808
|
+
|
|
8809
|
+
/**
|
|
8810
|
+
* Gets the default type url for PhpSettings
|
|
8811
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8812
|
+
* @returns The default type url
|
|
8813
|
+
*/
|
|
8814
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8815
|
+
}
|
|
8816
|
+
|
|
8817
|
+
/** Properties of a PythonSettings. */
|
|
8818
|
+
interface IPythonSettings {
|
|
8819
|
+
|
|
8820
|
+
/** PythonSettings common */
|
|
8821
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
8822
|
+
}
|
|
8823
|
+
|
|
8824
|
+
/** Represents a PythonSettings. */
|
|
8825
|
+
class PythonSettings implements IPythonSettings {
|
|
8826
|
+
|
|
8827
|
+
/**
|
|
8828
|
+
* Constructs a new PythonSettings.
|
|
8829
|
+
* @param [properties] Properties to set
|
|
8830
|
+
*/
|
|
8831
|
+
constructor(properties?: google.api.IPythonSettings);
|
|
8832
|
+
|
|
8833
|
+
/** PythonSettings common. */
|
|
8834
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
8835
|
+
|
|
8836
|
+
/**
|
|
8837
|
+
* Creates a new PythonSettings instance using the specified properties.
|
|
8838
|
+
* @param [properties] Properties to set
|
|
8839
|
+
* @returns PythonSettings instance
|
|
8840
|
+
*/
|
|
8841
|
+
public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings;
|
|
8842
|
+
|
|
8843
|
+
/**
|
|
8844
|
+
* Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
|
|
8845
|
+
* @param message PythonSettings message or plain object to encode
|
|
8846
|
+
* @param [writer] Writer to encode to
|
|
8847
|
+
* @returns Writer
|
|
8848
|
+
*/
|
|
8849
|
+
public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8850
|
+
|
|
8851
|
+
/**
|
|
8852
|
+
* Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
|
|
8853
|
+
* @param message PythonSettings message or plain object to encode
|
|
8854
|
+
* @param [writer] Writer to encode to
|
|
8855
|
+
* @returns Writer
|
|
8856
|
+
*/
|
|
8857
|
+
public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8858
|
+
|
|
8859
|
+
/**
|
|
8860
|
+
* Decodes a PythonSettings message from the specified reader or buffer.
|
|
8861
|
+
* @param reader Reader or buffer to decode from
|
|
8862
|
+
* @param [length] Message length if known beforehand
|
|
8863
|
+
* @returns PythonSettings
|
|
8864
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8865
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8866
|
+
*/
|
|
8867
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings;
|
|
8868
|
+
|
|
8869
|
+
/**
|
|
8870
|
+
* Decodes a PythonSettings message from the specified reader or buffer, length delimited.
|
|
8871
|
+
* @param reader Reader or buffer to decode from
|
|
8872
|
+
* @returns PythonSettings
|
|
8873
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8874
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8875
|
+
*/
|
|
8876
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings;
|
|
8877
|
+
|
|
8878
|
+
/**
|
|
8879
|
+
* Verifies a PythonSettings message.
|
|
8880
|
+
* @param message Plain object to verify
|
|
8881
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8882
|
+
*/
|
|
8883
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8884
|
+
|
|
8885
|
+
/**
|
|
8886
|
+
* Creates a PythonSettings message from a plain object. Also converts values to their respective internal types.
|
|
8887
|
+
* @param object Plain object
|
|
8888
|
+
* @returns PythonSettings
|
|
8889
|
+
*/
|
|
8890
|
+
public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
|
|
8891
|
+
|
|
8892
|
+
/**
|
|
8893
|
+
* Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
|
|
8894
|
+
* @param message PythonSettings
|
|
8895
|
+
* @param [options] Conversion options
|
|
8896
|
+
* @returns Plain object
|
|
8897
|
+
*/
|
|
8898
|
+
public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8899
|
+
|
|
8900
|
+
/**
|
|
8901
|
+
* Converts this PythonSettings to JSON.
|
|
8902
|
+
* @returns JSON object
|
|
8903
|
+
*/
|
|
8904
|
+
public toJSON(): { [k: string]: any };
|
|
8905
|
+
|
|
8906
|
+
/**
|
|
8907
|
+
* Gets the default type url for PythonSettings
|
|
8908
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8909
|
+
* @returns The default type url
|
|
8910
|
+
*/
|
|
8911
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8912
|
+
}
|
|
8913
|
+
|
|
8914
|
+
/** Properties of a NodeSettings. */
|
|
8915
|
+
interface INodeSettings {
|
|
8916
|
+
|
|
8917
|
+
/** NodeSettings common */
|
|
8918
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
8919
|
+
}
|
|
8920
|
+
|
|
8921
|
+
/** Represents a NodeSettings. */
|
|
8922
|
+
class NodeSettings implements INodeSettings {
|
|
8923
|
+
|
|
8924
|
+
/**
|
|
8925
|
+
* Constructs a new NodeSettings.
|
|
8926
|
+
* @param [properties] Properties to set
|
|
8927
|
+
*/
|
|
8928
|
+
constructor(properties?: google.api.INodeSettings);
|
|
8929
|
+
|
|
8930
|
+
/** NodeSettings common. */
|
|
8931
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
8932
|
+
|
|
8933
|
+
/**
|
|
8934
|
+
* Creates a new NodeSettings instance using the specified properties.
|
|
8935
|
+
* @param [properties] Properties to set
|
|
8936
|
+
* @returns NodeSettings instance
|
|
8937
|
+
*/
|
|
8938
|
+
public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
|
|
8939
|
+
|
|
8940
|
+
/**
|
|
8941
|
+
* Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
|
|
8942
|
+
* @param message NodeSettings message or plain object to encode
|
|
8943
|
+
* @param [writer] Writer to encode to
|
|
8944
|
+
* @returns Writer
|
|
8945
|
+
*/
|
|
8946
|
+
public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8947
|
+
|
|
8948
|
+
/**
|
|
8949
|
+
* Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
|
|
8950
|
+
* @param message NodeSettings message or plain object to encode
|
|
8951
|
+
* @param [writer] Writer to encode to
|
|
8952
|
+
* @returns Writer
|
|
8953
|
+
*/
|
|
8954
|
+
public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8955
|
+
|
|
8956
|
+
/**
|
|
8957
|
+
* Decodes a NodeSettings message from the specified reader or buffer.
|
|
8958
|
+
* @param reader Reader or buffer to decode from
|
|
8959
|
+
* @param [length] Message length if known beforehand
|
|
8960
|
+
* @returns NodeSettings
|
|
8961
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8962
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8963
|
+
*/
|
|
8964
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings;
|
|
8965
|
+
|
|
8966
|
+
/**
|
|
8967
|
+
* Decodes a NodeSettings message from the specified reader or buffer, length delimited.
|
|
8968
|
+
* @param reader Reader or buffer to decode from
|
|
8969
|
+
* @returns NodeSettings
|
|
8970
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8971
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8972
|
+
*/
|
|
8973
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings;
|
|
8974
|
+
|
|
8975
|
+
/**
|
|
8976
|
+
* Verifies a NodeSettings message.
|
|
8977
|
+
* @param message Plain object to verify
|
|
8978
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8979
|
+
*/
|
|
8980
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8981
|
+
|
|
8982
|
+
/**
|
|
8983
|
+
* Creates a NodeSettings message from a plain object. Also converts values to their respective internal types.
|
|
8984
|
+
* @param object Plain object
|
|
8985
|
+
* @returns NodeSettings
|
|
8986
|
+
*/
|
|
8987
|
+
public static fromObject(object: { [k: string]: any }): google.api.NodeSettings;
|
|
8988
|
+
|
|
8989
|
+
/**
|
|
8990
|
+
* Creates a plain object from a NodeSettings message. Also converts values to other types if specified.
|
|
8991
|
+
* @param message NodeSettings
|
|
8992
|
+
* @param [options] Conversion options
|
|
8993
|
+
* @returns Plain object
|
|
8994
|
+
*/
|
|
8995
|
+
public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8996
|
+
|
|
8997
|
+
/**
|
|
8998
|
+
* Converts this NodeSettings to JSON.
|
|
8999
|
+
* @returns JSON object
|
|
9000
|
+
*/
|
|
9001
|
+
public toJSON(): { [k: string]: any };
|
|
9002
|
+
|
|
9003
|
+
/**
|
|
9004
|
+
* Gets the default type url for NodeSettings
|
|
9005
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9006
|
+
* @returns The default type url
|
|
9007
|
+
*/
|
|
9008
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9009
|
+
}
|
|
9010
|
+
|
|
9011
|
+
/** Properties of a DotnetSettings. */
|
|
9012
|
+
interface IDotnetSettings {
|
|
9013
|
+
|
|
9014
|
+
/** DotnetSettings common */
|
|
9015
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
9016
|
+
}
|
|
9017
|
+
|
|
9018
|
+
/** Represents a DotnetSettings. */
|
|
9019
|
+
class DotnetSettings implements IDotnetSettings {
|
|
9020
|
+
|
|
9021
|
+
/**
|
|
9022
|
+
* Constructs a new DotnetSettings.
|
|
9023
|
+
* @param [properties] Properties to set
|
|
9024
|
+
*/
|
|
9025
|
+
constructor(properties?: google.api.IDotnetSettings);
|
|
9026
|
+
|
|
9027
|
+
/** DotnetSettings common. */
|
|
9028
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
9029
|
+
|
|
9030
|
+
/**
|
|
9031
|
+
* Creates a new DotnetSettings instance using the specified properties.
|
|
9032
|
+
* @param [properties] Properties to set
|
|
9033
|
+
* @returns DotnetSettings instance
|
|
9034
|
+
*/
|
|
9035
|
+
public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings;
|
|
9036
|
+
|
|
9037
|
+
/**
|
|
9038
|
+
* Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
|
|
9039
|
+
* @param message DotnetSettings message or plain object to encode
|
|
9040
|
+
* @param [writer] Writer to encode to
|
|
9041
|
+
* @returns Writer
|
|
9042
|
+
*/
|
|
9043
|
+
public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9044
|
+
|
|
9045
|
+
/**
|
|
9046
|
+
* Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
|
|
9047
|
+
* @param message DotnetSettings message or plain object to encode
|
|
9048
|
+
* @param [writer] Writer to encode to
|
|
9049
|
+
* @returns Writer
|
|
9050
|
+
*/
|
|
9051
|
+
public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9052
|
+
|
|
9053
|
+
/**
|
|
9054
|
+
* Decodes a DotnetSettings message from the specified reader or buffer.
|
|
9055
|
+
* @param reader Reader or buffer to decode from
|
|
9056
|
+
* @param [length] Message length if known beforehand
|
|
9057
|
+
* @returns DotnetSettings
|
|
9058
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9059
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9060
|
+
*/
|
|
9061
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings;
|
|
9062
|
+
|
|
9063
|
+
/**
|
|
9064
|
+
* Decodes a DotnetSettings message from the specified reader or buffer, length delimited.
|
|
9065
|
+
* @param reader Reader or buffer to decode from
|
|
9066
|
+
* @returns DotnetSettings
|
|
9067
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9068
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9069
|
+
*/
|
|
9070
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings;
|
|
9071
|
+
|
|
9072
|
+
/**
|
|
9073
|
+
* Verifies a DotnetSettings message.
|
|
9074
|
+
* @param message Plain object to verify
|
|
9075
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9076
|
+
*/
|
|
9077
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9078
|
+
|
|
9079
|
+
/**
|
|
9080
|
+
* Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types.
|
|
9081
|
+
* @param object Plain object
|
|
9082
|
+
* @returns DotnetSettings
|
|
9083
|
+
*/
|
|
9084
|
+
public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings;
|
|
9085
|
+
|
|
9086
|
+
/**
|
|
9087
|
+
* Creates a plain object from a DotnetSettings message. Also converts values to other types if specified.
|
|
9088
|
+
* @param message DotnetSettings
|
|
9089
|
+
* @param [options] Conversion options
|
|
9090
|
+
* @returns Plain object
|
|
9091
|
+
*/
|
|
9092
|
+
public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9093
|
+
|
|
9094
|
+
/**
|
|
9095
|
+
* Converts this DotnetSettings to JSON.
|
|
9096
|
+
* @returns JSON object
|
|
9097
|
+
*/
|
|
9098
|
+
public toJSON(): { [k: string]: any };
|
|
9099
|
+
|
|
9100
|
+
/**
|
|
9101
|
+
* Gets the default type url for DotnetSettings
|
|
9102
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9103
|
+
* @returns The default type url
|
|
9104
|
+
*/
|
|
9105
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9106
|
+
}
|
|
9107
|
+
|
|
9108
|
+
/** Properties of a RubySettings. */
|
|
9109
|
+
interface IRubySettings {
|
|
9110
|
+
|
|
9111
|
+
/** RubySettings common */
|
|
9112
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
9113
|
+
}
|
|
9114
|
+
|
|
9115
|
+
/** Represents a RubySettings. */
|
|
9116
|
+
class RubySettings implements IRubySettings {
|
|
9117
|
+
|
|
9118
|
+
/**
|
|
9119
|
+
* Constructs a new RubySettings.
|
|
9120
|
+
* @param [properties] Properties to set
|
|
9121
|
+
*/
|
|
9122
|
+
constructor(properties?: google.api.IRubySettings);
|
|
9123
|
+
|
|
9124
|
+
/** RubySettings common. */
|
|
9125
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
9126
|
+
|
|
9127
|
+
/**
|
|
9128
|
+
* Creates a new RubySettings instance using the specified properties.
|
|
9129
|
+
* @param [properties] Properties to set
|
|
9130
|
+
* @returns RubySettings instance
|
|
9131
|
+
*/
|
|
9132
|
+
public static create(properties?: google.api.IRubySettings): google.api.RubySettings;
|
|
9133
|
+
|
|
9134
|
+
/**
|
|
9135
|
+
* Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
|
|
9136
|
+
* @param message RubySettings message or plain object to encode
|
|
9137
|
+
* @param [writer] Writer to encode to
|
|
9138
|
+
* @returns Writer
|
|
9139
|
+
*/
|
|
9140
|
+
public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9141
|
+
|
|
9142
|
+
/**
|
|
9143
|
+
* Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
|
|
9144
|
+
* @param message RubySettings message or plain object to encode
|
|
9145
|
+
* @param [writer] Writer to encode to
|
|
9146
|
+
* @returns Writer
|
|
9147
|
+
*/
|
|
9148
|
+
public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9149
|
+
|
|
9150
|
+
/**
|
|
9151
|
+
* Decodes a RubySettings message from the specified reader or buffer.
|
|
9152
|
+
* @param reader Reader or buffer to decode from
|
|
9153
|
+
* @param [length] Message length if known beforehand
|
|
9154
|
+
* @returns RubySettings
|
|
9155
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9156
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9157
|
+
*/
|
|
9158
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings;
|
|
9159
|
+
|
|
9160
|
+
/**
|
|
9161
|
+
* Decodes a RubySettings message from the specified reader or buffer, length delimited.
|
|
9162
|
+
* @param reader Reader or buffer to decode from
|
|
9163
|
+
* @returns RubySettings
|
|
9164
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9165
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9166
|
+
*/
|
|
9167
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings;
|
|
9168
|
+
|
|
9169
|
+
/**
|
|
9170
|
+
* Verifies a RubySettings message.
|
|
9171
|
+
* @param message Plain object to verify
|
|
9172
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9173
|
+
*/
|
|
9174
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9175
|
+
|
|
9176
|
+
/**
|
|
9177
|
+
* Creates a RubySettings message from a plain object. Also converts values to their respective internal types.
|
|
9178
|
+
* @param object Plain object
|
|
9179
|
+
* @returns RubySettings
|
|
9180
|
+
*/
|
|
9181
|
+
public static fromObject(object: { [k: string]: any }): google.api.RubySettings;
|
|
9182
|
+
|
|
9183
|
+
/**
|
|
9184
|
+
* Creates a plain object from a RubySettings message. Also converts values to other types if specified.
|
|
9185
|
+
* @param message RubySettings
|
|
9186
|
+
* @param [options] Conversion options
|
|
9187
|
+
* @returns Plain object
|
|
9188
|
+
*/
|
|
9189
|
+
public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9190
|
+
|
|
9191
|
+
/**
|
|
9192
|
+
* Converts this RubySettings to JSON.
|
|
9193
|
+
* @returns JSON object
|
|
9194
|
+
*/
|
|
9195
|
+
public toJSON(): { [k: string]: any };
|
|
9196
|
+
|
|
9197
|
+
/**
|
|
9198
|
+
* Gets the default type url for RubySettings
|
|
9199
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9200
|
+
* @returns The default type url
|
|
9201
|
+
*/
|
|
9202
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9203
|
+
}
|
|
9204
|
+
|
|
9205
|
+
/** Properties of a GoSettings. */
|
|
9206
|
+
interface IGoSettings {
|
|
9207
|
+
|
|
9208
|
+
/** GoSettings common */
|
|
9209
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
9210
|
+
}
|
|
9211
|
+
|
|
9212
|
+
/** Represents a GoSettings. */
|
|
9213
|
+
class GoSettings implements IGoSettings {
|
|
9214
|
+
|
|
9215
|
+
/**
|
|
9216
|
+
* Constructs a new GoSettings.
|
|
9217
|
+
* @param [properties] Properties to set
|
|
9218
|
+
*/
|
|
9219
|
+
constructor(properties?: google.api.IGoSettings);
|
|
9220
|
+
|
|
9221
|
+
/** GoSettings common. */
|
|
9222
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
9223
|
+
|
|
9224
|
+
/**
|
|
9225
|
+
* Creates a new GoSettings instance using the specified properties.
|
|
9226
|
+
* @param [properties] Properties to set
|
|
9227
|
+
* @returns GoSettings instance
|
|
9228
|
+
*/
|
|
9229
|
+
public static create(properties?: google.api.IGoSettings): google.api.GoSettings;
|
|
9230
|
+
|
|
9231
|
+
/**
|
|
9232
|
+
* Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
|
|
9233
|
+
* @param message GoSettings message or plain object to encode
|
|
9234
|
+
* @param [writer] Writer to encode to
|
|
9235
|
+
* @returns Writer
|
|
9236
|
+
*/
|
|
9237
|
+
public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9238
|
+
|
|
9239
|
+
/**
|
|
9240
|
+
* Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
|
|
9241
|
+
* @param message GoSettings message or plain object to encode
|
|
9242
|
+
* @param [writer] Writer to encode to
|
|
9243
|
+
* @returns Writer
|
|
9244
|
+
*/
|
|
9245
|
+
public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9246
|
+
|
|
9247
|
+
/**
|
|
9248
|
+
* Decodes a GoSettings message from the specified reader or buffer.
|
|
9249
|
+
* @param reader Reader or buffer to decode from
|
|
9250
|
+
* @param [length] Message length if known beforehand
|
|
9251
|
+
* @returns GoSettings
|
|
9252
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9253
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9254
|
+
*/
|
|
9255
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings;
|
|
9256
|
+
|
|
9257
|
+
/**
|
|
9258
|
+
* Decodes a GoSettings message from the specified reader or buffer, length delimited.
|
|
9259
|
+
* @param reader Reader or buffer to decode from
|
|
9260
|
+
* @returns GoSettings
|
|
9261
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9262
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9263
|
+
*/
|
|
9264
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings;
|
|
9265
|
+
|
|
9266
|
+
/**
|
|
9267
|
+
* Verifies a GoSettings message.
|
|
9268
|
+
* @param message Plain object to verify
|
|
9269
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9270
|
+
*/
|
|
9271
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9272
|
+
|
|
9273
|
+
/**
|
|
9274
|
+
* Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
|
|
9275
|
+
* @param object Plain object
|
|
9276
|
+
* @returns GoSettings
|
|
9277
|
+
*/
|
|
9278
|
+
public static fromObject(object: { [k: string]: any }): google.api.GoSettings;
|
|
9279
|
+
|
|
9280
|
+
/**
|
|
9281
|
+
* Creates a plain object from a GoSettings message. Also converts values to other types if specified.
|
|
9282
|
+
* @param message GoSettings
|
|
9283
|
+
* @param [options] Conversion options
|
|
9284
|
+
* @returns Plain object
|
|
9285
|
+
*/
|
|
9286
|
+
public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9287
|
+
|
|
9288
|
+
/**
|
|
9289
|
+
* Converts this GoSettings to JSON.
|
|
9290
|
+
* @returns JSON object
|
|
9291
|
+
*/
|
|
9292
|
+
public toJSON(): { [k: string]: any };
|
|
9293
|
+
|
|
9294
|
+
/**
|
|
9295
|
+
* Gets the default type url for GoSettings
|
|
9296
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9297
|
+
* @returns The default type url
|
|
9298
|
+
*/
|
|
9299
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9300
|
+
}
|
|
9301
|
+
|
|
9302
|
+
/** Properties of a MethodSettings. */
|
|
9303
|
+
interface IMethodSettings {
|
|
9304
|
+
|
|
9305
|
+
/** MethodSettings selector */
|
|
9306
|
+
selector?: (string|null);
|
|
9307
|
+
|
|
9308
|
+
/** MethodSettings longRunning */
|
|
9309
|
+
longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
9310
|
+
}
|
|
9311
|
+
|
|
9312
|
+
/** Represents a MethodSettings. */
|
|
9313
|
+
class MethodSettings implements IMethodSettings {
|
|
9314
|
+
|
|
9315
|
+
/**
|
|
9316
|
+
* Constructs a new MethodSettings.
|
|
9317
|
+
* @param [properties] Properties to set
|
|
9318
|
+
*/
|
|
9319
|
+
constructor(properties?: google.api.IMethodSettings);
|
|
9320
|
+
|
|
9321
|
+
/** MethodSettings selector. */
|
|
9322
|
+
public selector: string;
|
|
9323
|
+
|
|
9324
|
+
/** MethodSettings longRunning. */
|
|
9325
|
+
public longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
9326
|
+
|
|
9327
|
+
/**
|
|
9328
|
+
* Creates a new MethodSettings instance using the specified properties.
|
|
9329
|
+
* @param [properties] Properties to set
|
|
9330
|
+
* @returns MethodSettings instance
|
|
9331
|
+
*/
|
|
9332
|
+
public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings;
|
|
9333
|
+
|
|
9334
|
+
/**
|
|
9335
|
+
* Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
|
|
9336
|
+
* @param message MethodSettings message or plain object to encode
|
|
9337
|
+
* @param [writer] Writer to encode to
|
|
9338
|
+
* @returns Writer
|
|
9339
|
+
*/
|
|
9340
|
+
public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9341
|
+
|
|
9342
|
+
/**
|
|
9343
|
+
* Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
|
|
9344
|
+
* @param message MethodSettings message or plain object to encode
|
|
9345
|
+
* @param [writer] Writer to encode to
|
|
9346
|
+
* @returns Writer
|
|
9347
|
+
*/
|
|
9348
|
+
public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9349
|
+
|
|
9350
|
+
/**
|
|
9351
|
+
* Decodes a MethodSettings message from the specified reader or buffer.
|
|
9352
|
+
* @param reader Reader or buffer to decode from
|
|
9353
|
+
* @param [length] Message length if known beforehand
|
|
9354
|
+
* @returns MethodSettings
|
|
9355
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9356
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9357
|
+
*/
|
|
9358
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings;
|
|
9359
|
+
|
|
9360
|
+
/**
|
|
9361
|
+
* Decodes a MethodSettings message from the specified reader or buffer, length delimited.
|
|
9362
|
+
* @param reader Reader or buffer to decode from
|
|
9363
|
+
* @returns MethodSettings
|
|
9364
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9365
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9366
|
+
*/
|
|
9367
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings;
|
|
9368
|
+
|
|
9369
|
+
/**
|
|
9370
|
+
* Verifies a MethodSettings message.
|
|
9371
|
+
* @param message Plain object to verify
|
|
9372
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9373
|
+
*/
|
|
9374
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9375
|
+
|
|
9376
|
+
/**
|
|
9377
|
+
* Creates a MethodSettings message from a plain object. Also converts values to their respective internal types.
|
|
9378
|
+
* @param object Plain object
|
|
9379
|
+
* @returns MethodSettings
|
|
9380
|
+
*/
|
|
9381
|
+
public static fromObject(object: { [k: string]: any }): google.api.MethodSettings;
|
|
9382
|
+
|
|
9383
|
+
/**
|
|
9384
|
+
* Creates a plain object from a MethodSettings message. Also converts values to other types if specified.
|
|
9385
|
+
* @param message MethodSettings
|
|
9386
|
+
* @param [options] Conversion options
|
|
9387
|
+
* @returns Plain object
|
|
9388
|
+
*/
|
|
9389
|
+
public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9390
|
+
|
|
9391
|
+
/**
|
|
9392
|
+
* Converts this MethodSettings to JSON.
|
|
9393
|
+
* @returns JSON object
|
|
9394
|
+
*/
|
|
9395
|
+
public toJSON(): { [k: string]: any };
|
|
9396
|
+
|
|
9397
|
+
/**
|
|
9398
|
+
* Gets the default type url for MethodSettings
|
|
9399
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9400
|
+
* @returns The default type url
|
|
9401
|
+
*/
|
|
9402
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9403
|
+
}
|
|
9404
|
+
|
|
9405
|
+
namespace MethodSettings {
|
|
9406
|
+
|
|
9407
|
+
/** Properties of a LongRunning. */
|
|
9408
|
+
interface ILongRunning {
|
|
9409
|
+
|
|
9410
|
+
/** LongRunning initialPollDelay */
|
|
9411
|
+
initialPollDelay?: (google.protobuf.IDuration|null);
|
|
9412
|
+
|
|
9413
|
+
/** LongRunning pollDelayMultiplier */
|
|
9414
|
+
pollDelayMultiplier?: (number|null);
|
|
9415
|
+
|
|
9416
|
+
/** LongRunning maxPollDelay */
|
|
9417
|
+
maxPollDelay?: (google.protobuf.IDuration|null);
|
|
9418
|
+
|
|
9419
|
+
/** LongRunning totalPollTimeout */
|
|
9420
|
+
totalPollTimeout?: (google.protobuf.IDuration|null);
|
|
9421
|
+
}
|
|
9422
|
+
|
|
9423
|
+
/** Represents a LongRunning. */
|
|
9424
|
+
class LongRunning implements ILongRunning {
|
|
9425
|
+
|
|
9426
|
+
/**
|
|
9427
|
+
* Constructs a new LongRunning.
|
|
9428
|
+
* @param [properties] Properties to set
|
|
9429
|
+
*/
|
|
9430
|
+
constructor(properties?: google.api.MethodSettings.ILongRunning);
|
|
9431
|
+
|
|
9432
|
+
/** LongRunning initialPollDelay. */
|
|
9433
|
+
public initialPollDelay?: (google.protobuf.IDuration|null);
|
|
9434
|
+
|
|
9435
|
+
/** LongRunning pollDelayMultiplier. */
|
|
9436
|
+
public pollDelayMultiplier: number;
|
|
9437
|
+
|
|
9438
|
+
/** LongRunning maxPollDelay. */
|
|
9439
|
+
public maxPollDelay?: (google.protobuf.IDuration|null);
|
|
9440
|
+
|
|
9441
|
+
/** LongRunning totalPollTimeout. */
|
|
9442
|
+
public totalPollTimeout?: (google.protobuf.IDuration|null);
|
|
9443
|
+
|
|
9444
|
+
/**
|
|
9445
|
+
* Creates a new LongRunning instance using the specified properties.
|
|
9446
|
+
* @param [properties] Properties to set
|
|
9447
|
+
* @returns LongRunning instance
|
|
9448
|
+
*/
|
|
9449
|
+
public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning;
|
|
9450
|
+
|
|
9451
|
+
/**
|
|
9452
|
+
* Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
|
|
9453
|
+
* @param message LongRunning message or plain object to encode
|
|
9454
|
+
* @param [writer] Writer to encode to
|
|
9455
|
+
* @returns Writer
|
|
9456
|
+
*/
|
|
9457
|
+
public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9458
|
+
|
|
9459
|
+
/**
|
|
9460
|
+
* Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
|
|
9461
|
+
* @param message LongRunning message or plain object to encode
|
|
9462
|
+
* @param [writer] Writer to encode to
|
|
9463
|
+
* @returns Writer
|
|
9464
|
+
*/
|
|
9465
|
+
public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9466
|
+
|
|
9467
|
+
/**
|
|
9468
|
+
* Decodes a LongRunning message from the specified reader or buffer.
|
|
9469
|
+
* @param reader Reader or buffer to decode from
|
|
9470
|
+
* @param [length] Message length if known beforehand
|
|
9471
|
+
* @returns LongRunning
|
|
9472
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9473
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9474
|
+
*/
|
|
9475
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning;
|
|
9476
|
+
|
|
9477
|
+
/**
|
|
9478
|
+
* Decodes a LongRunning message from the specified reader or buffer, length delimited.
|
|
9479
|
+
* @param reader Reader or buffer to decode from
|
|
9480
|
+
* @returns LongRunning
|
|
9481
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9482
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9483
|
+
*/
|
|
9484
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning;
|
|
9485
|
+
|
|
9486
|
+
/**
|
|
9487
|
+
* Verifies a LongRunning message.
|
|
9488
|
+
* @param message Plain object to verify
|
|
9489
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9490
|
+
*/
|
|
9491
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9492
|
+
|
|
9493
|
+
/**
|
|
9494
|
+
* Creates a LongRunning message from a plain object. Also converts values to their respective internal types.
|
|
9495
|
+
* @param object Plain object
|
|
9496
|
+
* @returns LongRunning
|
|
9497
|
+
*/
|
|
9498
|
+
public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning;
|
|
9499
|
+
|
|
9500
|
+
/**
|
|
9501
|
+
* Creates a plain object from a LongRunning message. Also converts values to other types if specified.
|
|
9502
|
+
* @param message LongRunning
|
|
9503
|
+
* @param [options] Conversion options
|
|
9504
|
+
* @returns Plain object
|
|
9505
|
+
*/
|
|
9506
|
+
public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9507
|
+
|
|
9508
|
+
/**
|
|
9509
|
+
* Converts this LongRunning to JSON.
|
|
9510
|
+
* @returns JSON object
|
|
9511
|
+
*/
|
|
9512
|
+
public toJSON(): { [k: string]: any };
|
|
9513
|
+
|
|
9514
|
+
/**
|
|
9515
|
+
* Gets the default type url for LongRunning
|
|
9516
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9517
|
+
* @returns The default type url
|
|
9518
|
+
*/
|
|
9519
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9520
|
+
}
|
|
9521
|
+
}
|
|
9522
|
+
|
|
9523
|
+
/** ClientLibraryOrganization enum. */
|
|
9524
|
+
enum ClientLibraryOrganization {
|
|
9525
|
+
CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
|
|
9526
|
+
CLOUD = 1,
|
|
9527
|
+
ADS = 2,
|
|
9528
|
+
PHOTOS = 3,
|
|
9529
|
+
STREET_VIEW = 4
|
|
9530
|
+
}
|
|
9531
|
+
|
|
9532
|
+
/** ClientLibraryDestination enum. */
|
|
9533
|
+
enum ClientLibraryDestination {
|
|
9534
|
+
CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
|
|
9535
|
+
GITHUB = 10,
|
|
9536
|
+
PACKAGE_MANAGER = 20
|
|
9537
|
+
}
|
|
9538
|
+
|
|
9539
|
+
/** LaunchStage enum. */
|
|
9540
|
+
enum LaunchStage {
|
|
9541
|
+
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
9542
|
+
UNIMPLEMENTED = 6,
|
|
9543
|
+
PRELAUNCH = 7,
|
|
9544
|
+
EARLY_ACCESS = 1,
|
|
9545
|
+
ALPHA = 2,
|
|
9546
|
+
BETA = 3,
|
|
9547
|
+
GA = 4,
|
|
9548
|
+
DEPRECATED = 5
|
|
9549
|
+
}
|
|
9550
|
+
|
|
9551
|
+
/** FieldBehavior enum. */
|
|
9552
|
+
enum FieldBehavior {
|
|
9553
|
+
FIELD_BEHAVIOR_UNSPECIFIED = 0,
|
|
9554
|
+
OPTIONAL = 1,
|
|
9555
|
+
REQUIRED = 2,
|
|
9556
|
+
OUTPUT_ONLY = 3,
|
|
9557
|
+
INPUT_ONLY = 4,
|
|
9558
|
+
IMMUTABLE = 5,
|
|
9559
|
+
UNORDERED_LIST = 6,
|
|
9560
|
+
NON_EMPTY_DEFAULT = 7
|
|
9561
|
+
}
|
|
9562
|
+
|
|
9563
|
+
/** Properties of a ResourceDescriptor. */
|
|
9564
|
+
interface IResourceDescriptor {
|
|
9565
|
+
|
|
9566
|
+
/** ResourceDescriptor type */
|
|
9567
|
+
type?: (string|null);
|
|
9568
|
+
|
|
9569
|
+
/** ResourceDescriptor pattern */
|
|
9570
|
+
pattern?: (string[]|null);
|
|
9571
|
+
|
|
9572
|
+
/** ResourceDescriptor nameField */
|
|
9573
|
+
nameField?: (string|null);
|
|
9574
|
+
|
|
9575
|
+
/** ResourceDescriptor history */
|
|
9576
|
+
history?: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History|null);
|
|
9577
|
+
|
|
9578
|
+
/** ResourceDescriptor plural */
|
|
9579
|
+
plural?: (string|null);
|
|
9580
|
+
|
|
9581
|
+
/** ResourceDescriptor singular */
|
|
9582
|
+
singular?: (string|null);
|
|
9583
|
+
|
|
9584
|
+
/** ResourceDescriptor style */
|
|
9585
|
+
style?: (google.api.ResourceDescriptor.Style[]|null);
|
|
9586
|
+
}
|
|
9587
|
+
|
|
9588
|
+
/** Represents a ResourceDescriptor. */
|
|
9589
|
+
class ResourceDescriptor implements IResourceDescriptor {
|
|
9590
|
+
|
|
9591
|
+
/**
|
|
9592
|
+
* Constructs a new ResourceDescriptor.
|
|
9593
|
+
* @param [properties] Properties to set
|
|
9594
|
+
*/
|
|
9595
|
+
constructor(properties?: google.api.IResourceDescriptor);
|
|
9596
|
+
|
|
9597
|
+
/** ResourceDescriptor type. */
|
|
9598
|
+
public type: string;
|
|
9599
|
+
|
|
9600
|
+
/** ResourceDescriptor pattern. */
|
|
9601
|
+
public pattern: string[];
|
|
9602
|
+
|
|
9603
|
+
/** ResourceDescriptor nameField. */
|
|
9604
|
+
public nameField: string;
|
|
9605
|
+
|
|
9606
|
+
/** ResourceDescriptor history. */
|
|
9607
|
+
public history: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History);
|
|
9608
|
+
|
|
9609
|
+
/** ResourceDescriptor plural. */
|
|
9610
|
+
public plural: string;
|
|
9611
|
+
|
|
9612
|
+
/** ResourceDescriptor singular. */
|
|
9613
|
+
public singular: string;
|
|
9614
|
+
|
|
9615
|
+
/** ResourceDescriptor style. */
|
|
9616
|
+
public style: google.api.ResourceDescriptor.Style[];
|
|
9617
|
+
|
|
9618
|
+
/**
|
|
9619
|
+
* Creates a new ResourceDescriptor instance using the specified properties.
|
|
9620
|
+
* @param [properties] Properties to set
|
|
9621
|
+
* @returns ResourceDescriptor instance
|
|
9622
|
+
*/
|
|
9623
|
+
public static create(properties?: google.api.IResourceDescriptor): google.api.ResourceDescriptor;
|
|
9624
|
+
|
|
9625
|
+
/**
|
|
9626
|
+
* Encodes the specified ResourceDescriptor message. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
|
|
9627
|
+
* @param message ResourceDescriptor message or plain object to encode
|
|
9628
|
+
* @param [writer] Writer to encode to
|
|
9629
|
+
* @returns Writer
|
|
9630
|
+
*/
|
|
9631
|
+
public static encode(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9632
|
+
|
|
9633
|
+
/**
|
|
9634
|
+
* Encodes the specified ResourceDescriptor message, length delimited. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
|
|
9635
|
+
* @param message ResourceDescriptor message or plain object to encode
|
|
9636
|
+
* @param [writer] Writer to encode to
|
|
9637
|
+
* @returns Writer
|
|
9638
|
+
*/
|
|
9639
|
+
public static encodeDelimited(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9640
|
+
|
|
9641
|
+
/**
|
|
9642
|
+
* Decodes a ResourceDescriptor message from the specified reader or buffer.
|
|
9643
|
+
* @param reader Reader or buffer to decode from
|
|
9644
|
+
* @param [length] Message length if known beforehand
|
|
9645
|
+
* @returns ResourceDescriptor
|
|
9646
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9647
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9648
|
+
*/
|
|
9649
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceDescriptor;
|
|
9650
|
+
|
|
9651
|
+
/**
|
|
9652
|
+
* Decodes a ResourceDescriptor message from the specified reader or buffer, length delimited.
|
|
9653
|
+
* @param reader Reader or buffer to decode from
|
|
9654
|
+
* @returns ResourceDescriptor
|
|
9655
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9656
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9657
|
+
*/
|
|
9658
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceDescriptor;
|
|
9659
|
+
|
|
9660
|
+
/**
|
|
9661
|
+
* Verifies a ResourceDescriptor message.
|
|
9662
|
+
* @param message Plain object to verify
|
|
9663
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9664
|
+
*/
|
|
9665
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9666
|
+
|
|
9667
|
+
/**
|
|
9668
|
+
* Creates a ResourceDescriptor message from a plain object. Also converts values to their respective internal types.
|
|
9669
|
+
* @param object Plain object
|
|
9670
|
+
* @returns ResourceDescriptor
|
|
9671
|
+
*/
|
|
9672
|
+
public static fromObject(object: { [k: string]: any }): google.api.ResourceDescriptor;
|
|
9673
|
+
|
|
9674
|
+
/**
|
|
9675
|
+
* Creates a plain object from a ResourceDescriptor message. Also converts values to other types if specified.
|
|
9676
|
+
* @param message ResourceDescriptor
|
|
9677
|
+
* @param [options] Conversion options
|
|
9678
|
+
* @returns Plain object
|
|
9679
|
+
*/
|
|
9680
|
+
public static toObject(message: google.api.ResourceDescriptor, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9681
|
+
|
|
9682
|
+
/**
|
|
9683
|
+
* Converts this ResourceDescriptor to JSON.
|
|
9684
|
+
* @returns JSON object
|
|
9685
|
+
*/
|
|
9686
|
+
public toJSON(): { [k: string]: any };
|
|
9687
|
+
|
|
9688
|
+
/**
|
|
9689
|
+
* Gets the default type url for ResourceDescriptor
|
|
9690
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9691
|
+
* @returns The default type url
|
|
9692
|
+
*/
|
|
9693
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9694
|
+
}
|
|
9695
|
+
|
|
9696
|
+
namespace ResourceDescriptor {
|
|
9697
|
+
|
|
9698
|
+
/** History enum. */
|
|
9699
|
+
enum History {
|
|
9700
|
+
HISTORY_UNSPECIFIED = 0,
|
|
9701
|
+
ORIGINALLY_SINGLE_PATTERN = 1,
|
|
9702
|
+
FUTURE_MULTI_PATTERN = 2
|
|
9703
|
+
}
|
|
9704
|
+
|
|
9705
|
+
/** Style enum. */
|
|
9706
|
+
enum Style {
|
|
9707
|
+
STYLE_UNSPECIFIED = 0,
|
|
9708
|
+
DECLARATIVE_FRIENDLY = 1
|
|
9709
|
+
}
|
|
9710
|
+
}
|
|
9711
|
+
|
|
9712
|
+
/** Properties of a ResourceReference. */
|
|
9713
|
+
interface IResourceReference {
|
|
9714
|
+
|
|
9715
|
+
/** ResourceReference type */
|
|
9716
|
+
type?: (string|null);
|
|
9717
|
+
|
|
9718
|
+
/** ResourceReference childType */
|
|
9719
|
+
childType?: (string|null);
|
|
9720
|
+
}
|
|
9721
|
+
|
|
9722
|
+
/** Represents a ResourceReference. */
|
|
9723
|
+
class ResourceReference implements IResourceReference {
|
|
9724
|
+
|
|
9725
|
+
/**
|
|
9726
|
+
* Constructs a new ResourceReference.
|
|
9727
|
+
* @param [properties] Properties to set
|
|
9728
|
+
*/
|
|
9729
|
+
constructor(properties?: google.api.IResourceReference);
|
|
9730
|
+
|
|
9731
|
+
/** ResourceReference type. */
|
|
9732
|
+
public type: string;
|
|
9733
|
+
|
|
9734
|
+
/** ResourceReference childType. */
|
|
9735
|
+
public childType: string;
|
|
9736
|
+
|
|
9737
|
+
/**
|
|
9738
|
+
* Creates a new ResourceReference instance using the specified properties.
|
|
9739
|
+
* @param [properties] Properties to set
|
|
9740
|
+
* @returns ResourceReference instance
|
|
9741
|
+
*/
|
|
9742
|
+
public static create(properties?: google.api.IResourceReference): google.api.ResourceReference;
|
|
9743
|
+
|
|
9744
|
+
/**
|
|
9745
|
+
* Encodes the specified ResourceReference message. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
|
|
9746
|
+
* @param message ResourceReference message or plain object to encode
|
|
9747
|
+
* @param [writer] Writer to encode to
|
|
9748
|
+
* @returns Writer
|
|
9749
|
+
*/
|
|
9750
|
+
public static encode(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9751
|
+
|
|
9752
|
+
/**
|
|
9753
|
+
* Encodes the specified ResourceReference message, length delimited. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
|
|
9754
|
+
* @param message ResourceReference message or plain object to encode
|
|
9755
|
+
* @param [writer] Writer to encode to
|
|
9756
|
+
* @returns Writer
|
|
9757
|
+
*/
|
|
9758
|
+
public static encodeDelimited(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9759
|
+
|
|
9760
|
+
/**
|
|
9761
|
+
* Decodes a ResourceReference message from the specified reader or buffer.
|
|
9762
|
+
* @param reader Reader or buffer to decode from
|
|
9763
|
+
* @param [length] Message length if known beforehand
|
|
9764
|
+
* @returns ResourceReference
|
|
9765
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9766
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9767
|
+
*/
|
|
9768
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceReference;
|
|
9769
|
+
|
|
9770
|
+
/**
|
|
9771
|
+
* Decodes a ResourceReference message from the specified reader or buffer, length delimited.
|
|
9772
|
+
* @param reader Reader or buffer to decode from
|
|
9773
|
+
* @returns ResourceReference
|
|
9774
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9775
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9776
|
+
*/
|
|
9777
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceReference;
|
|
9778
|
+
|
|
9779
|
+
/**
|
|
9780
|
+
* Verifies a ResourceReference message.
|
|
9781
|
+
* @param message Plain object to verify
|
|
9782
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9783
|
+
*/
|
|
9784
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9785
|
+
|
|
9786
|
+
/**
|
|
9787
|
+
* Creates a ResourceReference message from a plain object. Also converts values to their respective internal types.
|
|
9788
|
+
* @param object Plain object
|
|
9789
|
+
* @returns ResourceReference
|
|
9790
|
+
*/
|
|
9791
|
+
public static fromObject(object: { [k: string]: any }): google.api.ResourceReference;
|
|
9792
|
+
|
|
9793
|
+
/**
|
|
9794
|
+
* Creates a plain object from a ResourceReference message. Also converts values to other types if specified.
|
|
9795
|
+
* @param message ResourceReference
|
|
9796
|
+
* @param [options] Conversion options
|
|
9797
|
+
* @returns Plain object
|
|
9798
|
+
*/
|
|
9799
|
+
public static toObject(message: google.api.ResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9800
|
+
|
|
9801
|
+
/**
|
|
9802
|
+
* Converts this ResourceReference to JSON.
|
|
9803
|
+
* @returns JSON object
|
|
9804
|
+
*/
|
|
9805
|
+
public toJSON(): { [k: string]: any };
|
|
9806
|
+
|
|
9807
|
+
/**
|
|
9808
|
+
* Gets the default type url for ResourceReference
|
|
9809
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9810
|
+
* @returns The default type url
|
|
9811
|
+
*/
|
|
9812
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9813
|
+
}
|
|
9814
|
+
}
|
|
9815
|
+
|
|
9816
|
+
/** Namespace protobuf. */
|
|
9817
|
+
namespace protobuf {
|
|
9818
|
+
|
|
9819
|
+
/** Properties of a FileDescriptorSet. */
|
|
9820
|
+
interface IFileDescriptorSet {
|
|
9821
|
+
|
|
9822
|
+
/** FileDescriptorSet file */
|
|
9823
|
+
file?: (google.protobuf.IFileDescriptorProto[]|null);
|
|
9824
|
+
}
|
|
9825
|
+
|
|
9826
|
+
/** Represents a FileDescriptorSet. */
|
|
9827
|
+
class FileDescriptorSet implements IFileDescriptorSet {
|
|
9828
|
+
|
|
9829
|
+
/**
|
|
9830
|
+
* Constructs a new FileDescriptorSet.
|
|
9831
|
+
* @param [properties] Properties to set
|
|
9832
|
+
*/
|
|
9833
|
+
constructor(properties?: google.protobuf.IFileDescriptorSet);
|
|
9834
|
+
|
|
9835
|
+
/** FileDescriptorSet file. */
|
|
9836
|
+
public file: google.protobuf.IFileDescriptorProto[];
|
|
9837
|
+
|
|
9838
|
+
/**
|
|
9839
|
+
* Creates a new FileDescriptorSet instance using the specified properties.
|
|
9840
|
+
* @param [properties] Properties to set
|
|
9841
|
+
* @returns FileDescriptorSet instance
|
|
9842
|
+
*/
|
|
9843
|
+
public static create(properties?: google.protobuf.IFileDescriptorSet): google.protobuf.FileDescriptorSet;
|
|
9844
|
+
|
|
9845
|
+
/**
|
|
9846
|
+
* Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
|
|
9847
|
+
* @param message FileDescriptorSet message or plain object to encode
|
|
9848
|
+
* @param [writer] Writer to encode to
|
|
9849
|
+
* @returns Writer
|
|
9850
|
+
*/
|
|
9851
|
+
public static encode(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9852
|
+
|
|
9853
|
+
/**
|
|
9854
|
+
* Encodes the specified FileDescriptorSet message, length delimited. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
|
|
9855
|
+
* @param message FileDescriptorSet message or plain object to encode
|
|
9856
|
+
* @param [writer] Writer to encode to
|
|
9857
|
+
* @returns Writer
|
|
9858
|
+
*/
|
|
9859
|
+
public static encodeDelimited(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9860
|
+
|
|
9861
|
+
/**
|
|
9862
|
+
* Decodes a FileDescriptorSet message from the specified reader or buffer.
|
|
9863
|
+
* @param reader Reader or buffer to decode from
|
|
9864
|
+
* @param [length] Message length if known beforehand
|
|
9865
|
+
* @returns FileDescriptorSet
|
|
9866
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9867
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9868
|
+
*/
|
|
9869
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorSet;
|
|
9870
|
+
|
|
9871
|
+
/**
|
|
9872
|
+
* Decodes a FileDescriptorSet message from the specified reader or buffer, length delimited.
|
|
9873
|
+
* @param reader Reader or buffer to decode from
|
|
9874
|
+
* @returns FileDescriptorSet
|
|
9875
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9876
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9877
|
+
*/
|
|
9878
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileDescriptorSet;
|
|
9879
|
+
|
|
9880
|
+
/**
|
|
9881
|
+
* Verifies a FileDescriptorSet message.
|
|
9882
|
+
* @param message Plain object to verify
|
|
9883
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9884
|
+
*/
|
|
9885
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9886
|
+
|
|
9887
|
+
/**
|
|
9888
|
+
* Creates a FileDescriptorSet message from a plain object. Also converts values to their respective internal types.
|
|
9889
|
+
* @param object Plain object
|
|
9890
|
+
* @returns FileDescriptorSet
|
|
9891
|
+
*/
|
|
9892
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FileDescriptorSet;
|
|
9893
|
+
|
|
9894
|
+
/**
|
|
9895
|
+
* Creates a plain object from a FileDescriptorSet message. Also converts values to other types if specified.
|
|
9896
|
+
* @param message FileDescriptorSet
|
|
9897
|
+
* @param [options] Conversion options
|
|
9898
|
+
* @returns Plain object
|
|
9899
|
+
*/
|
|
9900
|
+
public static toObject(message: google.protobuf.FileDescriptorSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9901
|
+
|
|
9902
|
+
/**
|
|
9903
|
+
* Converts this FileDescriptorSet to JSON.
|
|
9904
|
+
* @returns JSON object
|
|
9905
|
+
*/
|
|
9906
|
+
public toJSON(): { [k: string]: any };
|
|
9907
|
+
|
|
9908
|
+
/**
|
|
9909
|
+
* Gets the default type url for FileDescriptorSet
|
|
9910
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9911
|
+
* @returns The default type url
|
|
9912
|
+
*/
|
|
9913
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9914
|
+
}
|
|
9915
|
+
|
|
9916
|
+
/** Properties of a FileDescriptorProto. */
|
|
9917
|
+
interface IFileDescriptorProto {
|
|
9918
|
+
|
|
9919
|
+
/** FileDescriptorProto name */
|
|
9920
|
+
name?: (string|null);
|
|
9921
|
+
|
|
9922
|
+
/** FileDescriptorProto package */
|
|
9923
|
+
"package"?: (string|null);
|
|
9924
|
+
|
|
9925
|
+
/** FileDescriptorProto dependency */
|
|
9926
|
+
dependency?: (string[]|null);
|
|
9927
|
+
|
|
9928
|
+
/** FileDescriptorProto publicDependency */
|
|
8475
9929
|
publicDependency?: (number[]|null);
|
|
8476
9930
|
|
|
8477
9931
|
/** FileDescriptorProto weakDependency */
|
|
@@ -10200,6 +11654,9 @@ export namespace google {
|
|
|
10200
11654
|
/** MessageOptions mapEntry */
|
|
10201
11655
|
mapEntry?: (boolean|null);
|
|
10202
11656
|
|
|
11657
|
+
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
11658
|
+
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
11659
|
+
|
|
10203
11660
|
/** MessageOptions uninterpretedOption */
|
|
10204
11661
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
10205
11662
|
|
|
@@ -10228,6 +11685,9 @@ export namespace google {
|
|
|
10228
11685
|
/** MessageOptions mapEntry. */
|
|
10229
11686
|
public mapEntry: boolean;
|
|
10230
11687
|
|
|
11688
|
+
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
11689
|
+
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
11690
|
+
|
|
10231
11691
|
/** MessageOptions uninterpretedOption. */
|
|
10232
11692
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
10233
11693
|
|
|
@@ -10333,6 +11793,15 @@ export namespace google {
|
|
|
10333
11793
|
/** FieldOptions weak */
|
|
10334
11794
|
weak?: (boolean|null);
|
|
10335
11795
|
|
|
11796
|
+
/** FieldOptions debugRedact */
|
|
11797
|
+
debugRedact?: (boolean|null);
|
|
11798
|
+
|
|
11799
|
+
/** FieldOptions retention */
|
|
11800
|
+
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
11801
|
+
|
|
11802
|
+
/** FieldOptions target */
|
|
11803
|
+
target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
|
|
11804
|
+
|
|
10336
11805
|
/** FieldOptions uninterpretedOption */
|
|
10337
11806
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
10338
11807
|
|
|
@@ -10373,6 +11842,15 @@ export namespace google {
|
|
|
10373
11842
|
/** FieldOptions weak. */
|
|
10374
11843
|
public weak: boolean;
|
|
10375
11844
|
|
|
11845
|
+
/** FieldOptions debugRedact. */
|
|
11846
|
+
public debugRedact: boolean;
|
|
11847
|
+
|
|
11848
|
+
/** FieldOptions retention. */
|
|
11849
|
+
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
11850
|
+
|
|
11851
|
+
/** FieldOptions target. */
|
|
11852
|
+
public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
|
|
11853
|
+
|
|
10376
11854
|
/** FieldOptions uninterpretedOption. */
|
|
10377
11855
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
10378
11856
|
|
|
@@ -10469,6 +11947,27 @@ export namespace google {
|
|
|
10469
11947
|
JS_STRING = 1,
|
|
10470
11948
|
JS_NUMBER = 2
|
|
10471
11949
|
}
|
|
11950
|
+
|
|
11951
|
+
/** OptionRetention enum. */
|
|
11952
|
+
enum OptionRetention {
|
|
11953
|
+
RETENTION_UNKNOWN = 0,
|
|
11954
|
+
RETENTION_RUNTIME = 1,
|
|
11955
|
+
RETENTION_SOURCE = 2
|
|
11956
|
+
}
|
|
11957
|
+
|
|
11958
|
+
/** OptionTargetType enum. */
|
|
11959
|
+
enum OptionTargetType {
|
|
11960
|
+
TARGET_TYPE_UNKNOWN = 0,
|
|
11961
|
+
TARGET_TYPE_FILE = 1,
|
|
11962
|
+
TARGET_TYPE_EXTENSION_RANGE = 2,
|
|
11963
|
+
TARGET_TYPE_MESSAGE = 3,
|
|
11964
|
+
TARGET_TYPE_FIELD = 4,
|
|
11965
|
+
TARGET_TYPE_ONEOF = 5,
|
|
11966
|
+
TARGET_TYPE_ENUM = 6,
|
|
11967
|
+
TARGET_TYPE_ENUM_ENTRY = 7,
|
|
11968
|
+
TARGET_TYPE_SERVICE = 8,
|
|
11969
|
+
TARGET_TYPE_METHOD = 9
|
|
11970
|
+
}
|
|
10472
11971
|
}
|
|
10473
11972
|
|
|
10474
11973
|
/** Properties of an OneofOptions. */
|
|
@@ -10577,6 +12076,9 @@ export namespace google {
|
|
|
10577
12076
|
/** EnumOptions deprecated */
|
|
10578
12077
|
deprecated?: (boolean|null);
|
|
10579
12078
|
|
|
12079
|
+
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
12080
|
+
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
12081
|
+
|
|
10580
12082
|
/** EnumOptions uninterpretedOption */
|
|
10581
12083
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
10582
12084
|
}
|
|
@@ -10596,6 +12098,9 @@ export namespace google {
|
|
|
10596
12098
|
/** EnumOptions deprecated. */
|
|
10597
12099
|
public deprecated: boolean;
|
|
10598
12100
|
|
|
12101
|
+
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
12102
|
+
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
12103
|
+
|
|
10599
12104
|
/** EnumOptions uninterpretedOption. */
|
|
10600
12105
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
10601
12106
|
|