@google-analytics/data 3.2.0 → 3.2.1
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 +7 -0
- package/build/protos/protos.d.ts +1493 -0
- package/build/protos/protos.js +3853 -0
- package/build/protos/protos.json +292 -0
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +1 -1
- package/build/src/v1beta/beta_analytics_data_client.d.ts +7 -7
- package/package.json +1 -1
package/build/protos/protos.d.ts
CHANGED
|
@@ -1961,6 +1961,9 @@ export namespace google {
|
|
|
1961
1961
|
/** MessageOptions mapEntry */
|
|
1962
1962
|
mapEntry?: (boolean|null);
|
|
1963
1963
|
|
|
1964
|
+
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
1965
|
+
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
1966
|
+
|
|
1964
1967
|
/** MessageOptions uninterpretedOption */
|
|
1965
1968
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
1966
1969
|
|
|
@@ -1989,6 +1992,9 @@ export namespace google {
|
|
|
1989
1992
|
/** MessageOptions mapEntry. */
|
|
1990
1993
|
public mapEntry: boolean;
|
|
1991
1994
|
|
|
1995
|
+
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
1996
|
+
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
1997
|
+
|
|
1992
1998
|
/** MessageOptions uninterpretedOption. */
|
|
1993
1999
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
1994
2000
|
|
|
@@ -2094,6 +2100,15 @@ export namespace google {
|
|
|
2094
2100
|
/** FieldOptions weak */
|
|
2095
2101
|
weak?: (boolean|null);
|
|
2096
2102
|
|
|
2103
|
+
/** FieldOptions debugRedact */
|
|
2104
|
+
debugRedact?: (boolean|null);
|
|
2105
|
+
|
|
2106
|
+
/** FieldOptions retention */
|
|
2107
|
+
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
2108
|
+
|
|
2109
|
+
/** FieldOptions target */
|
|
2110
|
+
target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
|
|
2111
|
+
|
|
2097
2112
|
/** FieldOptions uninterpretedOption */
|
|
2098
2113
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2099
2114
|
|
|
@@ -2134,6 +2149,15 @@ export namespace google {
|
|
|
2134
2149
|
/** FieldOptions weak. */
|
|
2135
2150
|
public weak: boolean;
|
|
2136
2151
|
|
|
2152
|
+
/** FieldOptions debugRedact. */
|
|
2153
|
+
public debugRedact: boolean;
|
|
2154
|
+
|
|
2155
|
+
/** FieldOptions retention. */
|
|
2156
|
+
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
2157
|
+
|
|
2158
|
+
/** FieldOptions target. */
|
|
2159
|
+
public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
|
|
2160
|
+
|
|
2137
2161
|
/** FieldOptions uninterpretedOption. */
|
|
2138
2162
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2139
2163
|
|
|
@@ -2230,6 +2254,27 @@ export namespace google {
|
|
|
2230
2254
|
JS_STRING = 1,
|
|
2231
2255
|
JS_NUMBER = 2
|
|
2232
2256
|
}
|
|
2257
|
+
|
|
2258
|
+
/** OptionRetention enum. */
|
|
2259
|
+
enum OptionRetention {
|
|
2260
|
+
RETENTION_UNKNOWN = 0,
|
|
2261
|
+
RETENTION_RUNTIME = 1,
|
|
2262
|
+
RETENTION_SOURCE = 2
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
/** OptionTargetType enum. */
|
|
2266
|
+
enum OptionTargetType {
|
|
2267
|
+
TARGET_TYPE_UNKNOWN = 0,
|
|
2268
|
+
TARGET_TYPE_FILE = 1,
|
|
2269
|
+
TARGET_TYPE_EXTENSION_RANGE = 2,
|
|
2270
|
+
TARGET_TYPE_MESSAGE = 3,
|
|
2271
|
+
TARGET_TYPE_FIELD = 4,
|
|
2272
|
+
TARGET_TYPE_ONEOF = 5,
|
|
2273
|
+
TARGET_TYPE_ENUM = 6,
|
|
2274
|
+
TARGET_TYPE_ENUM_ENTRY = 7,
|
|
2275
|
+
TARGET_TYPE_SERVICE = 8,
|
|
2276
|
+
TARGET_TYPE_METHOD = 9
|
|
2277
|
+
}
|
|
2233
2278
|
}
|
|
2234
2279
|
|
|
2235
2280
|
/** Properties of an OneofOptions. */
|
|
@@ -2338,6 +2383,9 @@ export namespace google {
|
|
|
2338
2383
|
/** EnumOptions deprecated */
|
|
2339
2384
|
deprecated?: (boolean|null);
|
|
2340
2385
|
|
|
2386
|
+
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
2387
|
+
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
2388
|
+
|
|
2341
2389
|
/** EnumOptions uninterpretedOption */
|
|
2342
2390
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
2343
2391
|
}
|
|
@@ -2357,6 +2405,9 @@ export namespace google {
|
|
|
2357
2405
|
/** EnumOptions deprecated. */
|
|
2358
2406
|
public deprecated: boolean;
|
|
2359
2407
|
|
|
2408
|
+
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
2409
|
+
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
2410
|
+
|
|
2360
2411
|
/** EnumOptions uninterpretedOption. */
|
|
2361
2412
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
2362
2413
|
|
|
@@ -16995,6 +17046,1448 @@ export namespace google {
|
|
|
16995
17046
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
16996
17047
|
}
|
|
16997
17048
|
|
|
17049
|
+
/** Properties of a CommonLanguageSettings. */
|
|
17050
|
+
interface ICommonLanguageSettings {
|
|
17051
|
+
|
|
17052
|
+
/** CommonLanguageSettings referenceDocsUri */
|
|
17053
|
+
referenceDocsUri?: (string|null);
|
|
17054
|
+
|
|
17055
|
+
/** CommonLanguageSettings destinations */
|
|
17056
|
+
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
17057
|
+
}
|
|
17058
|
+
|
|
17059
|
+
/** Represents a CommonLanguageSettings. */
|
|
17060
|
+
class CommonLanguageSettings implements ICommonLanguageSettings {
|
|
17061
|
+
|
|
17062
|
+
/**
|
|
17063
|
+
* Constructs a new CommonLanguageSettings.
|
|
17064
|
+
* @param [properties] Properties to set
|
|
17065
|
+
*/
|
|
17066
|
+
constructor(properties?: google.api.ICommonLanguageSettings);
|
|
17067
|
+
|
|
17068
|
+
/** CommonLanguageSettings referenceDocsUri. */
|
|
17069
|
+
public referenceDocsUri: string;
|
|
17070
|
+
|
|
17071
|
+
/** CommonLanguageSettings destinations. */
|
|
17072
|
+
public destinations: google.api.ClientLibraryDestination[];
|
|
17073
|
+
|
|
17074
|
+
/**
|
|
17075
|
+
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
17076
|
+
* @param [properties] Properties to set
|
|
17077
|
+
* @returns CommonLanguageSettings instance
|
|
17078
|
+
*/
|
|
17079
|
+
public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
|
|
17080
|
+
|
|
17081
|
+
/**
|
|
17082
|
+
* Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
|
|
17083
|
+
* @param message CommonLanguageSettings message or plain object to encode
|
|
17084
|
+
* @param [writer] Writer to encode to
|
|
17085
|
+
* @returns Writer
|
|
17086
|
+
*/
|
|
17087
|
+
public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17088
|
+
|
|
17089
|
+
/**
|
|
17090
|
+
* Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
|
|
17091
|
+
* @param message CommonLanguageSettings message or plain object to encode
|
|
17092
|
+
* @param [writer] Writer to encode to
|
|
17093
|
+
* @returns Writer
|
|
17094
|
+
*/
|
|
17095
|
+
public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17096
|
+
|
|
17097
|
+
/**
|
|
17098
|
+
* Decodes a CommonLanguageSettings message from the specified reader or buffer.
|
|
17099
|
+
* @param reader Reader or buffer to decode from
|
|
17100
|
+
* @param [length] Message length if known beforehand
|
|
17101
|
+
* @returns CommonLanguageSettings
|
|
17102
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17103
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17104
|
+
*/
|
|
17105
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
|
|
17106
|
+
|
|
17107
|
+
/**
|
|
17108
|
+
* Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
|
|
17109
|
+
* @param reader Reader or buffer to decode from
|
|
17110
|
+
* @returns CommonLanguageSettings
|
|
17111
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17112
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17113
|
+
*/
|
|
17114
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
|
|
17115
|
+
|
|
17116
|
+
/**
|
|
17117
|
+
* Verifies a CommonLanguageSettings message.
|
|
17118
|
+
* @param message Plain object to verify
|
|
17119
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17120
|
+
*/
|
|
17121
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17122
|
+
|
|
17123
|
+
/**
|
|
17124
|
+
* Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
|
|
17125
|
+
* @param object Plain object
|
|
17126
|
+
* @returns CommonLanguageSettings
|
|
17127
|
+
*/
|
|
17128
|
+
public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
|
|
17129
|
+
|
|
17130
|
+
/**
|
|
17131
|
+
* Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
|
|
17132
|
+
* @param message CommonLanguageSettings
|
|
17133
|
+
* @param [options] Conversion options
|
|
17134
|
+
* @returns Plain object
|
|
17135
|
+
*/
|
|
17136
|
+
public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17137
|
+
|
|
17138
|
+
/**
|
|
17139
|
+
* Converts this CommonLanguageSettings to JSON.
|
|
17140
|
+
* @returns JSON object
|
|
17141
|
+
*/
|
|
17142
|
+
public toJSON(): { [k: string]: any };
|
|
17143
|
+
|
|
17144
|
+
/**
|
|
17145
|
+
* Gets the default type url for CommonLanguageSettings
|
|
17146
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17147
|
+
* @returns The default type url
|
|
17148
|
+
*/
|
|
17149
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17150
|
+
}
|
|
17151
|
+
|
|
17152
|
+
/** Properties of a ClientLibrarySettings. */
|
|
17153
|
+
interface IClientLibrarySettings {
|
|
17154
|
+
|
|
17155
|
+
/** ClientLibrarySettings version */
|
|
17156
|
+
version?: (string|null);
|
|
17157
|
+
|
|
17158
|
+
/** ClientLibrarySettings launchStage */
|
|
17159
|
+
launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
|
|
17160
|
+
|
|
17161
|
+
/** ClientLibrarySettings restNumericEnums */
|
|
17162
|
+
restNumericEnums?: (boolean|null);
|
|
17163
|
+
|
|
17164
|
+
/** ClientLibrarySettings javaSettings */
|
|
17165
|
+
javaSettings?: (google.api.IJavaSettings|null);
|
|
17166
|
+
|
|
17167
|
+
/** ClientLibrarySettings cppSettings */
|
|
17168
|
+
cppSettings?: (google.api.ICppSettings|null);
|
|
17169
|
+
|
|
17170
|
+
/** ClientLibrarySettings phpSettings */
|
|
17171
|
+
phpSettings?: (google.api.IPhpSettings|null);
|
|
17172
|
+
|
|
17173
|
+
/** ClientLibrarySettings pythonSettings */
|
|
17174
|
+
pythonSettings?: (google.api.IPythonSettings|null);
|
|
17175
|
+
|
|
17176
|
+
/** ClientLibrarySettings nodeSettings */
|
|
17177
|
+
nodeSettings?: (google.api.INodeSettings|null);
|
|
17178
|
+
|
|
17179
|
+
/** ClientLibrarySettings dotnetSettings */
|
|
17180
|
+
dotnetSettings?: (google.api.IDotnetSettings|null);
|
|
17181
|
+
|
|
17182
|
+
/** ClientLibrarySettings rubySettings */
|
|
17183
|
+
rubySettings?: (google.api.IRubySettings|null);
|
|
17184
|
+
|
|
17185
|
+
/** ClientLibrarySettings goSettings */
|
|
17186
|
+
goSettings?: (google.api.IGoSettings|null);
|
|
17187
|
+
}
|
|
17188
|
+
|
|
17189
|
+
/** Represents a ClientLibrarySettings. */
|
|
17190
|
+
class ClientLibrarySettings implements IClientLibrarySettings {
|
|
17191
|
+
|
|
17192
|
+
/**
|
|
17193
|
+
* Constructs a new ClientLibrarySettings.
|
|
17194
|
+
* @param [properties] Properties to set
|
|
17195
|
+
*/
|
|
17196
|
+
constructor(properties?: google.api.IClientLibrarySettings);
|
|
17197
|
+
|
|
17198
|
+
/** ClientLibrarySettings version. */
|
|
17199
|
+
public version: string;
|
|
17200
|
+
|
|
17201
|
+
/** ClientLibrarySettings launchStage. */
|
|
17202
|
+
public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage);
|
|
17203
|
+
|
|
17204
|
+
/** ClientLibrarySettings restNumericEnums. */
|
|
17205
|
+
public restNumericEnums: boolean;
|
|
17206
|
+
|
|
17207
|
+
/** ClientLibrarySettings javaSettings. */
|
|
17208
|
+
public javaSettings?: (google.api.IJavaSettings|null);
|
|
17209
|
+
|
|
17210
|
+
/** ClientLibrarySettings cppSettings. */
|
|
17211
|
+
public cppSettings?: (google.api.ICppSettings|null);
|
|
17212
|
+
|
|
17213
|
+
/** ClientLibrarySettings phpSettings. */
|
|
17214
|
+
public phpSettings?: (google.api.IPhpSettings|null);
|
|
17215
|
+
|
|
17216
|
+
/** ClientLibrarySettings pythonSettings. */
|
|
17217
|
+
public pythonSettings?: (google.api.IPythonSettings|null);
|
|
17218
|
+
|
|
17219
|
+
/** ClientLibrarySettings nodeSettings. */
|
|
17220
|
+
public nodeSettings?: (google.api.INodeSettings|null);
|
|
17221
|
+
|
|
17222
|
+
/** ClientLibrarySettings dotnetSettings. */
|
|
17223
|
+
public dotnetSettings?: (google.api.IDotnetSettings|null);
|
|
17224
|
+
|
|
17225
|
+
/** ClientLibrarySettings rubySettings. */
|
|
17226
|
+
public rubySettings?: (google.api.IRubySettings|null);
|
|
17227
|
+
|
|
17228
|
+
/** ClientLibrarySettings goSettings. */
|
|
17229
|
+
public goSettings?: (google.api.IGoSettings|null);
|
|
17230
|
+
|
|
17231
|
+
/**
|
|
17232
|
+
* Creates a new ClientLibrarySettings instance using the specified properties.
|
|
17233
|
+
* @param [properties] Properties to set
|
|
17234
|
+
* @returns ClientLibrarySettings instance
|
|
17235
|
+
*/
|
|
17236
|
+
public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
|
|
17237
|
+
|
|
17238
|
+
/**
|
|
17239
|
+
* Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
|
|
17240
|
+
* @param message ClientLibrarySettings message or plain object to encode
|
|
17241
|
+
* @param [writer] Writer to encode to
|
|
17242
|
+
* @returns Writer
|
|
17243
|
+
*/
|
|
17244
|
+
public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17245
|
+
|
|
17246
|
+
/**
|
|
17247
|
+
* Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
|
|
17248
|
+
* @param message ClientLibrarySettings message or plain object to encode
|
|
17249
|
+
* @param [writer] Writer to encode to
|
|
17250
|
+
* @returns Writer
|
|
17251
|
+
*/
|
|
17252
|
+
public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17253
|
+
|
|
17254
|
+
/**
|
|
17255
|
+
* Decodes a ClientLibrarySettings message from the specified reader or buffer.
|
|
17256
|
+
* @param reader Reader or buffer to decode from
|
|
17257
|
+
* @param [length] Message length if known beforehand
|
|
17258
|
+
* @returns ClientLibrarySettings
|
|
17259
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17260
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17261
|
+
*/
|
|
17262
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
|
|
17263
|
+
|
|
17264
|
+
/**
|
|
17265
|
+
* Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
|
|
17266
|
+
* @param reader Reader or buffer to decode from
|
|
17267
|
+
* @returns ClientLibrarySettings
|
|
17268
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17269
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17270
|
+
*/
|
|
17271
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
|
|
17272
|
+
|
|
17273
|
+
/**
|
|
17274
|
+
* Verifies a ClientLibrarySettings message.
|
|
17275
|
+
* @param message Plain object to verify
|
|
17276
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17277
|
+
*/
|
|
17278
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17279
|
+
|
|
17280
|
+
/**
|
|
17281
|
+
* Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
|
|
17282
|
+
* @param object Plain object
|
|
17283
|
+
* @returns ClientLibrarySettings
|
|
17284
|
+
*/
|
|
17285
|
+
public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
|
|
17286
|
+
|
|
17287
|
+
/**
|
|
17288
|
+
* Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
|
|
17289
|
+
* @param message ClientLibrarySettings
|
|
17290
|
+
* @param [options] Conversion options
|
|
17291
|
+
* @returns Plain object
|
|
17292
|
+
*/
|
|
17293
|
+
public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17294
|
+
|
|
17295
|
+
/**
|
|
17296
|
+
* Converts this ClientLibrarySettings to JSON.
|
|
17297
|
+
* @returns JSON object
|
|
17298
|
+
*/
|
|
17299
|
+
public toJSON(): { [k: string]: any };
|
|
17300
|
+
|
|
17301
|
+
/**
|
|
17302
|
+
* Gets the default type url for ClientLibrarySettings
|
|
17303
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17304
|
+
* @returns The default type url
|
|
17305
|
+
*/
|
|
17306
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17307
|
+
}
|
|
17308
|
+
|
|
17309
|
+
/** Properties of a Publishing. */
|
|
17310
|
+
interface IPublishing {
|
|
17311
|
+
|
|
17312
|
+
/** Publishing methodSettings */
|
|
17313
|
+
methodSettings?: (google.api.IMethodSettings[]|null);
|
|
17314
|
+
|
|
17315
|
+
/** Publishing newIssueUri */
|
|
17316
|
+
newIssueUri?: (string|null);
|
|
17317
|
+
|
|
17318
|
+
/** Publishing documentationUri */
|
|
17319
|
+
documentationUri?: (string|null);
|
|
17320
|
+
|
|
17321
|
+
/** Publishing apiShortName */
|
|
17322
|
+
apiShortName?: (string|null);
|
|
17323
|
+
|
|
17324
|
+
/** Publishing githubLabel */
|
|
17325
|
+
githubLabel?: (string|null);
|
|
17326
|
+
|
|
17327
|
+
/** Publishing codeownerGithubTeams */
|
|
17328
|
+
codeownerGithubTeams?: (string[]|null);
|
|
17329
|
+
|
|
17330
|
+
/** Publishing docTagPrefix */
|
|
17331
|
+
docTagPrefix?: (string|null);
|
|
17332
|
+
|
|
17333
|
+
/** Publishing organization */
|
|
17334
|
+
organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null);
|
|
17335
|
+
|
|
17336
|
+
/** Publishing librarySettings */
|
|
17337
|
+
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
17338
|
+
}
|
|
17339
|
+
|
|
17340
|
+
/** Represents a Publishing. */
|
|
17341
|
+
class Publishing implements IPublishing {
|
|
17342
|
+
|
|
17343
|
+
/**
|
|
17344
|
+
* Constructs a new Publishing.
|
|
17345
|
+
* @param [properties] Properties to set
|
|
17346
|
+
*/
|
|
17347
|
+
constructor(properties?: google.api.IPublishing);
|
|
17348
|
+
|
|
17349
|
+
/** Publishing methodSettings. */
|
|
17350
|
+
public methodSettings: google.api.IMethodSettings[];
|
|
17351
|
+
|
|
17352
|
+
/** Publishing newIssueUri. */
|
|
17353
|
+
public newIssueUri: string;
|
|
17354
|
+
|
|
17355
|
+
/** Publishing documentationUri. */
|
|
17356
|
+
public documentationUri: string;
|
|
17357
|
+
|
|
17358
|
+
/** Publishing apiShortName. */
|
|
17359
|
+
public apiShortName: string;
|
|
17360
|
+
|
|
17361
|
+
/** Publishing githubLabel. */
|
|
17362
|
+
public githubLabel: string;
|
|
17363
|
+
|
|
17364
|
+
/** Publishing codeownerGithubTeams. */
|
|
17365
|
+
public codeownerGithubTeams: string[];
|
|
17366
|
+
|
|
17367
|
+
/** Publishing docTagPrefix. */
|
|
17368
|
+
public docTagPrefix: string;
|
|
17369
|
+
|
|
17370
|
+
/** Publishing organization. */
|
|
17371
|
+
public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization);
|
|
17372
|
+
|
|
17373
|
+
/** Publishing librarySettings. */
|
|
17374
|
+
public librarySettings: google.api.IClientLibrarySettings[];
|
|
17375
|
+
|
|
17376
|
+
/**
|
|
17377
|
+
* Creates a new Publishing instance using the specified properties.
|
|
17378
|
+
* @param [properties] Properties to set
|
|
17379
|
+
* @returns Publishing instance
|
|
17380
|
+
*/
|
|
17381
|
+
public static create(properties?: google.api.IPublishing): google.api.Publishing;
|
|
17382
|
+
|
|
17383
|
+
/**
|
|
17384
|
+
* Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
|
|
17385
|
+
* @param message Publishing message or plain object to encode
|
|
17386
|
+
* @param [writer] Writer to encode to
|
|
17387
|
+
* @returns Writer
|
|
17388
|
+
*/
|
|
17389
|
+
public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17390
|
+
|
|
17391
|
+
/**
|
|
17392
|
+
* Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
|
|
17393
|
+
* @param message Publishing message or plain object to encode
|
|
17394
|
+
* @param [writer] Writer to encode to
|
|
17395
|
+
* @returns Writer
|
|
17396
|
+
*/
|
|
17397
|
+
public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17398
|
+
|
|
17399
|
+
/**
|
|
17400
|
+
* Decodes a Publishing message from the specified reader or buffer.
|
|
17401
|
+
* @param reader Reader or buffer to decode from
|
|
17402
|
+
* @param [length] Message length if known beforehand
|
|
17403
|
+
* @returns Publishing
|
|
17404
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17405
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17406
|
+
*/
|
|
17407
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
|
|
17408
|
+
|
|
17409
|
+
/**
|
|
17410
|
+
* Decodes a Publishing message from the specified reader or buffer, length delimited.
|
|
17411
|
+
* @param reader Reader or buffer to decode from
|
|
17412
|
+
* @returns Publishing
|
|
17413
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17414
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17415
|
+
*/
|
|
17416
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing;
|
|
17417
|
+
|
|
17418
|
+
/**
|
|
17419
|
+
* Verifies a Publishing message.
|
|
17420
|
+
* @param message Plain object to verify
|
|
17421
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17422
|
+
*/
|
|
17423
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17424
|
+
|
|
17425
|
+
/**
|
|
17426
|
+
* Creates a Publishing message from a plain object. Also converts values to their respective internal types.
|
|
17427
|
+
* @param object Plain object
|
|
17428
|
+
* @returns Publishing
|
|
17429
|
+
*/
|
|
17430
|
+
public static fromObject(object: { [k: string]: any }): google.api.Publishing;
|
|
17431
|
+
|
|
17432
|
+
/**
|
|
17433
|
+
* Creates a plain object from a Publishing message. Also converts values to other types if specified.
|
|
17434
|
+
* @param message Publishing
|
|
17435
|
+
* @param [options] Conversion options
|
|
17436
|
+
* @returns Plain object
|
|
17437
|
+
*/
|
|
17438
|
+
public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17439
|
+
|
|
17440
|
+
/**
|
|
17441
|
+
* Converts this Publishing to JSON.
|
|
17442
|
+
* @returns JSON object
|
|
17443
|
+
*/
|
|
17444
|
+
public toJSON(): { [k: string]: any };
|
|
17445
|
+
|
|
17446
|
+
/**
|
|
17447
|
+
* Gets the default type url for Publishing
|
|
17448
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17449
|
+
* @returns The default type url
|
|
17450
|
+
*/
|
|
17451
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17452
|
+
}
|
|
17453
|
+
|
|
17454
|
+
/** Properties of a JavaSettings. */
|
|
17455
|
+
interface IJavaSettings {
|
|
17456
|
+
|
|
17457
|
+
/** JavaSettings libraryPackage */
|
|
17458
|
+
libraryPackage?: (string|null);
|
|
17459
|
+
|
|
17460
|
+
/** JavaSettings serviceClassNames */
|
|
17461
|
+
serviceClassNames?: ({ [k: string]: string }|null);
|
|
17462
|
+
|
|
17463
|
+
/** JavaSettings common */
|
|
17464
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17465
|
+
}
|
|
17466
|
+
|
|
17467
|
+
/** Represents a JavaSettings. */
|
|
17468
|
+
class JavaSettings implements IJavaSettings {
|
|
17469
|
+
|
|
17470
|
+
/**
|
|
17471
|
+
* Constructs a new JavaSettings.
|
|
17472
|
+
* @param [properties] Properties to set
|
|
17473
|
+
*/
|
|
17474
|
+
constructor(properties?: google.api.IJavaSettings);
|
|
17475
|
+
|
|
17476
|
+
/** JavaSettings libraryPackage. */
|
|
17477
|
+
public libraryPackage: string;
|
|
17478
|
+
|
|
17479
|
+
/** JavaSettings serviceClassNames. */
|
|
17480
|
+
public serviceClassNames: { [k: string]: string };
|
|
17481
|
+
|
|
17482
|
+
/** JavaSettings common. */
|
|
17483
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17484
|
+
|
|
17485
|
+
/**
|
|
17486
|
+
* Creates a new JavaSettings instance using the specified properties.
|
|
17487
|
+
* @param [properties] Properties to set
|
|
17488
|
+
* @returns JavaSettings instance
|
|
17489
|
+
*/
|
|
17490
|
+
public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings;
|
|
17491
|
+
|
|
17492
|
+
/**
|
|
17493
|
+
* Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
|
|
17494
|
+
* @param message JavaSettings message or plain object to encode
|
|
17495
|
+
* @param [writer] Writer to encode to
|
|
17496
|
+
* @returns Writer
|
|
17497
|
+
*/
|
|
17498
|
+
public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17499
|
+
|
|
17500
|
+
/**
|
|
17501
|
+
* Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
|
|
17502
|
+
* @param message JavaSettings message or plain object to encode
|
|
17503
|
+
* @param [writer] Writer to encode to
|
|
17504
|
+
* @returns Writer
|
|
17505
|
+
*/
|
|
17506
|
+
public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17507
|
+
|
|
17508
|
+
/**
|
|
17509
|
+
* Decodes a JavaSettings message from the specified reader or buffer.
|
|
17510
|
+
* @param reader Reader or buffer to decode from
|
|
17511
|
+
* @param [length] Message length if known beforehand
|
|
17512
|
+
* @returns JavaSettings
|
|
17513
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17514
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17515
|
+
*/
|
|
17516
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings;
|
|
17517
|
+
|
|
17518
|
+
/**
|
|
17519
|
+
* Decodes a JavaSettings message from the specified reader or buffer, length delimited.
|
|
17520
|
+
* @param reader Reader or buffer to decode from
|
|
17521
|
+
* @returns JavaSettings
|
|
17522
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17523
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17524
|
+
*/
|
|
17525
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings;
|
|
17526
|
+
|
|
17527
|
+
/**
|
|
17528
|
+
* Verifies a JavaSettings message.
|
|
17529
|
+
* @param message Plain object to verify
|
|
17530
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17531
|
+
*/
|
|
17532
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17533
|
+
|
|
17534
|
+
/**
|
|
17535
|
+
* Creates a JavaSettings message from a plain object. Also converts values to their respective internal types.
|
|
17536
|
+
* @param object Plain object
|
|
17537
|
+
* @returns JavaSettings
|
|
17538
|
+
*/
|
|
17539
|
+
public static fromObject(object: { [k: string]: any }): google.api.JavaSettings;
|
|
17540
|
+
|
|
17541
|
+
/**
|
|
17542
|
+
* Creates a plain object from a JavaSettings message. Also converts values to other types if specified.
|
|
17543
|
+
* @param message JavaSettings
|
|
17544
|
+
* @param [options] Conversion options
|
|
17545
|
+
* @returns Plain object
|
|
17546
|
+
*/
|
|
17547
|
+
public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17548
|
+
|
|
17549
|
+
/**
|
|
17550
|
+
* Converts this JavaSettings to JSON.
|
|
17551
|
+
* @returns JSON object
|
|
17552
|
+
*/
|
|
17553
|
+
public toJSON(): { [k: string]: any };
|
|
17554
|
+
|
|
17555
|
+
/**
|
|
17556
|
+
* Gets the default type url for JavaSettings
|
|
17557
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17558
|
+
* @returns The default type url
|
|
17559
|
+
*/
|
|
17560
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17561
|
+
}
|
|
17562
|
+
|
|
17563
|
+
/** Properties of a CppSettings. */
|
|
17564
|
+
interface ICppSettings {
|
|
17565
|
+
|
|
17566
|
+
/** CppSettings common */
|
|
17567
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17568
|
+
}
|
|
17569
|
+
|
|
17570
|
+
/** Represents a CppSettings. */
|
|
17571
|
+
class CppSettings implements ICppSettings {
|
|
17572
|
+
|
|
17573
|
+
/**
|
|
17574
|
+
* Constructs a new CppSettings.
|
|
17575
|
+
* @param [properties] Properties to set
|
|
17576
|
+
*/
|
|
17577
|
+
constructor(properties?: google.api.ICppSettings);
|
|
17578
|
+
|
|
17579
|
+
/** CppSettings common. */
|
|
17580
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17581
|
+
|
|
17582
|
+
/**
|
|
17583
|
+
* Creates a new CppSettings instance using the specified properties.
|
|
17584
|
+
* @param [properties] Properties to set
|
|
17585
|
+
* @returns CppSettings instance
|
|
17586
|
+
*/
|
|
17587
|
+
public static create(properties?: google.api.ICppSettings): google.api.CppSettings;
|
|
17588
|
+
|
|
17589
|
+
/**
|
|
17590
|
+
* Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
|
|
17591
|
+
* @param message CppSettings message or plain object to encode
|
|
17592
|
+
* @param [writer] Writer to encode to
|
|
17593
|
+
* @returns Writer
|
|
17594
|
+
*/
|
|
17595
|
+
public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17596
|
+
|
|
17597
|
+
/**
|
|
17598
|
+
* Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
|
|
17599
|
+
* @param message CppSettings message or plain object to encode
|
|
17600
|
+
* @param [writer] Writer to encode to
|
|
17601
|
+
* @returns Writer
|
|
17602
|
+
*/
|
|
17603
|
+
public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17604
|
+
|
|
17605
|
+
/**
|
|
17606
|
+
* Decodes a CppSettings message from the specified reader or buffer.
|
|
17607
|
+
* @param reader Reader or buffer to decode from
|
|
17608
|
+
* @param [length] Message length if known beforehand
|
|
17609
|
+
* @returns CppSettings
|
|
17610
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17611
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17612
|
+
*/
|
|
17613
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings;
|
|
17614
|
+
|
|
17615
|
+
/**
|
|
17616
|
+
* Decodes a CppSettings message from the specified reader or buffer, length delimited.
|
|
17617
|
+
* @param reader Reader or buffer to decode from
|
|
17618
|
+
* @returns CppSettings
|
|
17619
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17620
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17621
|
+
*/
|
|
17622
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings;
|
|
17623
|
+
|
|
17624
|
+
/**
|
|
17625
|
+
* Verifies a CppSettings message.
|
|
17626
|
+
* @param message Plain object to verify
|
|
17627
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17628
|
+
*/
|
|
17629
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17630
|
+
|
|
17631
|
+
/**
|
|
17632
|
+
* Creates a CppSettings message from a plain object. Also converts values to their respective internal types.
|
|
17633
|
+
* @param object Plain object
|
|
17634
|
+
* @returns CppSettings
|
|
17635
|
+
*/
|
|
17636
|
+
public static fromObject(object: { [k: string]: any }): google.api.CppSettings;
|
|
17637
|
+
|
|
17638
|
+
/**
|
|
17639
|
+
* Creates a plain object from a CppSettings message. Also converts values to other types if specified.
|
|
17640
|
+
* @param message CppSettings
|
|
17641
|
+
* @param [options] Conversion options
|
|
17642
|
+
* @returns Plain object
|
|
17643
|
+
*/
|
|
17644
|
+
public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17645
|
+
|
|
17646
|
+
/**
|
|
17647
|
+
* Converts this CppSettings to JSON.
|
|
17648
|
+
* @returns JSON object
|
|
17649
|
+
*/
|
|
17650
|
+
public toJSON(): { [k: string]: any };
|
|
17651
|
+
|
|
17652
|
+
/**
|
|
17653
|
+
* Gets the default type url for CppSettings
|
|
17654
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17655
|
+
* @returns The default type url
|
|
17656
|
+
*/
|
|
17657
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17658
|
+
}
|
|
17659
|
+
|
|
17660
|
+
/** Properties of a PhpSettings. */
|
|
17661
|
+
interface IPhpSettings {
|
|
17662
|
+
|
|
17663
|
+
/** PhpSettings common */
|
|
17664
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17665
|
+
}
|
|
17666
|
+
|
|
17667
|
+
/** Represents a PhpSettings. */
|
|
17668
|
+
class PhpSettings implements IPhpSettings {
|
|
17669
|
+
|
|
17670
|
+
/**
|
|
17671
|
+
* Constructs a new PhpSettings.
|
|
17672
|
+
* @param [properties] Properties to set
|
|
17673
|
+
*/
|
|
17674
|
+
constructor(properties?: google.api.IPhpSettings);
|
|
17675
|
+
|
|
17676
|
+
/** PhpSettings common. */
|
|
17677
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17678
|
+
|
|
17679
|
+
/**
|
|
17680
|
+
* Creates a new PhpSettings instance using the specified properties.
|
|
17681
|
+
* @param [properties] Properties to set
|
|
17682
|
+
* @returns PhpSettings instance
|
|
17683
|
+
*/
|
|
17684
|
+
public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings;
|
|
17685
|
+
|
|
17686
|
+
/**
|
|
17687
|
+
* Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
|
|
17688
|
+
* @param message PhpSettings message or plain object to encode
|
|
17689
|
+
* @param [writer] Writer to encode to
|
|
17690
|
+
* @returns Writer
|
|
17691
|
+
*/
|
|
17692
|
+
public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17693
|
+
|
|
17694
|
+
/**
|
|
17695
|
+
* Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
|
|
17696
|
+
* @param message PhpSettings message or plain object to encode
|
|
17697
|
+
* @param [writer] Writer to encode to
|
|
17698
|
+
* @returns Writer
|
|
17699
|
+
*/
|
|
17700
|
+
public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17701
|
+
|
|
17702
|
+
/**
|
|
17703
|
+
* Decodes a PhpSettings message from the specified reader or buffer.
|
|
17704
|
+
* @param reader Reader or buffer to decode from
|
|
17705
|
+
* @param [length] Message length if known beforehand
|
|
17706
|
+
* @returns PhpSettings
|
|
17707
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17708
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17709
|
+
*/
|
|
17710
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings;
|
|
17711
|
+
|
|
17712
|
+
/**
|
|
17713
|
+
* Decodes a PhpSettings message from the specified reader or buffer, length delimited.
|
|
17714
|
+
* @param reader Reader or buffer to decode from
|
|
17715
|
+
* @returns PhpSettings
|
|
17716
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17717
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17718
|
+
*/
|
|
17719
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings;
|
|
17720
|
+
|
|
17721
|
+
/**
|
|
17722
|
+
* Verifies a PhpSettings message.
|
|
17723
|
+
* @param message Plain object to verify
|
|
17724
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17725
|
+
*/
|
|
17726
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17727
|
+
|
|
17728
|
+
/**
|
|
17729
|
+
* Creates a PhpSettings message from a plain object. Also converts values to their respective internal types.
|
|
17730
|
+
* @param object Plain object
|
|
17731
|
+
* @returns PhpSettings
|
|
17732
|
+
*/
|
|
17733
|
+
public static fromObject(object: { [k: string]: any }): google.api.PhpSettings;
|
|
17734
|
+
|
|
17735
|
+
/**
|
|
17736
|
+
* Creates a plain object from a PhpSettings message. Also converts values to other types if specified.
|
|
17737
|
+
* @param message PhpSettings
|
|
17738
|
+
* @param [options] Conversion options
|
|
17739
|
+
* @returns Plain object
|
|
17740
|
+
*/
|
|
17741
|
+
public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17742
|
+
|
|
17743
|
+
/**
|
|
17744
|
+
* Converts this PhpSettings to JSON.
|
|
17745
|
+
* @returns JSON object
|
|
17746
|
+
*/
|
|
17747
|
+
public toJSON(): { [k: string]: any };
|
|
17748
|
+
|
|
17749
|
+
/**
|
|
17750
|
+
* Gets the default type url for PhpSettings
|
|
17751
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17752
|
+
* @returns The default type url
|
|
17753
|
+
*/
|
|
17754
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17755
|
+
}
|
|
17756
|
+
|
|
17757
|
+
/** Properties of a PythonSettings. */
|
|
17758
|
+
interface IPythonSettings {
|
|
17759
|
+
|
|
17760
|
+
/** PythonSettings common */
|
|
17761
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17762
|
+
}
|
|
17763
|
+
|
|
17764
|
+
/** Represents a PythonSettings. */
|
|
17765
|
+
class PythonSettings implements IPythonSettings {
|
|
17766
|
+
|
|
17767
|
+
/**
|
|
17768
|
+
* Constructs a new PythonSettings.
|
|
17769
|
+
* @param [properties] Properties to set
|
|
17770
|
+
*/
|
|
17771
|
+
constructor(properties?: google.api.IPythonSettings);
|
|
17772
|
+
|
|
17773
|
+
/** PythonSettings common. */
|
|
17774
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17775
|
+
|
|
17776
|
+
/**
|
|
17777
|
+
* Creates a new PythonSettings instance using the specified properties.
|
|
17778
|
+
* @param [properties] Properties to set
|
|
17779
|
+
* @returns PythonSettings instance
|
|
17780
|
+
*/
|
|
17781
|
+
public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings;
|
|
17782
|
+
|
|
17783
|
+
/**
|
|
17784
|
+
* Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
|
|
17785
|
+
* @param message PythonSettings message or plain object to encode
|
|
17786
|
+
* @param [writer] Writer to encode to
|
|
17787
|
+
* @returns Writer
|
|
17788
|
+
*/
|
|
17789
|
+
public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17790
|
+
|
|
17791
|
+
/**
|
|
17792
|
+
* Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
|
|
17793
|
+
* @param message PythonSettings message or plain object to encode
|
|
17794
|
+
* @param [writer] Writer to encode to
|
|
17795
|
+
* @returns Writer
|
|
17796
|
+
*/
|
|
17797
|
+
public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17798
|
+
|
|
17799
|
+
/**
|
|
17800
|
+
* Decodes a PythonSettings message from the specified reader or buffer.
|
|
17801
|
+
* @param reader Reader or buffer to decode from
|
|
17802
|
+
* @param [length] Message length if known beforehand
|
|
17803
|
+
* @returns PythonSettings
|
|
17804
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17805
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17806
|
+
*/
|
|
17807
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings;
|
|
17808
|
+
|
|
17809
|
+
/**
|
|
17810
|
+
* Decodes a PythonSettings message from the specified reader or buffer, length delimited.
|
|
17811
|
+
* @param reader Reader or buffer to decode from
|
|
17812
|
+
* @returns PythonSettings
|
|
17813
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17814
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17815
|
+
*/
|
|
17816
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings;
|
|
17817
|
+
|
|
17818
|
+
/**
|
|
17819
|
+
* Verifies a PythonSettings message.
|
|
17820
|
+
* @param message Plain object to verify
|
|
17821
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17822
|
+
*/
|
|
17823
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17824
|
+
|
|
17825
|
+
/**
|
|
17826
|
+
* Creates a PythonSettings message from a plain object. Also converts values to their respective internal types.
|
|
17827
|
+
* @param object Plain object
|
|
17828
|
+
* @returns PythonSettings
|
|
17829
|
+
*/
|
|
17830
|
+
public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
|
|
17831
|
+
|
|
17832
|
+
/**
|
|
17833
|
+
* Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
|
|
17834
|
+
* @param message PythonSettings
|
|
17835
|
+
* @param [options] Conversion options
|
|
17836
|
+
* @returns Plain object
|
|
17837
|
+
*/
|
|
17838
|
+
public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17839
|
+
|
|
17840
|
+
/**
|
|
17841
|
+
* Converts this PythonSettings to JSON.
|
|
17842
|
+
* @returns JSON object
|
|
17843
|
+
*/
|
|
17844
|
+
public toJSON(): { [k: string]: any };
|
|
17845
|
+
|
|
17846
|
+
/**
|
|
17847
|
+
* Gets the default type url for PythonSettings
|
|
17848
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17849
|
+
* @returns The default type url
|
|
17850
|
+
*/
|
|
17851
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17852
|
+
}
|
|
17853
|
+
|
|
17854
|
+
/** Properties of a NodeSettings. */
|
|
17855
|
+
interface INodeSettings {
|
|
17856
|
+
|
|
17857
|
+
/** NodeSettings common */
|
|
17858
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17859
|
+
}
|
|
17860
|
+
|
|
17861
|
+
/** Represents a NodeSettings. */
|
|
17862
|
+
class NodeSettings implements INodeSettings {
|
|
17863
|
+
|
|
17864
|
+
/**
|
|
17865
|
+
* Constructs a new NodeSettings.
|
|
17866
|
+
* @param [properties] Properties to set
|
|
17867
|
+
*/
|
|
17868
|
+
constructor(properties?: google.api.INodeSettings);
|
|
17869
|
+
|
|
17870
|
+
/** NodeSettings common. */
|
|
17871
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17872
|
+
|
|
17873
|
+
/**
|
|
17874
|
+
* Creates a new NodeSettings instance using the specified properties.
|
|
17875
|
+
* @param [properties] Properties to set
|
|
17876
|
+
* @returns NodeSettings instance
|
|
17877
|
+
*/
|
|
17878
|
+
public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
|
|
17879
|
+
|
|
17880
|
+
/**
|
|
17881
|
+
* Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
|
|
17882
|
+
* @param message NodeSettings message or plain object to encode
|
|
17883
|
+
* @param [writer] Writer to encode to
|
|
17884
|
+
* @returns Writer
|
|
17885
|
+
*/
|
|
17886
|
+
public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17887
|
+
|
|
17888
|
+
/**
|
|
17889
|
+
* Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
|
|
17890
|
+
* @param message NodeSettings message or plain object to encode
|
|
17891
|
+
* @param [writer] Writer to encode to
|
|
17892
|
+
* @returns Writer
|
|
17893
|
+
*/
|
|
17894
|
+
public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17895
|
+
|
|
17896
|
+
/**
|
|
17897
|
+
* Decodes a NodeSettings message from the specified reader or buffer.
|
|
17898
|
+
* @param reader Reader or buffer to decode from
|
|
17899
|
+
* @param [length] Message length if known beforehand
|
|
17900
|
+
* @returns NodeSettings
|
|
17901
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17902
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17903
|
+
*/
|
|
17904
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings;
|
|
17905
|
+
|
|
17906
|
+
/**
|
|
17907
|
+
* Decodes a NodeSettings message from the specified reader or buffer, length delimited.
|
|
17908
|
+
* @param reader Reader or buffer to decode from
|
|
17909
|
+
* @returns NodeSettings
|
|
17910
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17911
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
17912
|
+
*/
|
|
17913
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings;
|
|
17914
|
+
|
|
17915
|
+
/**
|
|
17916
|
+
* Verifies a NodeSettings message.
|
|
17917
|
+
* @param message Plain object to verify
|
|
17918
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
17919
|
+
*/
|
|
17920
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
17921
|
+
|
|
17922
|
+
/**
|
|
17923
|
+
* Creates a NodeSettings message from a plain object. Also converts values to their respective internal types.
|
|
17924
|
+
* @param object Plain object
|
|
17925
|
+
* @returns NodeSettings
|
|
17926
|
+
*/
|
|
17927
|
+
public static fromObject(object: { [k: string]: any }): google.api.NodeSettings;
|
|
17928
|
+
|
|
17929
|
+
/**
|
|
17930
|
+
* Creates a plain object from a NodeSettings message. Also converts values to other types if specified.
|
|
17931
|
+
* @param message NodeSettings
|
|
17932
|
+
* @param [options] Conversion options
|
|
17933
|
+
* @returns Plain object
|
|
17934
|
+
*/
|
|
17935
|
+
public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
17936
|
+
|
|
17937
|
+
/**
|
|
17938
|
+
* Converts this NodeSettings to JSON.
|
|
17939
|
+
* @returns JSON object
|
|
17940
|
+
*/
|
|
17941
|
+
public toJSON(): { [k: string]: any };
|
|
17942
|
+
|
|
17943
|
+
/**
|
|
17944
|
+
* Gets the default type url for NodeSettings
|
|
17945
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
17946
|
+
* @returns The default type url
|
|
17947
|
+
*/
|
|
17948
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
17949
|
+
}
|
|
17950
|
+
|
|
17951
|
+
/** Properties of a DotnetSettings. */
|
|
17952
|
+
interface IDotnetSettings {
|
|
17953
|
+
|
|
17954
|
+
/** DotnetSettings common */
|
|
17955
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
17956
|
+
}
|
|
17957
|
+
|
|
17958
|
+
/** Represents a DotnetSettings. */
|
|
17959
|
+
class DotnetSettings implements IDotnetSettings {
|
|
17960
|
+
|
|
17961
|
+
/**
|
|
17962
|
+
* Constructs a new DotnetSettings.
|
|
17963
|
+
* @param [properties] Properties to set
|
|
17964
|
+
*/
|
|
17965
|
+
constructor(properties?: google.api.IDotnetSettings);
|
|
17966
|
+
|
|
17967
|
+
/** DotnetSettings common. */
|
|
17968
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
17969
|
+
|
|
17970
|
+
/**
|
|
17971
|
+
* Creates a new DotnetSettings instance using the specified properties.
|
|
17972
|
+
* @param [properties] Properties to set
|
|
17973
|
+
* @returns DotnetSettings instance
|
|
17974
|
+
*/
|
|
17975
|
+
public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings;
|
|
17976
|
+
|
|
17977
|
+
/**
|
|
17978
|
+
* Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
|
|
17979
|
+
* @param message DotnetSettings message or plain object to encode
|
|
17980
|
+
* @param [writer] Writer to encode to
|
|
17981
|
+
* @returns Writer
|
|
17982
|
+
*/
|
|
17983
|
+
public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17984
|
+
|
|
17985
|
+
/**
|
|
17986
|
+
* Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
|
|
17987
|
+
* @param message DotnetSettings message or plain object to encode
|
|
17988
|
+
* @param [writer] Writer to encode to
|
|
17989
|
+
* @returns Writer
|
|
17990
|
+
*/
|
|
17991
|
+
public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
17992
|
+
|
|
17993
|
+
/**
|
|
17994
|
+
* Decodes a DotnetSettings message from the specified reader or buffer.
|
|
17995
|
+
* @param reader Reader or buffer to decode from
|
|
17996
|
+
* @param [length] Message length if known beforehand
|
|
17997
|
+
* @returns DotnetSettings
|
|
17998
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
17999
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18000
|
+
*/
|
|
18001
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings;
|
|
18002
|
+
|
|
18003
|
+
/**
|
|
18004
|
+
* Decodes a DotnetSettings message from the specified reader or buffer, length delimited.
|
|
18005
|
+
* @param reader Reader or buffer to decode from
|
|
18006
|
+
* @returns DotnetSettings
|
|
18007
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18008
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18009
|
+
*/
|
|
18010
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings;
|
|
18011
|
+
|
|
18012
|
+
/**
|
|
18013
|
+
* Verifies a DotnetSettings message.
|
|
18014
|
+
* @param message Plain object to verify
|
|
18015
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18016
|
+
*/
|
|
18017
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18018
|
+
|
|
18019
|
+
/**
|
|
18020
|
+
* Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types.
|
|
18021
|
+
* @param object Plain object
|
|
18022
|
+
* @returns DotnetSettings
|
|
18023
|
+
*/
|
|
18024
|
+
public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings;
|
|
18025
|
+
|
|
18026
|
+
/**
|
|
18027
|
+
* Creates a plain object from a DotnetSettings message. Also converts values to other types if specified.
|
|
18028
|
+
* @param message DotnetSettings
|
|
18029
|
+
* @param [options] Conversion options
|
|
18030
|
+
* @returns Plain object
|
|
18031
|
+
*/
|
|
18032
|
+
public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18033
|
+
|
|
18034
|
+
/**
|
|
18035
|
+
* Converts this DotnetSettings to JSON.
|
|
18036
|
+
* @returns JSON object
|
|
18037
|
+
*/
|
|
18038
|
+
public toJSON(): { [k: string]: any };
|
|
18039
|
+
|
|
18040
|
+
/**
|
|
18041
|
+
* Gets the default type url for DotnetSettings
|
|
18042
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18043
|
+
* @returns The default type url
|
|
18044
|
+
*/
|
|
18045
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18046
|
+
}
|
|
18047
|
+
|
|
18048
|
+
/** Properties of a RubySettings. */
|
|
18049
|
+
interface IRubySettings {
|
|
18050
|
+
|
|
18051
|
+
/** RubySettings common */
|
|
18052
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
18053
|
+
}
|
|
18054
|
+
|
|
18055
|
+
/** Represents a RubySettings. */
|
|
18056
|
+
class RubySettings implements IRubySettings {
|
|
18057
|
+
|
|
18058
|
+
/**
|
|
18059
|
+
* Constructs a new RubySettings.
|
|
18060
|
+
* @param [properties] Properties to set
|
|
18061
|
+
*/
|
|
18062
|
+
constructor(properties?: google.api.IRubySettings);
|
|
18063
|
+
|
|
18064
|
+
/** RubySettings common. */
|
|
18065
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18066
|
+
|
|
18067
|
+
/**
|
|
18068
|
+
* Creates a new RubySettings instance using the specified properties.
|
|
18069
|
+
* @param [properties] Properties to set
|
|
18070
|
+
* @returns RubySettings instance
|
|
18071
|
+
*/
|
|
18072
|
+
public static create(properties?: google.api.IRubySettings): google.api.RubySettings;
|
|
18073
|
+
|
|
18074
|
+
/**
|
|
18075
|
+
* Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
|
|
18076
|
+
* @param message RubySettings message or plain object to encode
|
|
18077
|
+
* @param [writer] Writer to encode to
|
|
18078
|
+
* @returns Writer
|
|
18079
|
+
*/
|
|
18080
|
+
public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18081
|
+
|
|
18082
|
+
/**
|
|
18083
|
+
* Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
|
|
18084
|
+
* @param message RubySettings message or plain object to encode
|
|
18085
|
+
* @param [writer] Writer to encode to
|
|
18086
|
+
* @returns Writer
|
|
18087
|
+
*/
|
|
18088
|
+
public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18089
|
+
|
|
18090
|
+
/**
|
|
18091
|
+
* Decodes a RubySettings message from the specified reader or buffer.
|
|
18092
|
+
* @param reader Reader or buffer to decode from
|
|
18093
|
+
* @param [length] Message length if known beforehand
|
|
18094
|
+
* @returns RubySettings
|
|
18095
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18096
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18097
|
+
*/
|
|
18098
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings;
|
|
18099
|
+
|
|
18100
|
+
/**
|
|
18101
|
+
* Decodes a RubySettings message from the specified reader or buffer, length delimited.
|
|
18102
|
+
* @param reader Reader or buffer to decode from
|
|
18103
|
+
* @returns RubySettings
|
|
18104
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18105
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18106
|
+
*/
|
|
18107
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings;
|
|
18108
|
+
|
|
18109
|
+
/**
|
|
18110
|
+
* Verifies a RubySettings message.
|
|
18111
|
+
* @param message Plain object to verify
|
|
18112
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18113
|
+
*/
|
|
18114
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18115
|
+
|
|
18116
|
+
/**
|
|
18117
|
+
* Creates a RubySettings message from a plain object. Also converts values to their respective internal types.
|
|
18118
|
+
* @param object Plain object
|
|
18119
|
+
* @returns RubySettings
|
|
18120
|
+
*/
|
|
18121
|
+
public static fromObject(object: { [k: string]: any }): google.api.RubySettings;
|
|
18122
|
+
|
|
18123
|
+
/**
|
|
18124
|
+
* Creates a plain object from a RubySettings message. Also converts values to other types if specified.
|
|
18125
|
+
* @param message RubySettings
|
|
18126
|
+
* @param [options] Conversion options
|
|
18127
|
+
* @returns Plain object
|
|
18128
|
+
*/
|
|
18129
|
+
public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18130
|
+
|
|
18131
|
+
/**
|
|
18132
|
+
* Converts this RubySettings to JSON.
|
|
18133
|
+
* @returns JSON object
|
|
18134
|
+
*/
|
|
18135
|
+
public toJSON(): { [k: string]: any };
|
|
18136
|
+
|
|
18137
|
+
/**
|
|
18138
|
+
* Gets the default type url for RubySettings
|
|
18139
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18140
|
+
* @returns The default type url
|
|
18141
|
+
*/
|
|
18142
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18143
|
+
}
|
|
18144
|
+
|
|
18145
|
+
/** Properties of a GoSettings. */
|
|
18146
|
+
interface IGoSettings {
|
|
18147
|
+
|
|
18148
|
+
/** GoSettings common */
|
|
18149
|
+
common?: (google.api.ICommonLanguageSettings|null);
|
|
18150
|
+
}
|
|
18151
|
+
|
|
18152
|
+
/** Represents a GoSettings. */
|
|
18153
|
+
class GoSettings implements IGoSettings {
|
|
18154
|
+
|
|
18155
|
+
/**
|
|
18156
|
+
* Constructs a new GoSettings.
|
|
18157
|
+
* @param [properties] Properties to set
|
|
18158
|
+
*/
|
|
18159
|
+
constructor(properties?: google.api.IGoSettings);
|
|
18160
|
+
|
|
18161
|
+
/** GoSettings common. */
|
|
18162
|
+
public common?: (google.api.ICommonLanguageSettings|null);
|
|
18163
|
+
|
|
18164
|
+
/**
|
|
18165
|
+
* Creates a new GoSettings instance using the specified properties.
|
|
18166
|
+
* @param [properties] Properties to set
|
|
18167
|
+
* @returns GoSettings instance
|
|
18168
|
+
*/
|
|
18169
|
+
public static create(properties?: google.api.IGoSettings): google.api.GoSettings;
|
|
18170
|
+
|
|
18171
|
+
/**
|
|
18172
|
+
* Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
|
|
18173
|
+
* @param message GoSettings message or plain object to encode
|
|
18174
|
+
* @param [writer] Writer to encode to
|
|
18175
|
+
* @returns Writer
|
|
18176
|
+
*/
|
|
18177
|
+
public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18178
|
+
|
|
18179
|
+
/**
|
|
18180
|
+
* Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
|
|
18181
|
+
* @param message GoSettings message or plain object to encode
|
|
18182
|
+
* @param [writer] Writer to encode to
|
|
18183
|
+
* @returns Writer
|
|
18184
|
+
*/
|
|
18185
|
+
public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18186
|
+
|
|
18187
|
+
/**
|
|
18188
|
+
* Decodes a GoSettings message from the specified reader or buffer.
|
|
18189
|
+
* @param reader Reader or buffer to decode from
|
|
18190
|
+
* @param [length] Message length if known beforehand
|
|
18191
|
+
* @returns GoSettings
|
|
18192
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18193
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18194
|
+
*/
|
|
18195
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings;
|
|
18196
|
+
|
|
18197
|
+
/**
|
|
18198
|
+
* Decodes a GoSettings message from the specified reader or buffer, length delimited.
|
|
18199
|
+
* @param reader Reader or buffer to decode from
|
|
18200
|
+
* @returns GoSettings
|
|
18201
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18202
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18203
|
+
*/
|
|
18204
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings;
|
|
18205
|
+
|
|
18206
|
+
/**
|
|
18207
|
+
* Verifies a GoSettings message.
|
|
18208
|
+
* @param message Plain object to verify
|
|
18209
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18210
|
+
*/
|
|
18211
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18212
|
+
|
|
18213
|
+
/**
|
|
18214
|
+
* Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
|
|
18215
|
+
* @param object Plain object
|
|
18216
|
+
* @returns GoSettings
|
|
18217
|
+
*/
|
|
18218
|
+
public static fromObject(object: { [k: string]: any }): google.api.GoSettings;
|
|
18219
|
+
|
|
18220
|
+
/**
|
|
18221
|
+
* Creates a plain object from a GoSettings message. Also converts values to other types if specified.
|
|
18222
|
+
* @param message GoSettings
|
|
18223
|
+
* @param [options] Conversion options
|
|
18224
|
+
* @returns Plain object
|
|
18225
|
+
*/
|
|
18226
|
+
public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18227
|
+
|
|
18228
|
+
/**
|
|
18229
|
+
* Converts this GoSettings to JSON.
|
|
18230
|
+
* @returns JSON object
|
|
18231
|
+
*/
|
|
18232
|
+
public toJSON(): { [k: string]: any };
|
|
18233
|
+
|
|
18234
|
+
/**
|
|
18235
|
+
* Gets the default type url for GoSettings
|
|
18236
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18237
|
+
* @returns The default type url
|
|
18238
|
+
*/
|
|
18239
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18240
|
+
}
|
|
18241
|
+
|
|
18242
|
+
/** Properties of a MethodSettings. */
|
|
18243
|
+
interface IMethodSettings {
|
|
18244
|
+
|
|
18245
|
+
/** MethodSettings selector */
|
|
18246
|
+
selector?: (string|null);
|
|
18247
|
+
|
|
18248
|
+
/** MethodSettings longRunning */
|
|
18249
|
+
longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
18250
|
+
}
|
|
18251
|
+
|
|
18252
|
+
/** Represents a MethodSettings. */
|
|
18253
|
+
class MethodSettings implements IMethodSettings {
|
|
18254
|
+
|
|
18255
|
+
/**
|
|
18256
|
+
* Constructs a new MethodSettings.
|
|
18257
|
+
* @param [properties] Properties to set
|
|
18258
|
+
*/
|
|
18259
|
+
constructor(properties?: google.api.IMethodSettings);
|
|
18260
|
+
|
|
18261
|
+
/** MethodSettings selector. */
|
|
18262
|
+
public selector: string;
|
|
18263
|
+
|
|
18264
|
+
/** MethodSettings longRunning. */
|
|
18265
|
+
public longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
18266
|
+
|
|
18267
|
+
/**
|
|
18268
|
+
* Creates a new MethodSettings instance using the specified properties.
|
|
18269
|
+
* @param [properties] Properties to set
|
|
18270
|
+
* @returns MethodSettings instance
|
|
18271
|
+
*/
|
|
18272
|
+
public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings;
|
|
18273
|
+
|
|
18274
|
+
/**
|
|
18275
|
+
* Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
|
|
18276
|
+
* @param message MethodSettings message or plain object to encode
|
|
18277
|
+
* @param [writer] Writer to encode to
|
|
18278
|
+
* @returns Writer
|
|
18279
|
+
*/
|
|
18280
|
+
public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18281
|
+
|
|
18282
|
+
/**
|
|
18283
|
+
* Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
|
|
18284
|
+
* @param message MethodSettings message or plain object to encode
|
|
18285
|
+
* @param [writer] Writer to encode to
|
|
18286
|
+
* @returns Writer
|
|
18287
|
+
*/
|
|
18288
|
+
public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18289
|
+
|
|
18290
|
+
/**
|
|
18291
|
+
* Decodes a MethodSettings message from the specified reader or buffer.
|
|
18292
|
+
* @param reader Reader or buffer to decode from
|
|
18293
|
+
* @param [length] Message length if known beforehand
|
|
18294
|
+
* @returns MethodSettings
|
|
18295
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18296
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18297
|
+
*/
|
|
18298
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings;
|
|
18299
|
+
|
|
18300
|
+
/**
|
|
18301
|
+
* Decodes a MethodSettings message from the specified reader or buffer, length delimited.
|
|
18302
|
+
* @param reader Reader or buffer to decode from
|
|
18303
|
+
* @returns MethodSettings
|
|
18304
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18305
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18306
|
+
*/
|
|
18307
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings;
|
|
18308
|
+
|
|
18309
|
+
/**
|
|
18310
|
+
* Verifies a MethodSettings message.
|
|
18311
|
+
* @param message Plain object to verify
|
|
18312
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18313
|
+
*/
|
|
18314
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18315
|
+
|
|
18316
|
+
/**
|
|
18317
|
+
* Creates a MethodSettings message from a plain object. Also converts values to their respective internal types.
|
|
18318
|
+
* @param object Plain object
|
|
18319
|
+
* @returns MethodSettings
|
|
18320
|
+
*/
|
|
18321
|
+
public static fromObject(object: { [k: string]: any }): google.api.MethodSettings;
|
|
18322
|
+
|
|
18323
|
+
/**
|
|
18324
|
+
* Creates a plain object from a MethodSettings message. Also converts values to other types if specified.
|
|
18325
|
+
* @param message MethodSettings
|
|
18326
|
+
* @param [options] Conversion options
|
|
18327
|
+
* @returns Plain object
|
|
18328
|
+
*/
|
|
18329
|
+
public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18330
|
+
|
|
18331
|
+
/**
|
|
18332
|
+
* Converts this MethodSettings to JSON.
|
|
18333
|
+
* @returns JSON object
|
|
18334
|
+
*/
|
|
18335
|
+
public toJSON(): { [k: string]: any };
|
|
18336
|
+
|
|
18337
|
+
/**
|
|
18338
|
+
* Gets the default type url for MethodSettings
|
|
18339
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18340
|
+
* @returns The default type url
|
|
18341
|
+
*/
|
|
18342
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18343
|
+
}
|
|
18344
|
+
|
|
18345
|
+
namespace MethodSettings {
|
|
18346
|
+
|
|
18347
|
+
/** Properties of a LongRunning. */
|
|
18348
|
+
interface ILongRunning {
|
|
18349
|
+
|
|
18350
|
+
/** LongRunning initialPollDelay */
|
|
18351
|
+
initialPollDelay?: (google.protobuf.IDuration|null);
|
|
18352
|
+
|
|
18353
|
+
/** LongRunning pollDelayMultiplier */
|
|
18354
|
+
pollDelayMultiplier?: (number|null);
|
|
18355
|
+
|
|
18356
|
+
/** LongRunning maxPollDelay */
|
|
18357
|
+
maxPollDelay?: (google.protobuf.IDuration|null);
|
|
18358
|
+
|
|
18359
|
+
/** LongRunning totalPollTimeout */
|
|
18360
|
+
totalPollTimeout?: (google.protobuf.IDuration|null);
|
|
18361
|
+
}
|
|
18362
|
+
|
|
18363
|
+
/** Represents a LongRunning. */
|
|
18364
|
+
class LongRunning implements ILongRunning {
|
|
18365
|
+
|
|
18366
|
+
/**
|
|
18367
|
+
* Constructs a new LongRunning.
|
|
18368
|
+
* @param [properties] Properties to set
|
|
18369
|
+
*/
|
|
18370
|
+
constructor(properties?: google.api.MethodSettings.ILongRunning);
|
|
18371
|
+
|
|
18372
|
+
/** LongRunning initialPollDelay. */
|
|
18373
|
+
public initialPollDelay?: (google.protobuf.IDuration|null);
|
|
18374
|
+
|
|
18375
|
+
/** LongRunning pollDelayMultiplier. */
|
|
18376
|
+
public pollDelayMultiplier: number;
|
|
18377
|
+
|
|
18378
|
+
/** LongRunning maxPollDelay. */
|
|
18379
|
+
public maxPollDelay?: (google.protobuf.IDuration|null);
|
|
18380
|
+
|
|
18381
|
+
/** LongRunning totalPollTimeout. */
|
|
18382
|
+
public totalPollTimeout?: (google.protobuf.IDuration|null);
|
|
18383
|
+
|
|
18384
|
+
/**
|
|
18385
|
+
* Creates a new LongRunning instance using the specified properties.
|
|
18386
|
+
* @param [properties] Properties to set
|
|
18387
|
+
* @returns LongRunning instance
|
|
18388
|
+
*/
|
|
18389
|
+
public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning;
|
|
18390
|
+
|
|
18391
|
+
/**
|
|
18392
|
+
* Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
|
|
18393
|
+
* @param message LongRunning message or plain object to encode
|
|
18394
|
+
* @param [writer] Writer to encode to
|
|
18395
|
+
* @returns Writer
|
|
18396
|
+
*/
|
|
18397
|
+
public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18398
|
+
|
|
18399
|
+
/**
|
|
18400
|
+
* Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
|
|
18401
|
+
* @param message LongRunning message or plain object to encode
|
|
18402
|
+
* @param [writer] Writer to encode to
|
|
18403
|
+
* @returns Writer
|
|
18404
|
+
*/
|
|
18405
|
+
public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
18406
|
+
|
|
18407
|
+
/**
|
|
18408
|
+
* Decodes a LongRunning message from the specified reader or buffer.
|
|
18409
|
+
* @param reader Reader or buffer to decode from
|
|
18410
|
+
* @param [length] Message length if known beforehand
|
|
18411
|
+
* @returns LongRunning
|
|
18412
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18413
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18414
|
+
*/
|
|
18415
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning;
|
|
18416
|
+
|
|
18417
|
+
/**
|
|
18418
|
+
* Decodes a LongRunning message from the specified reader or buffer, length delimited.
|
|
18419
|
+
* @param reader Reader or buffer to decode from
|
|
18420
|
+
* @returns LongRunning
|
|
18421
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
18422
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
18423
|
+
*/
|
|
18424
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning;
|
|
18425
|
+
|
|
18426
|
+
/**
|
|
18427
|
+
* Verifies a LongRunning message.
|
|
18428
|
+
* @param message Plain object to verify
|
|
18429
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
18430
|
+
*/
|
|
18431
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
18432
|
+
|
|
18433
|
+
/**
|
|
18434
|
+
* Creates a LongRunning message from a plain object. Also converts values to their respective internal types.
|
|
18435
|
+
* @param object Plain object
|
|
18436
|
+
* @returns LongRunning
|
|
18437
|
+
*/
|
|
18438
|
+
public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning;
|
|
18439
|
+
|
|
18440
|
+
/**
|
|
18441
|
+
* Creates a plain object from a LongRunning message. Also converts values to other types if specified.
|
|
18442
|
+
* @param message LongRunning
|
|
18443
|
+
* @param [options] Conversion options
|
|
18444
|
+
* @returns Plain object
|
|
18445
|
+
*/
|
|
18446
|
+
public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
18447
|
+
|
|
18448
|
+
/**
|
|
18449
|
+
* Converts this LongRunning to JSON.
|
|
18450
|
+
* @returns JSON object
|
|
18451
|
+
*/
|
|
18452
|
+
public toJSON(): { [k: string]: any };
|
|
18453
|
+
|
|
18454
|
+
/**
|
|
18455
|
+
* Gets the default type url for LongRunning
|
|
18456
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
18457
|
+
* @returns The default type url
|
|
18458
|
+
*/
|
|
18459
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
18460
|
+
}
|
|
18461
|
+
}
|
|
18462
|
+
|
|
18463
|
+
/** ClientLibraryOrganization enum. */
|
|
18464
|
+
enum ClientLibraryOrganization {
|
|
18465
|
+
CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
|
|
18466
|
+
CLOUD = 1,
|
|
18467
|
+
ADS = 2,
|
|
18468
|
+
PHOTOS = 3,
|
|
18469
|
+
STREET_VIEW = 4
|
|
18470
|
+
}
|
|
18471
|
+
|
|
18472
|
+
/** ClientLibraryDestination enum. */
|
|
18473
|
+
enum ClientLibraryDestination {
|
|
18474
|
+
CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
|
|
18475
|
+
GITHUB = 10,
|
|
18476
|
+
PACKAGE_MANAGER = 20
|
|
18477
|
+
}
|
|
18478
|
+
|
|
18479
|
+
/** LaunchStage enum. */
|
|
18480
|
+
enum LaunchStage {
|
|
18481
|
+
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
18482
|
+
UNIMPLEMENTED = 6,
|
|
18483
|
+
PRELAUNCH = 7,
|
|
18484
|
+
EARLY_ACCESS = 1,
|
|
18485
|
+
ALPHA = 2,
|
|
18486
|
+
BETA = 3,
|
|
18487
|
+
GA = 4,
|
|
18488
|
+
DEPRECATED = 5
|
|
18489
|
+
}
|
|
18490
|
+
|
|
16998
18491
|
/** FieldBehavior enum. */
|
|
16999
18492
|
enum FieldBehavior {
|
|
17000
18493
|
FIELD_BEHAVIOR_UNSPECIFIED = 0,
|