@google-cloud/discoveryengine 0.3.0 → 0.3.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.
@@ -4737,6 +4737,1448 @@ export namespace google {
4737
4737
  public static getTypeUrl(typeUrlPrefix?: string): string;
4738
4738
  }
4739
4739
 
4740
+ /** Properties of a CommonLanguageSettings. */
4741
+ interface ICommonLanguageSettings {
4742
+
4743
+ /** CommonLanguageSettings referenceDocsUri */
4744
+ referenceDocsUri?: (string|null);
4745
+
4746
+ /** CommonLanguageSettings destinations */
4747
+ destinations?: (google.api.ClientLibraryDestination[]|null);
4748
+ }
4749
+
4750
+ /** Represents a CommonLanguageSettings. */
4751
+ class CommonLanguageSettings implements ICommonLanguageSettings {
4752
+
4753
+ /**
4754
+ * Constructs a new CommonLanguageSettings.
4755
+ * @param [properties] Properties to set
4756
+ */
4757
+ constructor(properties?: google.api.ICommonLanguageSettings);
4758
+
4759
+ /** CommonLanguageSettings referenceDocsUri. */
4760
+ public referenceDocsUri: string;
4761
+
4762
+ /** CommonLanguageSettings destinations. */
4763
+ public destinations: google.api.ClientLibraryDestination[];
4764
+
4765
+ /**
4766
+ * Creates a new CommonLanguageSettings instance using the specified properties.
4767
+ * @param [properties] Properties to set
4768
+ * @returns CommonLanguageSettings instance
4769
+ */
4770
+ public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
4771
+
4772
+ /**
4773
+ * Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
4774
+ * @param message CommonLanguageSettings message or plain object to encode
4775
+ * @param [writer] Writer to encode to
4776
+ * @returns Writer
4777
+ */
4778
+ public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
4779
+
4780
+ /**
4781
+ * Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
4782
+ * @param message CommonLanguageSettings message or plain object to encode
4783
+ * @param [writer] Writer to encode to
4784
+ * @returns Writer
4785
+ */
4786
+ public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
4787
+
4788
+ /**
4789
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer.
4790
+ * @param reader Reader or buffer to decode from
4791
+ * @param [length] Message length if known beforehand
4792
+ * @returns CommonLanguageSettings
4793
+ * @throws {Error} If the payload is not a reader or valid buffer
4794
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4795
+ */
4796
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
4797
+
4798
+ /**
4799
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
4800
+ * @param reader Reader or buffer to decode from
4801
+ * @returns CommonLanguageSettings
4802
+ * @throws {Error} If the payload is not a reader or valid buffer
4803
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4804
+ */
4805
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
4806
+
4807
+ /**
4808
+ * Verifies a CommonLanguageSettings message.
4809
+ * @param message Plain object to verify
4810
+ * @returns `null` if valid, otherwise the reason why it is not
4811
+ */
4812
+ public static verify(message: { [k: string]: any }): (string|null);
4813
+
4814
+ /**
4815
+ * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
4816
+ * @param object Plain object
4817
+ * @returns CommonLanguageSettings
4818
+ */
4819
+ public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
4820
+
4821
+ /**
4822
+ * Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
4823
+ * @param message CommonLanguageSettings
4824
+ * @param [options] Conversion options
4825
+ * @returns Plain object
4826
+ */
4827
+ public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
4828
+
4829
+ /**
4830
+ * Converts this CommonLanguageSettings to JSON.
4831
+ * @returns JSON object
4832
+ */
4833
+ public toJSON(): { [k: string]: any };
4834
+
4835
+ /**
4836
+ * Gets the default type url for CommonLanguageSettings
4837
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4838
+ * @returns The default type url
4839
+ */
4840
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4841
+ }
4842
+
4843
+ /** Properties of a ClientLibrarySettings. */
4844
+ interface IClientLibrarySettings {
4845
+
4846
+ /** ClientLibrarySettings version */
4847
+ version?: (string|null);
4848
+
4849
+ /** ClientLibrarySettings launchStage */
4850
+ launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
4851
+
4852
+ /** ClientLibrarySettings restNumericEnums */
4853
+ restNumericEnums?: (boolean|null);
4854
+
4855
+ /** ClientLibrarySettings javaSettings */
4856
+ javaSettings?: (google.api.IJavaSettings|null);
4857
+
4858
+ /** ClientLibrarySettings cppSettings */
4859
+ cppSettings?: (google.api.ICppSettings|null);
4860
+
4861
+ /** ClientLibrarySettings phpSettings */
4862
+ phpSettings?: (google.api.IPhpSettings|null);
4863
+
4864
+ /** ClientLibrarySettings pythonSettings */
4865
+ pythonSettings?: (google.api.IPythonSettings|null);
4866
+
4867
+ /** ClientLibrarySettings nodeSettings */
4868
+ nodeSettings?: (google.api.INodeSettings|null);
4869
+
4870
+ /** ClientLibrarySettings dotnetSettings */
4871
+ dotnetSettings?: (google.api.IDotnetSettings|null);
4872
+
4873
+ /** ClientLibrarySettings rubySettings */
4874
+ rubySettings?: (google.api.IRubySettings|null);
4875
+
4876
+ /** ClientLibrarySettings goSettings */
4877
+ goSettings?: (google.api.IGoSettings|null);
4878
+ }
4879
+
4880
+ /** Represents a ClientLibrarySettings. */
4881
+ class ClientLibrarySettings implements IClientLibrarySettings {
4882
+
4883
+ /**
4884
+ * Constructs a new ClientLibrarySettings.
4885
+ * @param [properties] Properties to set
4886
+ */
4887
+ constructor(properties?: google.api.IClientLibrarySettings);
4888
+
4889
+ /** ClientLibrarySettings version. */
4890
+ public version: string;
4891
+
4892
+ /** ClientLibrarySettings launchStage. */
4893
+ public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage);
4894
+
4895
+ /** ClientLibrarySettings restNumericEnums. */
4896
+ public restNumericEnums: boolean;
4897
+
4898
+ /** ClientLibrarySettings javaSettings. */
4899
+ public javaSettings?: (google.api.IJavaSettings|null);
4900
+
4901
+ /** ClientLibrarySettings cppSettings. */
4902
+ public cppSettings?: (google.api.ICppSettings|null);
4903
+
4904
+ /** ClientLibrarySettings phpSettings. */
4905
+ public phpSettings?: (google.api.IPhpSettings|null);
4906
+
4907
+ /** ClientLibrarySettings pythonSettings. */
4908
+ public pythonSettings?: (google.api.IPythonSettings|null);
4909
+
4910
+ /** ClientLibrarySettings nodeSettings. */
4911
+ public nodeSettings?: (google.api.INodeSettings|null);
4912
+
4913
+ /** ClientLibrarySettings dotnetSettings. */
4914
+ public dotnetSettings?: (google.api.IDotnetSettings|null);
4915
+
4916
+ /** ClientLibrarySettings rubySettings. */
4917
+ public rubySettings?: (google.api.IRubySettings|null);
4918
+
4919
+ /** ClientLibrarySettings goSettings. */
4920
+ public goSettings?: (google.api.IGoSettings|null);
4921
+
4922
+ /**
4923
+ * Creates a new ClientLibrarySettings instance using the specified properties.
4924
+ * @param [properties] Properties to set
4925
+ * @returns ClientLibrarySettings instance
4926
+ */
4927
+ public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
4928
+
4929
+ /**
4930
+ * Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
4931
+ * @param message ClientLibrarySettings message or plain object to encode
4932
+ * @param [writer] Writer to encode to
4933
+ * @returns Writer
4934
+ */
4935
+ public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
4936
+
4937
+ /**
4938
+ * Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
4939
+ * @param message ClientLibrarySettings message or plain object to encode
4940
+ * @param [writer] Writer to encode to
4941
+ * @returns Writer
4942
+ */
4943
+ public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
4944
+
4945
+ /**
4946
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer.
4947
+ * @param reader Reader or buffer to decode from
4948
+ * @param [length] Message length if known beforehand
4949
+ * @returns ClientLibrarySettings
4950
+ * @throws {Error} If the payload is not a reader or valid buffer
4951
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4952
+ */
4953
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
4954
+
4955
+ /**
4956
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
4957
+ * @param reader Reader or buffer to decode from
4958
+ * @returns ClientLibrarySettings
4959
+ * @throws {Error} If the payload is not a reader or valid buffer
4960
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4961
+ */
4962
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
4963
+
4964
+ /**
4965
+ * Verifies a ClientLibrarySettings message.
4966
+ * @param message Plain object to verify
4967
+ * @returns `null` if valid, otherwise the reason why it is not
4968
+ */
4969
+ public static verify(message: { [k: string]: any }): (string|null);
4970
+
4971
+ /**
4972
+ * Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
4973
+ * @param object Plain object
4974
+ * @returns ClientLibrarySettings
4975
+ */
4976
+ public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
4977
+
4978
+ /**
4979
+ * Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
4980
+ * @param message ClientLibrarySettings
4981
+ * @param [options] Conversion options
4982
+ * @returns Plain object
4983
+ */
4984
+ public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
4985
+
4986
+ /**
4987
+ * Converts this ClientLibrarySettings to JSON.
4988
+ * @returns JSON object
4989
+ */
4990
+ public toJSON(): { [k: string]: any };
4991
+
4992
+ /**
4993
+ * Gets the default type url for ClientLibrarySettings
4994
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4995
+ * @returns The default type url
4996
+ */
4997
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4998
+ }
4999
+
5000
+ /** Properties of a Publishing. */
5001
+ interface IPublishing {
5002
+
5003
+ /** Publishing methodSettings */
5004
+ methodSettings?: (google.api.IMethodSettings[]|null);
5005
+
5006
+ /** Publishing newIssueUri */
5007
+ newIssueUri?: (string|null);
5008
+
5009
+ /** Publishing documentationUri */
5010
+ documentationUri?: (string|null);
5011
+
5012
+ /** Publishing apiShortName */
5013
+ apiShortName?: (string|null);
5014
+
5015
+ /** Publishing githubLabel */
5016
+ githubLabel?: (string|null);
5017
+
5018
+ /** Publishing codeownerGithubTeams */
5019
+ codeownerGithubTeams?: (string[]|null);
5020
+
5021
+ /** Publishing docTagPrefix */
5022
+ docTagPrefix?: (string|null);
5023
+
5024
+ /** Publishing organization */
5025
+ organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null);
5026
+
5027
+ /** Publishing librarySettings */
5028
+ librarySettings?: (google.api.IClientLibrarySettings[]|null);
5029
+ }
5030
+
5031
+ /** Represents a Publishing. */
5032
+ class Publishing implements IPublishing {
5033
+
5034
+ /**
5035
+ * Constructs a new Publishing.
5036
+ * @param [properties] Properties to set
5037
+ */
5038
+ constructor(properties?: google.api.IPublishing);
5039
+
5040
+ /** Publishing methodSettings. */
5041
+ public methodSettings: google.api.IMethodSettings[];
5042
+
5043
+ /** Publishing newIssueUri. */
5044
+ public newIssueUri: string;
5045
+
5046
+ /** Publishing documentationUri. */
5047
+ public documentationUri: string;
5048
+
5049
+ /** Publishing apiShortName. */
5050
+ public apiShortName: string;
5051
+
5052
+ /** Publishing githubLabel. */
5053
+ public githubLabel: string;
5054
+
5055
+ /** Publishing codeownerGithubTeams. */
5056
+ public codeownerGithubTeams: string[];
5057
+
5058
+ /** Publishing docTagPrefix. */
5059
+ public docTagPrefix: string;
5060
+
5061
+ /** Publishing organization. */
5062
+ public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization);
5063
+
5064
+ /** Publishing librarySettings. */
5065
+ public librarySettings: google.api.IClientLibrarySettings[];
5066
+
5067
+ /**
5068
+ * Creates a new Publishing instance using the specified properties.
5069
+ * @param [properties] Properties to set
5070
+ * @returns Publishing instance
5071
+ */
5072
+ public static create(properties?: google.api.IPublishing): google.api.Publishing;
5073
+
5074
+ /**
5075
+ * Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
5076
+ * @param message Publishing message or plain object to encode
5077
+ * @param [writer] Writer to encode to
5078
+ * @returns Writer
5079
+ */
5080
+ public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
5081
+
5082
+ /**
5083
+ * Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
5084
+ * @param message Publishing message or plain object to encode
5085
+ * @param [writer] Writer to encode to
5086
+ * @returns Writer
5087
+ */
5088
+ public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
5089
+
5090
+ /**
5091
+ * Decodes a Publishing message from the specified reader or buffer.
5092
+ * @param reader Reader or buffer to decode from
5093
+ * @param [length] Message length if known beforehand
5094
+ * @returns Publishing
5095
+ * @throws {Error} If the payload is not a reader or valid buffer
5096
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5097
+ */
5098
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
5099
+
5100
+ /**
5101
+ * Decodes a Publishing message from the specified reader or buffer, length delimited.
5102
+ * @param reader Reader or buffer to decode from
5103
+ * @returns Publishing
5104
+ * @throws {Error} If the payload is not a reader or valid buffer
5105
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5106
+ */
5107
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing;
5108
+
5109
+ /**
5110
+ * Verifies a Publishing message.
5111
+ * @param message Plain object to verify
5112
+ * @returns `null` if valid, otherwise the reason why it is not
5113
+ */
5114
+ public static verify(message: { [k: string]: any }): (string|null);
5115
+
5116
+ /**
5117
+ * Creates a Publishing message from a plain object. Also converts values to their respective internal types.
5118
+ * @param object Plain object
5119
+ * @returns Publishing
5120
+ */
5121
+ public static fromObject(object: { [k: string]: any }): google.api.Publishing;
5122
+
5123
+ /**
5124
+ * Creates a plain object from a Publishing message. Also converts values to other types if specified.
5125
+ * @param message Publishing
5126
+ * @param [options] Conversion options
5127
+ * @returns Plain object
5128
+ */
5129
+ public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any };
5130
+
5131
+ /**
5132
+ * Converts this Publishing to JSON.
5133
+ * @returns JSON object
5134
+ */
5135
+ public toJSON(): { [k: string]: any };
5136
+
5137
+ /**
5138
+ * Gets the default type url for Publishing
5139
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5140
+ * @returns The default type url
5141
+ */
5142
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5143
+ }
5144
+
5145
+ /** Properties of a JavaSettings. */
5146
+ interface IJavaSettings {
5147
+
5148
+ /** JavaSettings libraryPackage */
5149
+ libraryPackage?: (string|null);
5150
+
5151
+ /** JavaSettings serviceClassNames */
5152
+ serviceClassNames?: ({ [k: string]: string }|null);
5153
+
5154
+ /** JavaSettings common */
5155
+ common?: (google.api.ICommonLanguageSettings|null);
5156
+ }
5157
+
5158
+ /** Represents a JavaSettings. */
5159
+ class JavaSettings implements IJavaSettings {
5160
+
5161
+ /**
5162
+ * Constructs a new JavaSettings.
5163
+ * @param [properties] Properties to set
5164
+ */
5165
+ constructor(properties?: google.api.IJavaSettings);
5166
+
5167
+ /** JavaSettings libraryPackage. */
5168
+ public libraryPackage: string;
5169
+
5170
+ /** JavaSettings serviceClassNames. */
5171
+ public serviceClassNames: { [k: string]: string };
5172
+
5173
+ /** JavaSettings common. */
5174
+ public common?: (google.api.ICommonLanguageSettings|null);
5175
+
5176
+ /**
5177
+ * Creates a new JavaSettings instance using the specified properties.
5178
+ * @param [properties] Properties to set
5179
+ * @returns JavaSettings instance
5180
+ */
5181
+ public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings;
5182
+
5183
+ /**
5184
+ * Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
5185
+ * @param message JavaSettings message or plain object to encode
5186
+ * @param [writer] Writer to encode to
5187
+ * @returns Writer
5188
+ */
5189
+ public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5190
+
5191
+ /**
5192
+ * Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
5193
+ * @param message JavaSettings message or plain object to encode
5194
+ * @param [writer] Writer to encode to
5195
+ * @returns Writer
5196
+ */
5197
+ public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5198
+
5199
+ /**
5200
+ * Decodes a JavaSettings message from the specified reader or buffer.
5201
+ * @param reader Reader or buffer to decode from
5202
+ * @param [length] Message length if known beforehand
5203
+ * @returns JavaSettings
5204
+ * @throws {Error} If the payload is not a reader or valid buffer
5205
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5206
+ */
5207
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings;
5208
+
5209
+ /**
5210
+ * Decodes a JavaSettings message from the specified reader or buffer, length delimited.
5211
+ * @param reader Reader or buffer to decode from
5212
+ * @returns JavaSettings
5213
+ * @throws {Error} If the payload is not a reader or valid buffer
5214
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5215
+ */
5216
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings;
5217
+
5218
+ /**
5219
+ * Verifies a JavaSettings message.
5220
+ * @param message Plain object to verify
5221
+ * @returns `null` if valid, otherwise the reason why it is not
5222
+ */
5223
+ public static verify(message: { [k: string]: any }): (string|null);
5224
+
5225
+ /**
5226
+ * Creates a JavaSettings message from a plain object. Also converts values to their respective internal types.
5227
+ * @param object Plain object
5228
+ * @returns JavaSettings
5229
+ */
5230
+ public static fromObject(object: { [k: string]: any }): google.api.JavaSettings;
5231
+
5232
+ /**
5233
+ * Creates a plain object from a JavaSettings message. Also converts values to other types if specified.
5234
+ * @param message JavaSettings
5235
+ * @param [options] Conversion options
5236
+ * @returns Plain object
5237
+ */
5238
+ public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5239
+
5240
+ /**
5241
+ * Converts this JavaSettings to JSON.
5242
+ * @returns JSON object
5243
+ */
5244
+ public toJSON(): { [k: string]: any };
5245
+
5246
+ /**
5247
+ * Gets the default type url for JavaSettings
5248
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5249
+ * @returns The default type url
5250
+ */
5251
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5252
+ }
5253
+
5254
+ /** Properties of a CppSettings. */
5255
+ interface ICppSettings {
5256
+
5257
+ /** CppSettings common */
5258
+ common?: (google.api.ICommonLanguageSettings|null);
5259
+ }
5260
+
5261
+ /** Represents a CppSettings. */
5262
+ class CppSettings implements ICppSettings {
5263
+
5264
+ /**
5265
+ * Constructs a new CppSettings.
5266
+ * @param [properties] Properties to set
5267
+ */
5268
+ constructor(properties?: google.api.ICppSettings);
5269
+
5270
+ /** CppSettings common. */
5271
+ public common?: (google.api.ICommonLanguageSettings|null);
5272
+
5273
+ /**
5274
+ * Creates a new CppSettings instance using the specified properties.
5275
+ * @param [properties] Properties to set
5276
+ * @returns CppSettings instance
5277
+ */
5278
+ public static create(properties?: google.api.ICppSettings): google.api.CppSettings;
5279
+
5280
+ /**
5281
+ * Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
5282
+ * @param message CppSettings message or plain object to encode
5283
+ * @param [writer] Writer to encode to
5284
+ * @returns Writer
5285
+ */
5286
+ public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5287
+
5288
+ /**
5289
+ * Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
5290
+ * @param message CppSettings message or plain object to encode
5291
+ * @param [writer] Writer to encode to
5292
+ * @returns Writer
5293
+ */
5294
+ public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5295
+
5296
+ /**
5297
+ * Decodes a CppSettings message from the specified reader or buffer.
5298
+ * @param reader Reader or buffer to decode from
5299
+ * @param [length] Message length if known beforehand
5300
+ * @returns CppSettings
5301
+ * @throws {Error} If the payload is not a reader or valid buffer
5302
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5303
+ */
5304
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings;
5305
+
5306
+ /**
5307
+ * Decodes a CppSettings message from the specified reader or buffer, length delimited.
5308
+ * @param reader Reader or buffer to decode from
5309
+ * @returns CppSettings
5310
+ * @throws {Error} If the payload is not a reader or valid buffer
5311
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5312
+ */
5313
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings;
5314
+
5315
+ /**
5316
+ * Verifies a CppSettings message.
5317
+ * @param message Plain object to verify
5318
+ * @returns `null` if valid, otherwise the reason why it is not
5319
+ */
5320
+ public static verify(message: { [k: string]: any }): (string|null);
5321
+
5322
+ /**
5323
+ * Creates a CppSettings message from a plain object. Also converts values to their respective internal types.
5324
+ * @param object Plain object
5325
+ * @returns CppSettings
5326
+ */
5327
+ public static fromObject(object: { [k: string]: any }): google.api.CppSettings;
5328
+
5329
+ /**
5330
+ * Creates a plain object from a CppSettings message. Also converts values to other types if specified.
5331
+ * @param message CppSettings
5332
+ * @param [options] Conversion options
5333
+ * @returns Plain object
5334
+ */
5335
+ public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5336
+
5337
+ /**
5338
+ * Converts this CppSettings to JSON.
5339
+ * @returns JSON object
5340
+ */
5341
+ public toJSON(): { [k: string]: any };
5342
+
5343
+ /**
5344
+ * Gets the default type url for CppSettings
5345
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5346
+ * @returns The default type url
5347
+ */
5348
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5349
+ }
5350
+
5351
+ /** Properties of a PhpSettings. */
5352
+ interface IPhpSettings {
5353
+
5354
+ /** PhpSettings common */
5355
+ common?: (google.api.ICommonLanguageSettings|null);
5356
+ }
5357
+
5358
+ /** Represents a PhpSettings. */
5359
+ class PhpSettings implements IPhpSettings {
5360
+
5361
+ /**
5362
+ * Constructs a new PhpSettings.
5363
+ * @param [properties] Properties to set
5364
+ */
5365
+ constructor(properties?: google.api.IPhpSettings);
5366
+
5367
+ /** PhpSettings common. */
5368
+ public common?: (google.api.ICommonLanguageSettings|null);
5369
+
5370
+ /**
5371
+ * Creates a new PhpSettings instance using the specified properties.
5372
+ * @param [properties] Properties to set
5373
+ * @returns PhpSettings instance
5374
+ */
5375
+ public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings;
5376
+
5377
+ /**
5378
+ * Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
5379
+ * @param message PhpSettings message or plain object to encode
5380
+ * @param [writer] Writer to encode to
5381
+ * @returns Writer
5382
+ */
5383
+ public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5384
+
5385
+ /**
5386
+ * Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
5387
+ * @param message PhpSettings message or plain object to encode
5388
+ * @param [writer] Writer to encode to
5389
+ * @returns Writer
5390
+ */
5391
+ public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5392
+
5393
+ /**
5394
+ * Decodes a PhpSettings message from the specified reader or buffer.
5395
+ * @param reader Reader or buffer to decode from
5396
+ * @param [length] Message length if known beforehand
5397
+ * @returns PhpSettings
5398
+ * @throws {Error} If the payload is not a reader or valid buffer
5399
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5400
+ */
5401
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings;
5402
+
5403
+ /**
5404
+ * Decodes a PhpSettings message from the specified reader or buffer, length delimited.
5405
+ * @param reader Reader or buffer to decode from
5406
+ * @returns PhpSettings
5407
+ * @throws {Error} If the payload is not a reader or valid buffer
5408
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5409
+ */
5410
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings;
5411
+
5412
+ /**
5413
+ * Verifies a PhpSettings message.
5414
+ * @param message Plain object to verify
5415
+ * @returns `null` if valid, otherwise the reason why it is not
5416
+ */
5417
+ public static verify(message: { [k: string]: any }): (string|null);
5418
+
5419
+ /**
5420
+ * Creates a PhpSettings message from a plain object. Also converts values to their respective internal types.
5421
+ * @param object Plain object
5422
+ * @returns PhpSettings
5423
+ */
5424
+ public static fromObject(object: { [k: string]: any }): google.api.PhpSettings;
5425
+
5426
+ /**
5427
+ * Creates a plain object from a PhpSettings message. Also converts values to other types if specified.
5428
+ * @param message PhpSettings
5429
+ * @param [options] Conversion options
5430
+ * @returns Plain object
5431
+ */
5432
+ public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5433
+
5434
+ /**
5435
+ * Converts this PhpSettings to JSON.
5436
+ * @returns JSON object
5437
+ */
5438
+ public toJSON(): { [k: string]: any };
5439
+
5440
+ /**
5441
+ * Gets the default type url for PhpSettings
5442
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5443
+ * @returns The default type url
5444
+ */
5445
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5446
+ }
5447
+
5448
+ /** Properties of a PythonSettings. */
5449
+ interface IPythonSettings {
5450
+
5451
+ /** PythonSettings common */
5452
+ common?: (google.api.ICommonLanguageSettings|null);
5453
+ }
5454
+
5455
+ /** Represents a PythonSettings. */
5456
+ class PythonSettings implements IPythonSettings {
5457
+
5458
+ /**
5459
+ * Constructs a new PythonSettings.
5460
+ * @param [properties] Properties to set
5461
+ */
5462
+ constructor(properties?: google.api.IPythonSettings);
5463
+
5464
+ /** PythonSettings common. */
5465
+ public common?: (google.api.ICommonLanguageSettings|null);
5466
+
5467
+ /**
5468
+ * Creates a new PythonSettings instance using the specified properties.
5469
+ * @param [properties] Properties to set
5470
+ * @returns PythonSettings instance
5471
+ */
5472
+ public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings;
5473
+
5474
+ /**
5475
+ * Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
5476
+ * @param message PythonSettings message or plain object to encode
5477
+ * @param [writer] Writer to encode to
5478
+ * @returns Writer
5479
+ */
5480
+ public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5481
+
5482
+ /**
5483
+ * Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
5484
+ * @param message PythonSettings message or plain object to encode
5485
+ * @param [writer] Writer to encode to
5486
+ * @returns Writer
5487
+ */
5488
+ public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5489
+
5490
+ /**
5491
+ * Decodes a PythonSettings message from the specified reader or buffer.
5492
+ * @param reader Reader or buffer to decode from
5493
+ * @param [length] Message length if known beforehand
5494
+ * @returns PythonSettings
5495
+ * @throws {Error} If the payload is not a reader or valid buffer
5496
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5497
+ */
5498
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings;
5499
+
5500
+ /**
5501
+ * Decodes a PythonSettings message from the specified reader or buffer, length delimited.
5502
+ * @param reader Reader or buffer to decode from
5503
+ * @returns PythonSettings
5504
+ * @throws {Error} If the payload is not a reader or valid buffer
5505
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5506
+ */
5507
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings;
5508
+
5509
+ /**
5510
+ * Verifies a PythonSettings message.
5511
+ * @param message Plain object to verify
5512
+ * @returns `null` if valid, otherwise the reason why it is not
5513
+ */
5514
+ public static verify(message: { [k: string]: any }): (string|null);
5515
+
5516
+ /**
5517
+ * Creates a PythonSettings message from a plain object. Also converts values to their respective internal types.
5518
+ * @param object Plain object
5519
+ * @returns PythonSettings
5520
+ */
5521
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
5522
+
5523
+ /**
5524
+ * Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
5525
+ * @param message PythonSettings
5526
+ * @param [options] Conversion options
5527
+ * @returns Plain object
5528
+ */
5529
+ public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5530
+
5531
+ /**
5532
+ * Converts this PythonSettings to JSON.
5533
+ * @returns JSON object
5534
+ */
5535
+ public toJSON(): { [k: string]: any };
5536
+
5537
+ /**
5538
+ * Gets the default type url for PythonSettings
5539
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5540
+ * @returns The default type url
5541
+ */
5542
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5543
+ }
5544
+
5545
+ /** Properties of a NodeSettings. */
5546
+ interface INodeSettings {
5547
+
5548
+ /** NodeSettings common */
5549
+ common?: (google.api.ICommonLanguageSettings|null);
5550
+ }
5551
+
5552
+ /** Represents a NodeSettings. */
5553
+ class NodeSettings implements INodeSettings {
5554
+
5555
+ /**
5556
+ * Constructs a new NodeSettings.
5557
+ * @param [properties] Properties to set
5558
+ */
5559
+ constructor(properties?: google.api.INodeSettings);
5560
+
5561
+ /** NodeSettings common. */
5562
+ public common?: (google.api.ICommonLanguageSettings|null);
5563
+
5564
+ /**
5565
+ * Creates a new NodeSettings instance using the specified properties.
5566
+ * @param [properties] Properties to set
5567
+ * @returns NodeSettings instance
5568
+ */
5569
+ public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
5570
+
5571
+ /**
5572
+ * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
5573
+ * @param message NodeSettings message or plain object to encode
5574
+ * @param [writer] Writer to encode to
5575
+ * @returns Writer
5576
+ */
5577
+ public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5578
+
5579
+ /**
5580
+ * Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
5581
+ * @param message NodeSettings message or plain object to encode
5582
+ * @param [writer] Writer to encode to
5583
+ * @returns Writer
5584
+ */
5585
+ public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5586
+
5587
+ /**
5588
+ * Decodes a NodeSettings message from the specified reader or buffer.
5589
+ * @param reader Reader or buffer to decode from
5590
+ * @param [length] Message length if known beforehand
5591
+ * @returns NodeSettings
5592
+ * @throws {Error} If the payload is not a reader or valid buffer
5593
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5594
+ */
5595
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings;
5596
+
5597
+ /**
5598
+ * Decodes a NodeSettings message from the specified reader or buffer, length delimited.
5599
+ * @param reader Reader or buffer to decode from
5600
+ * @returns NodeSettings
5601
+ * @throws {Error} If the payload is not a reader or valid buffer
5602
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5603
+ */
5604
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings;
5605
+
5606
+ /**
5607
+ * Verifies a NodeSettings message.
5608
+ * @param message Plain object to verify
5609
+ * @returns `null` if valid, otherwise the reason why it is not
5610
+ */
5611
+ public static verify(message: { [k: string]: any }): (string|null);
5612
+
5613
+ /**
5614
+ * Creates a NodeSettings message from a plain object. Also converts values to their respective internal types.
5615
+ * @param object Plain object
5616
+ * @returns NodeSettings
5617
+ */
5618
+ public static fromObject(object: { [k: string]: any }): google.api.NodeSettings;
5619
+
5620
+ /**
5621
+ * Creates a plain object from a NodeSettings message. Also converts values to other types if specified.
5622
+ * @param message NodeSettings
5623
+ * @param [options] Conversion options
5624
+ * @returns Plain object
5625
+ */
5626
+ public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5627
+
5628
+ /**
5629
+ * Converts this NodeSettings to JSON.
5630
+ * @returns JSON object
5631
+ */
5632
+ public toJSON(): { [k: string]: any };
5633
+
5634
+ /**
5635
+ * Gets the default type url for NodeSettings
5636
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5637
+ * @returns The default type url
5638
+ */
5639
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5640
+ }
5641
+
5642
+ /** Properties of a DotnetSettings. */
5643
+ interface IDotnetSettings {
5644
+
5645
+ /** DotnetSettings common */
5646
+ common?: (google.api.ICommonLanguageSettings|null);
5647
+ }
5648
+
5649
+ /** Represents a DotnetSettings. */
5650
+ class DotnetSettings implements IDotnetSettings {
5651
+
5652
+ /**
5653
+ * Constructs a new DotnetSettings.
5654
+ * @param [properties] Properties to set
5655
+ */
5656
+ constructor(properties?: google.api.IDotnetSettings);
5657
+
5658
+ /** DotnetSettings common. */
5659
+ public common?: (google.api.ICommonLanguageSettings|null);
5660
+
5661
+ /**
5662
+ * Creates a new DotnetSettings instance using the specified properties.
5663
+ * @param [properties] Properties to set
5664
+ * @returns DotnetSettings instance
5665
+ */
5666
+ public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings;
5667
+
5668
+ /**
5669
+ * Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
5670
+ * @param message DotnetSettings message or plain object to encode
5671
+ * @param [writer] Writer to encode to
5672
+ * @returns Writer
5673
+ */
5674
+ public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5675
+
5676
+ /**
5677
+ * Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
5678
+ * @param message DotnetSettings message or plain object to encode
5679
+ * @param [writer] Writer to encode to
5680
+ * @returns Writer
5681
+ */
5682
+ public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5683
+
5684
+ /**
5685
+ * Decodes a DotnetSettings message from the specified reader or buffer.
5686
+ * @param reader Reader or buffer to decode from
5687
+ * @param [length] Message length if known beforehand
5688
+ * @returns DotnetSettings
5689
+ * @throws {Error} If the payload is not a reader or valid buffer
5690
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5691
+ */
5692
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings;
5693
+
5694
+ /**
5695
+ * Decodes a DotnetSettings message from the specified reader or buffer, length delimited.
5696
+ * @param reader Reader or buffer to decode from
5697
+ * @returns DotnetSettings
5698
+ * @throws {Error} If the payload is not a reader or valid buffer
5699
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5700
+ */
5701
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings;
5702
+
5703
+ /**
5704
+ * Verifies a DotnetSettings message.
5705
+ * @param message Plain object to verify
5706
+ * @returns `null` if valid, otherwise the reason why it is not
5707
+ */
5708
+ public static verify(message: { [k: string]: any }): (string|null);
5709
+
5710
+ /**
5711
+ * Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types.
5712
+ * @param object Plain object
5713
+ * @returns DotnetSettings
5714
+ */
5715
+ public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings;
5716
+
5717
+ /**
5718
+ * Creates a plain object from a DotnetSettings message. Also converts values to other types if specified.
5719
+ * @param message DotnetSettings
5720
+ * @param [options] Conversion options
5721
+ * @returns Plain object
5722
+ */
5723
+ public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5724
+
5725
+ /**
5726
+ * Converts this DotnetSettings to JSON.
5727
+ * @returns JSON object
5728
+ */
5729
+ public toJSON(): { [k: string]: any };
5730
+
5731
+ /**
5732
+ * Gets the default type url for DotnetSettings
5733
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5734
+ * @returns The default type url
5735
+ */
5736
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5737
+ }
5738
+
5739
+ /** Properties of a RubySettings. */
5740
+ interface IRubySettings {
5741
+
5742
+ /** RubySettings common */
5743
+ common?: (google.api.ICommonLanguageSettings|null);
5744
+ }
5745
+
5746
+ /** Represents a RubySettings. */
5747
+ class RubySettings implements IRubySettings {
5748
+
5749
+ /**
5750
+ * Constructs a new RubySettings.
5751
+ * @param [properties] Properties to set
5752
+ */
5753
+ constructor(properties?: google.api.IRubySettings);
5754
+
5755
+ /** RubySettings common. */
5756
+ public common?: (google.api.ICommonLanguageSettings|null);
5757
+
5758
+ /**
5759
+ * Creates a new RubySettings instance using the specified properties.
5760
+ * @param [properties] Properties to set
5761
+ * @returns RubySettings instance
5762
+ */
5763
+ public static create(properties?: google.api.IRubySettings): google.api.RubySettings;
5764
+
5765
+ /**
5766
+ * Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
5767
+ * @param message RubySettings message or plain object to encode
5768
+ * @param [writer] Writer to encode to
5769
+ * @returns Writer
5770
+ */
5771
+ public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
5772
+
5773
+ /**
5774
+ * Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
5775
+ * @param message RubySettings message or plain object to encode
5776
+ * @param [writer] Writer to encode to
5777
+ * @returns Writer
5778
+ */
5779
+ public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
5780
+
5781
+ /**
5782
+ * Decodes a RubySettings message from the specified reader or buffer.
5783
+ * @param reader Reader or buffer to decode from
5784
+ * @param [length] Message length if known beforehand
5785
+ * @returns RubySettings
5786
+ * @throws {Error} If the payload is not a reader or valid buffer
5787
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5788
+ */
5789
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings;
5790
+
5791
+ /**
5792
+ * Decodes a RubySettings message from the specified reader or buffer, length delimited.
5793
+ * @param reader Reader or buffer to decode from
5794
+ * @returns RubySettings
5795
+ * @throws {Error} If the payload is not a reader or valid buffer
5796
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5797
+ */
5798
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings;
5799
+
5800
+ /**
5801
+ * Verifies a RubySettings message.
5802
+ * @param message Plain object to verify
5803
+ * @returns `null` if valid, otherwise the reason why it is not
5804
+ */
5805
+ public static verify(message: { [k: string]: any }): (string|null);
5806
+
5807
+ /**
5808
+ * Creates a RubySettings message from a plain object. Also converts values to their respective internal types.
5809
+ * @param object Plain object
5810
+ * @returns RubySettings
5811
+ */
5812
+ public static fromObject(object: { [k: string]: any }): google.api.RubySettings;
5813
+
5814
+ /**
5815
+ * Creates a plain object from a RubySettings message. Also converts values to other types if specified.
5816
+ * @param message RubySettings
5817
+ * @param [options] Conversion options
5818
+ * @returns Plain object
5819
+ */
5820
+ public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5821
+
5822
+ /**
5823
+ * Converts this RubySettings to JSON.
5824
+ * @returns JSON object
5825
+ */
5826
+ public toJSON(): { [k: string]: any };
5827
+
5828
+ /**
5829
+ * Gets the default type url for RubySettings
5830
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5831
+ * @returns The default type url
5832
+ */
5833
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5834
+ }
5835
+
5836
+ /** Properties of a GoSettings. */
5837
+ interface IGoSettings {
5838
+
5839
+ /** GoSettings common */
5840
+ common?: (google.api.ICommonLanguageSettings|null);
5841
+ }
5842
+
5843
+ /** Represents a GoSettings. */
5844
+ class GoSettings implements IGoSettings {
5845
+
5846
+ /**
5847
+ * Constructs a new GoSettings.
5848
+ * @param [properties] Properties to set
5849
+ */
5850
+ constructor(properties?: google.api.IGoSettings);
5851
+
5852
+ /** GoSettings common. */
5853
+ public common?: (google.api.ICommonLanguageSettings|null);
5854
+
5855
+ /**
5856
+ * Creates a new GoSettings instance using the specified properties.
5857
+ * @param [properties] Properties to set
5858
+ * @returns GoSettings instance
5859
+ */
5860
+ public static create(properties?: google.api.IGoSettings): google.api.GoSettings;
5861
+
5862
+ /**
5863
+ * Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
5864
+ * @param message GoSettings message or plain object to encode
5865
+ * @param [writer] Writer to encode to
5866
+ * @returns Writer
5867
+ */
5868
+ public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5869
+
5870
+ /**
5871
+ * Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
5872
+ * @param message GoSettings message or plain object to encode
5873
+ * @param [writer] Writer to encode to
5874
+ * @returns Writer
5875
+ */
5876
+ public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5877
+
5878
+ /**
5879
+ * Decodes a GoSettings message from the specified reader or buffer.
5880
+ * @param reader Reader or buffer to decode from
5881
+ * @param [length] Message length if known beforehand
5882
+ * @returns GoSettings
5883
+ * @throws {Error} If the payload is not a reader or valid buffer
5884
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5885
+ */
5886
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings;
5887
+
5888
+ /**
5889
+ * Decodes a GoSettings message from the specified reader or buffer, length delimited.
5890
+ * @param reader Reader or buffer to decode from
5891
+ * @returns GoSettings
5892
+ * @throws {Error} If the payload is not a reader or valid buffer
5893
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5894
+ */
5895
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings;
5896
+
5897
+ /**
5898
+ * Verifies a GoSettings message.
5899
+ * @param message Plain object to verify
5900
+ * @returns `null` if valid, otherwise the reason why it is not
5901
+ */
5902
+ public static verify(message: { [k: string]: any }): (string|null);
5903
+
5904
+ /**
5905
+ * Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
5906
+ * @param object Plain object
5907
+ * @returns GoSettings
5908
+ */
5909
+ public static fromObject(object: { [k: string]: any }): google.api.GoSettings;
5910
+
5911
+ /**
5912
+ * Creates a plain object from a GoSettings message. Also converts values to other types if specified.
5913
+ * @param message GoSettings
5914
+ * @param [options] Conversion options
5915
+ * @returns Plain object
5916
+ */
5917
+ public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5918
+
5919
+ /**
5920
+ * Converts this GoSettings to JSON.
5921
+ * @returns JSON object
5922
+ */
5923
+ public toJSON(): { [k: string]: any };
5924
+
5925
+ /**
5926
+ * Gets the default type url for GoSettings
5927
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5928
+ * @returns The default type url
5929
+ */
5930
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5931
+ }
5932
+
5933
+ /** Properties of a MethodSettings. */
5934
+ interface IMethodSettings {
5935
+
5936
+ /** MethodSettings selector */
5937
+ selector?: (string|null);
5938
+
5939
+ /** MethodSettings longRunning */
5940
+ longRunning?: (google.api.MethodSettings.ILongRunning|null);
5941
+ }
5942
+
5943
+ /** Represents a MethodSettings. */
5944
+ class MethodSettings implements IMethodSettings {
5945
+
5946
+ /**
5947
+ * Constructs a new MethodSettings.
5948
+ * @param [properties] Properties to set
5949
+ */
5950
+ constructor(properties?: google.api.IMethodSettings);
5951
+
5952
+ /** MethodSettings selector. */
5953
+ public selector: string;
5954
+
5955
+ /** MethodSettings longRunning. */
5956
+ public longRunning?: (google.api.MethodSettings.ILongRunning|null);
5957
+
5958
+ /**
5959
+ * Creates a new MethodSettings instance using the specified properties.
5960
+ * @param [properties] Properties to set
5961
+ * @returns MethodSettings instance
5962
+ */
5963
+ public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings;
5964
+
5965
+ /**
5966
+ * Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
5967
+ * @param message MethodSettings message or plain object to encode
5968
+ * @param [writer] Writer to encode to
5969
+ * @returns Writer
5970
+ */
5971
+ public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5972
+
5973
+ /**
5974
+ * Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
5975
+ * @param message MethodSettings message or plain object to encode
5976
+ * @param [writer] Writer to encode to
5977
+ * @returns Writer
5978
+ */
5979
+ public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5980
+
5981
+ /**
5982
+ * Decodes a MethodSettings message from the specified reader or buffer.
5983
+ * @param reader Reader or buffer to decode from
5984
+ * @param [length] Message length if known beforehand
5985
+ * @returns MethodSettings
5986
+ * @throws {Error} If the payload is not a reader or valid buffer
5987
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5988
+ */
5989
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings;
5990
+
5991
+ /**
5992
+ * Decodes a MethodSettings message from the specified reader or buffer, length delimited.
5993
+ * @param reader Reader or buffer to decode from
5994
+ * @returns MethodSettings
5995
+ * @throws {Error} If the payload is not a reader or valid buffer
5996
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5997
+ */
5998
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings;
5999
+
6000
+ /**
6001
+ * Verifies a MethodSettings message.
6002
+ * @param message Plain object to verify
6003
+ * @returns `null` if valid, otherwise the reason why it is not
6004
+ */
6005
+ public static verify(message: { [k: string]: any }): (string|null);
6006
+
6007
+ /**
6008
+ * Creates a MethodSettings message from a plain object. Also converts values to their respective internal types.
6009
+ * @param object Plain object
6010
+ * @returns MethodSettings
6011
+ */
6012
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings;
6013
+
6014
+ /**
6015
+ * Creates a plain object from a MethodSettings message. Also converts values to other types if specified.
6016
+ * @param message MethodSettings
6017
+ * @param [options] Conversion options
6018
+ * @returns Plain object
6019
+ */
6020
+ public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6021
+
6022
+ /**
6023
+ * Converts this MethodSettings to JSON.
6024
+ * @returns JSON object
6025
+ */
6026
+ public toJSON(): { [k: string]: any };
6027
+
6028
+ /**
6029
+ * Gets the default type url for MethodSettings
6030
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6031
+ * @returns The default type url
6032
+ */
6033
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6034
+ }
6035
+
6036
+ namespace MethodSettings {
6037
+
6038
+ /** Properties of a LongRunning. */
6039
+ interface ILongRunning {
6040
+
6041
+ /** LongRunning initialPollDelay */
6042
+ initialPollDelay?: (google.protobuf.IDuration|null);
6043
+
6044
+ /** LongRunning pollDelayMultiplier */
6045
+ pollDelayMultiplier?: (number|null);
6046
+
6047
+ /** LongRunning maxPollDelay */
6048
+ maxPollDelay?: (google.protobuf.IDuration|null);
6049
+
6050
+ /** LongRunning totalPollTimeout */
6051
+ totalPollTimeout?: (google.protobuf.IDuration|null);
6052
+ }
6053
+
6054
+ /** Represents a LongRunning. */
6055
+ class LongRunning implements ILongRunning {
6056
+
6057
+ /**
6058
+ * Constructs a new LongRunning.
6059
+ * @param [properties] Properties to set
6060
+ */
6061
+ constructor(properties?: google.api.MethodSettings.ILongRunning);
6062
+
6063
+ /** LongRunning initialPollDelay. */
6064
+ public initialPollDelay?: (google.protobuf.IDuration|null);
6065
+
6066
+ /** LongRunning pollDelayMultiplier. */
6067
+ public pollDelayMultiplier: number;
6068
+
6069
+ /** LongRunning maxPollDelay. */
6070
+ public maxPollDelay?: (google.protobuf.IDuration|null);
6071
+
6072
+ /** LongRunning totalPollTimeout. */
6073
+ public totalPollTimeout?: (google.protobuf.IDuration|null);
6074
+
6075
+ /**
6076
+ * Creates a new LongRunning instance using the specified properties.
6077
+ * @param [properties] Properties to set
6078
+ * @returns LongRunning instance
6079
+ */
6080
+ public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning;
6081
+
6082
+ /**
6083
+ * Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
6084
+ * @param message LongRunning message or plain object to encode
6085
+ * @param [writer] Writer to encode to
6086
+ * @returns Writer
6087
+ */
6088
+ public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
6089
+
6090
+ /**
6091
+ * Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
6092
+ * @param message LongRunning message or plain object to encode
6093
+ * @param [writer] Writer to encode to
6094
+ * @returns Writer
6095
+ */
6096
+ public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
6097
+
6098
+ /**
6099
+ * Decodes a LongRunning message from the specified reader or buffer.
6100
+ * @param reader Reader or buffer to decode from
6101
+ * @param [length] Message length if known beforehand
6102
+ * @returns LongRunning
6103
+ * @throws {Error} If the payload is not a reader or valid buffer
6104
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6105
+ */
6106
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning;
6107
+
6108
+ /**
6109
+ * Decodes a LongRunning message from the specified reader or buffer, length delimited.
6110
+ * @param reader Reader or buffer to decode from
6111
+ * @returns LongRunning
6112
+ * @throws {Error} If the payload is not a reader or valid buffer
6113
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6114
+ */
6115
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning;
6116
+
6117
+ /**
6118
+ * Verifies a LongRunning message.
6119
+ * @param message Plain object to verify
6120
+ * @returns `null` if valid, otherwise the reason why it is not
6121
+ */
6122
+ public static verify(message: { [k: string]: any }): (string|null);
6123
+
6124
+ /**
6125
+ * Creates a LongRunning message from a plain object. Also converts values to their respective internal types.
6126
+ * @param object Plain object
6127
+ * @returns LongRunning
6128
+ */
6129
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning;
6130
+
6131
+ /**
6132
+ * Creates a plain object from a LongRunning message. Also converts values to other types if specified.
6133
+ * @param message LongRunning
6134
+ * @param [options] Conversion options
6135
+ * @returns Plain object
6136
+ */
6137
+ public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any };
6138
+
6139
+ /**
6140
+ * Converts this LongRunning to JSON.
6141
+ * @returns JSON object
6142
+ */
6143
+ public toJSON(): { [k: string]: any };
6144
+
6145
+ /**
6146
+ * Gets the default type url for LongRunning
6147
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6148
+ * @returns The default type url
6149
+ */
6150
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6151
+ }
6152
+ }
6153
+
6154
+ /** ClientLibraryOrganization enum. */
6155
+ enum ClientLibraryOrganization {
6156
+ CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
6157
+ CLOUD = 1,
6158
+ ADS = 2,
6159
+ PHOTOS = 3,
6160
+ STREET_VIEW = 4
6161
+ }
6162
+
6163
+ /** ClientLibraryDestination enum. */
6164
+ enum ClientLibraryDestination {
6165
+ CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
6166
+ GITHUB = 10,
6167
+ PACKAGE_MANAGER = 20
6168
+ }
6169
+
6170
+ /** LaunchStage enum. */
6171
+ enum LaunchStage {
6172
+ LAUNCH_STAGE_UNSPECIFIED = 0,
6173
+ UNIMPLEMENTED = 6,
6174
+ PRELAUNCH = 7,
6175
+ EARLY_ACCESS = 1,
6176
+ ALPHA = 2,
6177
+ BETA = 3,
6178
+ GA = 4,
6179
+ DEPRECATED = 5
6180
+ }
6181
+
4740
6182
  /** Properties of a HttpBody. */
4741
6183
  interface IHttpBody {
4742
6184
 
@@ -6688,6 +8130,9 @@ export namespace google {
6688
8130
  /** MessageOptions mapEntry */
6689
8131
  mapEntry?: (boolean|null);
6690
8132
 
8133
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts */
8134
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
8135
+
6691
8136
  /** MessageOptions uninterpretedOption */
6692
8137
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
6693
8138
 
@@ -6716,6 +8161,9 @@ export namespace google {
6716
8161
  /** MessageOptions mapEntry. */
6717
8162
  public mapEntry: boolean;
6718
8163
 
8164
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
8165
+ public deprecatedLegacyJsonFieldConflicts: boolean;
8166
+
6719
8167
  /** MessageOptions uninterpretedOption. */
6720
8168
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
6721
8169
 
@@ -6821,6 +8269,15 @@ export namespace google {
6821
8269
  /** FieldOptions weak */
6822
8270
  weak?: (boolean|null);
6823
8271
 
8272
+ /** FieldOptions debugRedact */
8273
+ debugRedact?: (boolean|null);
8274
+
8275
+ /** FieldOptions retention */
8276
+ retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
8277
+
8278
+ /** FieldOptions target */
8279
+ target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
8280
+
6824
8281
  /** FieldOptions uninterpretedOption */
6825
8282
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
6826
8283
 
@@ -6861,6 +8318,15 @@ export namespace google {
6861
8318
  /** FieldOptions weak. */
6862
8319
  public weak: boolean;
6863
8320
 
8321
+ /** FieldOptions debugRedact. */
8322
+ public debugRedact: boolean;
8323
+
8324
+ /** FieldOptions retention. */
8325
+ public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
8326
+
8327
+ /** FieldOptions target. */
8328
+ public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
8329
+
6864
8330
  /** FieldOptions uninterpretedOption. */
6865
8331
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
6866
8332
 
@@ -6957,6 +8423,27 @@ export namespace google {
6957
8423
  JS_STRING = 1,
6958
8424
  JS_NUMBER = 2
6959
8425
  }
8426
+
8427
+ /** OptionRetention enum. */
8428
+ enum OptionRetention {
8429
+ RETENTION_UNKNOWN = 0,
8430
+ RETENTION_RUNTIME = 1,
8431
+ RETENTION_SOURCE = 2
8432
+ }
8433
+
8434
+ /** OptionTargetType enum. */
8435
+ enum OptionTargetType {
8436
+ TARGET_TYPE_UNKNOWN = 0,
8437
+ TARGET_TYPE_FILE = 1,
8438
+ TARGET_TYPE_EXTENSION_RANGE = 2,
8439
+ TARGET_TYPE_MESSAGE = 3,
8440
+ TARGET_TYPE_FIELD = 4,
8441
+ TARGET_TYPE_ONEOF = 5,
8442
+ TARGET_TYPE_ENUM = 6,
8443
+ TARGET_TYPE_ENUM_ENTRY = 7,
8444
+ TARGET_TYPE_SERVICE = 8,
8445
+ TARGET_TYPE_METHOD = 9
8446
+ }
6960
8447
  }
6961
8448
 
6962
8449
  /** Properties of an OneofOptions. */
@@ -7065,6 +8552,9 @@ export namespace google {
7065
8552
  /** EnumOptions deprecated */
7066
8553
  deprecated?: (boolean|null);
7067
8554
 
8555
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts */
8556
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
8557
+
7068
8558
  /** EnumOptions uninterpretedOption */
7069
8559
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7070
8560
  }
@@ -7084,6 +8574,9 @@ export namespace google {
7084
8574
  /** EnumOptions deprecated. */
7085
8575
  public deprecated: boolean;
7086
8576
 
8577
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
8578
+ public deprecatedLegacyJsonFieldConflicts: boolean;
8579
+
7087
8580
  /** EnumOptions uninterpretedOption. */
7088
8581
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7089
8582